Anybody know how to send parameters from nusoap client to asmx web service (SSL)
//nusoap php code
$client = new soapclient("https://...edited...asmx?WSDL", true);
$results = $client->call('GetPostInfo', array('RoomID'=>28));
//.Net weservice code
public object[] GetPostInfo(int RoomID)
{
return new object[]{HttpContext.Current.Request.Form.ToString()};
}
when I send RoomID from the ...asmx?op=GetPostInfo URL, I see POST data in the response. Using nusoap client however, I get nothing. It appears that nusoap or cURL will not POST to the asmx???
My nusoap debug response is attached to this post.
THANKS!
P.S. Yes, I know I tried to mask the asmx host and missed it in the headers in my attachment that I can't seem to delete and re-upload :glare: (just in case you wanna make fun of me )