pcman Posted May 26, 2012 Share Posted May 26, 2012 <?php require_once('nusoap/lib/nusoap.php'); $client = new nusoap_client('https://dsadsa', true); $client->setCredentials('dasdas', 'dasd%', 'ntlm'); $msg = "<Register xmlns=\"https://wq\"> <accountData> XML FROM THE HELP FILE PUT HERE WITHOUT ANY LINE BREAKS </accountData> </Register>"; $soapmsg = $client->serializeEnvelope($msg, "", array(), 'document', 'literal'); $result = $client->send($soapmsg, "https://dsadsa"); print_r($result); ?> its printing zero ... How do I know the connection was successful? thanks! Link to comment https://forums.phpfreaks.com/topic/263180-somebody-try-nusoap/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.