Hello every body,

I'm trying to call a web service developed with .NET from a VB6.0 app using 
Low Level SOAP Toolkit 2.0
It seems like the value of my parameters are 0 in the .NET service
Here is the soap message from VB6.0

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/";>
<soap:Body>
<SOAPSDK1:addNumbers xmlns:SOAPSDK1="http://www.catalin.com/webservices/";>
<numberOne>10</numberOne>
<numberTwo>25</numberTwo>
</SOAPSDK1:addNumbers>
</soap:Body>
</soap:Envelope>

and here is the message from a .NET client (which returns the corect value)

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema";>
  <soap:Body>
    <addNumbers xmlns="http://www.catalin.com/webservices/";>
      <numberOne>10</numberOne>
      <numberTwo>25</numberTwo>
    </addNumbers>
  </soap:Body>
</soap:Envelope>

Can someone please tell me what's wrong?

Thanks

Catalin
_________________________________________________________________
Get your FREE download of MSN Explorer at http://explorer.msn.com

Reply via email to