vote up 0 vote down star
2

Is it possible with Axis2 and Eclipse to generate a Web Service client and have it use java types that you already have in packages instead of creating it's own types. Reason being of course if I have type A already created and it creates it's own Type A I can't just assign variable of type A to variable of type B.

The wsdl is being generated from a Web Service deployed to an application server. If it's not possible to generate it from that would it be possible to generate a client from the already existing java files.

flag

4 Answers

vote up 2 vote down check

If you really want to reuse existing classes, you can call the Axis2 API directly without generating a client using wsdl2java. Below is some relatively simple code to call a web service. You just need to fill in the web service endpoint, method QName, expected return Class(es), and arguments to the service. You could reuse your existing classes as the return values or arguments.

If your web service is pretty complicated then you may find that you have to go deeper into the API to get this approach to work.

serviceClient = new RPCServiceClient();
Options options = serviceClient.getOptions();

EndpointReference targetEPR = new EndpointReference("http://myservice");

options.setTo(targetEPR);

QName methodName = new QName("ns","methodName");

Class<?>[] returnTypes = new Class[] { String.class };

Object[] args = new Object[] { "parameter" };

Object[] response = serviceClient.invokeBlocking(methodName, args,
                returnTypes);
link|flag
vote up 0 vote down

If you use eclipse as your ide, that is waht you need: http://www.eclipse.org/webtools/. It does beyond other things exactly what you want.

link|flag
vote up 0 vote down

pretty much most java webservices projects go through this. I don't know if the .NET/C# world have a more elegant solution.

It makes sense, as Mike mentioned, to use BeanUtils.copyProperties.

BR,
~A

link|flag
vote up 1 vote down

You are generating the web service client from wsdl, correct?

The only thing that the wsdl2java tool knows about is the information in the wsdl, so it won't know about any types that you have already created.

If you can get the type information into the wsdl you may get it to work, although I have never tried.

If you want an easy way to copy from Type A to Type B then you could try BeanUtils.copyProperties, as long as the setters and getters of Type A and Type B match.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.