Got Invalid Symbol Found (lt) error after pasting the SOAP request to the Request Body field in the Integration object config screen. The same SOAP request works in SOAPUI. Plz shed some light on this.
<soapenv:Envelope xmlns:soapenv="">schemas.xmlsoap.org/.../" xmlns:xsd="">www.w3.org/.../XMLSchema" xmlns:xsi="">www.w3.org/.../XMLSchema-instance"> <soapenv:Header> <wsse:Security xmlns:wsse="">schemas.xmlsoap.org/.../secext" soapenv:mustUnderstand="1"> <wsse:UsernameToken> <wsse:Username>aaaa</wsse:Username> <wsse:Password>ddddd</wsse:Password> </wsse:UsernameToken> </wsse:Security> </soapenv:Header> <soapenv:Body> <ibn220 xmlns="">ibn220.ang.pbd.ntrs.com/"> <ibn220Req> <function>F5</function> <reqType /> <qualType>M11</qualType> <reqQuan>1</reqQuan> <arxMain>0</arxMain> <acctType /> <acctNo /> <appl>LNS</appl> <bank>465</bank> </ibn220Req> </ibn220> </soapenv:Body></soapenv:Envelope>
Discussion posts and replies are publicly visible
I tried the SOAP request (see below) from
https://community.appian.com/discussions/f/integrations/12897/soap-service-call-issue
and got the same error:
<soapenv:Envelope xmlns:xsi="">www.w3.org/.../XMLSchema-instance" xmlns:xsd="">www.w3.org/.../XMLSchema" xmlns:soapenv="">schemas.xmlsoap.org/.../" xmlns:ndf="">graphical.weather.gov/.../ndfdXML.wsdl"> <soapenv:Header/> <soapenv:Body> <ndf:LatLonListZipCode soapenv:encodingStyle="">schemas.xmlsoap.org/.../"> <zipCodeList xsi:type="dwml:zipCodeListType" xmlns:dwml="">graphical.weather.gov/.../zipCodeList> </ndf:LatLonListZipCode> </soapenv:Body></soapenv:Envelope>
Your SOAP request looks Malformed, the extract from the link is below, there should not be a > after xmlns:xsi"http://www.w3
.org/2001/XMLSchema-instance" as this is an attribute of the soapenv tag
<soapenv:Envelope xmlns:xsi="">www.w3.org/.../XMLSchema-instance" xmlns:xsd="">www.w3.org/.../XMLSchema" xmlns:soapenv="">schemas.xmlsoap.org/.../" xmlns:urn="urn:examples:helloservice"> <soapenv:Body> <urn:sayHello soapenv:encodingStyle='schemas.xmlsoap.org/.../'> <firstName xsi:type='xsd:string'>John</firstName> </urn:sayHello> </soapenv:Body> </soapenv:Envelope>
Although having just posted, looks like the forum is struggling with this