Question
How to use socket to make calls to https server and get xml as a response.
Hello.
I am trying to use socket in javascript to replace calls that I have like the following
PMString pmsAux("GET /Trebol/getIPLocal.do");
pmsAux.Append("?sessionId=");
pmsAux.Append("indesign");
pmsAux.Append(" HTTP/1.0");
pmsAux.Append ("\r\n");
pmsAux.Append("Cookie:");
pmsAux.Append("JSESSIONID=");
pmsAux.Append(jSessionId);
pmsAux.Append ("\r\n\r\n");
in c++ that also use a socket library to use HTTPS. The response returned by the server is in XML. Can someone help me or tell me if there is any example of calls to a server over HTTPS that receive an XML response.
Greetings.
