On Sunday 02 January 2011 9:00:30 am John Baker wrote: > So now the issue is the use="literal|encoded" declaration. > > Axis says this: > > <wsdl:input name="query"> > <soap:body namespace="http://example.com/" use="literal"/> > </wsdl:input> > > CXF says this: > > <wsdl:input name="queryRequest"> > <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" > namespace="http://example.com" use="encoded"/> > </wsdl:input> > > Any thoughts on how I set use="literal" in CXF?
Are you sure that's not reversed? Axis generates rpc/encoded stuff by default since that was the default for JAX-RPC which was popular at the time. CXF doesn't support encoded at all. Thus, it shouldn't be generating it at all. -- Daniel Kulp [email protected] http://dankulp.com/blog
