Hello...
I need technical advices here.
I am writing an EJB application. For the container, I use
WEBLOGIC. Database server is ORACLE (OCI).
When the java client wants to access the bean, it must set
up an initial context, right ?
I do this:
Properties p = new Properties();
p.put(Context.INITIAL_CONTEXT_FACTORY,
"weblogic.jndi.WLInitialContextFactory");
p.put(Context.PROVIDER_URL, url);
Now, since I use : weblogic.jndi.T3InitialContextFactory,
the client needs A LOT of WEBLOGIC classes. I think it is
bad for distributed application using jAVA, since the client
must have these classes (either by installing the WEBLOGIC
or by merely copying megabytes of these classes).
Are there any solution of this program ?
Please help.
Thank you very much.
===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff EJB-INTEREST". For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".