RE: Newbie:web application

2003-09-04 Thread Pitre, Russell
ROFL 




-Original Message-
From: John Turner [mailto:[EMAIL PROTECTED] 
Sent: Friday, August 29, 2003 11:57 AM
To: Tomcat Users List
Subject: Re: Newbie:web application



ROFL

Shapira, Yoav wrote:

> Howdy,
> Thank you for the clear instructions ;)  I believe I have a fairly 
> firm grasp on webapp structure as well as the rest of tomcat ;)  But 
> I'm sure the original poster whose question I answered will find your 
> response beneficial.
> 
> Yoav Shapira
> Millennium ChemInformatics
> 
> 
> 
>>-Original Message-
>>From: Schalk [mailto:[EMAIL PROTECTED]
>>Sent: Friday, August 29, 2003 11:30 AM
>>To: 'Tomcat Users List'
>>Subject: RE: Newbie:web application
>>
>>
>>
>>Yoav
>>
>>Ok, first your webapp folder structure:
>>Tomcat/webapps/myApp
>>Tomcat/webapps/myApp/WEB-INF/ Tomcat/webapps/myApp/WEB-INF/classes/  #

>>ALL class files go here Tomcat/webapps/myApp/WEB-INF/lib/  # All .jar 
>>files goes here Tomcat/webapps/myApp/WEB-INF/web.xml  # This is your 
>>deployment
> 
> descriptor
> 



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Newbie:web application

2003-08-29 Thread John Turner
ROFL

Shapira, Yoav wrote:

Howdy,
Thank you for the clear instructions ;)  I believe I have a fairly firm
grasp on webapp structure as well as the rest of tomcat ;)  But I'm sure
the original poster whose question I answered will find your response
beneficial.
Yoav Shapira
Millennium ChemInformatics


-Original Message-
From: Schalk [mailto:[EMAIL PROTECTED]
Sent: Friday, August 29, 2003 11:30 AM
To: 'Tomcat Users List'
Subject: RE: Newbie:web application


Yoav

Ok, first your webapp folder structure:
Tomcat/webapps/myApp
Tomcat/webapps/myApp/WEB-INF/
Tomcat/webapps/myApp/WEB-INF/classes/  # ALL class files go here
Tomcat/webapps/myApp/WEB-INF/lib/  # All .jar files goes here
Tomcat/webapps/myApp/WEB-INF/web.xml  # This is your deployment
descriptor



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


RE: Newbie:web application

2003-08-29 Thread Shapira, Yoav

Howdy,
Thank you for the clear instructions ;)  I believe I have a fairly firm
grasp on webapp structure as well as the rest of tomcat ;)  But I'm sure
the original poster whose question I answered will find your response
beneficial.

Yoav Shapira
Millennium ChemInformatics


