简体   繁体   中英

Savon SOAP Request not working

I'm using Savon gem in my Rails app and I need to submit my form fields to Equifax.

Here's the Equifax XML:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:v3="http://eid.equifax.com/soap/schema/canada/v3">
   <soapenv:Header/>
   <soapenv:Body>
      <v3:InitialRequest>
         <v3:Identity>
            <v3:Name>
               <v3:FirstName>Michael</v3:FirstName>
               <v3:LastName>Smith</v3:LastName>
            </v3:Name>
            <!--1 to 3 repetitions:-->
            <v3:Address timeAtAddress="72" addressType="current">
               <v3:HybridAddress>
                  <!--1 to 6 repetitions:-->
                  <v3:AddressLine>1028 Summerville</v3:AddressLine>
                  <v3:City>Vancouver</v3:City>
                  <v3:Province>BC</v3:Province>
                  <v3:PostalCode>V7B0A8</v3:PostalCode>
               </v3:HybridAddress>
            </v3:Address>
            <!--Optional:-->
            <v3:DateOfBirth>
               <v3:Day>26</v3:Day>
               <v3:Month>08</v3:Month>
               <v3:Year>1984</v3:Year>
            </v3:DateOfBirth>
            <v3:PhoneNumber phoneType="current">
               <v3:PhoneNumber>6045556666</v3:PhoneNumber>
            </v3:PhoneNumber>
         </v3:Identity>
         <v3:ProcessingOptions>
            <v3:Language>English</v3:Language>
         </v3:ProcessingOptions>
      </v3:InitialRequest>
   </soapenv:Body>
</soapenv:Envelope>

This is my Ruby code making the SOAP Request.

<%= client.call(:start_transaction, message: { "v3:InitialRequest" => { "v3:Identity" => { "v3:Name" => { "v3:FirstName" => "michael", "v3:LastName" => "Smith"}, "v3:Address" => {"v3:AddressLine" => "233 Cambie St", "v3:City" => "Vancouve", "v3:Province" => "BC", "v3:PostalCode" => "V6B0E8"}, "v3:DateOfBirth" => {"v3:Day" => "26", "v3:Month" => "08", "v3:Year" => "1984"}, "v3:PhoneNumber" => {"v3:PhoneNumber" => "6048885555"}}}, attributes: { "v3:Address" => { "timeAtAddress" => "72", "addressType" => "current"}}) %>

The error message that is returned: (soap:Client) Error reading XMLStreamReader.

Can someone point me in the right direction?

Please try the below way by sending one string of that xml

xml_str = '<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" 
xmlns:v3="http://eid.equifax.com/soap/schema/canada/v3"><soapenv:Header/><soapenv:Body><v3:InitialRequest><v3:Identity><v3:Name><v3:FirstName>Michael</v3:FirstName><v3:LastName>Smith</v3:LastName></v3:Name><!--1 to 3 repetitions:--><v3:Address timeAtAddress="72" addressType="current"><v3:HybridAddress><v3:AddressLine>1028 Summerville</v3:AddressLine><v3:City>Vancouver</v3:City><v3:Province>BC</v3:Province><v3:PostalCode>V7B0A8</v3:PostalCode></v3:HybridAddress></v3:Address><v3:DateOfBirth><v3:Day>26</v3:Day><v3:Month>08</v3:Month><v3:Year>1984</v3:Year></v3:DateOfBirth><v3:PhoneNumber phoneType="current"><v3:PhoneNumber>6045556666</v3:PhoneNumber></v3:PhoneNumber></v3:Identity><v3:ProcessingOptions><v3:Language>English</v3:Language></v3:ProcessingOptions></v3:InitialRequest></soapenv:Body></soapenv:Envelope>'

client.call(:start_transaction, xml: xml_str)

Remember you can use here document to made the xml string but the string should not consis "\\n

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM