RE: Net Disk Failure in JSP with Tomcat 5.5.9( or 5.5.X)

2005-11-23 Thread Caldarale, Charles R
> From: NanFei Wang [mailto:[EMAIL PROTECTED] > Subject: Re: Net Disk Failure in JSP with Tomcat 5.5.9( or 5.5.X) > > I made a Net Disk named P:\ > > I got the following result when I use Apache Tomcat 5.5.9( or > 5.5.X) Server: > > P:\ exist = false > P:\ is Directo

RE: default logging in tomcat 5.5

2005-11-23 Thread Akoulov, Alexandre [IT]
Thanks a lot, Remy , for reviewing my email and providing a good tip on System.out Kind regards, Sasha. -Original Message- From: Remy Maucherat [mailto:[EMAIL PROTECTED] Sent: Wednesday, 23 November 2005 10:34 PM To: Tomcat Users List Subject: Re: default logging in tomcat 5.5 Yes, s

The Server PUSH tech?

2005-11-23 Thread Andrew.du
I hava search for "Server PUSH" for a long time. But I still don't know it. Can you teach me? [EMAIL PROTECTED]

Re: Net Disk Failure in JSP with Tomcat 5.5.9( or 5.5.X)

2005-11-23 Thread NanFei Wang
Hi,Chuck Would you please give me some idea for the following ! NanFei Hi, The following seem simple question get no any response yet ! Is it really no solution ? I made a Net Disk named P:\ The file ' test.jsp ' as following: - <%@ page

JAASRealm-based Login Fails After Upgrade from 5.0 to 5.5

2005-11-23 Thread Shaw, David \(David\)
I have a stable, working, Struts-based web application running under Tomcat 5.0.28 that uses HTTP BASIC authentication and a JAASRealm (with a home grown LoginModule and user and role principals) over SSL. The authentication / security has been working with no issues for several releases. I am no

RE: Displaying PDF's within a servlet

2005-11-23 Thread Caldarale, Charles R
> From: Khawaja Shams [mailto:[EMAIL PROTECTED] > Subject: Displaying PDF's within a servlet > > However, starting Acrobat for this purpose > everytime could be rather slow and inconvenient. It appears that, at least with IE on XP, Acrobat Reader stays loaded as long as the browser is active. C

Re: RE: admin module for Tomcat 5

2005-11-23 Thread andy gordon
In addition, The admin app needs to be placed into the same directory as the manager app. i.e. C:\Apache\Tomcat 5.5\server\webapps Hope this helps, andy gordon [EMAIL PROTECTED] wrote: Ah. Unzip it into the same folder into which you've installed Tomcat. You'll need

Displaying PDF's within a servlet

2005-11-23 Thread Khawaja Shams
Hello all, I am doing a project where I need to display several hundred pdf's one at a time on my website. However, starting Acrobat for this purpose everytime could be rather slow and inconvenient. My professor mentioned that in php, there is an easy way to convery pdf to png's, but I would

Re: ordering apps startups

2005-11-23 Thread Shankar Unni
Rogerio Baldini das Neves wrote: I need that app3 starts up first of all. and app2 in second and so on. As several folks have said: no. I'm currently exploring a notion of extending StandardHost and subclassing the addChild(), etc., behavior to keep the children in a list rather than a hash

Re: Where should I store my static content in a clustered environment

2005-11-23 Thread Bruno Georges
Bjoern Do you need some sort of fault tolerant system? Can you clarify the requierments you have, do you need load balancing, session sync replication, async replication? Traffic, SLA, concurrent connections, ... All these will have an impact on the choice and design of your infrastructure. Ch

Re: How to integrate tomcate 5, apache 2 using jk1.2 for Win32

2005-11-23 Thread Martin Gainty
Apache 2 uses mod_jk connector(s) http://tomcat.apache.org/connectors-doc-archive/jk2/jk/aphowto.html Martin- - Original Message - From: "Alla Winter" <[EMAIL PROTECTED]> To: Sent: Wednesday, November 23, 2005 2:02 PM Subject: How to integrate tomcate 5, apache 2 using jk1.2 for Win32 >

RE: Where should I store my static content in a clustered environment

2005-11-23 Thread Duan, Nick
A simple solution would be to have all static pages hosted on an Apache httpd server in front of tomcat clusters. If you need more performance, just cluster the httpds. Tomcat is not really designed to server static pages. Apache httpd can also serve as a LB. In this case, certainly you have to

How to integrate tomcate 5, apache 2 using jk1.2 for Win32

2005-11-23 Thread Alla Winter
Can anybody refer me to the HOW TO instructions to integrate Tomcat 5, Apache 2 using jk1.2 for Windows environment? thanks

Re: FTP Was: Re: manager for some users

2005-11-23 Thread erh
On Tue, Nov 22, 2005 at 03:33:09PM -0500, Steve Ochani wrote: > On 22 Nov 2005 at 14:14, [EMAIL PROTECTED] wrote: > > > On Tue, Nov 22, 2005 at 01:17:56PM +0100, Alex Moreno wrote: > > > The problem is that some partners has said me that this is insecure > > > and should only be used on beta appli

Re: ordering apps startups

2005-11-23 Thread Bruno Georges
Rogiero If this is an option for you I would use JBoss to manage the deployment ordering. You have implicit and explicit behavior. For example the deployment ordering scheme could be the you name your war: 01appA.war, 02appB.war Here the apps will be implicitly loaded in this order. This is know

Tomcat doesn't load classes

2005-11-23 Thread Arjan
Hi, i'm having a strange problem to load classes from the directory WEB-INF/classes. I placed an url.properties file there, restarted Tomcat (version 5.0.28), but the classes aren't loaded as far as i can see. I've tryed to store the file on other locations (ROOT/, webapps/ etc), even in the $

RE: ordering apps startups

2005-11-23 Thread Rogerio Baldini das Neves
Ok Robert. Thanks a lot. -Original Message- From: Robert Harper [mailto:[EMAIL PROTECTED] Sent: quarta-feira, 23 de novembro de 2005 15:52 To: 'Tomcat Users List' Subject: RE: ordering apps startups This one has been addressed several times before. The short answer is NO. Tomcat being

RE: ordering apps startups

2005-11-23 Thread Robert Harper
This one has been addressed several times before. The short answer is NO. Tomcat being multithreaded does not guarantee order of start or access of a page. It would be better to change your apps so that they are not dependent on each other's state or order of starting. Think more in terms of event

Re: Starting the apache tomcat 4.05 servlet engine on windows xp

2005-11-23 Thread Jon Wingfield
Try the binary distribution instead of the source bundle: http://archive.apache.org/dist/tomcat/tomcat-4/archive/v4.0.5/bin/ Either jakarta-tomcat-4.0.5.zip or jakarta-tomcat-4.0.5.exe should be fine. CATALINA_HOME will probably then be: C:\tomcat\jakarta-tomcat-4.0.5 HTH, Jon Aaron Bortman w

ordering apps startups

2005-11-23 Thread Rogerio Baldini das Neves
Hi Folks. Is it possible to order apps startups. For example. I have app1, app2 and app3. I need that app3 starts up first of all. and app2 in second and so on. Is it possible ? Thanks in advance. Rogerio. -- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.1.

RE: Connection refused when attempt to contact myUsename.myDns.com:8080

2005-11-23 Thread Caldarale, Charles R
> From: dcausevi [mailto:[EMAIL PROTECTED] > Subject: Connection refused when attempt to contact > myUsename.myDns.com:8080 > > Everything works fine accessing from http://localhost:8080 > locally but http://dcausevic.homelinux.com:8080 would not > work from outside? Sounds like some sort of

Connection refused when attempt to contact myUsename.myDns.com:8080

2005-11-23 Thread dcausevi
I want to use Tomcat with its own HTTP web server without having to use it with Apache HTTP web server but I run into a problem when accessing Tomcat from outside. Everything works just fine as long as I am using web browser from my local machine via http://localhost:8080, but I get "Connection

RE: suppress tomcat version numbers

2005-11-23 Thread Kiarna Boyd
From: "Caldarale, Charles R" <[EMAIL PROTECTED]> Date: November 22, 2005 10:52:49 AM EST To: "Tomcat Users List" Subject: RE: suppress tomcat version numbers From: Kiarna Boyd [mailto:[EMAIL PROTECTED] Subject: suppress tomcat version numbers Hi I'm trying to suppress the version number Tomca

Content is not allowed in prolog Tomcat-XmlRpc

2005-11-23 Thread Bello Martinez Sergio
Hi all, I'm using Tomcat 5.0, and I'm having a very strange problem. Sometimes, when a client sends several continuous http requests to the server, it receives http headers when it should only be the body. If in method doPost()I call request.getInputStream, I can see header lines. I'm using Apache

Re: RE: admin module for Tomcat 5

2005-11-23 Thread wapace
Ah. Unzip it into the same folder into which you've installed Tomcat. You'll need to edit Tomcat-Users.xml in the conf folder to include a user with the "admin" role to access the app. Restart Tomcat and it should work. > > From: "Scott Purcell" <[EMAIL PROTECTED]> > Date: 2005/11/23 Wed AM 1

RE: admin module for Tomcat 5

2005-11-23 Thread Scott Purcell
XP Scott K Purcell | Developer | VERTIS | 555 Washington Ave. 4th Floor | St. Louis, MO 63101 | 314.588.0720 Ext:1320 | [EMAIL PROTECTED] | http://www.vertisinc.com Vertis is the premier provider of targeted advertising, media, and marketing services that drive consumers to marketers more effect

Re: admin module for Tomcat 5

2005-11-23 Thread wapace
What operating system are you using? > > From: "Scott Purcell" <[EMAIL PROTECTED]> > Date: 2005/11/23 Wed AM 09:17:01 EST > To: > Subject: admin module for Tomcat 5 > > Hello, > I am running Tomcat 5, and I have been having troubles configuring a web-app > in a virtual environment. Anyway, I s

RE: suppress tomcat version numbers

2005-11-23 Thread Caldarale, Charles R
> From: Andrew Miehs [mailto:[EMAIL PROTECTED] > Subject: Re: suppress tomcat version numbers > > This seems to be a new option for TC 5.5. Do you know of anything > similar for 5.0? Sorry, I don't - haven't used 5.0 for a long time, since the performance of 5.5 is noticeably better. - Chuck

RE: admin module for Tomcat 5

2005-11-23 Thread Caldarale, Charles R
> From: Scott Purcell [mailto:[EMAIL PROTECTED] > Subject: admin module for Tomcat 5 > > I downloaded the admin module for Tomcat 5, but do not know > where or how to install it. Unzip the download into the same location as your main Tomcat download. Note that the paths in the .zip file match u

admin module for Tomcat 5

2005-11-23 Thread Scott Purcell
Hello, I am running Tomcat 5, and I have been having troubles configuring a web-app in a virtual environment. Anyway, I see there is an admin module, and I believe it may assist in this. I downloaded the admin module for Tomcat 5, but do not know where or how to install it. I tried unzipping i

TC 5.0.28, JK1, CAS-SERVER, SSL sleep less nights please mayday!

2005-11-23 Thread [EMAIL PROTECTED]
hi everyone, this is what i have : - TC 5.0.28 http://bigleo.dyndns.org/tc/server.xml.log - Apache with JK modules SSL enabled http://bigleo.dyndns.org/tc/mod_jk.conf.log - CAS SERVER 3.0 for those who dont know what cas is ( its a Central Authentication Server based on Tomcat filter) - i ha

Re: JSTL

2005-11-23 Thread Behrang Saeedzadeh
Hi Bernhard, Thanks for the explanation. Regards, Behi On 11/23/05, Bernhard Slominski <[EMAIL PROTECTED]> wrote: > Hi, > > JSTL is not a part of J2EE 1.4, you need to "install" it separatly. > But it will be a part of JEE5. > > Cheers > > Bernhard > > > -Ursprüngliche Nachricht- > > Von

Re: default logging in tomcat 5.5

2005-11-23 Thread Remy Maucherat
On 11/23/05, Akoulov, Alexandre [IT] <[EMAIL PROTECTED]> wrote: > Hi all, > > I am in the process of upgrading from tomcat-3.3 to tomcat-5.5 and would > greatly appreciate if you could let me know whether I understood tomcat-5.5's > default logging correctly. > > As of tomcat 5.5 Context element

Michelle Brett-Mitchell is out of the office.

2005-11-23 Thread mbrett-mitchell
I will be out of the office starting Mon 11/21/2005 and will not return until Mon 11/28/2005. I will respond to your message when I return. Please contact Liz Manning or Thomas Gaffney with any urgent issues. - To unsubscribe,

AW: JSTL

2005-11-23 Thread Bernhard Slominski
Hi, JSTL is not a part of J2EE 1.4, you need to "install" it separatly. But it will be a part of JEE5. Cheers Bernhard > -Ursprüngliche Nachricht- > Von: Behrang Saeedzadeh [mailto:[EMAIL PROTECTED] > Gesendet: Mittwoch, 23. November 2005 03:04 > An: Tomcat Users List > Betreff: JSTL >

Vedr.: Where should I store my static content in a clustered environment

2005-11-23 Thread Thomas Nybro Bolding
Hi Eickvonder, I would definitely go for solution 5, which resembles an assigment we were given in a course in Distributed Computing. If possible go for active replication to distribute the load on several database servers. To implement this you must implement a common frontend (FE) communicat

Re: suppress tomcat version numbers

2005-11-23 Thread Andrew Miehs
Hi Charles, This seems to be a new option for TC 5.5. Do you know of anything similar for 5.0? Thanks Andrew On Nov 22, 2005, at 4:52 PM, Caldarale, Charles R wrote: From: Kiarna Boyd [mailto:[EMAIL PROTECTED] Subject: suppress tomcat version numbers Hi I'm trying to suppress the version

Where should I store my static content in a clustered environment

2005-11-23 Thread Eickvonder Bjoern
Hi, lets start with describing my current task where I would appreciate any advice from you. I have to construct a clustered system (with lots of webservers) that has few dynamic pages but a lot of static ones, whereby all resources have to be protected by security-constraints of a webapp (so lett