J2EE Client
If I want to run a J2EE client in a remote machine, what is the minimum configuration I need to have besides installing jdk?Do I need to install j2ee on the machine as well? Or can I getaway with having the client .jar file only?
[243 byte] By [
zero0008] at [2007-9-26 14:02:20]

> If I want to run a J2EE client in a remote machine,
> what is the minimum configuration I need to have
> besides installing jdk?Do I need to install j2ee on
> the machine as well? Or can I getaway with having the
> client .jar file only?
No you don't need the full J2EE.
Just the remote interfaces, as included in the JAR.
Thanks Martin. I have my remote client working now with classpath set to myclient.jar and j2ee.jar. However, is it a "must" to include j2ee.jar as well? If I don't include it, I have the NoInitialContextException.