Soap wsa:To

When I'm trying to use a webservice provided by a .NET server from a ruby client I get the following error when calling the method:
Server was unable to process the request - The message must contain a wsa:To header.

How can I instruct ruby to add this header? My code currently looks like this:

factory = SOAP::WSDLDriverFactory.new(url)
soap_client = factory.create_rpc_driver
soap_client.Method({:arg1 => 1, :arg2 => 2})

···

--

*Jeremy Wells*
Serval Systems Ltd.

www.servalsystems.co.uk <http://www.servalsystems.co.uk>
Tel: 01342 331940
Fax: 01342 331950

Hi,

Jeremy Wells wrote:

When I'm trying to use a webservice provided by a .NET server from a
ruby client I get the following error when calling the method:
Server was unable to process the request - The message must contain a
wsa:To header.

How can I instruct ruby to add this header? My code currently looks like
this:

factory = SOAP::WSDLDriverFactory.new(url)
soap_client = factory.create_rpc_driver
soap_client.Method({:arg1 => 1, :arg2 => 2})

You need to define a header handler for wsa:To. A sample header handler
is in http://dev.ctor.org/soap4r/browser/trunk/sample/soap/authheader .
Please let me know in case you can create a header handler for wsa:To.
I want to add it as a sample of soap4r distribution for other users...

Regards,
// NaHi

NAKAMURA, Hiroshi wrote:

Hi,

You need to define a header handler for wsa:To. A sample header handler
is in http://dev.ctor.org/soap4r/browser/trunk/sample/soap/authheader .
Please let me know in case you can create a header handler for wsa:To.
I want to add it as a sample of soap4r distribution for other users...
  

Hi, thanks for your reply. I tried adding that header, in fact I had to try to add the whole addressing header bit from the ws specifications on Microsofts site. It still didn't work. One question I have is how do you add xmlns:wsa="whatever" to the soap tag to tell it the wsa namespace?

Eventually I gave up, as the product I'm using provides a soap 1.1 webservices bit as well, which provides less features, I used that instead. I'll wait until ruby fills in this type of header automatically.

Jeremy Wells wrote:

NAKAMURA, Hiroshi wrote:

Hi,

You need to define a header handler for wsa:To. A sample header handler
is in http://dev.ctor.org/soap4r/browser/trunk/sample/soap/authheader .
Please let me know in case you can create a header handler for wsa:To.
I want to add it as a sample of soap4r distribution for other users...
  

Hi, thanks for your reply. I tried adding that header, in fact I had to
try to add the whole addressing header bit from the ws specifications on
Microsofts site. It still didn't work. One question I have is how do you
add xmlns:wsa="whatever" to the soap tag to tell it the wsa namespace?

Eventually I gave up, as the product I'm using provides a soap 1.1
webservices bit as well, which provides less features, I used that
instead. I'll wait until ruby fills in this type of header
automatically.

Hi ,
I need to define a wsa header tag in my soap request ... i though that
this post could help me but i can not reach the page behind the link :
http://dev.ctor.org/soap4r/browser/trunk/sample/soap/authheader\.

can some one give me a valid link to this page.

thanks.

···

--
Posted via http://www.ruby-forum.com/\.