Apache+Tomcat mod_jk 3.2.2 install problem

2001-06-15 Thread Edilmar Alves
I installed Tomcat 3.2.2 with Linux RedHat k2.2.17-14cl, and http://localhost:8080/ works fine, all examples servlets/JSPs. Then, I tried to install the integration with Apache 1.3.14. This is the error: [root@email conf]# /etc/rc.d/init.d/httpd start Iniciando httpd: BUG IN DYNAMIC LINKER

Where do you deploy JSPs used in Servlet forward()?

2001-06-11 Thread Edilmar Alves
Hi, I have an application with a Servlet command processor and business logic, and many JSPs for user interface. When I'm using JBuilder 4 Ent + Tomcat 3.2.1 to run the app, all works fine. The Web Server is NT4 + Apache 1.3.12 and Tomcat is running on port 8080. However, when I try to deploy

BUG in Tomcat 3.2.1???

2001-06-09 Thread Edilmar Alves
Hi, I have a servlet with JBuilder 4 Enterprise + Tomcat 3.2.1. I made a class named HttpServletGeral like this: public class HttpServletGeral extends HttpServlet { ... } and other class named ServletPortal: public class ServletPortal extends HttpServletGeral { ... } If I run the servlet

Re: tomcat-user Digest 12 Jan 2001 15:11:28 -0000 Issue 531

2001-01-12 Thread Edilmar Alves
vletConfig in order to give it session, request, or application scope. Then you can reference the bean via jsp:useBean id="beanname" class="beanClass" scope="session/page/request/application" / and jsp:getProperty name="beanname" property="beanPropert

Servlet to JSP

2001-01-11 Thread Edilmar Alves
Hi, I have used JBuilder + JDK 1.3 + JSDK 2.2 + Tomcat 3.2.1 to build only servlets. However, the web designer would like more easily to format the HTML page. Then, I thought about using JSP+servlets. Look at this simple example: I have a servlet that receives a request and needs to run a SQL

Is this a bug: special chars into query params ???

2001-01-10 Thread Edilmar Alves
Hi, I have used JServ 1.1.2 with my servlet. Now, I have been migrating to Tomcat 3.2.1. I have a form where the user can type a "person name" into text box and the servlet searches for this into a database, returning many fields into HTML response. The form is something like this: form ...

Comparing config files JServ=Tomcat

2000-12-21 Thread Edilmar Alves
JServ jserv.conf = Tomcat tomcat.conf ? or server.xml ? JServ jserv.properties = Tomcat tomcat.properties ? or server.xml ? JServ someservlet.properties = Tomcat what file ?

wrapper.classpath

2000-12-21 Thread Edilmar Alves
Into jserv.properties, I'd do: wrapper.classpath=d:\internet\apache\JServ\ApacheJServ.jar wrapper.classpath=d:\lp\jbuilder3\lib\jsdk.jar wrapper.classpath=d:\lp\jbuilder3\lib\javamail\mail.jar wrapper.classpath=d:\lp\jbuilder3\lib\jaf\activation.jar

Servlet defined properties - JARxWAR, initArgs

2000-12-21 Thread Edilmar Alves
At JServ, I should create a file someservlet.properties for specific configurations, like these: repositories=d:\...\sistemas\Consulta.jar repositories=d:\...\sistemas\Senha.jar ... # some lines below servlet.Consulta.ServletResConsulta.initArgs=DIRPS=d:/.../sistemas Can I specify

Is there some migration doc JServ=Tomcat ???

2000-12-21 Thread Edilmar Alves
I have many servlets made with NT4 + MySQL 3.23 + JBuilder 3 Enterprise + Apache 1.3.9 + JServ 1.1.2. Then, I would like to migrate from JServ 1.1.2 to Tomcat 3.2.1.

Re: JSP vs Servlets...

2000-12-20 Thread Edilmar Alves
I think JSP + Servlet combination is the ideal to really implement a three-tier system like: 1) User interface = HTML+JSP 2) Business logic = Servlet 3) Database = someone I had used only Servlets and my code was strange, with HTML code into Java servlet code, and now I have had migrating all

Doubts joining JSP x Servlets

2000-12-20 Thread Edilmar Alves
Hi, I'm new into JSP technology. I have used only Servlets before, with JBuilder 3 Enterprise. I would like to know a system with JSP+Servlets to make something like these steps I have into my servlet: 1) I have a HTML form with a text field. The user types a username that should be