>-Original Message-
>From: Schalk [mailto:[EMAIL PROTECTED]
>Sent: Friday, August 29, 2003 11:30 AM
>To: 'Tomcat Users List'
>Subject: RE: Newbie:web application
>
>
>
>Yoav
>
>Ok, first your webapp folder structure:
>Tomcat/webapps/myApp
>Tomcat/webapps/myApp/WEB-INF/
>Tomcat/webapps/myApp/WEB-INF/classes/  # ALL class files go here
>Tomcat/webapps/myApp/WEB-INF/lib/  # All .jar files goes here
>Tomcat/webapps/myApp/WEB-INF/web.xml  # This is your deployment
descriptor
>file.
>
>In tomcat if you go to:
>Tomcat/conf/ you will find a file called server.xml. Open up this file
and
>find the area containing the following:
>
>
>
>
>After this you can set the context for your own web-app, for example:
>
>
>Stop and start Tomcat and you should be able to access your application
by
>going to:
>http://localhost:8080/myApp/
>
>
>Kind Regards
>Schalk Neethling
>Volume4.Development.Multimedia.Branding
>emotionalize.conceptualize.visualize.realize
>Tel: +27125468436
>Fax: +27125468436
>email:[EMAIL PROTECTED]
>web: www.volume4.co.za
>
>
>:: -Original Message-
>:: From: Shapira, Yoav [mailto:[EMAIL PROTECTED]
>:: Sent: Friday, August 29, 2003 4:54 PM
>:: To: Tomcat Users List
>:: Subject: RE: Newbie:web application
>::
>::
>:: Howdy,
>::
>:: >I'm developing a web application but I don't understand where i
have to
>:: put
>:: >my context: I have a folder /myApp, under this I have the standard
>:: folders
>:: >for a web application.
>:: >
>:: >I put alla in /webapps but nothing!
>::
>::
>:: So you have /webapps/myApp, and under it WEB-INF, etc?
>:: That's good.  Do you have a web.xml file under WEB-INF?  What errors
are
>:: you getting in the log?
>::
>:: Yoav Shapira
>::
>::
>::
>::
>:: This e-mail, including any attachments, is a confidential business
>communication,
>:: and may contain information that is confidential, proprietary and/or
>privileged.  This
>:: e-mail is intended only for the individual(s) to whom it is
addressed,
>and may not be
>:: saved, copied, printed, disclosed or used by anyone else.  If you
are
>not
>the(an)
>:: intended recipient, please immediately delete this e-mail from your
>computer system
>:: and notify the sender.  Thank you.
>::
>::
>::
-
>:: To unsubscribe, e-mail: [EMAIL PROTECTED]
>:: For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>
>-
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]




This e-mail, including any attachments, is a confidential business communication, and 
may contain information that is confidential, proprietary and/or privileged.  This 
e-mail is intended only for the individual(s) to whom it is addressed, and may not be 
saved, copied, printed, disclosed or used by anyone else.  If you are not the(an) 
intended recipient, please immediately delete this e-mail from your computer system 
and notify the sender.  Thank you.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Newbie:web application

2003-08-29 Thread Schalk


Yoav

Ok, first your webapp folder structure:
Tomcat/webapps/myApp
Tomcat/webapps/myApp/WEB-INF/
Tomcat/webapps/myApp/WEB-INF/classes/  # ALL class files go here 
Tomcat/webapps/myApp/WEB-INF/lib/  # All .jar files goes here
Tomcat/webapps/myApp/WEB-INF/web.xml  # This is your deployment descriptor
file.

In tomcat if you go to:
Tomcat/conf/ you will find a file called server.xml. Open up this file and
find the area containing the following:




After this you can set the context for your own web-app, for example:


Stop and start Tomcat and you should be able to access your application by
going to:
http://localhost:8080/myApp/


Kind Regards
Schalk Neethling
Volume4.Development.Multimedia.Branding
emotionalize.conceptualize.visualize.realize
Tel: +27125468436
Fax: +27125468436
email:[EMAIL PROTECTED]
web: www.volume4.co.za
 

:: -Original Message-
:: From: Shapira, Yoav [mailto:[EMAIL PROTECTED]
:: Sent: Friday, August 29, 2003 4:54 PM
:: To: Tomcat Users List
:: Subject: RE: Newbie:web application
:: 
:: 
:: Howdy,
:: 
:: >I'm developing a web application but I don't understand where i have to
:: put
:: >my context: I have a folder /myApp, under this I have the standard
:: folders
:: >for a web application.
:: >
:: >I put alla in /webapps but nothing!
:: 
:: 
:: So you have /webapps/myApp, and under it WEB-INF, etc?
:: That's good.  Do you have a web.xml file under WEB-INF?  What errors are
:: you getting in the log?
:: 
:: Yoav Shapira
:: 
:: 
:: 
:: 
:: This e-mail, including any attachments, is a confidential business
communication,
:: and may contain information that is confidential, proprietary and/or
privileged.  This
:: e-mail is intended only for the individual(s) to whom it is addressed,
and may not be
:: saved, copied, printed, disclosed or used by anyone else.  If you are not
the(an)
:: intended recipient, please immediately delete this e-mail from your
computer system
:: and notify the sender.  Thank you.
:: 
:: 
:: -
:: To unsubscribe, e-mail: [EMAIL PROTECTED]
:: For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Newbie:web application

2003-08-29 Thread Shapira, Yoav

Howdy,

>I'm developing a web application but I don't understand where i have to
put
>my context: I have a folder /myApp, under this I have the standard
folders
>for a web application.
>
>I put alla in /webapps but nothing!


So you have /webapps/myApp, and under it WEB-INF, etc?
That's good.  Do you have a web.xml file under WEB-INF?  What errors are
you getting in the log?

Yoav Shapira




This e-mail, including any attachments, is a confidential business communication, and 
may contain information that is confidential, proprietary and/or privileged.  This 
e-mail is intended only for the individual(s) to whom it is addressed, and may not be 
saved, copied, printed, disclosed or used by anyone else.  If you are not the(an) 
intended recipient, please immediately delete this e-mail from your computer system 
and notify the sender.  Thank you.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Newbie:web application

2003-08-29 Thread Webmaster
Hi to all,

I'm developing a web application but I don't understand where i have to put 
my context: I have a folder /myApp, under this I have the standard folders 
for a web application.

I put alla in /webapps but nothing!

What i've forgot to do?

thanks,

Tiziana

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]