I've been trying to access the LDBWS interface via a node.js library, node-soap (
https://github.com/vpulim/node-soap), which simplifies the procedure of sending SOAP requests by parsing the WSDL, creating methods for each of the operations available, and also ensuring that the right namespaces are included in any requests.
However, it seems like the LDBWS wsdl is actually incomplete as far as namespaces goes, as it doesn't include any namespace which actually includes the AccessToken element required for authentication. While I appreciate that that namespace isn't actually required for the actual definition of the wsdl, the fact that it's not included and not referenced at all makes the autodiscovery used by node-soap (And probably other libraries) completely non-functional.
Is it possible to update the actual wsdl hosted to include this reference?