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! Quote Link to comment https://forums.phpfreaks.com/topic/263180-somebody-try-nusoap/ Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.