RE: Calling an External Java Class from PL/SQL

2002-05-16 Thread Peter . McLarty
: Calling an External Java Class from PL/SQL Hi, Pete, PL/SQL has an interface to built-in Oracle JServer. You can load external class here and call it, but at this point class is not external anymore, right? If you need access to the class on a different JVM - true external class, Java provides you RMI

Re: Calling an External Java Class from PL/SQL - FORGET IT

2002-05-15 Thread Peter Barnett
As is often the case, rtfm. Should have dug deeper first! --- Peter Barnett [EMAIL PROTECTED] wrote: We have a developer who has asked this question. How do you call an external java class from a pl/sql stored procedure? You can stick my knowledge of java in a thimble. Can this be

RE: Calling an External Java Class from PL/SQL

2002-05-15 Thread Vadim Gorbounov
Hi, Pete, PL/SQL has an interface to built-in Oracle JServer. You can load external class here and call it, but at this point class is not external anymore, right? If you need access to the class on a different JVM - true external class, Java provides you RMI, EJB, Corba interfaces. Oracle