Software Development Network>> Visual FoxPro>> Http Post
I need to simulate an http post and retrieve the Resulting Html source Code.
How can I do this
Thanks, Sammy
My problem is that UPS wants two XML files concatenated into one Post, as you can see in the link CetinBasoz provide.
The send method of MSXML2.ServerXMLHTTP issues an error because it’s not a valid XML File. Can i turn off this Validation
Check:
http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=321114&SiteID=1
You need to install MSXML.
http://www.microsoft.com/downloads/details.aspx FamilyID=3144b72b-b4f2-46da-b4b6-c5d7485f2b42&DisplayLang=en
Is there an MSXML2 equivalent
Http Post
mu2
Martin Carolan
poster = CreateObject("Microsoft.XMLHTTP")
and
poster = CreateObject("Msxml2.XMLHTTP")
But i get an error on the send if i the post string is not a valid XML file..
My problem is that UPS wants two XML files concatenated into one Post, as you can see in the link CetinBasoz provide.
The send method of MSXML2.ServerXMLHTTP issues an error because it’s not a valid XML File. Can i turn off this Validation
Thanks,
Sammy
allanon
Check:
http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=321114&SiteID=1
Sonymony
You need to install MSXML.
http://www.microsoft.com/downloads/details.aspx FamilyID=3144b72b-b4f2-46da-b4b6-c5d7485f2b42&DisplayLang=en
B. Lefferdink
Can i use MSXML2.ServerXMLHTTP
I tried but i get an error on the send if the post string is not a valid XML file..
Is there an MSXML2 equivalent
Sammy