hrwath
hrwath

Reputation: 125

How should I connect to webservice using username, password and signature in PHP?

I need to connect to a particular webservice. I've been provided with WS's address, username, password and signature. However I don't know where and how provide these credentials to be able to use webservice functions.

I'll be very grateful for some code samples using SoapClient or nuSOAP showing how to achieve proper authorization.

The link for webservice is here

Upvotes: 0

Views: 557

Answers (1)

piotrekkr
piotrekkr

Reputation: 3206

Have you read manual? There are some examples with wsdl file, user and password:

http://www.php.net/manual/en/soapclient.soapclient.php

Upvotes: 1

Related Questions