We have changed as per 1 November 2008 our exisiting OLD Perl API into PHP based API.
ONLY the following has been changed
1. URL
2. URN
Other Changes:
The URI is now the same as the methord name.
Old Perl example :
$soap_response = SOAP::Lite
->
uri('http://didx.net/GetCost')
->
proxy('http://didx.net/cgi-bin/WebGetCostOfDIDServer.cgi')
->
GetCostOfDIDByNumber("700123","...",$r);
will now be:
$soap_response = SOAP::Lite
->
uri('http://api.didx.net/GetCostOfDIDByNumber')
->
proxy('http://api.didx.net/webservice/WebGetCostOfDIDServer.php')
->
GetCostOfDIDByNumber("700123","...",$r);