Method: SOAP::NetHttpClient#set_basic_auth
- Defined in:
- lib/soap/netHttpClient.rb
#set_basic_auth(uri, user_id, passwd) ⇒ Object
69 70 71 72 73 |
# File 'lib/soap/netHttpClient.rb', line 69 def set_basic_auth(uri, user_id, passwd) # net/http does not handle url. @basic_auth = [user_id, passwd] raise NotImplementedError.new("basic_auth is not supported under soap4r + net/http.") end |