3.2.0

Send xml File

Hi,

I am using acivewidgets. I just wanna to send xml file. I didn't get any way so far. Please let me know whether is it possible to send xml file using active widgets.
Vimal Kumar Srivastava,Madhepura,India
January 25,
Hi,

Is there anybody, who can help me to come out the problem.
Vimal Kumar Srivastava,Madhepura,India
January 27,
Sorry,

I would be glad to help but I don't really understand what you are trying to achieve. Could you please explain in more details?
Alex (ActiveWidgets)
January 27,
Hi,
Thanks for reply. Actually i wannt to retrieve or send the data from xml file, i have vbscript code for this
Set objHttp2 = CreateObject("Microsoft.XMLHTTP")
Set objXmlFunction2 = CreateObject("MSXML.DOMDocument")
objXmlFunction2.loadXML "<Function Name=""ChangeJobInventory""><Para/></Function>"
Set objNode2 = objXmlFunction2.selectSingleNode("Function/Para")
objNode2.setAttribute "JobInventoryID",jobInventoryID
objHttp2.Open "POST","Processors\JobInventory.asp" ,False
objHttp2.Send objXmlFunction2.xml
parent.frame_nav.location.reload()

which works fine, but vbscript supports only for IE so i tried to convert this code in javascript using

objHttp2 = new ActiveXObject("Microsoft.XMLHTTP");
objXmlFunction2 = new ActiveXObject("MSXML.DOMDocument");
objXmlFunction2.loadXML("<Function Name=GetInventoryDate><Para/></Function>");
objNode2 = objXmlFunction2.selectSingleNode("Function/Para");
objHttp2.Open("POST", "Processors\JobInventory.asp", false);
objHttp2.Send(objXmlFunction2.xml);
parent.frame_nav.location.reload();

But in some point it fails to support in Mozilla. I wanna to know is there any other way rather than "ActiveXObject("Microsoft.XMLHTTP")"?
Vimal Kumar Srivastava,Madhepura,India
February 19,

This topic is archived.

See also:


Back to support forum