Normally using SOAP over port 80 is simple:
$client = new SoapClient('http://domain.com/webservice?wsdl');
How would you consume the web service over another tcp port? (Not 80 or 443)
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Try :
http://domain.com:808/webservice?wsdl=>
$client = new SoapClient('http://domain.com:808/webservice?wsdl');Term
:808indicates port number of an URI, if you omit it, it will use default port number for specified protocol. (80: for HTTP)RFC 3986:
A good overview for URI is here.