| From: | PaulU71555(at)aol(dot)com |
|---|---|
| To: | pgsql-jdbc(at)postgresql(dot)org |
| Subject: | Netscape.security.AppletSecurityException on db Connect |
| Date: | 2002-05-29 21:57:03 |
| Message-ID: | 1a8.2f89dcf.2a26e0ef@aol.com |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-jdbc |
Greetings.
I attempt the following in an applet named PWEntry.class and in an application
named TextInterface.class to connect to a local postgres database named ctfilm
as user Paul with no password:
url = "jdbc:postgresql://127.0.0.1/ctfilm?user=Paul&password=NONE";
.
.
DriverManager.getConnection(url, "Paul", "");
This works fine from command line application; trying to load the applet into
Netscape produces this error:
netscape.security.AppletSecurityException: security.Couldn't connect to
'127.0.0.1' with origin from 'local-classpath-classes'.
The line in my html is:
<APPLET CODE = "PWEntry.class">
</APPLET>
I'm using Apache. Environment variable CLASSPATH contains the path of the
html
file calling the applet, which is /var/www/html/Yvonne. In httpd.conf, I have
the following lines:
<Directory /var/www/html/Yvonne>
Options All Multiviews
Allow Override None
Order allow,deny
Allow from all
</Directory>
I am now out of my depth, and would be grateful for any assistance anyone can
throw my way.
Paul
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Tim Freund | 2002-05-30 02:13:20 | Re: Netscape.security.AppletSecurityException on db Connect |
| Previous Message | Edd Stanley | 2002-05-29 01:10:07 | Big problem inserting Russian characters into Postgres using JDBC |