I'm developing an online system in PHP that needs to consult a cloud DB. The provider documentation brings a C# code to access the external data. It brings a XML doc with the query result.
The problem is: I have no idea of how to do this access through the PHP system code, even send the user and password (that needs to be sent as well). I cannot provide the real code, but I made a change to show you how it is.
example.consulta.ws wsConsulta = new example.consulta.ws();
string Retorno = wsConsulta.WSCSB("Name","LastName","Age","user","password");
XmlDocument objXML = new XmlDocument();
XmlNode node;
objXML.LoadXml(Retorno);