wsimport - catalog

2014-02-10 Thread Zmuda, Matt
Hi All, I am trying to generate some web service client code from a WSDL and schemas that I have. One issue I am encountering is that one schema file (xsd) I require is in a separate jar that my client project has a dependency on. I cannot figure out how to reference that file in my pom. I have

Re: wsimport - catalog

2014-02-10 Thread Michael Osipov
Am 2014-02-10 21:28, schrieb Zmuda, Matt: Hi All, I am trying to generate some web service client code from a WSDL and schemas that I have. One issue I am encountering is that one schema file (xsd) I require is in a separate jar that my client project has a dependency on. I cannot figure out h

Re: wsimport - catalog

2014-02-10 Thread Ron Wheeler
jaxws-maven-plugin - is there a forum for this plug-in? You might get someone there who knows. It is not a Maven question. Ron On 10/02/2014 3:28 PM, Zmuda, Matt wrote: Hi All, I am trying to generate some web service client code from a WSDL and schemas that I have. One issue I am encounter

Re: wsimport - catalog

2014-02-17 Thread Sartaj Hundal
You need to "get" the XSD that is 'in' the jar file and then reference that retrieval within the XML. http://stackoverflow.com/questions/9280226/referencing-a-xsd-schema-within-jar-file Best Sartaj On Mon, Feb 10, 2014 at 1:28 PM, Zmuda, Matt wrote: > Hi All, > > I am trying to generate some

Re: wsimport - catalog

2014-02-18 Thread Michael Osipov
Am 2014-02-18 06:48, schrieb Sartaj Hundal: You need to "get" the XSD that is 'in' the jar file and then reference that retrieval within the XML. http://stackoverflow.com/questions/9280226/referencing-a-xsd-schema-within-jar-file This is what I wrote more than a week ago. ---