vote up 0 vote down star

I have some XML type in Java classes which are defined in XSD and generated by XJC.

Then I write some java methods with JAX-WS Annotation, and let those generated Java classes of XML type as parameter types of the web services.

The code is deployed on Geronimo. And Geronimo should run some WsGen tasks to generate WSDL and service runtime.

XSD --<JAXB/XJC>---> XML type in Java classes -----------> web service (JAX-WS Annotation)
                                                                 |
                                                                 | Deploy on Geronimo (WsGen)
                                                                 |
                                                                \|/
                                                                WSDL
                                                                 |
                                                                 | (WsImport)
                                                                 |
                                                                \|/
                                                              Client

On the client side, I run WsImport to generate client stubs for web services.

The question is...how can I reuse the XML type java classes at client side, instead letting WsImport generate again those XML type java classes.

I found this article http://jamablog.blogspot.com/2007/08/how-to-make-jax-ws-client-to-reuse.html

But I don't know how to apply on my situtation.

flag

75% accept rate
should that say "how can I reuse the XML type java classes at client side" ?? – Dave Ray Oct 26 at 12:41
yes, you are right – elgcom Oct 26 at 13:05
As weblogs.java.net/blog/kohsuke/… , I tried to comiple schema with "episode", and then tried to generate WSDL client code with "episode". But the problem is that the element name or namespace from generated wsdl are not matched to those in "episode", therefore the client generation is failed. It seems that a "contract first" method (design WSDL first) could be easier for that. – elgcom Oct 26 at 14:15

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.