Santander Boleto Registrado via XML

3

I'm trying to migrate the system to Santander's registered tickets. I was finally able to receive the 2017 manual today.

1 - When I try to access the link to generate a ticket, it says "403 Forbidden"

  

link

2 - Is it a SOAP request? In the manual always speak in 'XML', I saw that it seems to be a SOAP request, but where is the WSDL?

3 - Any idea how to sign with such a client certificate in Linux / PHP?

    
asked by anonymous 11.05.2017 / 14:37

1 answer

3

Nauro, the Santander bank service, only accepts soap, does not work with https request, even using certificate. Using Linux, I tried with ruby (savon) and python (zeep), I only had success with nodejs, I got the client service authenticated using the certificate and passing the password. It does not serve certificate without an AC, certifying authority. I got the certificate from GlobalSign, type (PersonalSign 2 Pro), link , $ 89.00. After the completed purchase process, you will receive a pfx file, from which you can extract your certificate and your key, attaching them to your service. Once you have the certificate in hand, you can access link and have the return of operations . The choice of the PersonalSign 2 Pro plan is because it certifies the existence of the organization / company, this was requested by Santander.

    
11.05.2017 / 15:59