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]
# 1

> 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.

MartinS. at 2007-7-2 15:15:12 > top of Java-index,Other Topics,Patterns & OO Design...
# 2
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.
zero0008 at 2007-7-2 15:15:12 > top of Java-index,Other Topics,Patterns & OO Design...
# 3
<i>NoInitialContextException</i>This is a JNDI Error, Check that your class path includes a JRE/JDK, that include JNDI or add that seperatly.
MartinS. at 2007-7-2 15:15:12 > top of Java-index,Other Topics,Patterns & OO Design...