
August 18th, 2006, 10:33 AM
|
|
|
|
Join Date: Apr 2007
Posts: 1
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
Help - Using PHP Pear client to access MS SOAP Server on IIS6
I am trying to authenticate and access a SOAP Server page running on Microsoft Server 2003 using IIS6. The SOAP Server pages were developed with SOAP Toolkit 3. My PHP client is using PHP PEAR running on a LINUX Apache platform. I cannot get the authentication values to appear and get the following error .. which implies that the value is not being transferred.
"Originator Guid is not a valid Guid. Value received = []"
Below is the original code minus passwords!! If you spot any errors or know about incompatibilities please let me know ... I may even have a PayPal donation for a working solution.
The current actual output can be seen on .. http://www.thebestdeal4u.com/test1.php
php Code:
Original
- php Code |
|
|
|
require_once 'SOAP/Client.php'; //Set Logon Variables $WLno = '11111'; $WLun = 'abc123'; $WLpw = 'xxxxx'; $Guid = '123123123'; $service = 'http://uat.webline.co.uk/WeblineWebServices/Service1.asmx?WSDL'; $method = 'GetWeblineLogonTokenwithOriginator'; $wsdl = new SOAP_WSDL($service); $WLproxy = $wsdl->getProxy(); $response = $WLproxy->$method($WLno, $WLun, $WLpw, $Guid);
|