ismaeljgm has asked for the wisdom of the Perl Monks concerning the following question:
The Section of the wsdl that defines what I get back is this partuse SOAP::Lite; my $input = SOAP::Data->name('SCID') ->value('2634244'); my $workorder = SOAP::Lite->service('http://vspclearcbuild.vodacom.cor +p/clearquest/byServiceCallID.WSDL') -> byServiceCallID($input); print "$workorder\n";\n
<xsd:complexType name="__workorders"> <xsd:sequence> <xsd:element name="workorder" nillable="true" type="tns:ArrayOf__worko +rder"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="__workorder"> <xsd:sequence> <xsd:element name="oid" nillable="true" type="xsd:string"/> <xsd:element name="id" nillable="true" type="xsd:string"/> <xsd:element name="description" nillable="true" type="xsd:string" +/> <xsd:element name="assignToPerson" nillable="true" type="xsd:stri +ng"/> <xsd:element name="assignToWG" nillable="true" type="xsd:string"/ +> <xsd:element name="information" nillable="true" type="xsd:string" +/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="ArrayOf__workorder"> <xsd:complexContent> <xsd:restriction base="SOAP_ENC:Array"> <xsd:attribute ref="SOAP_ENC:arrayType" wsdl:arrayType="tns:__wo +rkorder[]"/> </xsd:restriction> </xsd:complexContent> </xsd:complexType>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Struggling with SOAP::Lite
by nikosv (Deacon) on May 14, 2009 at 18:10 UTC |