Problem with login via web-service

Hi,


I'd like to login to a web service using this PHP code:

$options = array('trace' => 1);
$client = new SoapClient("http://SERVER IP/CRM/eware.dll/webservice/webservice.wsdl", $options);

$login_details = array('username' => 'username','password' => 'password');

$response = $client->logon($login_details);

But in response I'm getting:

RESPONSE: SOAP-ENV:ServerUnknown User or password Unknown User or password

I'm sure that IP, user and pass are correct, Settings on sage side looks to be fine as well.

I set: Accept web request from IP Address: MyIP

Enable web services: Yes

Make WSDL Available to all: Yes

In users settings:

External Logon Allowed: True

Allow Web Service Access: True

What am I forgot about?

I'm testing it on my localhost windows, soap is installed.

Kris