off topic: Where to get a good tutorial about JSP.

2005-05-13 Thread Vinicius
Hello,
where to get a good tutorial about JSP, please?
TIA,
Vinicius.
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: RES: How to search tomcat user list

2005-05-01 Thread Vinicius
Anto Paul escreveu:
On 4/30/05, Roberto Rios [EMAIL PROTECTED] wrote:
 

I found it:
http://www.mail-archive.com
Bob
-Mensagem original-
De: Roberto Rios [mailto:[EMAIL PROTECTED]
Enviada em: sábado, 30 de abril de 2005 12:18
Para: 'Tomcat Users List'
Assunto: How to search tomcat user list
Prioridade: Alta
Hi,
I think that this post is a little bit off-topic, but I couldn't found
it elsewhere...
How do I search something in the tomcat user list?
I used to do it through mail-archives.apache.org, but they changed it
and now it's not possible to search it, only browse it.
I looking for information about the CoyoteConnector (connectionLinger,
connectionTimeout, buffer, etc)? I want more specific information
(http://jakarta.apache.org/tomcat/tomcat-4.1-doc/config/coyote.html is
too much generic).
For instance, If I increase buffer size, what kind of impact I will
have?
TIA,
Bob
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
   

You  can try marc.theaimsgroup.com. I am using it as I felt that its
search function is better than mail-archive.com.
 

you can try http://news.gmane.org/gmane.comp.jakarta.tomcat.user;, too.
At the end of the page, has a search textbox.
Cheers,
Vinicius.
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


How to use jakarta-tomcat-5.5.9-admin.tar.gz ?

2005-04-30 Thread Vinicius
Hello,
I have installed Tomcat 5.5.9 on a GNU/Linux distribution and I would 
like to use the Administration page. How to setup that, please?

TIA,
Vinicius.
P.S.: _I'm glad to meet you_.
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Trying to execute my first servlet, but HTTP Status 404.

2005-04-30 Thread Vinicius
Hello,
I'm trying to execute my first servlet, but it's not working.
See my environment:
- GNU/Linux Fedora Core 3 (kernel-2.6.11-1.14_FC3);
- eclipse 3.0.2;
- Tomcat 5.5.9;
I did do $ javac -classpath 
/usr/local/eclipse/plugins/org.eclipse.tomcat_4.1.30/servlet.jar 
FirstServlet.java and it compiled successfully. I did put the 
FirstServlet.class with the other classes from .../servlets-examples 
page, and the permissions are correct. Could be this version of 
servlet.jar the cause of the problem, please?

I can execute the other examples at servlets-examples page.
See the message errors:

 HTTP Status 404 - /servlets-examples/servlet/FirstServlet

*type* Status report
*message* _/servlets-examples/servlet/FirstServlet_
*description* _The requested resource 
(/servlets-examples/servlet/FirstServlet) is not available._


See the FirstServlet.java:

import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
public class FirstServlet extends HttpServlet {
   public void doGet(HttpServletRequest req, HttpServletResponse resp)
   throws ServletException, IOException {
   resp.setContentType(text/html);
   PrintWriter out = resp.getWriter();
   out.println(HTMLHEADTITLEFirst Servlet);
   out.println(/TITLE/HEADBODYCENTER);
   out.println(H1This was my first Servlet./H1);
   out.println(/CENTER/BODY/HTML);
   out.close();
   }
}

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


Re: How to use jakarta-tomcat-5.5.9-admin.tar.gz ?

2005-04-30 Thread Vinicius
[EMAIL PROTECTED] escreveu:
Hi,
30Apr2005 @ 18:26 Vinicius thusly spake
 

I have installed Tomcat 5.5.9 on a GNU/Linux distribution and I would 
like to use the Administration page. How to setup that, please?
   

untar/zip the admin.tar.gz file,
1. place the conf/Catalina/localhost/admin.xml from the unpacked bundle
into the conf/Catalina/localhost/ directory of your tomcat installation
2. place the admin directory from the unpacked bundle
into the server/webapps directory of your tomcat installation
hth,
Luke
 

Yes, I did do this, did put the role admin to an user, and used that 
one to logon at the administration page.
Now it's working fine.

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