savonrb / nori

XML to Hash translator

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Nori dynamic require breaks in Jruby

mrnovalles opened this issue · comments

Using MRI Ruby there's no issue to load a library or a module dynamically. However, in Jruby this is not thread safe per se and should be handled with care:

You should take care in the following situations: concurrent requires, or lazy requires that may happen at runtime in a parallel thread. If objects are in flight while classes are being modified, or constants/globals/class variables are set before their referrents are completely initialized, other threads could have problems.
from https://github.com/jruby/jruby/wiki/Concurrency-in-jruby#thread_safety

Here's a simple XML parsing code snippet that shows the problem in JRuby and runs fine in MRI.

xml = '<?xml version="1.0" encoding="UTF-8"?> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <soapenv:Body> <ns1:response xmlns:ns1="urn:api.example.de/soap11/RpcSession" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"> <loginReturn xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="soapenc:string">foobar</loginReturn> </ns1:response> </soapenv:Body> </soapenv:Envelope>'

100.times.map do
  Thread.new do
    nori_options = {
      :strip_namespaces=>true,
      :advanced_typecasting=>true,
      :parser=>:nokogiri
    }
    nori = Nori.new(nori_options)
    p nori.parse(xml)
  end
end.each(&:join)

However, adding the require "nori/parser/nokogiri" statement as seen in https://github.com/savonrb/nori/blob/master/lib/nori.rb#L53 fixes the problem for Jruby.

To try this, with the above code, I did this:

  1. make the above text into the file o.rb
  2. run it with rvm use jruby-9.2.12.0 do ruby -rnori o.rb
  3. run it with rvm use 2.7.1 do ruby -rnori o.rb

Results: JRuby stutters a little bit with the newlines. All content is printed.

Attempt: Added the require "nori/parser/nokogiri" statement to the top of the file: no change.

Attempt: Added the require "nori/parser/nokogiri" statement to the top of Thread.new block: no change.

Are there more details I should know about, about how JRuby fails?

jruby-9.2.12.0 output

{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}

{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}

{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}

{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}

{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}



{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}

{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}

{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}

{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}


{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}

Ruby 2.7.1 output

{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}
{"Envelope"=>{"Body"=>{"response"=>{"loginReturn"=>"foobar", "@xmlns:ns1"=>"urn:api.example.de/soap11/RpcSession", "@soapenv:encodingStyle"=>"http://schemas.xmlsoap.org/soap/encoding/"}}, "@xmlns:soapenv"=>"http://schemas.xmlsoap.org/soap/envelope/", "@xmlns:xsd"=>"http://www.w3.org/2001/XMLSchema", "@xmlns:xsi"=>"http://www.w3.org/2001/XMLSchema-instance"}}

I'm sorry this issue was submitted a long time ago, feel free to close it if you feel like the issue is no longer relevant or inexistent. Thanks.

Thanks for taking the time to answer, after a long pause in this conversation.

I'll close this, and say thank you for reporting it so clearly.

👋 See you next time!