2 messages in com.mysql.lists.javaRe: Applets and JDBC
FromSent OnAttachments
Nikolaus J. Sucher20 Jul 1999 08:17 
Cris Perdue20 Jul 1999 17:45 
Subject:Re: Applets and JDBC
From:Cris Perdue (cr@perdues.com)
Date:07/20/1999 05:45:34 PM
List:com.mysql.lists.java

Let's see, first of all this is a standard beginner's problem, but it's been a while since I've dealt with it.

First of all, applets only work in some browsers when you use an http: URL, not "file:". Next, localhost is always IP address 127.0.0.1. The URL you give for the Web page must refer to the same host as the CODEBASE in the Applet tag. If you are using a test page, look at the Applet tag in the page, and use the same hostname in the URL for the page itself.

Hopefully these are the right instructions.