Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: 9i trigger to call a java program, outside oracle jvm
chris wrote:
> We need an oracle trigger or java stored procedure to be able to call
> a java application outside of the oracle jvm. Can this be done?
>
> From sun website, looks like JSP can only call java program inside
> oracle jvm. They also list a way around this, by using appserver and
> webservices approach.
>
> Anything else?
Well, presumably you're trying to avoid starting a new VM for this "java application" or you'd just use Runtime.exec(). The only way I can think of avoiding that is to have something that looks like a service running. It's not particularly difficult to roll your own simple SOAP substitute using UTL_TCP and a Java daemon.
-- Richard KuhlerReceived on Tue Nov 09 2004 - 16:47:05 CST
![]() |
![]() |