Re: 2 Apps, 1 Tomcat

2001-10-22 Thread Anand B N
Mazur, Tomcat internally has ways of associating classes to which web-application they belong to. There are classes of three kinds that get loaded when Tomcat gets loaded:- 1. Tomcat internal classes - These are the actual classes loaded by default class loader of the JVM. 2. Common classes

Hi

2001-10-22 Thread Sachin Pandey
Hi, I was mistaken earlier by saying that the JBoss distribution comes along with javac.jar. This jar File is actually a part of the JBoss source download which make the licensing issues very different. Sachin

Re: automatic shutdown from servlet.init() that is load-on-startup

2001-10-22 Thread E B
Do you mean a webapp should be able to stop the appserver tomcat ? If this is what you wanted, then will other webapps be happy with this ? --- Brett Porter [EMAIL PROTECTED] wrote: Hi, I saw a message a while back on this, but don't remember a solution and failed to find it in the

Re: automatic shutdown from servlet.init() that is load-on-startup

2001-10-22 Thread Brett Porter
I realise this isn't very well-behaved, but any others will probably be dealing with the same problems. At this point in time there is only one web application. Perhaps there is another solution - eg send an email on failure and get an administrator to check in on the problem. Cheers, Brett

Re: automatic shutdown from servlet.init() that is load-on-startup

2001-10-22 Thread simon
The way to shutdown tomcat is to use the class org.apache.tomcat.task.StopTomcat which sends a shutdown message to the ajp12 port. An example of it's usage is in Tomcat.java (src/share/org/apache/tomcat/startup) hope this helps simon - Original Message - From: Brett Porter [EMAIL

Re: automatic shutdown from servlet.init() that is load-on-startup

