Hello!
I try to use CXF with dynamic SDOs.
My web service uses this syntax to define an operation in the .wsdl
...
<wsdl:message name="createRequestRequestMsg">
<wsdl:part name="createRequestParameters"
element="tns:RequestMessageCR"/>
</wsdl:message>
...
As you can see, there is an 'element' attribute, not 'type'.
That 'RequestMessageCR' is defined as follows
<xs:element name="RequestMessageCR" type="tns:RequestMessageType">
<xs:annotation>
<xs:documentation>Сообщение-запрос</xs:documentation>
</xs:annotation>
</xs:element>
When I pass a commonj.sdo.DataObject to the service, I see that the final
XML uses RequestMessageType inside a BODY tag, which is wrong. According to
wsdl should be RequestMessageCR.
How do I specify that the element RequestMessageCR should be used in the
final DataObject serialization?
--
View this message in context:
http://cxf.547215.n5.nabble.com/Using-SDOs-commonj-sdo-DataObject-with-CXF-tp5714321.html
Sent from the cxf-user mailing list archive at Nabble.com.