On Friday 06 December 2002 12:23 pm, you wrote: > Does anyone know where to find a good tutorial on how to use thinlets? > > 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. > > Thanks, > > Rob Edwards
Can't speak to the thinlets question. As for JDBC, try this: http://java.sun.com/docs/books/tutorial/jdbc/index.html Also, since you're trying to access JDBC via an applet keep in mind that applets by default have significant security restrictions on network connectivity: an applet can only open a socket back to the machine that served it up. If you want the applet to connect to an Oracle DB, then either: 1) the applet needs to be server up by a web server running on the same host as Oracle, or 2) you'll have to sign the applet and have Java prompt the user to allow the applet to access another host. HTH, DR ____________________________________________________ To change your JDJList options, please visit: http://www.sys-con.com/java/list.cfm Be respectful! Clean up your posts before replying ____________________________________________________
