|
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>
|