SOAP Service

Hi I’m trying to set up a Soap service in rails without any luck. The
service is password protected i have tried so far to do the following:

soap_client =
SOAP::WSDLDriverFactory.new(“http://myserver:8080/xplanner/soap/XPlanner?wsdl”)

soap_client.options[“protocol.http.basic_auth”] << [WSDL_URL, user,
password]
driver = soap_client.createDriver

and

soap_client =
SOAP::WSDLDriverFactory.new(“http://user:password@myserver:8080/xplanner/soap/XPlanner?wsdl”)

all i get is a time out error the url is correct, if I copy the same url
in firefox i get the wsdl

Any ideas

Thanks

Here you are a basic web service example, step by step
http://benrobb.com/2007/01/30/howto-put-wsdl-on-rails/