Is this posible ?
Im doing a monitor for a specific database table and rigth now, my program search for a new record each N seconds, but I would like to create a trigger that notify to the webserver when new records are added, so I can code something like
URL("http://localhost/recordInserted.jsp").openConnection();
inside a
Java stored procedure.
Is this posible ? are all the standard java features available inside the Oracle Java stored procedures or there's only a few of them. Is there anything special about the security manager ?
Thanks in advance.