SOAP headerless

Summary
To call one of the webservices methods, you need to be authenticated.
The SOAP “no headers” endpoint takes a session token (reactid) as its first parameter.

Motivation

To call one of the webservices methods, you need to be authenticated.  With the other SOAP interfaces, this is done using a SOAP header, which contains either a session token or a username and password.

Some clients, however, do not support sending SOAP headers.  The headerless SOAP interface makes it possible to use SOAP, without using SOAP headers.  Authentication is done by sending extra parameters.

WSDL location

The SOAP “no headers” endpoint takes a session token (reactid) as its first parameter.

main WSDLhttps://ws1.webservices.nl/soapnoheaders?wsdl
fallback WSDLhttps://ws2.webservices.nl/soapnoheaders?wsdl

The SOAP “simple” endpoint takes the username and password as its first and second parameter.

main WSDLhttps://ws1.webservices.nl/soapsimple?wsdl
fallback WSDLhttps://ws2.webservices.nl/soapsimple?wsdl

Other than its parameters, this endpoint uses the same protocol as the SOAP RPC/Encoded interface.

Read more