Here what I am doing and please tell me what I am doing wrong.
Client code:
countryDS.dataURL = 'accidents.asp?datarequest=xml';
countryDS.dataProtocol = 'postParams';
frmGeneral.saveData();
from here it goes to accidents.asp with no problem.
accidents.asp:
<SCRIPT LANGUAGE="JavaScript" RUNAT="Server">
var oComObj = new ActiveXObject('webconnector.connector');
oComObj.minitiate(Server, Request, Response, Session);
then it goes to my com object with still no problem.
Code in my com:
poClientData = CREATEOBJECT("Msxml2.FreeThreadedDOMDocument")
poClientData.async = .F.
poClientData.Load(Request)
I am checking poClientData.xml and it's empty.
What am I doing wrong?
Client code:
countryDS.dataURL = 'accidents.asp?datarequest=xml';
countryDS.dataProtocol = 'postParams';
frmGeneral.saveData();
from here it goes to accidents.asp with no problem.
accidents.asp:
<SCRIPT LANGUAGE="JavaScript" RUNAT="Server">
var oComObj = new ActiveXObject('webconnector.connector');
oComObj.minitiate(Server, Request, Response, Session);
then it goes to my com object with still no problem.
Code in my com:
poClientData = CREATEOBJECT("Msxml2.FreeThreadedDOMDocument")
poClientData.async = .F.
poClientData.Load(Request)
I am checking poClientData.xml and it's empty.
What am I doing wrong?
Comment