I am trying to make a SOAP request using the ruby library Savon.

I am using the following code:

require "savon"

Savon.configure do |config|
    config.soap_version = 2  # use SOAP 1.2
    config.raise_errors = false
end

wsdl_logon = Savon::Client.new do
    wsdl.document = "https://api.affili.net/V2.0/Logon.svc?wsdl"
end

username = 'XXX'
password = 'YYY'

wsdl_logon.http.headers["Content-Type"] = "text/xml; charset=utf-8"

response = wsdl_logon.request "Logon" do
  soap.body = {'Username' => username, 'Password' => password, 'WebServiceType' => 'Product'}
end

if response.http_error?
    puts "Http Error!"
    puts y response.http_error
else
    puts "No Http Error!"
end

But I keep receiving 400 error messages ("bad request"). Or, if I remove the following line

wsdl_logon.http.headers["Content-Type"] = "text/xml; charset=utf-8"

I am receiving 415 error messages ("unsupported media type").

I have been using PHP to make these requests until now, and the following code always worked without problems:

$soap_logon = new SoapClient('https://api.affili.net/V2.0/Logon.svc?wsdl');
$token = $soap_logon->Logon(array(
    'Username'      => 'XXX',
    'Password'      => 'YYY',
    'WebServiceType'    => 'Product'
));

Can anybody point me to the right direction what a possible error source might be? I am completely lost right now.

Thank you for your help.

link|improve this question

20% accept rate
feedback

2 Answers

I would suggest looking at the XML sent by the PHP code, then comparing it with the XML sent by the Ruby Savon code, and check where the differences are. Then see whether you can modify your ruby code to generate the correct request.

link|improve this answer
feedback

I did as Tom De Leu suggested, and tried to remove as many differences in the generated SOAP requests in question as possible. But I still keep receiving 400 errors. Any hint on possible reasons for this would be highly appreciated.

This is the (working) Request generated by PHP (linebreaks in XML added for clarity):

POST /V2.0/Logon.svc HTTP/1.1
Host: api.affili.net
Connection: Keep-Alive
User-Agent: PHP-SOAP/5.2.0-8+etch16
Content-Type: text/xml; charset=utf-8
SOAPAction: "http://affilinet.framework.webservices/Svc/ServiceContract1/Logon"
Content-Length: 456

<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
    xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:ns1="http://affilinet.framework.webservices/types"
    xmlns:ns2="http://affilinet.framework.webservices/Svc"
>
    <SOAP-ENV:Body>
        <ns2:LogonRequestMsg>
            <ns1:Username>xxx</ns1:Username>
            <ns1:Password>yyy</ns1:Password>
            <ns1:WebServiceType>Product</ns1:WebServiceType>
        </ns2:LogonRequestMsg>
    </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

This is the (not working) request generated by Ruby (again, xml linebreaks added for clarity)

SOAP request: https://api.affili.net/V2.0/Logon.svc
Content-Type: text/xml; charset=utf-8, SOAPAction: http://affilinet.framework.webservices/Svc/ServiceContract1/Logon, Content-Length: 605

<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:wsdl="http://affilinet.framework.webservices/Svc"
    SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:ns1="http://affilinet.framework.webservices/types"
    xmlns:ns2="http://affilinet.framework.webservices/Svc"
>
    <SOAP-ENV:Body>
        <ns2:LogonRequestMsg>
            <ns1:Username>XXX</ns1:Username>
            <ns1:Password>YYY</ns1:Password>
            <wsdl:WebServiceType>Product</wsdl:WebServiceType>
        </ns2:LogonRequestMsg>
    </SOAP-ENV:Body>
</SOAP-ENV:Envelope>


HTTPI executes HTTP POST using the httpclient adapter
SOAP response (status 400):
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.