Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
POST Multipart data from InternetExplorer.Application
Message
General information
Forum:
Visual FoxPro
Category:
Internet applications
Environment versions
Visual FoxPro:
VFP 9
OS:
Windows XP SP2
Network:
Windows 2003 Server
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01132344
Message ID:
01132449
Views:
14
Hi Don,

It's not exactly an answer to your question; I apologize for that. I just think it may be better using MSXML2.ServerXMLHTTP object instead of IE object. Unless the solution is to be deployed on Win9*/Me systems.
oHttp = CreateObject('MSXML2.ServerXMLHTTP')
WITH oHttp
	.open("POST", m.cUrl)
	.setRequestHeader("SomeHeader", "0")
	.send(m.cBody)
	? .responseText
	* and so on...
ENDWITH
I also have VFP HttpRequest class that implements similar HTTP functioniality using WinINet API calls (membership required). It works on Win9*/Me/XP/2K systems.

Custom HttpRequest class (WinINet)
http://www.news2news.com/vfp/?example=185
Previous
Reply
Map
View

Click here to load this message in the networking platform