On Thu, 01 Jan 2009 09:55:56 -0800, Author wrote:
> On Jan 1, 11:48Â*am, Arne Vajhøj <a...@vajhoej.dk> wrote:
>> Author wrote:
>> > So, in other words, I can install JDK6 on my laptop where I am the
>> > admin, and then copy the installation folder of JDK6 to a USB drive
>> > and dump it to my work station?
>>
>> With the limitations Stefan described: yes.
>>
>> Arne
>
> That sounds cool since I rarely do applet anyway. I have installed the
> version which says "GlassFish Java EE + JDK" at
>
> http://java.sun.com/javaee/downloads/index.jsp
>
> so that I can practice both standard Java and JEE. I will use Tomcat as
> my web server. It's been a few years since I last worked with Java.
I might add, Glassfish does have a web container - J2EE servers generally
do. So you don't need Tomcat.
That's not to say that a production J2EE server may not use a different
web server. For example, if developing with Oracle's oc4j standalone, you
generally just use the web container built in. But in production you may
use Apache httpd as the web container (in fact Oracle Application Server
is basically oc4j + Apache httpd + JServ with some bells and whistles).
In your case, though, Glassfish will be all you need. When you create a
web app (in a J2EE app or not) and deploy it (say through NetBeans) you
can immediately access it with your browser.
AHS