2001-10-22 Thread simon
Whoops! This is for Tomcat 3.2.3. Sorry. - Original Message - From: simon [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, October 22, 2001 4:09 PM Subject: Re: automatic shutdown from servlet.init() that is load-on-startup The way to shutdown tomcat is to use the class

Tomcat authentication faild always in linux

2001-10-22 Thread [EMAIL PROTECTED]
Hi all! I'm a system administrator in a little company. I'm working with Tomcat 3.2.3 in server Windows 2000 and RedHat 6.2 I'm preparing these two server to use an application that require an authentication. In Win 2k it's all OK! The configuration in RedHat doesn't go! If I tell

Fall of performance in integrating Apache with Tomcat

2001-10-22 Thread Mauro Fabrizioli
Following manual suggestions, I've integrated Tomcat 3.2 with Apache, using mod_jk, in order to have a more robust and fast product to manage the static html pages. But, testing the new architecture with Jmeter, I've found out that the average time in accessing both dynamic pages (managed by my

Handling apostrophes

2001-10-22 Thread dave . prout
Hi all, I'm developing an application which uses java servlets and JSPs and a MySQL database running on Tomcat 4.0. I take user input, store it on the db, then display it again. As soon as someone tried inputiing an apostrophe, it all fell over. It seems that I have to encode

Re: Handling apostrophes

2001-10-22 Thread David Treves
Hi there, you should simply duplicate in every input string the apostrophe. Meaning that if the input string is: eee'eee after manipulating it - BEFORE inserting it to the DB it will be: eee''eee ( ' twice, NOT A double quote) in the DB it will appear as SINGLE apostrophe. That will

RE: Handling apostrophes

2001-10-22 Thread Deacon Marcus
Hi, Try using prepared statements. They allow parameters, so basically you define a query with parameters, then set parameter values, and jdbc takes care of all char-quoting. Greetings, deacon Marcus -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday,

Auth problems with redhat

2001-10-22 Thread [EMAIL PROTECTED]
Hi All! I've two pc RedHat 6.2 that they have installed Tomcat 3.2.3 (downloaded from JBoss site) and they have Apache 1.3.22. First pc allow me to authenticate with Tomcat Basic authentication in Tomcat Admin application, other no! 1) Files permissions are equals 2) Configuration Files

problem with form based authentication (tomcat 3.2.3)

2001-10-22 Thread raj
Wrote a small test servlet which works fine using JDBC realm and BASIC authentication. But when I replace BASIC with FORM (with LoginForm.html LoginError.html files inside the servlet) I get: http://localhost/testservlet/j_security_check (my servlet call is:

RE: Can the isapi_redirect.dll be used for Tomcat 4.0?

2001-10-22 Thread Reynir Hübner
nope. -Original Message- From: Bigelow, Mark [mailto:[EMAIL PROTECTED]] Sent: 19. október 2001 23:17 To: '[EMAIL PROTECTED]' Subject: Can the isapi_redirect.dll be used for Tomcat 4.0? If I change to point to the correct libraries in the new structure, can the old DLL be used?

RE: Handling apostrophes

2001-10-22 Thread dave . prout
So what would the input statement look like ? Dave -Original Message- From: Deacon Marcus [mailto:[EMAIL PROTECTED]] Sent: 22 October 2001 10:23 To: tomcat-user Subject: RE: Handling apostrophes Hi, Try using prepared statements. They allow parameters, so basically you define a

RE: Handling apostrophes

2001-10-22 Thread dave . prout
Sounds like a bigger overhead than encode Dave -Original Message- From: David Treves [mailto:[EMAIL PROTECTED]] Sent: 22 October 2001 10:09 To: tomcat-user Subject: Re: Handling apostrophes Hi there, you should simply duplicate in every input string the apostrophe. Meaning that

admin context

2001-10-22 Thread David Treves
Hello there, I tried following the instructions of how to manage the admin context in Tomcat 3.2.3, yet could not understand what to do... what is the trusted attribute in the Context tag in server.xml? where do I need to define users? in tomcat-users.xml? which role does the admin have?

RE: Handling apostrophes

2001-10-22 Thread Chandramouli Nagarajan
Not really a big overhead, this piece of code wld do that... public String padApos(String toPad) { StringTokenizer tokenizer=new StringTokenizer(toPad,'); String retVal=new String(); while(tokenizer.hasMoreTokens()) {

Re: Handling apostrophes

2001-10-22 Thread David Treves
do you believe that replacement of one char in a string with two chars costs more than encoding the string? David. btw, I believe that prepared statements may solve that issue the best way, that's in case you do not use JdbcOdbcBridge, from my experience I studied that it doesn't update varchar

Apache problem

2001-10-22 Thread The Duke
I have a problem using Tomcat and Apache. I have built an application, that works perfect when only Tomcat is up. When I use Apache too, nothing happens. My servlet and Bean are found, but the xml parser stops at the point where the xml document is build. I'm using JDom as xml parser. And an

RE: Handling apostrophes

2001-10-22 Thread Michael Weissenbacher
well this piece of code will work, but you should implement it with StringBuffer, not with String as String's are immutable and with every += you are allocating a new String and copying everything what can become a great overhead. michael -Original Message- From: Chandramouli Nagarajan

RE: Handling apostrophes

2001-10-22 Thread Michael Weissenbacher
call the following method like this String_Util.replace(value,',''); public static String replace(String oldString, String toReplace, String replaceWith) { if(toReplace==null || toReplace.equals() || oldString==null || oldString.equals() || replaceWith==null) return oldString;

RE: Handling apostrophes

2001-10-22 Thread Chandramouli Nagarajan
That's a good idea. Thanks for noting me.I wld follow it. Regards, N.Chandramouli.

more servers

2001-10-22 Thread [EMAIL PROTECTED]
Hi all! Can someone help me? I want have two server.xml, but if I create them and restart tomcat.. In first there're contexts that I want have only in the second. What I must do?

MySQL Database and Tomcat 4.0.1

2001-10-22 Thread Nottebrok, Guido
Hallo, I try to use a MySQL database with tomcat4.0.1. and Windows2000 but no success. The jdbc2_0-stdext.jar and mm.mysql-2.0.6.jar are in CATALINA_HOME\common\lib. I read the jndi-resources-howto.html and searched in the list-archive but I get always null for the DataSource or a

RE: Debugging in Tomcat 4

2001-10-22 Thread Donie Kelly
I can solve all your woes guys if you're prepared to purchase VisualCafé. I have it set up here at the moment. Basically I run Tomcat 4.0 within Café and I can debug/edit/set breakpoints etc in any servlet or class. It's superb. I looked at this problem for a while and I do have a set of

warp connector

2001-10-22 Thread Wim Peeters
Hello, I've configured apache http server 1.3.22 to work with tomcat 4.0.1 using the webapp-module 1.0-tc40 Whenever I request a servlet by using the warp connector so apache will redirect I get the following error, and I have to restart tomcat to continue anyone any ideas? Starting service

Tomcat admin context

2001-10-22 Thread Mehdi
Folks, How do you remove the /admin context from tocat without breaking other stuff ? Is it supposed to be as simple as removing its entry from the server.xml ? Cheers Mehdi

RE: Apache problem

2001-10-22 Thread Thys De Wet (ZA)
Have u set up apache to forward .xml files to tomcat ? ** This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have

Tomcat, JDBCRealm and Mozilla/Netscape with Cookie

2001-10-22 Thread twrichter
Hello there, sorry, but I think I have to repost my former mail.. The one thing - JDBC Realm does not work w/o Cookie running 3.2.3 is solved (thanks), but the other problem still exists: I am running Tomcat 3.2.3 under Linux and (for test purposes) Windows NT. My application uses

How to expire?

2001-10-22 Thread raj
I have set the session expiry time in my Test servlet to 10 secs (BASIC auth., using JDBC realm). But when I type in the URL in the browser (IE5/6, Mozilla, Netscape 4.x etc), the login window does not reappear but request goes straight to the servlet in question. I even tried to invalidate the

Re: admin context

2001-10-22 Thread Anand B N
David, As regards to where to define your users here what you have to do :- tomcat-users.xml defines a set of roles and users with passwords. Here's a snippet:- tomcat-users user name=tomcat password=tomcat roles=tomcat / user name=role1 password=tomcat roles=role1 / user name=both

Re: warp connector

2001-10-22 Thread Pier Fumagalli
Wim Peeters at [EMAIL PROTECTED] wrote: Hello, I've configured apache http server 1.3.22 to work with tomcat 4.0.1 using the webapp-module 1.0-tc40 Whenever I request a servlet by using the warp connector so apache will redirect I get the following error, and I have to restart

RE: How to expire?

2001-10-22 Thread Shah, Chintan V (Chintan)
try this one : session.setMaxInactiveInterval(time in seconds); regards, Chintan -Original Message- From: raj [mailto:[EMAIL PROTECTED]] Sent: Monday, October 22, 2001 6:20 PM To: [EMAIL PROTECTED] Subject: How to expire? I have set the session expiry time in my Test servlet to 10

Re: How to expire?

2001-10-22 Thread raj
Yep, I am doing that currently to set expiry time and obviously it does not work. Cheers -raj try this one : session.setMaxInactiveInterval(time in seconds); regards, Chintan -Original Message- From: raj [mailto:[EMAIL PROTECTED]] Sent: Monday, October 22, 2001 6:20 PM To: [EMAIL

RE: Apache problem

2001-10-22 Thread The Duke
The application is located in the Tomcat/webapps/ folder . Apache doesn't have anything to do with xml files, but just go to Tomcat. On Mon, 22 Oct 2001 11:55:24 Thys De Wet (ZA) wrote: Have u set up apache to forward .xml files to tomcat ?

RE: Handling apostrophes

2001-10-22 Thread dave . prout
Thanks Michael Dave -Original Message- From: Michael Weissenbacher [mailto:[EMAIL PROTECTED]] Sent: 22 October 2001 10:51 To: '[EMAIL PROTECTED]' Subject: RE: Handling apostrophes call the following method like this String_Util.replace(value,',''); public static String

Re: How to expire?

2001-10-22 Thread Luc Vanlerberghe
raj wrote: I have set the session expiry time in my Test servlet to 10 secs (BASIC auth., using JDBC realm). But when I type in the URL in the browser (IE5/6, Mozilla, Netscape 4.x etc), the login window does not reappear but request goes straight to the servlet in question. I even

Re: How to expire?

2001-10-22 Thread raj
The user-experience stays the same: When the user access any url in the protected area, the login page will pop up and after he provides correct information he will be directed to the page he requested. For Tomcat 3, just make sure the login page is outside the protected area, for tomcat

Re: Apache with EAPI

2001-10-22 Thread Jean-Luc BEAUDET
Pier Fumagalli a écrit : Jean-Luc BEAUDET at [EMAIL PROTECTED] wrote: Then i added a context in server.xml !-- Cecile Project Context -- Context path=/cecile docBase=cecile debug=0 privileged=true/ So the examples keep on runnin' OK and /cecile/my_servlet goes well

RE: Help with webapp module, Apache 1.3 and Tomcat 4.0, ATT: Pier

2001-10-22 Thread Philippe Khalife
I'm not claiming I know the reason why this error happens, but I have the same problem. My fix: Change the ServerName in httpd.conf to be the IP address instead of the hostname.domain.com, keep the name in server.xml it works. ;) PK -Original Message- From: Craig Setera [mailto:[EMAIL

Problem with browsing

2001-10-22 Thread Stefano Bonnin
Hi, I have just developed a site with Tomcat but I have a problem. If I insert an URL without filenames Tomcat displays the entire Directory. I don't want this. How can I deny this at the Internet users? Thanks. Shaphiro.

URLs

2001-10-22 Thread Stefano Bonnin
Hi, I have the following URL: http://www.mysite.com/Cocoon/MyApp/index.xml I would like to access at index.xml with this URL: http://www.mysite.com How can I do that with Tomcat? Thanks, Shaphiro.

Re: How to expire?

2001-10-22 Thread twrichter
Hi, it seems that you have a similar problem than mine (not with basic auth but with JDBCRealm, see thread below). The cookie in Mozilla and Netscape is still there. I have to close the browser window or to delete the cookie manually. Stange enough the routine works with IE 5. Could it be a

Tomcat /Apache Security Exception

2001-10-22 Thread Denis Simonneau
Hello all, I've configured two machines, one with Apache and the other one with Tomcat and the application I want to access to. But when I'm trying to access to the servlet, I 've the following error. Does anybody has an idea ? Thanks for any help Denis access: access allowed

Where are the public keys for tomcat signature files ?

2001-10-22 Thread Wolfgang Stein
How can i verify the signatures for the tomcat binaries ? Thanks in advance Wolfgang

Mod_webapp

2001-10-22 Thread Joel
Dear , Is mod_webapp.so in Tomcat 4.0 a replacement for mod_jk.so in Tomcat 3.3 or is there anything called mod_webapp in Tomcat 3.3 Regards Joel

RE: Help with webapp module, Apache 1.3 and Tomcat 4.0, ATT: Pier, Bug # 4334

2001-10-22 Thread Philippe Khalife
Bug track #4334 -Original Message- From: Pier Fumagalli [mailto:[EMAIL PROTECTED]] Sent: October 22, 2001 9:59 AM To: [EMAIL PROTECTED] Subject: Re: Help with webapp module, Apache 1.3 and Tomcat 4.0, ATT: Pier Philippe Khalife at [EMAIL PROTECTED] wrote: I'm not claiming I know

Message to Pier...

2001-10-22 Thread Jean-Luc BEAUDET
Hi Pier , Thank you for yur answer. I just add this Context in $CATALINA_HOME/conf/server.xml inside the Host tag ResourceParams name=mail/Session parameter namemail.smtp.host/name valuelocalhost/value /parameter

RE: Cannot load mod_webapp.so into server: __lshrdi3: reference symbol not found

2001-10-22 Thread Marjou Xavier
Hello, FYI : I also have the same pb with: webapp-module-1.0-tc40-src.tar.gz, libtool 1.4.2 and gcc 2.95.2 on Solaris 8 on sparc processor mod_webapp_pb.txt Xavier Marjou -Original Message- From: Pier Fumagalli [SMTP:[EMAIL PROTECTED]] Sent: Monday, October 15, 2001 7:50 PM To:

Re: Problem with browsing

2001-10-22 Thread carlos . chaparro
well, in tomcat 3.2 in server.xml in the request interceptor that handles static files.. (StaticInterceptor) you must change the suppress attribute to true, by default is false. or in tomcat 4 you must define in web.xml the listings parameter as false. hope it helps.. Carlos Chaparro Taller

mod_jserv.so compiled

2001-10-22 Thread Pal, Anshu
Hi , Does anyone have a compile version of mod_jserv.so. The operating system is Solaris 2.6 . it is running on a sparc. Thanks in Advance Anshu Pal Proprietary/Confidential Information belonging to CGI may be contained in this message. If you are not a recipient indicated or intended in this

Re: How to set up multiple auth-method in single webapps

2001-10-22 Thread Craig R. McClanahan
If you are using container-managed security, that is not possible -- you must pick one and only one login method. Craig On Mon, 22 Oct 2001, Kar YEOW wrote: Date: Mon, 22 Oct 2001 12:45:10 +1000 From: Kar YEOW [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED], Kar YEOW [EMAIL PROTECTED] To:

Re: How do you invalidate a single sign on session?

2001-10-22 Thread Craig R. McClanahan
To invalidate the single sign on session, simply invalidate one of the underlying logins. In practical terms, that means using form-based login (which is based on standard sessions) and just invalidating the session. Due to limitations in HTTP, there is no way for the server to invalidate a

WebDAV

2001-10-22 Thread Frank Lawlor
I just tried to use WebDAV with my application and I have some questions about configuring WebDAV which I cannot find in the distribution or any of the links. Can someone suggest a source of information? The kinds of questions I ran into were: I set the servlet-mapping as

Distributed Sessions

2001-10-22 Thread Alexandre Victoor
Hello, I need to run a servlet under tomcat on two servers at the same time (for load-balancing issues). My servlet deals with sessions, and so I need distributed sessions, is it possible to store session object in a database for example. Thanks if you can help me, I really need a response...

Re: Cannot load mod_webapp.so into server: __lshrdi3: reference symbol not found

2001-10-22 Thread Jean-Luc BEAUDET
Marjou Xavier a écrit : Hello, FYI : I also have the same pb with: webapp-module-1.0-tc40-src.tar.gz, libtool 1.4.2 and gcc 2.95.2 on Solaris 8 on sparc processor mod_webapp_pb.txt Xavier Marjou -Original Message- From: Pier Fumagalli [SMTP:[EMAIL PROTECTED]] Sent: Monday,

Load balancing entry in workers.properties

2001-10-22 Thread Shahed A Moolji
Hi, I am NOT using load balancing features of TC 3.2.3 w/Apache / mod_jk. But I have an entry in the workers.properties that defines a load balancer thread like lb=ajp12,ajp13 I am not using JKMount mtpt lb anywhere. I just have JKMount mount_point ajp13 in httpd.conf. Will this extra

Re: Mod_webapp

2001-10-22 Thread Pier Fumagalli
Joel at [EMAIL PROTECTED] wrote: Dear , Is mod_webapp.so in Tomcat 4.0 a replacement for mod_jk.so in Tomcat 3.3 or is there anything called mod_webapp in Tomcat 3.3 It's not a replacement... You can still use mod_jk in TC4, but you can't use mod_webapp in TC3. Pier

Re: Message to Pier...

2001-10-22 Thread Pier Fumagalli
Jean-Luc BEAUDET at [EMAIL PROTECTED] wrote: Hi Pier , Thank you for yur answer. I just add this Context in $CATALINA_HOME/conf/server.xml inside the Host tag ResourceParams name=mail/Session parameter namemail.smtp.host/name

RE: Problem with browsing

2001-10-22 Thread Chandramouli Nagarajan
Hi, I have already tried the setting of supress attribute to true in my server.xml.I am using tomcat3.2.3 with Apache. After this is restarted both of them. But it didn't seem to work.I am still getting the directory listing. Can i have not set some other attribute? Please guide me. Thanks,

Re: Cannot load mod_webapp.so into server: __lshrdi3: reference symbol not found

2001-10-22 Thread Pier Fumagalli
Marjou Xavier at [EMAIL PROTECTED] wrote: Hello, FYI : I also have the same pb with: webapp-module-1.0-tc40-src.tar.gz, libtool 1.4.2 and gcc 2.95.2 on Solaris 8 on sparc processor This is one of the bugs I said were in 4.0.1 (and 4.0 too)... Get the last nightly snapshot... Pier

Re: Cannot load mod_webapp.so into server: __lshrdi3: referencesymbol not found

2001-10-22 Thread Pier Fumagalli
Jean-Luc BEAUDET at [EMAIL PROTECTED] wrote: Well if i understand all the stuff, it feels yu try to compile mod_webapp with Sun C Compiler? Did y ucompile Apache with the same Sun C Compiler ? Cause ièm not quite sure it is compatible. Yes, they both have to be compiled with GCC... I

RE: Cannot load mod_webapp.so into server: __lshrdi3: reference symbol not found

2001-10-22 Thread Marjou Xavier
Well if i understand all the stuff, it feels yu try to compile mod_webapp with Sun C Compiler? Did y ucompile Apache with the same Sun C Compiler ? Cause i èm not quite sure it is compatible. JL ;O) I have compiled Apache with gcc and also try to compile mod_webapp with gcc

Re: mod_jserv.so compiled

2001-10-22 Thread Jean-Luc BEAUDET
Pal, Anshu a écrit : Hi , Does anyone have a compile version of mod_jserv.so. The operating system is Solaris 2.6 . it is running on a sparc. Thanks in Advance Anshu Pal Proprietary/Confidential Information belonging to CGI may be contained in this message. If you are not a recipient

Re: Message to Pier...

2001-10-22 Thread Jean-Luc BEAUDET
Pier Fumagalli a écrit : Jean-Luc BEAUDET at [EMAIL PROTECTED] wrote: Hi Pier , Thank you for yur answer. I just add this Context in $CATALINA_HOME/conf/server.xml inside the Host tag ResourceParams name=mail/Session parameter

TagLibs in Tomcat4.0.1

2001-10-22 Thread Jonathan Pierce
I'm trying to use tag libraries for the first time in Tomcat 4.0.1. I thought I'd try the io taglib first. I followed the instructions, and added the taglib element to the examples/WEB-INF/web.xml file as described in the documentation, but I'm getting a SAX parse error that I don't understand

Rebuilding Tomcat4.0.1 from source

2001-10-22 Thread raj
I am having to rebuild Tomcat 4.0.1 from source (see reason below). My build seems to proceed smoothly till I reach build.xml in tomcat-docs. Error is, webapps\tomcat-docs\build.xml:80: javax.xml.transform.TransformerFactoryConfigurationError: Provider org.apache.xalan.pro

Re: TagLibs in Tomcat4.0.1

2001-10-22 Thread Craig R. McClanahan
This error is coming from the XML parser when reading your web.xml file. It means that you have your elements out of order. The required order is listed after the must match part (i.e. icon must be first if it is present, then display-name, and so on). You didn't show your entire web.xml, but

TC4 classpath when NT_Service

2001-10-22 Thread Marcel Stoer
Hi all Which classpath does TC4 use when it's started as the (default) NT Service? The one specified in catalina.bat or the one in the system env? Got a NoClassDef found Exception when asking for a class that is in my system env classpath from a servlet. Marcel

RE: Chunked http requests

2001-10-22 Thread Rida Ligurs
Hi, I've been trying to receive chunked input into my servlet running under Tomcat 3.3-rc2 standalone. Is chunked input supported when running Tomcat in standalone mode? I'm getting the following exception: IOException in R( /mywebapp + /myservlet + null) - java.net.SocketException:

realm for non-catalina

2001-10-22 Thread Henry
I am wondering if Tomcat3.2.3 supports User/Role Realm or not. If yes, where can i find information on that? thanks a lot

Re: Handling apostrophes

2001-10-22 Thread Richard Troy
Yes, Dave, Though this is off-topic, databases are my thing, so here's an answer: Handling of qoutation marks and apostrophies are definete problem areas with any database access, depending on how you formulate your queries. If you embed your values to insert or update in Strings that make up

RE: Chunked http requests

2001-10-22 Thread Larry Isaacs
Sorry I wasn't more specific. AFAIK in Tomcat 3.3, chunked input is only supported when using the mod_jk connector with Apache. Larry -Original Message- From: Rida Ligurs [mailto:[EMAIL PROTECTED]] Sent: Monday, October 22, 2001 2:38 PM To: 'Tomcat-User (E-mail)' Subject: RE:

RE: realm for non-catalina

2001-10-22 Thread Henry
Because we don't have time to port many old applications to catalina. there are some incompabilites. when i tried the security/login.jsp in Tomcat3.2.3, no matter what user/passwd i typed in (from tomcat_user.xml) it just saidlogin failed would any body help me with this? On Mon, 22 Oct 2001,

Re: Pls fix SSLAuthenticator.java

2001-10-22 Thread Craig R. McClanahan
It's more likely that things like this will be dealt with if you submit them as bug reports in the bug tracking system: http://nagoya.apache.org/bugzilla/ Craig On Mon, 22 Oct 2001, Kar YEOW wrote: Date: Mon, 22 Oct 2001 15:50:25 +1000 From: Kar YEOW [EMAIL PROTECTED] Reply-To: [EMAIL

RE: realm for non-catalina

2001-10-22 Thread Larry Isaacs
You might try setting the debug level to 2 on the AccessInterceptor in server.xml. Then examine Tomcat's log to see if there are any clues as to why it isn't working. Are you using Tomcat 3.2.3 standalone or with a web server? Larry -Original Message- From: Henry [mailto:[EMAIL

Re: the include action - is this possible

2001-10-22 Thread Gaurav Khanna
Hi, I believe the following does not work. The include action cannot have runtime access of variables i.e. session.getAttribute(baseUri) ). I want to confirm whether this is the case: jsp:include page=%=session.getAttribute(baseUri)%include/stylepicker.jsp flush=true / I get the following

Re: realm for non-catalina

2001-10-22 Thread Frank Lawlor
There is usually some information in the log files even at debug=0. If it clearly says that login is failing, check you case (must match), that userid and pwd are varchar in the DB, etc. Maybe you REALLY are not matching. Frank Lawlor Athens Group, Inc. (512) 345-0600 x151 Athens Group, an

Works under Solaris but not under Win2000pro

2001-10-22 Thread Smith, Lawrence T (Lance)
Help please: I don't know if tomcat-users can help or if I'll have to go over to the JINI site but I do feel this is a Tomcat issue as it ran under Tomcat 3.1. I have a website that uses JINI lookup discovery to find services that it can use. It worked under Tomcat 3.1 and know works under Tomcat

Re: TC4 classpath when NT_Service

2001-10-22 Thread Remy Maucherat
Hi all Which classpath does TC4 use when it's started as the (default) NT Service? The one specified in catalina.bat or the one in the system env? Got a NoClassDef found Exception when asking for a class that is in my system env classpath from a servlet. None of them, actually. The

Re[2]: TagLibs in Tomcat4.0.1

2001-10-22 Thread Jonathan Pierce
Thanks Craig... I figured it out after I sent the message to the list. I should have realized that the XML elements needed to be in a specific order. I didn't see an example taglib in the /conf/web.xml so it wasn't obvious to me at first. Jonathan Reply

RE: Chunked http requests

2001-10-22 Thread Rida Ligurs
Thanks Larry, Do you know if Tomcat 4.0 supports it? -Original Message- From: Larry Isaacs [mailto:[EMAIL PROTECTED]] Sent: Monday, October 22, 2001 18:53 PM To: 'tomcat-user+AEA-jakarta.apache.org' Subject: RE: Chunked http requests Sorry I wasn't more specific. AFAIK in Tomcat 3.3,

Re: TC4 classpath when NT_Service

2001-10-22 Thread Marcel Stoer
Hi all Which classpath does TC4 use when it's started as the (default) NT Service? The one specified in catalina.bat or the one in the system env? Got a NoClassDef found Exception when asking for a class that is in my system env classpath from a servlet. None of them, actually.

Re: servlet in startup

2001-10-22 Thread Dr. Evil
Can someone please help me how to make my servlet run when the Tomcat starts up. What do I have to do in my codes to impelement this or some setup needed for my Tomcat config.? Put these lines in web.xml: servlet servlet-namestartlogging/servlet-name

Does tomcat 3.2.1 handle checkboxes properly?

2001-10-22 Thread Brandon Cruz
I have a form that submits information to a bean. When this page is a *.jsp form, checkboxes with the sam name and different values do not return like they should. If I have... input type=checkbox value=temp2 name=template input type=checkbox value=temp3 name=template I should get template =

Re[2]: TagLibs in Tomcat4.0.1

2001-10-22 Thread Craig R. McClanahan
On Mon, 22 Oct 2001, Jonathan Pierce wrote: Date: Mon, 22 Oct 2001 16:15:06 -0400 From: Jonathan Pierce [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED], [EMAIL PROTECTED] Subject: Re[2]: TagLibs in Tomcat4.0.1 Thanks Craig... I figured it out after I sent the

Re: TC4 classpath when NT_Service

2001-10-22 Thread Remy Maucherat
Hi all Which classpath does TC4 use when it's started as the (default) NT Service? The one specified in catalina.bat or the one in the system env? Got a NoClassDef found Exception when asking for a class that is in my system env classpath from a servlet. None of them,

mod_jk.so compiled for Solaris 8

2001-10-22 Thread Ed Tybursky
Does anyone have a compiled version of mod_jk.so for Solaris 8 running on a sparc that I may have real quick? Thanks, Ed

Re: TC4 classpath when NT_Service

2001-10-22 Thread Marcel Stoer
Hi all Which classpath does TC4 use when it's started as the (default) NT Service? The one specified in catalina.bat or the one in the system env? Got a NoClassDef found Exception when asking for a class that is in my system env classpath from a servlet. None

RE: TC4 classpath when NT_Service

2001-10-22 Thread Geoff Howard
I think the point is probably that bootstrap dynamically loads the other necessary classes at runtime, but uses the conf files to do so. I'm pretty sure that the startup scripts setup the classpath the way they want them, ignoring your system classpath, except to restore it at shutdown.

Re: TC4 classpath when NT_Service

2001-10-22 Thread Remy Maucherat
that would then be $Catalina_Home/bin/bootstrap.jar??? As classpath?? What about all the other classes required from the JRE? There are none. The install process copies tools.jar from the JDK, and the other system classes are automatically included. Remy Does this mean that

Re: Rebuilding Tomcat4.0.1 from source

2001-10-22 Thread Remy Maucherat
I am having to rebuild Tomcat 4.0.1 from source (see reason below). My build seems to proceed smoothly till I reach build.xml in tomcat-docs. Error is, webapps\tomcat-docs\build.xml:80: javax.xml.transform.TransformerFactoryConfigurationError: Provider org.apache.xalan.pro

Compilation Error when building Tomcat

2001-10-22 Thread Nitin Vira
Hi, I am trying to build Tomcat 4.0 from source on windows. I am following the steps given in the build.txt. when i am doing ant dist, it gives me compilation error for classes related to servlet API saying certain method doesnt exist even though the method is present in the interface. for

mod_webapp for NT compiled from daily snapshot

2001-10-22 Thread Geoff Howard
Does anyone have a compiled version of mod_webapp for NT (Win2k) compiled recently from the daily snapshots Pier has been providing? If so, would you mind forwarding? I don't know if libapr.dll needs to be rebuilt along with that, but if so I'd need that as well. Geoff [EMAIL PROTECTED]

Tomcat 4.0.1 not updating the webapp

2001-10-22 Thread Sergey V. Udaltsov
Hi all I took 4.0.1 and have the same problem with the updating of webapps. I install my webapp using the manager/install?... and remove using manager/remove?... Everything is fine. Then I install the new version from the same war file (definitely, new version of it), get OK, and in the browser

multipart form data

2001-10-22 Thread Henry
In a FORM data that uses POST method, I need to upload a file as well as other string data. according to oreily, forms should be ENCTYPE=multipart/form-data, however, when this thing is added, all the inputs in the form can not be reached by request.getParameter(...) how can i fix it? below

RE: multipart form data

2001-10-22 Thread Brandon Cruz
You need to use the new BinaryRequest class that he creates to get all your form data, including strings. Brandon -Original Message- From: Henry [mailto:[EMAIL PROTECTED]] Sent: Monday, October 22, 2001 4:47 PM To: [EMAIL PROTECTED] Subject: multipart form data In a FORM data that

Tomcat Manager Application Questions and Problems

2001-10-22 Thread Frank Lawlor
1) Does reload pick up changes to web.xml? 2) I added manager servlet to my web app (/AGCW) and when I send the manager a command to reload I get the following in the localhost_log: 2001-10-22 16:32:34 StandardWrapper[/AGCW:Manager]: Loading container servlet Manager 2001-10-22 16:32:34

RE: multipart form data

2001-10-22 Thread Martin van den Bemt
pass the request to the o'reilly stuff and request the objects from there and you can also get a new request object from there servlets which behaves the way you want.. Mvgr, Martin -Original Message- From: Henry [mailto:[EMAIL PROTECTED]] Sent: Monday, October 22, 2001 11:47 PM To:

  1   2   >