RequestMessage would only be created if it was defined in any of the XSDs referenced in the WSDL. I'm guessing your WSDL is not of the document/literal variety as you were expecting. If you are looking for something you can use to bind messages to Java for working with webservices, try Axis2 as its a pretty full and complete stack that has bindings for working with XMLBeans.
On Mon, Jun 8, 2009 at 6:49 AM, Gillen, Paul<[email protected]> wrote: > I’ve got a WSDL that contains in part: > > <wsdl:message name="RequestMessage"> > > <wsdl:part name="reqParameter" element="r:Request"/> > > </wsdl:message> > > > > “r:Request” refers to an external XSD. When I compile the WSDL using scomp > I get classes generated for “Request” but not “RequestMessage”. The XML > generated from the WSDL however is “RequestMessage” so I can’t use the scomp > generated classes to validate the WSDL generated XML document. > > > > … unless I’m doing (or not doing) something stupid. > > > > =Paul= --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]

