I am trying to make a product install that will install a java class into Oracle, so it can be used by a function.

What is the best way to do this?

We are currently using loadjava.bat, but this is only available on a machine with a "Developer" version of the client installed.

I read about dbms_java.loadjava, but this does not seem to work for me. Nothing happens (no message, no load) when I try to run this procedure from SQL*Plus.

begin
dbms_java.loadjava('GUID.java');
end;
/

Any ideas?