2012-06-27 3 views
0

현재 Rails 2.3.8, Savon 및 OX의 SOAP API를 사용하여 Open-Xchange의 로컬 인스턴스에 대한 프로비저닝 서비스를 빌드하려고합니다.Savon에서 XML 구조 순서 적용

콘솔을 통해 다음 명령을 실행할 수 있습니다.

>> client = Savon::client("http://192.168.2.195/servlet/axis2/services/OXContextService?wsdl") 
=> #<Savon::Client:0x2b5151bad790 @wsdl=#<Savon::Wasabi::Document:0x2b5151bad678 @document="http://192.168.2.195/servlet/axis2//services/OXContextService?wsdl", @request=#<HTTPI::Request:0x2b5151bad628>>, @http=#<HTTPI::Request:0x2b5151bad628>, @config=#<struct Savon::Config _logger=#<Savon::Logger:0x2b5151bad6c8 @device=#<IO:0x2b514a775ad0>>, pretty_print_xml=nil, raise_errors=true, soap_version=1, env_namespace=nil, soap_header=nil>> 
>> client.request :list_by_database do 
?> soap.body = { 
?> :auth => { 
?> :login => "oxadminmaster", 
?> :password => "admin_master_password" 
>> }, 
?> :db => { 
?> :id => 3 
>> } 
>> } 
>> end 
HTTPI executes HTTP GET using the net_http adapter 
SOAP request: https://192.168.2.195/servlet/axis2/services/OXContextService.OXContextServiceHttpsSoap11Endpoint/ 
SOAPAction: "urn:listByDatabase", Content-Type: text/xml;charset=UTF-8, Content-Length: 657 
<?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:ins0="http://soap.admin.openexchange.com" xmlns:ns="http://soap.admin.openexchange.com" xmlns:ins1="http://dataobjects.soap.admin.openexchange.com/xsd" xmlns:ins2="http://dataobjects.rmi.admin.openexchange.com/xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Body><ins0:listByDatabase><ins0:db><ins1:id>3</ins1:id></ins0:db><ins0:auth><ins2:login>oxadminmaster</ins2:login><ins2:password>admin_master_password</ins2:password></ins0:auth></ins0:listByDatabase></env:Body></env:Envelope> 
HTTPI executes HTTP POST using the net_http adapter 
warning: peer certificate won't be verified in this SSL session 
SOAP response (status 200): 

작동합니다. 문제가 없습니다. 그러나, 나는 다음과 같은 코드 ... 다음 CURL을 사용

class Ox_Context_Service 
    extend Savon::Model 

    attr_accessor :data, :returnCode 

    document "http://192.168.2.195/servlet/axis2/services/OXContextService?wsdl" 

    def list_by_database oxMasterUser, oxMasterPassword 
    begin 
    response = client.request :list_by_database do 
     soap.body = { 
     :auth => { 
      #for the sake of testing 
      :login => "#{oxMasterUser}", 
      :password => "#{oxMasterPassword}" 
     }, 
     :db => { 
      :id => 3 
      #For the sake of testing 
     } 
     } 
     end 
     if response.success? 
     data = response.body[:list_by_database_response][:return] 
     if data 
      @data = data 
      @returnCode = "#{response.http.code}" 
     end 
     end 
    end 
    rescue Savon::Error => fault 
    @data = {} 
    @returnCode = "#{fault}" 
    end 
end 

...

curl localhost:4545/oxContextService/list_by_database -d 'oxUsername=oxadminmaster' -d 'oxPassword=admin_master_password'

내가 얻을를 ... 때

HTTPI executes HTTP GET using the net_http adapter 
SOAP request: https://192.168.2.195/servlet/axis2/services/OXContextService.OXContextServiceHttpsSoap11Endpoint/ 
SOAPAction: "urn:listByDatabase", Content-Type: text/xml;charset=UTF-8, Content-Length: 657 
<?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:ins0="http://soap.admin.openexchange.com" xmlns:ns="http://soap.admin.openexchange.com" xmlns:ins1="http://dataobjects.soap.admin.openexchange.com/xsd" xmlns:ins2="http://dataobjects.rmi.admin.openexchange.com/xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Body><ins0:listByDatabase><ins0:auth><ins2:login>oxadminmaster</ins2:login><ins2:password>admin_master_password</ins2:password></ins0:auth><ins0:db><ins1:id>3</ins1:id></ins0:db></ins0:listByDatabase></env:Body></env:Envelope> 
HTTPI executes HTTP POST using the net_http adapter 
warning: peer certificate won't be verified in this SSL session 
SOAP response (status 500): 
<?xml version='1.0' encoding='UTF-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Body><soapenv:Fault><faultcode>soapenv:Server</faultcode><faultstring>Authentication failed</faultstring><detail /></soapenv:Fault></soapenv:Body></soapenv:Envelope> 

그래서 - 두 개의 동일한 전화, 두 가지 결과. 여기서 뭐가 잘못 될 수 있니?

편집은 다음 인증 블록이 먼저 전송되기 때문에 레일 호출 대신 마지막으로, 실패합니다. 새로운 질문은 명시 적으로 XML을 작성하지 않고 XML 구조 순서를 적용하는 방법이라고 생각합니다.

답변

0
soap.body = { 
    :auth => { 
     #for the sake of testing 
     :login => "#{oxMasterUser}", 
     :password => "#{oxMasterPassword}" 
    }, 
    :db => { 
     :id => 3 
     #For the sake of testing 
    } 
    :order! => [:db, :auth] 
} 

order!은 해당 배열을 기반으로 특정 순서를 강제합니다. 습득 한 교훈 : 매뉴얼을 읽으십시오.