Re: Error with wodhttp - WeOnlyDo Discussion board

Re: Error with wodhttp (General questions)

by woddrazen, Friday, November 21, 2008, 23:29 (5845 days ago) @ celtik

Celtik,


You can download evaluation version of IEWach from IEWatch website (iewatch.com).

Here is some code that will show you how you should use wodHttpDLX in blocking mode:
[code]Set http1 = New wodHttpDLXCom
Dim i As Integer

http1.Blocking = True
http1.Get http://login.myspace.com/index.cfm?fuseaction=login.process

For i = 0 To http1.Response.Cookies.Count - 1
http1.Request.Cookies.Add http1.Response.Cookies(i).Name, http1.Response.Cookies(i).Value
Next i

http1.Request.FormPost.Add email , Text1.Text
http1.Request.FormPost.Add password , Text2.Text
http1.Request.FormPost.Add Remember , Remember
http1.Request.FormPost.Add Loginbutton , Login
...

http1.Post http://login.myspace.com/index.cfm?fuseaction=login.process

http1.Get new url after you are connected to server [/code]
Remember this is just example. I'm not sure that this will work as is with your server.


Drazen


Complete thread: