Alright, I'm back.
Thanks for all your help. I'm a little rusty on the Servlets so if you could give me a hand I'd appreciate it. In the servlet, I just create a new URL object which is the site I want to pull the html from then I open the stream on that URL object and store the html read from the InputStream in a String variable. I then create a new PrintWriter object by calling the response.getWriter() and send the html source back to the applet by calling the println() method on the PrintWriter and pass the html source string into that println() method. How does that sound so far? Would that return the html source to the applet?
My next problem is how would my applet accept the string from the servlet. I'd create a string variable in the applet as well and set it equal to what?
Basically, how would I call the servlet from the applet? If you could provide some code example, that would be superb. If I'm still sounding a little sketchy or I'm not being clear enough, please let me know.
Thanks again,
Wes