Re: Tomcat Connections and Memory Limits

2003-06-16 Thread ROLDAN, Gabriel raul
http://swjscmail1.java.sun.com/cgi-bin/wa?A2=ind0305L=jsp-interestP=R3219 -Mensaje original- De: Robert Burdick [mailto:[EMAIL PROTECTED] Enviado el: lunes, 16 de junio de 2003 8:06 Para: [EMAIL PROTECTED] Asunto: Tomcat Connections and Memory Limits Hello All: I'm currently building an

tomcat 4.0.3 w32 service and memory limit

2003-03-14 Thread ROLDAN, Gabriel raul
Hi all, I need to know if there is any way of increasing de upper memory limit available for the VM when running tomcat 4.0.3 as a win32 service. this is because my tomcat is running out of memory under heavy load, but in deed, it is using a small amount of the system memory. Say, it goes out

tomcat 4 goes out of memory

2003-03-07 Thread ROLDAN, Gabriel raul
it is not really the bad new, because I was stress (performance) testing my app. so, my question is: how can I increment the memory limit for tomcat with the tomcat service for NT? and how can I ensure that the VM is running in server mode? I don't know how the VM is started by the NT

Re: stupid question

2003-02-19 Thread ROLDAN, Gabriel raul
might simultaneously modify the other register. Do not be too confident of your longs, if you do have a method manipulating a global long in a multi-threaded environment, remember to synchronize the method. Jaideep. -Original Message- From: ROLDAN, Gabriel raul [mailto:[EMAIL PROTECTED

Re: stupid question

2003-02-18 Thread ROLDAN, Gabriel raul
would no longer be thread safe. -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of ROLDAN, Gabriel raul Sent: Monday, February 17, 2003 6:59 PM To: [EMAIL PROTECTED] Subject: stupid question excuse this stupid

stupid question

2003-02-17 Thread ROLDAN, Gabriel raul
excuse this stupid and out of topic question, but.. ¿are static methods and fields synchronized? ==To unsubscribe: mailto [EMAIL PROTECTED] with body: signoff JSP-INTEREST. For digest: mailto [EMAIL PROTECTED] with body: set

Re: connection alive detection

2003-01-22 Thread ROLDAN, Gabriel raul
mmm I think i figure out the idea... may be a could have a session attribute that gets initialized on every of this critical requests, so I can check before any expensive operation if the client is still waiting for it... is something like that what do you mean? thanks -Mensaje

connection alive detection

2003-01-21 Thread ROLDAN, Gabriel raul
Hi, does somebody knows if there are any way of knowing from a servlet if the client connection that have thrown the request is still alive? this is for avoid executing resource-expensive server tasks if the user has just gone, or he reloads the page a lot of times without waiting for server

connection alive detection

2003-01-15 Thread ROLDAN, Gabriel raul
Hi, is there any way of knowing from a servlet if the client connection that have thrown the request is still alive? this is for avoid executing resource-expensive server tasks if the user has just gone, or he reloads the page a lot of times without waiting... thanks Gabriel Roldán GIS Research

url encoding

2002-12-20 Thread ROLDAN, Gabriel raul
is there any standard way to encode an URL? I am sending to servlet a querystring wich has characters like '=', and request.getParameter does not return the value I sent. Are there any classes in any standard java package to dealing with this? thanks Gabriel

Re: Forward giving NullPointer exception

2002-11-28 Thread ROLDAN, Gabriel raul
I think you can't access a file in a higher level directory than the root one. so, if /../main.jsp?file=serviceType.jsp points to a file in the parent dir of the root dir of you app. -Mensaje original- De: Murali Mohan [mailto:[EMAIL PROTECTED]] Enviado el: jueves, 28 de noviembre de

Re: graph library

2002-11-13 Thread ROLDAN, Gabriel raul
do you mean some king of charts? what kind of graphics do you want to obtain from a database? image fields or generate charts from database contents? -Mensaje original- De: Josep R. Raurell [mailto:josep;AKO.ES] Enviado el: miércoles, 13 de noviembre de 2002 12:11 Para: [EMAIL

Re: graph library

2002-11-13 Thread ROLDAN, Gabriel raul
I mean KIND of charts, not KING of charts :) -Mensaje original- De: ROLDAN, Gabriel raul [mailto:gabriel.raul.roldan;BIZKAIA.NET] Enviado el: miércoles, 13 de noviembre de 2002 12:33 Para: [EMAIL PROTECTED] Asunto: Re: graph library do you mean some king of charts? what kind

Re: graph library

2002-11-13 Thread ROLDAN, Gabriel raul
ROLDAN, Gabriel raul ha escrit: do you mean some king of charts? what kind of graphics do you want to obtain from a database? image fields or generate charts from database contents? -Mensaje original- De: Josep R. Raurell [mailto:josep;AKO.ES] Enviado el: miércoles, 13 de noviembre de 2002

Re: Converting string to date format.

2002-11-05 Thread ROLDAN, Gabriel raul
%@ page language=java import=java.util.*, java.text.* % % String dateString = 2002-10-31 20:45:00; DateFormat inputFormat = new SimpleDateFormat(-MM-dd hh:mm:ss); Date myDate = inputFormat.parse(dateString); DateFormat outputFormat = new SimpleDateFormat(dd-- hh:mm:ss a); String

JDBC getColumnName and getColumnLabel

2002-10-25 Thread ROLDAN, Gabriel raul
Hi, I'm connecting to a DB2 database via DB2Connect and COM.ibm.db2.jdbc.app.DB2Driver My problem is that sometimes, when requesting the column name and column label of the returning ResultSet fields, both methods returns a kind of description of the column intead of the column name itself. for

Re: JTextArea

2002-10-23 Thread ROLDAN, Gabriel raul
JTextArea tarea = new JTextArea(); JScrollPane scroll = new JScrollPane(tarea); panel.add(scroll); -Mensaje original- De: Martin Simon [mailto:martin.simon;VERA.CZ] Enviado el: miércoles, 23 de octubre de 2002 11:52 Para: [EMAIL PROTECTED] Asunto: JTextArea I have a swing.JTextArea. How

Re: Report displaying and printing in JSP's

2002-10-10 Thread ROLDAN, Gabriel raul
I am using iText (www.lowagie.com) pdf generator for creating reports in my intranet with great success. using confidential production data and images gathered from an image map server, I can generate a pdf document writen directly to the client via HTTP without the need of storing it in the

Re: Report displaying and printing in JSP's

2002-10-10 Thread ROLDAN, Gabriel raul
[mailto:[EMAIL PROTECTED]] Enviado el: jueves, 10 de octubre de 2002 9:12 Para: [EMAIL PROTECTED] Asunto: Re: Report displaying and printing in JSP's Hi, On Thu, Oct 10, 2002 at 09:04:18AM +0200, ROLDAN, Gabriel raul wrote: I am using iText (www.lowagie.com) pdf generator for creating reports in my

User authentication on Windows

2002-09-27 Thread ROLDAN, Gabriel raul
Hi, I'm running a jsp/servlet app on windows with IIS + tomcat 4. I need to know if there is any way to obtain the user name from a jsp page with IIS and Windows Integrated Security. On the intranet with asp's, I do a Request.ServerVariables(AUTH_USER) to obtain the user name of the client on a