I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news, I hope these links will serve you well.
Posted on 2010-03-18 12:58:24.743108-07 by smsless
SOAP function call using data structure
I am new to SOAP::Lite within PERL and need this to access a data repository. However, access to this repository is using a function call (findGtypeByGroupList) that takes a data structure as an argument. Below is the Java expansion of the function call. What I need is how to set this function call up using PERL SOAP::Lite.
<soapenv: Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:gtype="urn:webservice.os/abcService" xmlns:java="java:os.webservice.criteria"> <soapenv:Header/> <soapenv:Body> <gtype:findGtypeByGroupList> <gtype:GtypeListCriteria> <java:Gtype> <java:Mtype>123</java:Mtype> <java:AsOf>03-16-2010</java:AsOf> </java:Gtype> <java:Page> <java:Start>0</java:Start> <java:Limit>10000</java:Limit> </java:Page> <java:Audit> <java:SysFrom>PV_Sys</java:SysFrom> </java:Audit> </gtype:GtypeListCriteria> </gtype:findGtypeByGroupList> </soapenv:Body> </soapenv:Envelope>
Direct Responses: Write a response