Thanks for the replies.
In effect I just need to auto-fill and submit the form so I think I am
going to use the "GET or POST" solution.
The only problem is that I never worked directly with HTTP requests so
any suggestion (links or tutorials) is greatly appreciated...
Thanks again.
sponxe
Ah just in case I change my mind in the future do you have suggestion
for a third party library that I could get?
Thanks
sponxe
> Thanks for the replies.
>
[quoted text clipped - 3 lines]
> The only problem is that I never worked directly with HTTP requests so
> any suggestion (links or tutorials) is greatly appreciated...
If you don't already know socket programming, read
http://java.sun.com/docs/books/tutorial/networking/index.html
Once you know socket programming, you just need to learn the HTTP
protocol. The specifications for it are called "RFCs" (Request For
Comments), so google for "HTTP RFC" to find the RFCs (there are several)
that are relevant to HTTP. However, personally, I find it difficult to learn
protocols reading only the RFCs, so you might have better luck using a
packet-sniffer and intercept the packets that a "real" webbrowser (like IE
or FireFox) send out, and just reverse engineering what's going on.
- Oliver
smbear - 24 Nov 2006 10:04 GMT
>> Thanks for the replies.
>>
[quoted text clipped - 14 lines]
> packet-sniffer and intercept the packets that a "real" webbrowser (like IE
> or FireFox) send out, and just reverse engineering what's going on.
I've had similar problem. Everything I used is BufferedReader,
InputStreamReader, URL for downloading HTML pages plus URLEncoder for
posting form entries. It seems to be good enough for HTTP GET method. I
didn't need to learn HTTP protocol.
Tomek Duda
mailfootball@gmail.com - 25 Nov 2006 11:35 GMT
Thanks for all the replies.
I will settle for the GET and POST approach to the problem and now I
have all the information to perform the op and (before that) learn more
on the subject.
Thanks again!
sponxe
sponxe - 25 Nov 2006 13:50 GMT
Thanks for all the replies.
I will settle for the GET and POST approach to the problem and now I
have all the information to perform the op and (before that) learn more
on the subject.
Thanks again!
sponxe