7

Ho problemi a costruire il client soap utilizzando savon in rails 3.1. Ma sono in grado di ottenere con successo la risposta quando provo a fare la richiesta dalla linea di comando curl. La mia richiesta ricciolo da linea di comando simile a questaRails 3.1 Richiesta soap savon che fornisce Timeout :: Errore: Timeout :: Errore ut utilizzando curl ottengo risposta

curl -d @Downloads/test.xml -H "content-type: text/xml;charset=UTF-8" -H "SOAPAction: http://services.bamnetworks.com/registration/identityPoint/create" "https://qaservices.bamnetworks.com/ws/services/IdentityPointService" -v 

da cui ho ricevuto una risposta perfetta come questo.

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Header /><soapenv:Body><identityPoint_create_response xmlns="http://services.bamnetworks.com/registration/types/1.6"><status><code>-2000</code><message> [Duplicate credential constraint violated] [com.bamnetworks.registration.types.exception.DuplicateCredentialException]</message><exceptionClass>com.bamnetworks.registration.types.exception.DuplicateCredentialException</exceptionClass> 

Ma quando provo a fare una richiesta dal client Savon ogni volta sto ottenendo il

HTTPI executes HTTP POST using the net_http adapter 
Timeout::Error: Timeout::Error 

La mia richiesta Savon simile a questa

client = Savon::Client.new do |wsdl, http| 
    http.auth.ssl.verify_mode = :none 
    wsdl.document = "https://qaservices.bamnetworks.com/ws/services/IdentityPointService?wsdl" 
end 

begin 

response = client.request :ns, :identityPoint_create_request do |soap, wsdl, http| 

     http.headers['SOAPAction'] = 'http://services.bamnetworks.com/registration/identityPoint/create' 
     http.headers = { "Content-Length" => "0", "Connection" => "Keep-Alive" } 
     soap.namespaces["xmlns:ns0"]="http://services.bamnetworks.com/application/types/1.0" 

     soap.header = { 
      "ns0:appCredentials" => { 
       "ns0:name"=>"XXXXXXX", 
       "ns0:password"=>"XXXXXXXXX" 
      } 
     } 
     soap.body ={ 
      :identification => { 
       :email => { 
        :address => "[email protected]" 
       }, 
       :password => { :address => { :id => 44 } } 
      }, 
      :profileProperty => { 

       :name => "birthDay", 
       :value => "17" 
      }, 
      :profileProperty =>  { 
       :name => "birthMonth", 
       :value => "8" 
      }, 
      :profileProperty =>  { 
       :name => "birthYear", 
       :value => "1986" 
      }, 
      :attributes! => { :identification => { :type => "email-password" } } 
     } 
    end 

io non so dove mi trovo fare l'errore Se qualcuno mi aiuta in questo a capirlo. Grazie!

+0

hai provato a impostare il timeout per un numero più grande? Potresti voler esaminare questa domanda http://stackoverflow.com/questions/6384230/how-to-set-savon-default-timeout-value –

risposta

0

Questo può essere problema di server sapone provare a riga di commento:

http.headers = { "Content-Length" => "0", "Connection" => "Keep-Alive" }