downloading HTML source code in an online applet

I'm working on an applet that involves downloading and parsing through html source code. To do this, I'm using the java.net.Socket class. My applet works fine in an Applet Viewer, but throws an exception (I'm not sure which one) when I try to upload it to a webpage.

I've been reading various forums, and it sounds like you have to make your applet trusted by signing it, but I was wondering if there was any other way of accomplishing this. For example, is there any way to accomplish this without using sockets?

[531 byte] By [alexMFNa] at [2007-10-3 5:38:54]
# 1

A little inspiration for you.

http://forum.java.sun.com/thread.jspa?threadID=391563&messageID=1693763

The information from the forums you've read is valid. There's no way to make connections (plain Sockets or URLConnections) to other than the host site from an applet unless it's signed. So why not just go ahead and sign it?

/Morten

MortenHjerlHansena at 2007-7-14 23:46:35 > top of Java-index,Security,Signed Applets...