Apllet problem
233091Aug 12 2005 — edited Aug 14 2005I've an apllet that connect to a database by jdbc. The connect string is like that
jdbc:oracle:thin:user/pw@host:1521:SID
Where SID is a database running on the host, this is also the host where the applet is distributed. I've no problems with this. But now i was trying to access an database in a diferent host.
So i try jdbc:oracle:thin:user/pw@host:1521:SID1 where SID1 is a SID to a database in a machine (DBHOST) diferent from host. But when i try this i get in the apllet the following exception: access denied (java.net.SocketPermission DBHOST resolve).
Any hints on why i get this message?