in reply to Re^5: SOAP::Lite method with one param
in thread SOAP::Lite method with one param

I see that your code is generating
<S:Body> <ns0:getAllLocalGroups> <ns0:evsId xsi:type="xsd:unsignedShort">evsId</ns0:evsId> </ns0:getAllLocalGroups> </S:Body>
I would like to generate this
<S:Body> <ns0:getAllLocalGroups> 1 </ns0:getAllLocalGroups> </S:Body>
Please show me how you would use SOAP::Lite to generate that.

Again, note there is no element called evsId, the value of evsId is placed in an element that is also the methodName, that of "getAllLocalGroups".

Replies are listed 'Best First'.
Re^7: SOAP::Lite method with one param
by Anonymous Monk on Jan 23, 2015 at 01:42 UTC

    I don't think you can without writing your own serializer ... treasure trove has example