Forums | Admin

Discussion Forums: help

Start New Thread Start New Thread

 

By: Justin Bailey
RE: Trying to get SOAP working [ reply ]  
2007-06-27 15:48
Good news. Hiroshi also emailed me recently asking me to test his integration. I'm glad it worked for you!

Justin

By: Charles Roper
RE: Trying to get SOAP working [ reply ]  
2007-06-27 15:43
Thanks Justin. Turns out I needed the latest http-access2 gem (which makes use of RubySSPI) and a couple of important environment variables need to be set. More info in this thread:

http://groups.google.com/group/soap4r/browse_frm/thread/b8af19a7484de33d

Cheers,
Charles

By: Justin Bailey
RE: Trying to get SOAP working [ reply ]  
2007-06-26 20:31
That doesn't seem like an auth error - it more seems like the proxy just blocked the URL (whatever it is).

If you can get hold of the HTTP connection that is being created by Net::HTTP and used in your program, you can hook up some debugging output and see what is happening on the wire. See the "trace_proxy" script included in the test directory of the RubySSPI gem for an example of hwo that is done.

Alternatively, use a tool like Ethereal to capture the packets and inspect them.

In either case, seeing what's on the wire will help you (and me) diagnose the problem.

By: Charles Roper
Trying to get SOAP working [ reply ]  
2007-06-25 12:12
I'm attempting to get some web services working using SOAP4R and have run up against numerous problems. First, wsdl2ruby doesn't work here, behind the ISA server. I managed to get it to run elsewhere though and generated my proxy classes.

Now, when I try and run some code, I get errors like this:

/usr/lib/ruby/gems/1.8/gems/soap4r-1.5.6/lib/soap/streamHandler.rb:233:in `send_post': 403: Forbidden ( The ISA Server denies the specified Uniform Resource Locator (URL). ) (SOAP::HTTPStreamError)

My question is: is this related to authentication, or is there some other problem? Is RubySSPI able to help me here?