0

我正在尝试使用 Savon 调用 Web 服务。我试图生成的请求是这样的(这是一个有效的请求,使用wizdler生成):

<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/">
    <Body>
        <FraudValidationRequest xmlns="http://schemas.gid.gap.com/fraudvalidation/v3">
            <OrderHeader xmlns="">
                <EntryType>1</EntryType>
.... more attributes

但我得到这样的东西:

<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:wsdl="http://schemas.gid.gap.com/fraudvalidation/v3"
    xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
  <env:Body>
    <wsdl:validateOrder>
      <fraudValidationRequest>
        <orderHeader>
          <entryType>1</entryType>
        </orderHeader>
      </fraudValidationRequest>
    </wsdl:validateOrder>
  </env:Body>
</env:Envelope>

所以我在服务器端得到这个错误(web服务是用java实现的):

org.apache.axis2.databinding.ADBException: Unexpected subelement FraudValidationRequest

这是我在 ruby​​ 中的客户端代码:

require "savon"
URL = 'http://localhost:8080/MockFraudValidationServiceProvider/services/FraudValidationServiceV3'
begin
    client = Savon.client do
        # wsdl URL + "?wsdl"
        endpoint URL
        namespace "http://schemas.gid.gap.com/fraudvalidation/v3"
        log_level :debug
        pretty_print_xml :true
    end
    response = client.call(:validate_order,
        message: {
            FraudValidationRequest: { OrderHeader: { EntryType: 1 } } 
        }
    )
    puts response.to_hash;
end

我尝试了几件事:wsdl、端点和命名空间、有/没有命名空间、驼峰式与否等,但我无法生成适当的请求。我不是 SOAP 专家(显然),我知道如果有 WSDL(我的情况),则无需设置命名空间,但我不确定。当我尝试仅使用 WSDL 时,我得到了这个:

<?xml version="1.0" encoding="UTF-8"?>
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:types="http://services.gid.gap.com/fraudvalidation/v3"
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ins0="http://schemas.gid.gap.com/fraudvalidation/v3">
  <env:Body>
    <types:FraudValidationRequest>
      <fraudValidationRequest>
        <orderHeader>
          <entryType>1</entryType>
        </orderHeader>
      </fraudValidationRequest>
    </types:FraudValidationRequest>
  </env:Body>
</env:Envelope>

请指教,我希望我是清楚的。

4

1 回答 1

1

你试过这个吗?

require 'savon'

# create a client for the service
client = Savon.client(wsdl: 'http://service.example.com?wsdl')

p client.operations
# => [:find_user, :list_users]

# call the 'findUser' operation
response = client.call(:find_user, message: { id: 42 })

response.body
# => { find_user_response: { id: 42, name: 'Hoff' } }

客户端操作是您可以调用的操作,您只需打印它们并检查以调用正确的操作。message 是一个客户端参数,如果你放了你的参数,你也可以这样设置:

params = {
  :param_1 => "value",
  _param_2 => 7
}
response = client.call(:find_user, message: params)

我使用此代码,并且能够调用我的 Web 服务

于 2018-07-03T09:16:10.963 回答