Re: Error with wodhttp (General questions)
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:
- Error with wodhttp - celtik, 2008-11-21, 21:31
- Re: Error with wodhttp - woddrazen, 2008-11-21, 22:00
- Re: Error with wodhttp - celtik, 2008-11-21, 22:23
- Re: Error with wodhttp - woddrazen, 2008-11-21, 22:45
- Re: Error with wodhttp - celtik, 2008-11-21, 22:56
- Re: Error with wodhttp - woddrazen, 2008-11-21, 23:29
- Re: Error with wodhttp - celtik, 2008-11-22, 05:15
- Re: Error with wodhttp - woddrazen, 2008-11-22, 12:06
- Re: Error with wodhttp - celtik, 2008-11-22, 12:33
- Re: Error with wodhttp - woddrazen, 2008-11-22, 12:06
- Re: Error with wodhttp - celtik, 2008-11-22, 05:15
- Re: Error with wodhttp - woddrazen, 2008-11-21, 23:29
- Re: Error with wodhttp - celtik, 2008-11-21, 22:56
- Re: Error with wodhttp - woddrazen, 2008-11-21, 22:45
- Re: Error with wodhttp - celtik, 2008-11-21, 22:23
- Re: Error with wodhttp - woddrazen, 2008-11-21, 22:00