S
Scott
I am consuming a web service WITHOUT a WSDL.
I have overridden SoapHttpClientProtocol to create my own WebService
request.
The problem is that the server responding to my requests wants a <c-
gensym3> element between the name of the method and the parameters.
like this:
<soap:Body>
<Method1 xmlns="namespace">
<c-gensym3> <!--THIS IS WHAT I NEED TO ADD-->
<data>xxxyyy</data>
</c-gensym3>
</Method1 >
</soap:Body>
How can I add the <c-gensym3> element into my request?
I have overridden SoapHttpClientProtocol to create my own WebService
request.
The problem is that the server responding to my requests wants a <c-
gensym3> element between the name of the method and the parameters.
like this:
<soap:Body>
<Method1 xmlns="namespace">
<c-gensym3> <!--THIS IS WHAT I NEED TO ADD-->
<data>xxxyyy</data>
</c-gensym3>
</Method1 >
</soap:Body>
How can I add the <c-gensym3> element into my request?