Re: Receiving an HTTP POST
Ay,
I still clearly dont understand ur problem.
I will tell u a method and if u feel this is what u asked take it or else please explain ur problem clearly.
If u want to make a HTTP post to IIS from an application developed using VB then the application has to include internet transfer control which has a method called send
Inet1.Send "post", serverurl,...
try this out and once u succeed mail me
Bye
Re: Receiving an HTTP POST
There are two parts to receiving HTTP post...
First the data being posted must be sent as a parameter within the HTTP header e.g.
data=Whatever data is being sent
On the receiving end all you need is to set a variable to the request...
MyVar = Request("data")
Hope this helps.
Spectre