| Message: 15265 |
 |
BY: Justin Bailey (m4dc4p) DATE: 2006-11-21 16:29 SUBJECT: RE: Not authenticating correctly Ron,
Something is going wrong in the proxy negotiation code that RubySSPI patches into net/http. The exception you are seeing is coming from the RubySSPI code.
If you don't mind hacking the source a little, open lib/rubysspi/proxy_auth.rb.
There is a rescue clause at line 48. You'll recognize the message created there as the exception you are seeing. Can you add some code to print the stack trace associated with the exception caught there? It's in the 'exc' variable, and you should be able to get it to print by adding "puts exc.backtrace.inspect" before the "raise" statement.
Let me know the results, hopefully it will give me an idea how to solve this issue. Thanks!
Justin | |