Can this be done?

Ok, well, I was wondering if it is possible to check a website(without loading it into a web browser or anything like that) for a string or something similar using a proxy? IE, can I check www.google.com using "165.228.132.11:80"(working proxy last time I checked) for the strings "Web" or "Images"? Thanks.

[314 byte] By [Ni-alla] at [2007-11-27 11:35:10]
# 1

Yes.

http://tinyurl.com./e6m6

~

yawmarka at 2007-7-29 17:01:18 > top of Java-index,Java Essentials,New To Java...
# 2

I should have saw that coming. ;)

How do I check to see if a website contains strings of my choice using a proxy, and without opening a web browser or something similar to that?

Ni-alla at 2007-7-29 17:01:18 > top of Java-index,Java Essentials,New To Java...
# 3

> How do I check to see if a website contains strings

> of my choice using a proxy, and without opening a

> web browser or something similar to that?

You'll have to connect, get the server response, and check the contents for your string. You can roll your own the hard way or use a 3PL like Jakarta Commons HttpClient.

~

yawmarka at 2007-7-29 17:01:18 > top of Java-index,Java Essentials,New To Java...
# 4

>You'll have to connect, get the server response, and check the contents for your string.

Thanks. I'll do that. :)

Ni-alla at 2007-7-29 17:01:18 > top of Java-index,Java Essentials,New To Java...