I am using a jax rpc web service. Is there any way of passing raw xml to the web service without encoding the characters? Every time I try to do so, i get an exception:
Error: SimpleDeserializer encountered a child element, which is NOT expected, in something it was trying to deserialize
None of the posts here seem to answer my question. Will vote for any answer. Please reply ASAP as this is urgent...
The WSDL file is:
<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions targetNamespace="http://service.session.plh" xmlns:impl="http://service.session.plh" xmlns:intf="http://service.session.plh" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsi="http://ws-i.org/profiles/basic/1.1/xsd" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<wsdl:types>
<schema targetNamespace="http://service.session.plh" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<element name="AddPResponse">
<complexType>
<sequence>
<element name="AddPReturn" nillable="true" type="xsd:string"/>
</sequence>
</complexType>
</element>
<element name="AddP">
<complexType>
<sequence>
<element name="Pform" nillable="true" type="xsd:string"/>
</sequence>
</complexType>
</element>
</schema>
</wsdl:types>
<wsdl:message name="AddPRequest">
<wsdl:part element="impl:AddP" name="parameters">
</wsdl:part>
</wsdl:message>
<wsdl:message name="AddPResponse">
<wsdl:part element="impl:AddPResponse" name="parameters">
</wsdl:part>
</wsdl:message>
<wsdl:portType name="SBean">
<wsdl:operation name="AddP">
<wsdl:input message="impl:AddPRequest" name="AddPRequest">
</wsdl:input>
<wsdl:output message="impl:AddPResponse" name="AddPResponse">
</wsdl:output>
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="SSoapBinding" type="impl:SBean">
<wsaw:UsingAddressing wsdl:required="false" xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl"/>
<wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl:operation name="AddP">
<wsdlsoap:operation soapAction="AddP"/>
<wsdl:input name="AddPRequest">
<wsdlsoap:body use="literal"/>
</wsdl:input>
<wsdl:output name="AddPResponse">
<wsdlsoap:body use="literal"/>
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="SService">
<wsdl:port binding="impl:SSoapBinding" name="S">
<wsdlsoap:address location="http://localhost:9080/PLProjectService/services/S"/>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>
Input :
<data>
<userprofile>
<firstname></firstname>
<lastname></lastname>
<street></street>
<city></city>
<pin></pin>
<country></country>
<phoneno></phoneno>
<email></email>
</userprofile>
</data>