This week's book giveaway is in the Programmer Certification forum.
We're giving away four copies of OCP Oracle Certified Professional Java SE 21 Developer (Exam 1Z0-830) Java SE 17 Developer (Exam 1Z0-829) Programmer’s Guide and have Khalid Mughal and Vasily Strelnikov on-line!
See this thread for details.
  • Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

Applet Security

 
Ranch Hand
Posts: 115
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I am trying to use an applet to connect to a database that resides on another computer.
The database server is not on the client computer where the applet is downloaded nor is it on the web server where the applet is located.
I have granted socket permission to the applet codebase and have added the policy file into the "master security properties file" (java.security file).
However when I try to access the page containing the applet using Internet Explorer, it still gives a java.security.AccessControlException.
The strange thing is, I am able to connect to the database using AppletViewer.
Can somebody tell me what's wrong with IE?
BTW, I am using a Java Plug-In 1.3.1.
Please help.
 
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
may be im giving it after long time .. U try to do applet-jdbc communication with applet -servlet communication.. It will solve ur problem i hope.. Do the database part in the servlet and send the data to the applet...

venkat
 
Saloon Keeper
Posts: 28665
211
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Look more closely at your security setup. The AppletViewer isn't as tightly confined to the "sandbox" as a browser is.
Venkat's right, though. Unless you're writing apps for an environment that's rigidly controlled, it's nothing but heartache to try and talk from a web client directly to a DBMS. Even if you get your applet signed and the security all cleared, someone else's firewall can block you.
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic