Savon:用户未经授权

时间:2014-04-07 09:29:12

标签: ruby-on-rails soap-client savon

我正在使用savon gem来访问abc金融网络服务。我收到错误消息用户未授权。我正在使用此代码来访问响应

@wsdl="https://webservice.abcfinancial.com/wsdl/Prospect.wsdl"
@basic_auth=["user","pass"]
@headers={"Authorization" => "Basic"}

@client = Savon.client do |globals|
  globals.wsdl @wsdl
  globals.basic_auth @basic_auth
  globals.headers @headers
end

@message = {
  :clubNumber=> 'Club 0233', 
  :firstName=> 'abc', 
  :lastName=> 'def', 
  :gender=> "male"  
}
response = @client.call(:insert_prospect, message: @message)

我收到错误消息user not authorize。我搜索了它但没有找到任何解决方案。请帮帮我。

1 个答案:

答案 0 :(得分:0)

他们正在使用JAX-WS。 根据这篇文章http://examples.javacodegeeks.com/enterprise-java/jws/application-authentication-with-jax-ws/(和谷歌),我们应该在http标头中使用login-password。 我在http://abcfinancial.com上没有帐户,所以我无法测试代码。 试试吧:

require 'savon'

user = 'myLogin'
password = 'myPassword'

client = Savon.client(
    wsdl: 'https://webservice.abcfinancial.com/wsdl/Prospect.wsdl',
    headers: {username: user,
              password: password},
    pretty_print_xml: true,
    log: true
)

message = {
    :arg0 => {
        clubNumber: 'Club 0233',
        :personal => {
            :firstName => 'myName',
            :lastName => 'myLastName',
            :gender => 'male'
        }
    }
}

response = client.call(:insert_prospect, message: message)

阅读这篇好文章http://predic8.com/wsdl-reading.htm并打开调试(pretty_print_xml:true,log:true)。