RE: Problem with my first webapp

2003-09-04 Thread Damien
Le mer 03/09/2003 à 17:54, Shapira, Yoav a écrit :
 Howdy,
 
 Can somebody provides me a complete tree with a simple application to
 start working on ? I think it would be a good idea if somebody
 'tar/gzip' the directory strutcure found in this page :
 http://jakarta.apache.org/tomcat/tomcat-5.0-doc/appdev/sample/
 so a beginner is able to start with a clean project.
 
 Have fun,
 
 http://www.apache.org/~yoavs/appdevSample.zip


Thanks it is useful


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



Re: Problem with my first webapp

2003-09-03 Thread Damien
Can somebody provides me a complete tree with a simple application to
start working on ? I think it would be a good idea if somebody
'tar/gzip' the directory strutcure found in this page :
http://jakarta.apache.org/tomcat/tomcat-5.0-doc/appdev/sample/
so a beginner is able to start with a clean project.


Thanks


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



Re: Problem with my first webapp

2003-09-03 Thread John Turner
$CATALINA_HOME/webapps/myApp
$CATALINA_HOME/webapps/myApp/hello.jsp
$CATALINA_HOME/webapps/myApp/WEB-INF
$CATALINA_HOME/webapps/myApp/WEB-INF/classes
$CATALINA_HOME/webapps/myApp/WEB-INF/lib
$CATALINA_HOME/webapps/myApp/WEB-INF/web.xml
hello.jsp:

%

String myVar = new String(Hello World);
out.println(div align=centerh2 + myVar = /h2/div);
%

http://localhost/myApp/hello.jsp

Post back when you are ready for servlets.

John

Damien wrote:

Can somebody provides me a complete tree with a simple application to
start working on ? I think it would be a good idea if somebody
'tar/gzip' the directory strutcure found in this page :
http://jakarta.apache.org/tomcat/tomcat-5.0-doc/appdev/sample/
so a beginner is able to start with a clean project.
Thanks

-
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: Problem with my first webapp

2003-09-03 Thread Shapira, Yoav

Howdy,

Can somebody provides me a complete tree with a simple application to
start working on ? I think it would be a good idea if somebody
'tar/gzip' the directory strutcure found in this page :
http://jakarta.apache.org/tomcat/tomcat-5.0-doc/appdev/sample/
so a beginner is able to start with a clean project.

Have fun,

http://www.apache.org/~yoavs/appdevSample.zip

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]



Re: Problem with my first webapp

2003-09-03 Thread John Turner
oops, that should be:

out.println(div align='center'h2 + myVar = /h2/div);

My bad.

John

John Turner wrote:

$CATALINA_HOME/webapps/myApp
$CATALINA_HOME/webapps/myApp/hello.jsp
$CATALINA_HOME/webapps/myApp/WEB-INF
$CATALINA_HOME/webapps/myApp/WEB-INF/classes
$CATALINA_HOME/webapps/myApp/WEB-INF/lib
$CATALINA_HOME/webapps/myApp/WEB-INF/web.xml
hello.jsp:

%

String myVar = new String(Hello World);
out.println(div align=centerh2 + myVar = /h2/div);
%

http://localhost/myApp/hello.jsp

Post back when you are ready for servlets.

John

Damien wrote:

Can somebody provides me a complete tree with a simple application to
start working on ? I think it would be a good idea if somebody
'tar/gzip' the directory strutcure found in this page :
http://jakarta.apache.org/tomcat/tomcat-5.0-doc/appdev/sample/
so a beginner is able to start with a clean project.
Thanks

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


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