HTTP Post / XML Problem

D

DrNASA

I want to submit my form to an ASP (not ASP.NET) page.
I have configured the Submit settings to point to the correct ASP page and
have configured the Submit settings to use Web Site (HTTP)

Looking at the help file for InfoPath:

http://office.microsoft.com/en-us/assistance/HA011444861033.aspx

it says that InfoPath sends the form an XML data using HTTP POST request.

I need help referencing the posted XML data in the ASP page.
Does anybody know how to do that?

Anytime I use ASP to refernece an existing XML document, I use this code:

*********************
Dim objXML

Set objXML = Server.CreateObject("microsoft.XMLDOM")

objXML.Load (Server.MapPath("Template1.xml"))

*********************
where Template1 would be the XML file.

Would this work? Would I just use the formname.xml or can I just use a
Request("object") instead of the code above?

Thanks
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top