HELP!! Container managed authentication problem with Apache 1.3 + Tomcat 4 + Warp

2002-04-01 Thread @Basebeans.com
Subject: HELP!! Container managed authentication problem with Apache 1.3 + Tomcat 4 + Warp From: Hyunjin Kim [EMAIL PROTECTED] === Hi, I have recently set up TOMCAT 4 + Apache 1.3 with ***Warp connector***. Although I have failed to have Apache forward *.do calls to jakarta correctly (for

Re: HELP!! Container managed authentication problem with Apache 1.3 + Tomcat 4 + Warp

2002-04-01 Thread @Basebeans.com
Subject: Re: HELP!! Container managed authentication problem with Apache 1.3 + Tomcat 4 + Warp From: Hyunjin Kim [EMAIL PROTECTED] === Simply said, Had anyone successfully configured and used Apache 1.3 + TOMCAT 4 + warp + tomcat container managed security?? with emphasis on **Apache** and

Re: Character Encoding

2002-04-01 Thread Nikola Milutinovic
I have used: request.setCharacterEncoding(ISO-8859-1); and when I want to display the following line (in Danish): Sjclland og Rerne Is it supposed to be ISO-8859-1, in the first place? Danish should be in the Latin-1 subset, AFAIK. Also, why are you setting request and complaining on

FW: Update of address

2002-04-01 Thread Boon Kong Yip
Hi, My new address will be listed below, 477 Jurong West St 41 #05-360 Singapore 640477 How is life? What happen to Web-Vision? Why your web site redirected to infocommcentral. R u currently upgrading new server now? Enjoy life. Rdgs Boon Kong -- To unsubscribe: mailto:[EMAIL

Tomcat 4 and OpenSSL

2002-04-01 Thread Jordan C N Chong
Dear all experts I am a newbie of Tomcat. I have installed Apache-Tomcat-4.0 on my Windows 2000. However I wish to install OpenSSL, to handle the certificates. I am not sure how to do it... I found some information about installing Tomcat3.2 with Openssl. But I couldn't find any about Tomcat4.0.

RE: How to do filter after Servlet?

2002-04-01 Thread Cox, Charlie
look at the sample filters, you will see a call to doChain(). This is where your servlet will be processed. Any code before it will be executed before your servlet, and code after it will be executed after your servlet finishes. Charlie -Original Message- From: Alvin Wang

RE: Reloading Web Applications without manager and without reloadable=true

2002-04-01 Thread Cox, Charlie
The role must be 'manager'. The manager app currently does not let you specify the role to use. Charlie -Original Message- From: Jeff Larsen [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 28, 2002 2:14 PM To: Tomcat Users List Subject: Re: Reloading Web Applications without

Re: How to do filter after Servlet?

2002-04-01 Thread Minsu Jang
You have to implement a response wrapper class to do something with response. The wrapper class is to give successors in the filter chain a fake output stream. The original output stream should be kept unused. By the way, be careful to overload ServletResponseWrapper.getOutputStream() as

RE: Kinda not topical

2002-04-01 Thread Jim Urban
I use jEdit http://jedit.org/. Its open source and quite powerful. Jim -Original Message- From: Vladimir Vanyukov [mailto:[EMAIL PROTECTED]] Sent: Sunday, March 31, 2002 10:07 PM To: Tomcat Users List Subject: Kinda not topical I just have a general question that has nothing

Re[2]: Kinda not topical

2002-04-01 Thread Tomcat Users List
Hello Jim, Monday, April 01, 2002, 4:35:10 PM, you wrote: Also MED editor: http://www.utopia-planitia.de/ - easy to unite different files into project; - syntax highlight (easy customizable) for lot of file types; - customizable actions, interface, action output redirection, ... JU I use jEdit

Running tomcat as NT service on win 2000

2002-04-01 Thread Vadim Fainshtein
Hello. I use win200. Hi May be you can help me (please). hr I did the following steps, as described in http://jakarta.apache.org/tomcat/tomcat-3.3-doc/NT-Service-howto.html. 1. Downloaded the jk_nt_service.exe and put it into jdk1.3.1jre\bin\classic 2. Configured wrapper.properties:

IIS dis-allowing the POST method on Servlets

2002-04-01 Thread Dirk-Willem van Gulik
I've got an IIS/5.0+Tomcat/3.3.1 on Windows 2000 installation - set up using the binary distribution: - The two are integrated using the isapi filter dll. - IIS and (perl)cgi works fine for GET and POST. - Tomcat works fine for any GET or POST to - either a servlet

Re: Reloading Web Applications without manager and without reloadable=true

2002-04-01 Thread Jeff Larsen
Not true. I've tested with a role-name other than manager. It is configurable in the web.xml for the manager app. See excerpt below. (TC 4.0.3) security-constraint web-resource-collection web-resource-nameEntire Application/web-resource-name url-pattern/*/url-patter

Re: taglib and contextPath

2002-04-01 Thread Jeff Larsen
HttpServletRequest request = (HttpServletRequest)pageContext.getRequest(); This request object can then be used just like in a servlet. Jeff - Original Message - From: Zsolt Koppany [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, March 31, 2002 3:21 AM Subject: taglib and

Re: appBase and virtual hosts

2002-04-01 Thread Jeff Larsen
You need separate webapp directories for each virtual host. Otherwise Tomcat will autodeploy everything it finds in your webapp directory, even if the app is supposed to belong to another virtual host. Jeff - Original Message - From: Micael Padraig Og mac Grene [EMAIL PROTECTED] To:

Where is authentication information stored in the session?

2002-04-01 Thread Wellie W. Chao
I got container-managed form-based authentication and logout working properly, and I'm just curious: where does Tomcat store the user information? It doesn't seem to create any new attributes for the authentication information. Is that purely internal and completely hidden from the application

How to debug Tomcat itself?

2002-04-01 Thread Nikola Milutinovic
Hi all. I would like to get some advice on debugging Tomcat itself. I have downloaded Tomcat-4.0.3-src and managed to make a JBuilder 6 project out of it. I can start Tomcat and I can enter a debugging session. My main goal is to see what is going on with those JNDI JDBC resources (JNDI

RE: Reloading Web Applications without manager and without reloadable=true

2002-04-01 Thread Cox, Charlie
I stand corrected. I didn't think you could override the default manager role since it is not defined in the web.xml. So you have manager working with a user without the 'manager' role? Or are you adding another role requirement to to the manager path? This is what it appears that you are doing

Direct login without login form between pages

2002-04-01 Thread Wellie W. Chao
I've got container-managed form-based login working fine under the following scenario: User starts on page A, which is accessible by all visitors, including unauthenticated visitors. User clicks on a link to page B, which requires a role of 'admin'. In this case, Tomcat brings up a login form

Re: custom Resources class

2002-04-01 Thread Craig R. McClanahan
On Sun, 31 Mar 2002, Vladimir Vanyukov wrote: Date: Sun, 31 Mar 2002 23:10:49 -0500 From: Vladimir Vanyukov [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: custom Resources class Does anyone know where I can get some

Re: Reloading Web Applications without manager and without reloadable=true

2002-04-01 Thread Jeff Larsen
As long as the role-name in the manager app web.xml matches the role assigned to a user in tomcat-users.xml, it works. - Original Message - From: Cox, Charlie [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Sent: Monday, April 01, 2002 10:15 AM Subject: RE: Reloading Web

Mapping *.abc requests to Tomcat

2002-04-01 Thread Alan Williamson
All, I have been having lots of fun attempting to setup Apache/Tomcat on my MacOS-X box. We have been using the older Apache/JServ combination for years now with no problems whatsoever. However the move to Tomcat has been more than painful. I have managed to get it to do many wonderful

Re: Mapping *.abc requests to Tomcat

2002-04-01 Thread costinm
First question - with tomcat3.x, are you still using mod_jserv ? If it worked before with jserv, it should still work with the exactly same apache config and module as before, assuming you have a 'recent' mod_jserv ( i.e. 1..2 years old - but I think '99 would work too ). Just replace the

RE: Mapping *.abc requests to Tomcat

2002-04-01 Thread Alan Williamson
Thanks for that Costin ... however ... i am on a new server ... everyone has been raving about the Apple so i am moving up to that! :) With respect to the mod_jk library ... whats the difference with this and mod_jserv? Also ... if i use that method ... does all the .properties files that were

RE: Mapping *.abc requests to Tomcat

2002-04-01 Thread Alan Williamson
||| If you use mod_jk - the same apache settings and module ||| will work with both tomcat3.x and 4.x. You probably need snip Costin, first of all thank you for all your help ... the mod_jk worked a treat. I had a bit of searching to find a binary for it for the Mac platform, but once i had

mod_jk and load balancing

2002-04-01 Thread PERIYANAN,VISWA (Non-HP-Cupertino,ex1)
Hi, I am using two tomcat severs load balanced by mod_jk(with apache). The load factor (as specified in the workers.properties) for the both the tomcat servers are the equal. To test whether the load is being distributed equally, I sent 100 requests to the apache server. The servlet

Log File Error

2002-04-01 Thread Scott Purcell
Hello, I somehow foobared my Tomcat on NT install. I did not touch the server.xml file, but did play with the class path. When I try and do a start : startup at the command line, if just begins it tries to start and dies. I checked my java_home and it is good. I can't figure out why its

Process for using Manager reload of war file?

2002-04-01 Thread David M. Karr
I'm trying to understand the complete process of getting the Manager application to completely reload a rebuilt application. I'm on Win2k, with TC 4.0.4b2, and JDK 1.4.0. With Tomcat down, I make sure I have a valid WAR file copied into webapps, and the unpacked directory is gone. I then start

losing session info with netscape 4.x

2002-04-01 Thread Huy K Dung
Hi, I am using tomcat 3.3.1, apache 1.3.24, turbine 2.1 to develop my web app. Everything seems to work fine with IE 5.5 and netscape 6.x and even netscape 4.x. What I've noticed is that when I use popup windows, netscape 4.x doesn't seem to have the right info from session. From main netscape

Missing web.xml

2002-04-01 Thread Jason Johnston
I've installed the tomcat engine on an NT Server 4.0 machine. I've been compiling and running test servlets and jsp's but I can't get custom web.xml's to work. I've run through the example on O'reilly's site: http://www.onjava.com/lpt/a//onjava/2001/04/19/tomcat.html However, I keep getting

Re: Process for using Manager reload of war file?

2002-04-01 Thread Jeff Larsen
Here's the deal with unpacking of war files: It only happens when Tomcat starts and autodeploys apps that do not otherwise have a Context element in server.xml. If you manually define the context, it won't unpack the war file! If you update the war file and reload, it won't re-unpack the war

Re: Process for using Manager reload of war file?

2002-04-01 Thread Jeff Larsen
I forgot to mention: If you can live without unpacked war files, set unpackWARs=false in your Host and/or define your Context with docBase=myapp.war and reloadable=false. Then the manager app will successfully reload (but not unpack) your war file. Jeff - Original Message - From:

Re: losing session info with netscape 4.x

2002-04-01 Thread Jeff Larsen
Netscape 4.x has been working for me in this type of situation, but the value of .x might make a difference. Do you have cookies enabled? If not, does your javascript for opening the popup window use a correctly encoded URL so the popup window's request has the session id built in? For

RE: losing session info with netscape 4.x

2002-04-01 Thread Huy K Dung
netscape 4.79 in particular. Accept all cookies option is selected. I will try your suggestion and see what it will do. Thanks. PS. how do you correctly encode URL? -Original Message- From: Jeff Larsen [mailto:[EMAIL PROTECTED]] Sent: Monday, April 01, 2002 06:29 PM To: Tomcat Users

Re: Mapping *.abc requests to Tomcat

2002-04-01 Thread @Basebeans.com
Subject: Re: Mapping *.abc requests to Tomcat From: Hyunjin Kim [EMAIL PROTECTED] === when stopping: 1. stop apache 2. stop tomcat when starting 1. start tomcat 2. start apache (someone says 10 seconds delay between starting of tomcat and apache is needed..) Good luck! Alan Williamson [EMAIL

Re: HELP!! Container managed authentication problem with Apache 1.3 + Tomcat 4 + Warp

2002-04-01 Thread @Basebeans.com
Subject: Re: HELP!! Container managed authentication problem with Apache 1.3 + Tomcat 4 + Warp From: Hyunjin Kim [EMAIL PROTECTED] === uh oh... I just found out that tomcat example application's security stuff works fine from port 80. That means the apache-tomcat connection was not the

Re: Mapping *.abc requests to Tomcat

2002-04-01 Thread costinm
On Mon, 1 Apr 2002, Jakarta Tomcat Newsgroup wrote: Subject: Re: Mapping *.abc requests to Tomcat From: Hyunjin Kim [EMAIL PROTECTED] === when stopping: 1. stop apache 2. stop tomcat when starting 1. start tomcat 2. start apache (someone says 10 seconds delay between starting of

Libraries problem

2002-04-01 Thread RAYMOND Romain
Hello, I use TC 4.0.3, my web app used XML parser and transformer (throught the XML Jakarta project FOP). Before I was using TC 4.0.1, with this version my application was working with all libraries (jar files) used to run it who were inside my WEB-INF/lib. I do not understand why now I am with

AW: AW: sessions, security, and the RFCs

2002-04-01 Thread Ralph Einfeldt
As I understand it, the spec doesn't say much about the session bahaviour in this scenario. So it's quite legal that different containers implement opposite behaviours for the switch between http and https. It would be nice to hear what one of the gurus has to say about this topic ?

Reagrding file size in uploading

2002-04-01 Thread jagan mohan
hi all! Is there any control in size of the file which is to be uploaded from local system to the server? Jaganmohan, Software Engineer - MIS, Unidux Electronics Ltd., Tel : 65 6293 4797 Fax : 65 6293 4920 www.unidux.com.sg. --- Outgoing mail is certified Virus Free. Checked by AVG

Odp: Reagrding file size in uploading

2002-04-01 Thread tszacon
Try http://www.jspsmart.com/ Tom -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto:[EMAIL PROTECTED]

Re: Libraries problem

2002-04-01 Thread Jacob Kjome
Hi Raymond, Supposedly having the XML parser in the webapp itself is against the Sun classloading spec. The spec was beginning to be implemented in 4.0.2 (in fact, if you look at 4.0.2-b2, you still get the 4.0.1 behavior). 4.0.3 is pretty much an exact copy of 4.0.2 except with a security

Where to config the jsp(html outputsteam) output size....

2002-04-01 Thread Gordon Luk
Hi all, I got a problem, that is my jsp(with struts) all the way threw exception (java.lang.NullPointerExcepton), i trace around my jsp code, but hadn't found any problem. When i view the problem output(html), found exception point is not consistence, and i feel that not problem on my code,