> Also, I'm looking for a tutorial on how to provide JDBC access to a java > applet running in a web browser. For example, I want to connect an applet > showing some data to a backend oracle database without requiring any > oracle > or data setup on each workstation.
you do not need a tutorialfor that one ;o) just use jdbc inside the applet as usual and wrap the driver classes into a .jar with your applet code (caveat 1: try to get "lean" drivers ;o) caveat 2: you may have to un-jar the driver-files first, putting the whole .jar-file containing the driver classes into the applet's .jar-file will not work) keep in mind that applets by default only may connect to their originating server. if your oracle-db is on another machine than the one that serves your applet(s), the user has to allow this explicitely. there are lots of resources on security, security managers, signing applets etc. on java.sun.com hope this helps. -- +++ GMX - Mail, Messaging & more http://www.gmx.net +++ NEU: Mit GMX ins Internet. Rund um die Uhr f�r 1 ct/ Min. surfen! ____________________________________________________ To change your JDJList options, please visit: http://www.sys-con.com/java/list.cfm Be respectful! Clean up your posts before replying ____________________________________________________
