SOAP <MethodName>Response and <MethodName>Result

  • Thread starter Thread starter Steph
  • Start date Start date
S

Steph

hello,
how can i redefine the "<MethodName>Response" and "<MethodName>Result"
.... in the soap response !

"<MethodName>Response" = ResponseElementName
"<MethodName>Result" = ?

thanks
 
Steph said:
hello,
how can i redefine the "<MethodName>Response" and "<MethodName>Result"
... in the soap response !

"<MethodName>Response" = ResponseElementName
"<MethodName>Result" = ?

thanks
can we ignore "<MethodName>Result" (set to nothing)

this :
<soap>
<MethodNameResponse>
<MethodNameResult>
...my objects, variables...
</MethodNameResult>
</MethodNameResponse>
</soap>


to :

<soap>
<MethodNameResponse>
...my objects, variables...
</MethodNameResponse>
</soap>
 
Back
Top