Re: Help with tomcat and windows 2000 server

2006-09-16 Thread 0 8

I think you'll need to be more specific before anyone can even try to help.

On 9/15/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:


Help

Im trying to execute tomcat in windows 200 server, it doesnt show any
problem, and i found nothing in the log file.

Thoes any one knows??

Alberto Larrea

_
Correo libre de virus
EMAAP-Q



Nota importante: La informacion contenida en este e-mail es confidencial y solo 
puede ser utilizada por la persona o la empresa a la cual esta dirigida. 
Cualquier retencion, difusion, distribucion o copia de este mensaje esta 
prohibida.
La Empresa no asume responsabilidad alguna sobre la informacion, opiniones o 
criterios contenidos en este e-mail que no este relacionada con los negocios 
oficiales de la Empresa.
Si usted recibio este mensaje por error, favor notifique al Administrador o a 
quien le envio inmediatamente, eliminelo sin ver su contenido sin hacer copias.
Att
Empresa Metropolitana de Alcantarillado y Agua Potable de Quito, EMAAPQ.



-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Create an object that's shared with multiple applications?

2006-08-09 Thread 0 8

Hello,

I currently have a JSP application under Tomcat that uses an object
created when Tomcat starts up.  The object is created using a class
that implements ServletContextListener and I can call the object from
my JSPs.  All is well.

Originally, I thought I could have one of these objects per
application.  But it turns out I can have only one per server.

I've been doing some searching and looking through the documentation,
but I can't figure out how to do this.

How can I create a single object when Tomcat starts up and access that
object from multiple web apps?

Thanks,
Matt

-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Create an object that's shared with multiple applications?

2006-08-09 Thread 0 8

I did, but then I get more than I get one object created for each application.

I literally just stumbled a mention of a crossContext setting in
Tomcat, but I'm still trying to figure out if that will help here.

On 8/9/06, Ryan O'Hara [EMAIL PROTECTED] wrote:

 How can I create a single object when Tomcat starts up and access that
 object from multiple web apps?

 Thanks,
 Matt

Have you added listener and listener-class tags in each applications'
web.xml?

Ryan

-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Create an object that's shared with multiple applications?

2006-08-09 Thread 0 8

Pid,

I'm sure this is a stupid question but...what?  I don't follow.

I can store the object in a database?  I'm limited to SQL Server.
Does that matter?

On 8/9/06, Pid [EMAIL PROTECTED] wrote:

put it in a database?

0 8 wrote:
 Hello,

 I currently have a JSP application under Tomcat that uses an object
 created when Tomcat starts up.  The object is created using a class
 that implements ServletContextListener and I can call the object from
 my JSPs.  All is well.

 Originally, I thought I could have one of these objects per
 application.  But it turns out I can have only one per server.

 I've been doing some searching and looking through the documentation,
 but I can't figure out how to do this.

 How can I create a single object when Tomcat starts up and access that
 object from multiple web apps?

 Thanks,
 Matt

 -
 To start a new topic, e-mail: users@tomcat.apache.org
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: URL Redirection in tomcat

2006-07-10 Thread 0 8

Look into mod_rewrite.

On 6/29/06, santhoshs [EMAIL PROTECTED] wrote:


Hi Everybody,

Am using Tomcat 5.0 . My requirement is to redirect the URL
http://username.mysite.com; to
http://username.site.com/application.do?login_name=username;. The URL
should be nice URL , in the sense the New URL should not be reflected in the
address bar.

My Question is whether should i use apache for this redirection or can i
achieve this using tomcat itself ? If so what should I do to achieve this ?

Thanks and Regards,
Santhosh
--
View this message in context: 
http://www.nabble.com/URL-Redirection-in-tomcat-tf1867090.html#a5101383
Sent from the Tomcat - User forum at Nabble.com.




-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Fwd: Tomcat 5.5 / IIS 6 web server log question

2006-06-17 Thread 0 8

Does anyone know where I can go to get an answer to this question?

Thanks,
Matt

-- Forwarded message --
From: 0 8 [EMAIL PROTECTED]
Date: Jun 16, 2006 12:43 PM
Subject: Tomcat 5.5 / IIS 6 web server log question
To: Tomcat Users users@tomcat.apache.org


Hello,

I have Tomcat 5.5 and IIS 6 integrated using isapi_redirect.dll.  So
far, they are working together just fine.

I noticed in my IIS web server logs that the GET requests are not
being recorded as I would expect.  I'm currently seeing...

GET /jakarta/isapi_redirect.dll

...when I expected to see...

GET /hello.jsp

...since hello.jsp is the file I actually requsted.

Is there a setting I've missed somewhere to keep the IIS logs as I
expected or do I have to now maintain both IIS and Tomcat access logs?

Thanks,
Matt

-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Tomcat 5.5 / IIS 6 web server log question

2006-06-16 Thread 0 8

Hello,

I have Tomcat 5.5 and IIS 6 integrated using isapi_redirect.dll.  So
far, they are working together just fine.

I noticed in my IIS web server logs that the GET requests are not
being recorded as I would expect.  I'm currently seeing...

GET /jakarta/isapi_redirect.dll

...when I expected to see...

GET /hello.jsp

...since hello.jsp is the file I actually requsted.

Is there a setting I've missed somewhere to keep the IIS logs as I
expected or do I have to now maintain both IIS and Tomcat access logs?

Thanks,
Matt

-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Tomcat 5.5 / IIS 6 web server log question

2006-06-15 Thread 0 8

Hello,

I have Tomcat 5.5 and IIS 6 integrated using isapi_redirect.dll.  So
far, they are working together just fine.

I noticed in my IIS web server logs that the GET requests are not
being recorded as I would expect.  I'm currently seeing...

GET /jakarta/isapi_redirect.dll

...when I expected to see...

GET /hello.jsp

...since hello.jsp is the file I actually requsted.

Is there a setting I've missed somewhere to keep the IIS logs as I
expected or do I have to now maintain both IIS and Tomcat access logs?

Thanks,
Matt

-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]