- or download this
- <complexType name="submitToRemedyForm">
- <sequence>
...
<element name="String_4" nillable="true" type="string" />
</sequence>
</complexType>
- or download this
use SOAP::Lite +trace => debug;
my $service = SOAP::Lite->service('https://remabsintcert/remedyAbstrac
+tService/remedyAbstractService_1_0?wsdl');
...
SOAP::Data->name(String_3 => 'form'),
SOAP::Data->name(String_4 => 'xxxxxxx'),
);
- or download this
<?xml version="1.0" encoding="UTF-8"?>
<soap:Envelope xmlns:ns2="http://xxx.com/remedyAbstractService_1_0/typ
+es" soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xm
+lns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="h
+ttp://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.or
+g/2001/XMLSchema-instance" xmlns:tns="http://xxx.com/remedyAbstractSe
+rvice_1_0/wsdl" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
...
<String_4 xsi:type="xsd:string">xxxxxxx</String_4>
</tns:submitToRemedyForm>
</soap:Body></soap:Envelope>
- or download this
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envel
+ope/" xmlns:typ="http://xxx/remedyAbstractService_1_0/types">
<soapenv:Header/>
...
</typ:submitToRemedyForm>
</soapenv:Body>
</soapenv:Envelope>