Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Perl calling a .net webservice

Status
Not open for further replies.

andyUK

Programmer
Dec 19, 2000
39
0
0
GB
Hi

I am trying to call a .net webservice from perl. I have got simply examples working but i am not trying to get more complicated ones working. I noticed on the trace wheni rn my script (using soaplite) that the soap message generated is different from what i expected:

Expected :

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi=" xmlns:xsd=" xmlns:soap=" <soap:Body>
<GetLookup xmlns=" <CodeListValue>lkmAreaCode</CodeListValue>
</GetLookup>
</soap:Body>
</soap:Envelope>

SOAP LITE :

<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:xsi=" xmlns:SOAP-ENC=" xmlns:SOAP-ENV=" xmlns:xsd=" SOAP-ENV:encodingStyle="<SOAP-ENV:Body>
<GetLookup xmlns=" <CodeListValue>lkmAreaCode</CodeListValue>
</GetLookup>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>

anyone know if there is any difference between <soap and <SOAP-ENV ?

Thanks in advance

Andrew
 
There's obviously a difference in that there's different tags generated, but the websrvices should be able to discern between the two I would have thought ...
--Paul

Nancy Griffith - songstress extraordinaire,
and composer of the snipers anthem "From a distance ...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top