Hello All,

I'm trying to call a web service written in C# and located at http:// path, using gSoap library.

Below given is the code which i've written:

<code>
struct soap *pSoap = soap_new ();
_NonSecure1__ValidateResource pValidateRequest = new _NSLicense__ValidateResource ();
_NonSecure1__ValidateResourceResponse pValidateResponse = new _NSLicense__ValidateResourceResponse ();
ValidateRequest.strResource = szTemp;
pSoap->namespaces = namespaces;

iRet = soap_call___NonSecure2__ValidateResource (pSoap, m_strEndPoint, NULL, &ValidateRequest, &ValidateResponse);
bRetVal = ValidateResponse.ValidateResourceResult;

</code>


I debugged my code with SOAP_DEBUG preprocessor which generates three files SENT.log, RECV.log and TEST.log. These log shows that the message length which i'm trying to send is 0.