Internal Server Configuration Error

2002-11-18 Thread Marc
object libc.so.6 not found Any ideas??? Thank you all! Marc -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Internal Server Configuration Error

2002-11-18 Thread Marc
object libc.so.6 not found Any ideas??? Thank you all! Marc -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: Internal Server Configuration Error

2002-11-18 Thread Marc
Hi Roland, the line 437 tries to load the mod_jk.so library. I think that the libc.so.6 library is needed when using mod_jk.so, but I don't know how to fix this. Note: My OS is FreeBSD, apache is 1.3.19 and tomcat 4.1.12. Thanxs Marc Roland Carlsson wrote: Have you tried to look at line

New troubles with Tomcat 3.2.1

2001-09-22 Thread Marc
help... Maybe I should consider upgrading to 4.0? Is it ready for prime time? Is it difficult to upgrade? I am only running a few servlets and a simple web site from it Any thoughts or ideas? Thanks... Marc P.S. Sorry if this gets posted twice, Outlook Express seems to send everything

Difference between ajp13 and ajp14

2002-09-10 Thread Marc
Hi everybody!!! What is the difference between ajp13 and ajp14? is ajp14 an improve over ajp13? Wich do u think is the best (performance, estability, ...) for connecting tomcat4.1.10 to apache1.3.26?? Thank u all!!! Marc -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional

Re: Difference between ajp13 and ajp14

2002-09-10 Thread Marc
Ok, thank you! I'll install the JK connector. Bye! Marc Turner, John wrote: For Apache 1.3.26, I don't think you have a choice. As far as I know, you are limited to mod_jk, which is AJP13. Anyone who has successfully built the 4.1.10 connectors (JK and JK2) for Apache 1.3.26 and 2.0.40

Enviroment variables

2002-09-20 Thread Marc
, what is the best connector for apache-tomcat with virtual hosting? I'm trying to do it with JK, but, are there other possibilities? (webapp, jk2...) Thank you all!!! Marc -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: Cannot setup tomcat

2002-09-23 Thread Marc
After doing stratup.sh, if I do a 'ps -gux', I can see a lot of java process. Seems that tomcat starts, but the connectors does not start. Marc Kwok Peng Tuck wrote: The problem with the shutdown probably has something to do with the fact that it didn't start up in the first place. I think

Re: Cannot setup tomcat

2002-09-23 Thread Marc
ooops, sorry, problem doing copypaste from another place... The environment vars are ok Marc Ray Madigan wrote: I don't know if this is your problem but your CATALINA_HOME AND BASE point to a *-tomcat-4.0.10 when it maybe should be 4.1.10? -Original Message- From: Marc Vila Perez

Re: Cannot setup tomcat

2002-09-23 Thread Marc
I will try using jdk1.3). How can I know the used ports on linux (I've tried 'netstat', but the information is confused)? Thank you!!! Marc Turner, John wrote: Don't worry about the connector at the moment. Take things one step at a time. Get Tomcat working on its own first, then worry

Re: Cannot setup tomcat

2002-09-23 Thread Marc
Hi John, I'm trying tomcat with the default server.xml. Tomcat is running on a webserver (I can access via telnet). I'll try to investigate more about netstat opts. Thank you again! Marc Turner, John wrote: Is the HTTP connector enabled? Is the Host element in server.xml correct? Are you

Re: Cannot setup tomcat

2002-09-23 Thread Marc
HttpConnectionHandler on 80 2002-09-23 16:31:13 - PoolTcpConnector: Starting Ajp13ConnectionHandler on 8009 But in my case, startup seems to run ok, a lot of java process are created, but: the catalina.out is empty and I cannot connect to the server on port 8080. bye! Marc Michael Schulz wrote: What

Re: Cannot setup tomcat

2002-09-23 Thread Marc
HttpConnectionHandler on 80 (apologize for the confusion). I tried to startup tomcat (on port 8080) as root, but I obtained the same response. Marc Turner, John wrote: Now wait a minute! You just posted that you are using the default. The default does not have the HTTP handler on port 80!! Have you

Re: Cannot setup tomcat (again)

2002-09-24 Thread Marc
/server.xml, and using jdk 1.3, but the process had the same behavior. And, of course, I couldn't shutdown tomcat with shutdown.sh. Any idea? Marc -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: AW: Copious Connectors Conundrum

2002-09-25 Thread Marc
Hi! Can I use Coyote Jk 2 connector, with mod_jk.so, for connecting apache with tomcat? (using ajp13 protocol), or I must use an Ajp13Connector? Thanxs!! Marc Ralph Einfeldt wrote: mod_jserv (deprecated) mod_proxy (no loadbalancing) - This is a quite old apache module that isn't

Re: Integrating Apache 1.3 / Tomcat 4.12 on Redhat Linux 7.3

2002-09-27 Thread Marc
Hi John, wich connector do you recommend to connect Tomcat with Apache (I haven't seen in your howto)? Thank you Marc Turner, John wrote: http://www.johnturner.com/howto/apache1-tomcat404-howto.html It's for Tomcat 4.0.4, but that shouldn't make too much of a difference. If you use

Re: Integrating Apache 1.3 / Tomcat 4.12 on Redhat Linux 7.3

2002-09-27 Thread Marc
Sorry, I would say wich connector in the server.xml do you use? Thanxs Marc Turner, John wrote: Well, my personal choice is mod_jk. And based on Henri's response to my question earlier today, I would say mod_jk is the only choice, since according to him JK2 is considered beta. I'm

Re: mod_jk error under load

2002-09-30 Thread Marc
Hi, where can I find a description for each 'errno'? I receive errno = 110 when I try to access tomcat connecting to a *.jsp page through apache. Thank you!!! Marc Anthony Milbourne wrote: Hi 146 is a socket connection error. Try checking your workers.properties file (or the JBoss file

Re: Is ajp13 connector running?

2002-10-07 Thread Marc
/IfModule JkWorkersFile /usr/local/jakarta-tomcat-4.1.12/conf/workers.properties JkLogFile /usr/local/jakarta-tomcat-4.1.12/logs/mod_jk.log JkLogLevel debug ## End Tomcat setup ## JkMount /*.jsp ajp13 (I've defined a Context path=... in my server.xml) Thanks Marc Raj Saini

Re: Is ajp13 connector running?

2002-10-07 Thread Marc
with docBase=/var/www/html and path= (the host is localhost) Marc Raj Saini wrote: What is the URL you are using? Your Jk worker will only root the *.jsp requests to tomcat. Try changing your jkMount directive to: JkMount /* ajp13 Raj Marc wrote: Hi Raj, here is my workers.properties

Re: Is ajp13 connector running?

2002-10-07 Thread Marc
Yes, I can, and before configure ajp13, I could access to the page using apache on port 80 (I could see the page source, of course). Marc Raj Saini wrote: Hi Marc, Can you see the JSP page in standalone Tomcat? Test if you can see the apge on port 8080. Raj Marc wrote: Hi Raj, I've

Re: Error using ajp13 protocol

2002-10-08 Thread Marc
ideas? Regards! Marc Raj Saini wrote: Hi Marc, Though I am not expert in the JK Connectors, But it is very clear that mod_jk part at apache is not able to connect to the tomcat process. There may be three reason for this:- 1. Your JK connector on tomcat is not listening on port 8009. 2

Re: Error using ajp13 protocol

2002-10-09 Thread Marc
Best regards Marc PD: Configuration is RedHat 7.2, Tomcat 4.1.12, Apache 1.3.22 and jdk 1.4.1. I only have access to the machine throug telnet or a web application called webmin (I don't know if this can affect), but I tried the same using 'curl', with the same result (curl http

Tomcat 4.1.12 forgets char encodings?

2002-10-28 Thread Marc Tricou
again. How can this be, does this problem sound familiar to anyone? Regards, marc -- To unsubscribe, e-mail: mailto:tomcat-user-unsubscribe;jakarta.apache.org For additional commands, e-mail: mailto:tomcat-user-help;jakarta.apache.org

shared session between http and https

2002-11-04 Thread Marc Guillemot
are shared between http and https). Any idea? Marc. -- To unsubscribe, e-mail: mailto:tomcat-user-unsubscribe;jakarta.apache.org For additional commands, e-mail: mailto:tomcat-user-help;jakarta.apache.org

Standalone Tomcat : suppress directory listing in web.xml

2002-11-05 Thread Marc Mendez
Hi, I browse the archive, but I found just a part of the answer. I use Tomcat standalone (the app will run under tomcat 3.x and 4.x). I want to prevent access to directories, but I just want to configure this in the web.xml file of my app, nowhere else ! As u see below, the web.xml is quite

Re: Standalone Tomcat : suppress directory listing in web.xml

2002-11-05 Thread Marc Mendez
Hi, Yes, but it means that I change the behaviour of the others app ! - Original Message - From: Kiev [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Tuesday, November 05, 2002 3:55 PM Subject: Re: Standalone Tomcat : suppress directory listing in web.xml If you

Re: Standalone Tomcat : suppress directory listing in web.xml

2002-11-05 Thread Marc Mendez
Opps, I have tested this in the conf/web.xml file : no effect ! init-param param-namelistings/param-name param-valuefalse/param-value /init-param Kiev -- To unsubscribe, e-mail: mailto:tomcat-user-unsubscribe;jakarta.apache.org For additional commands, e-mail:

Re: Standalone Tomcat : suppress directory listing in web.xml

2002-11-05 Thread Marc Mendez
- Original Message - From: Turner, John [EMAIL PROTECTED] Did you search the archives? This topic has come up several times before. Do some research! And... do read my posts ! 1. I browsed the archive 2. The solutions does not work. I want to change the web.xml of the app. I

Re: Standalone Tomcat : suppress directory listing in web.xml

2002-11-06 Thread Marc Mendez
- Original Message - From: Craig R. McClanahan [EMAIL PROTECTED] You can suppress directory indexes in the $CATALINA_HOME/conf/web.xml file. See the listings init parameter for the default servlet. Read my previous post. You have complete control over which requests your filter

plain MySQL DataSource in Tomcat (i know, damn topic)

2002-07-02 Thread Marc Logemann
thought that using a datasource is better than just calling the DriverManager, but the effort seems amazing... or i am too unclever... whatever... thx for help. --- greetings from Marc Logemann Homebase @ www.logemann.info -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional

plain MySQL DataSource in Tomcat (i know, damn topic)

2002-07-02 Thread Marc Logemann
, is there a connection pooling implied? For me it seems that when i do DataSource.getConnection() i just get a normal MySQL connection as when i do classForName(Driver) or? --- greetings from Marc Logemann Homebase @ www.logemann.info -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED

Unknown Source in Trace?

2002-07-03 Thread Marc Logemann
, i mean this makes it a little bit hard to debug the class, what can i do that tomcat knows the source and can point me to the correct line? Thx --- greetings from Marc Logemann Homebase @ www.logemann.info -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail

Re: AW: Unknown Source in Trace?

2002-07-03 Thread Marc Logemann
- Von: Marc Logemann [mailto:[EMAIL PROTECTED]] Gesendet: Mittwoch, 3. Juli 2002 10:53 An: [EMAIL PROTECTED] Betreff: Unknown Source in Trace? sometimes when tomcat prints out traces, i get the following: java.lang.NullPointerException at de.bahr.mapping.MOCompany.getByPrimaryKey(Unknown

way to get tomcat versionnumber on commandline

2002-07-04 Thread Marc Logemann
Hi, is there a way to resolve the tomcat version number on command line? Or are there any other hints in the tomcat dirstructure / files? thx --- greetings from Marc Logemann Homebase @ www.logemann.info -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail

Debugging Servlets with IDEA (or just an IDE)

2002-07-11 Thread Marc Logemann
Marc Logemann Homebase @ www.logemann.info -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

BasicDataSourceFactory (dbcp)

2002-07-12 Thread Marc Logemann
DataSource implementations? --- greetings from Marc Logemann Homebase @ www.logemann.info -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: BasicDataSourceFactory (dbcp)

2002-07-12 Thread Marc Logemann
of the posts on this list! THe point is, SUN defined at least some property names in http://java.sun.com/products/jdbc/jdbc20.stdext.pdf Paragraph: 5.3.1 it would be nice if at least the common ones would be uniform. Also just my 2 cents. --- greetings from Marc Logemann Homebase @ www.logemann.info

RE: Apache/WARP connector/trailing slash

2002-02-04 Thread Marc Ostrow
for you. Marc. -Original Message- From: Adrian Caneva [mailto:[EMAIL PROTECTED]] Sent: Monday, February 04, 2002 9:34 AM To: Tomcat Users List Subject: RE: Apache/WARP connector/trailing slash Hi Marc, I am using : #WebAppDeploy examples warpConnection /examples and it works fine. If as you

Fw: Tomcat 4.0 and Windows XP

2002-03-17 Thread Marc Chamberlin
I think I am going to resend this, I didn't see show up the first time... - Original Message - From: Marc Chamberlin To: [EMAIL PROTECTED] Sent: Sunday, March 17, 2002 3:34 PM Subject: Tomcat 4.0 and Windows XP Hate to ask a straightfoward question, but can't seem to find any

Tomcat 4.0 and Windows XP

2002-03-18 Thread Marc Chamberlin
Tomcat 4.0 been tested under Windows XP? Thanks for any/all replies, just trying to forsee any roadblocks! ;-) Marc.. Do you think the software industry will ever make software

Does redirect stop processing of originally-targeted jsp?

2002-03-25 Thread Marc Elliott
with the javabean, and redirect to another page, will the process on that first jsp continue to run? How do I separate the presentation of jsp pages from the process being run by the client javabean? Is that possible. Thanks in advance for any help! -- Marc

Re: HTTP Tunnel (a response please????)

2002-04-09 Thread Marc Chamberlin
tunneling protocols, get a copy of Core Servlets and Java Server Pages by Marty Hall and published by Sun Microsystems He has a very good example of how to set these up Marc Chamberlin - Original Message - From: [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent

Re: How to install Tomcat on network -- is there any network version of Tomcat

2002-04-16 Thread Marc Chamberlin
firewalls. Hope this helps get you pointed in the right directionMarc... - Original Message - From: Uma Munugala [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Sent: Tuesday, April 16, 2002 12:34 PM Subject: RE: How to install Tomcat on network -- is there any network

Anti-Alias Font Images on the Fly?

2002-05-03 Thread Marc Elliott
also have an application for building web sites in which I'd like to offer the option of changing the pretty graphic type to the user. Any thoughts? Thanks! Marc -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto:[EMAIL

Tomcat on Win98

2002-05-09 Thread Marc Chamberlin
but am still confused ;-) Marc... Do you think the software industry will ever make software that is as easy and reliable for a user to use as the automobile industry makes a car

Mapping javabean fields to database columns programatically

2002-05-16 Thread Marc Elliott
to make an instance variable represent the fields. Has anyone else here attempted this. Seems like something that may have been tried before. Thanks, Marc .. Marc Elliott Director of Information Architecture / HNW Inc. Digital Solutions for High-Net

jndi resources in tomcat 4

2002-05-21 Thread Marc Savitsky
to follow the jndi how-to without success. I'm sure that I am missing out something really fundermental. Has anyone got any ideas to help me out? thanks Marc -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

reloading with ant

2002-05-22 Thread Marc Logemann
Hi, i just wanna ask if the following scenario is the best for re-deploying WARs: I am doing my build task with ant and transfer the WAR file of my application into the webapps folder of tomcat. Then i do a GET task with ant in order to re-deploy it, exacltly i would do a MANAGER REMOVE and

install/remove via manager (ant)

2002-05-27 Thread Marc Logemann
Hi, i am using (or trying) to use ant for redeploying my applications on my development-site. Perhaps you can help me with the following tasks: 1. i want to install a webapplication, so i do: tcinstall url=${catalina.url} username=${catalina.username} password=${catalina.password}

tomcat 3.2.4 versus recent one

2002-06-10 Thread Marc Logemann
Hi, i am dealing with a project on an IBM iSeries (AS/400). There you can use a pre-installed tomcat 3.2.4 or you can chose to install a recent one of course. Cause installing a recent one would require some efforts (we speak of more than one machine in this project), i want to ask if there are

ANT tasks

2002-06-25 Thread Marc Logemann
is capable of that, Craig i think you coded them, i would like to hear especially your oppinion :) bye --- greetings from Marc Logemann Homebase @ www.logemann.info -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

[ANNOUNCEMENT] Tomcat 3.2.4 Released

2001-11-21 Thread Marc Saegesser
the need for critical security updates, this will be the last release of the Tomcat 3.2.x branch. Future Jakarta development for the Servlet 2.2/JSP 1.1 specification will be based on Tomcat 3.3. Marc Saegesser -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL

PLEASE HELP, binary upload problem

2001-11-26 Thread Marc Boorshtein
using tomcat's httpd server and everything worked fine. I'm sure it's not apache because I used the servlets with apache in conjunction with JRun and everything worked. PLEASE HELP. Thanks Marc Boorshtein __ Do You Yahoo!? Yahoo! GeoCities - quick

(URGENT) Can't upload files to servlets in Tomcat 4.01 w/mod_webapp apache

2001-11-26 Thread Marc Boorshtein
and everything worked fine. I'm sure it's not apache because I used the servlets with apache in conjunction with JRun and everything worked. PLEASE HELP. Thanks Marc Boorshtein -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto

Location, Ownership, and File Permissions for production install of Catalina to be used with Apache (Unix)

2002-01-31 Thread Marc Ostrow
files are owned by root:wheel and its out-of-the-box document root is owned by root:admin. In addition, Apache is configured to run as www:www. Thank you in advance for your responses. Marc -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles

RE: jsp question about uploading images to a database

2002-02-01 Thread Marc Ostrow
http://www.servlets.com/cos/index.html These classes will get you the upload part. -Original Message- From: Magnus Jansson [mailto:[EMAIL PROTECTED]] Sent: Friday, February 01, 2002 9:20 AM To: [EMAIL PROTECTED] Subject: OT: jsp question about uploading images to a database I want to

Re: Apache/WARP connector/trailing slash

2002-02-03 Thread Marc Ostrow
I wanted to know the same thing, so I went out and looked at the code base to understand why. USE OF THE FOLLOWING IS AT YOUR OWN RISK. IN NO EVENT SHALL MYSELF AND/OR TWINQUEST LLC BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT

RE: Version

2001-08-16 Thread Marc Saegesser
or the response headers are guaranteed to return the actual version number. Feel free to send me $10,000 anytime you like. Marc Saegesser -Original Message- From: Barnabas Yohannes [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 16, 2001 2:38 PM To: [EMAIL PROTECTED] Subject

Feature List Tomcat 4.0 vs. Tomcat 3.x

2001-09-11 Thread marc . lehmann
? Thanks Marc

AW: Feature List Tomcat 4.0 vs. Tomcat 3.x

2001-09-11 Thread marc . lehmann
Hi Craig, Thank you for your prompt reply. How do I get a copy your JavaOne presentation? Do I need to go via Java Learning Center? Regards Marc -Ursprüngliche Nachricht- Von: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Gesendet am: Dienstag, 11. September 2001 17:50 An: [EMAIL

Separating back-end process from JSP display

2001-09-23 Thread Marc Elliott
stops running the for loop. Will the for loop keep running after the user changes pages if it is in a bean instead of a scriptlet? Thanks in advance for the help! -- Marc

Re: Load balancing explanation needed - please

2001-10-02 Thread Marc Ponschab
deny from all /Location Location /yourwebapp/META-INF/ AllowOverride None deny from all /Location __ Good Luck, Marc

Re: Session Problems

2001-10-04 Thread Marc Ponschab
,scrollbars=yes,resizable=yes,width=640,height=480); } if (articleWindow) articleWindow.focus(); } Marc

Re: Changin Content-type header for JSP pages

2001-10-04 Thread Marc Ponschab
); Marc

Re: Session Problems

2001-10-04 Thread Marc Ponschab
Hi, Byju P.Nair wrote: Yes Simon, you are right. Since the browser has cookie enabled, the above statement doesn't encode the sessionID into URL :-( See server.xml: !-- Session interceptor will extract the session id from cookies and deal with URL rewriting ( by fixing the URL ). If

Re: Session Problems

2001-10-04 Thread Marc Ponschab
Byju P.Nair wrote: Having suppressed the cookie usage, do i have to explicitly use URL rewriting by using response.encodeURL(...) to encode the sessionID? Yes, shure. Marc See server.xml: !-- Session interceptor will extract the session id from cookies and deal with URL rewriting

Re: mod_jk.so compiled for Solaris 8

2001-10-23 Thread Marc Ponschab
Hi, Ed Tybursky wrote: Does anyone have a compiled version of mod_jk.so for Solaris 8 running on a sparc that I may have real quick? I've uploaded some (with and without EAPI) to http://ponschab.de/mod_jk/ But i recommend compiling mod_jk by yourself. Marc

[ANNOUNCEMENT] Tomcat 3.2.4 beta 1 available

2001-10-27 Thread Marc Saegesser
in this release. Please download and the release and try it your environment. Report any bugs to the Apache Bug Database at http://nagoya.betaversion.org/bugzilla/ Assuming no show stopping bugs are found during the beta period, the final release is expected on about November 8, 2001. Marc

Re: Hoe can I get a binary mod_jk for Solaris 7

2001-10-31 Thread Marc Ponschab
Hi, i've build some for Solaris: http://ponschab.de/mod_jk/ Marc Yao, Qi (DSK DIG) wrote: Hi, does somebody know, where can I get a binary mod_jk for solaris/sparc? I have continually trouble with compile of mod_jk, the same problem, as the other people also have: -- apxs:Break

Tomcat and Apache configuration

2001-11-01 Thread Marc Daoust
whenever I go to localhost is the Apache test page, as for the tomcat test page I am unable to access it through localhost:8080 as the documentations state it should be. Marc Daoust Technical Associate HMS Software - publishers of TimeControl, the enterprise timekeeping system for project environments

[ANNOUNCEMENT] Tomcat 3.2.2 beta 2 released

2001-04-07 Thread Marc Saegesser
the potential to expose directory listings and file contents outside a web application. The problem first appeared in Tomcat 3.2.2 beta 1 and does not exist in Tomcat 3.2.1. If you are using any Tomcat 3.2.2 beta release please upgrade to the Beta 3 release as soon as possible. Marc A. Saegesser

[ANNOUNCEMENT] Tomcat 3.2.2 beta 3 released

2001-04-07 Thread Marc Saegesser
the potential to expose directory listings and file contents outside a web application. The problem first appeared in Tomcat 3.2.2 beta 1 and does not exist in Tomcat 3.2.1. If you are using any Tomcat 3.2.2 beta release please upgrade to the Beta 3 release as soon as possible. Marc A. Saegesser

Re: Auth bug in 3.2.1?

2001-04-14 Thread Marc Palmer
Hi Marc, I saw this problem in 3.2.1 as well - I made a fix for it in the tomcat that ships with the Borland AppServer but couldn't get anyone to comment on the fix in the main code-line (essentially I'm not a commiter so couldn't submit the fix) Hi Thom, Thanks for the info. Can someone

Re: Auth bug in 3.2.1?

2001-04-16 Thread Marc Palmer
-- Original Message -- On 16/04/01, 18:49:38, Rajesh A [EMAIL PROTECTED] wrote regarding Re: Auth bug in 3.2.1?: I found this bug report- http://znutar.cortexity.com/BugRatViewer/ShowReport/757. I think this is what we are talking about. It has already been fixed in 3.2.2beta3. I

RE: Tomcat 3.2.2 release schedule

2001-04-27 Thread Marc Saegesser
I recently fixed a couple thread synchronization and spec compliance issues in jasper for Tomcat 3.2.2b3. There will be a beta 4 release probably early next week to make those fixes public. If no serious problems are found during that beta period, I'll start the process of finalizing the

[ANNOUNCEMENT] Tomcat 3.2.2 beta 4 released

2001-04-30 Thread Marc Saegesser
the server is under high load and JSP source files are modified. The release notes file in src/doc/readme covers the details of the Tomcat 3.2.2 release. Marc A. Saegesser

RE: Tomcat 3.2.2 vs 3.2.1

2001-05-06 Thread Marc Saegesser
Tomcat is 3.2.2 is a bug fix release (actually one new feature got in, see the readme file). Tomcat 3.x is still Servlet 2.2 and JSP 1.1. -Original Message- From: Sam Newman [mailto:[EMAIL PROTECTED]] Sent: Friday, May 04, 2001 3:00 AM To: [EMAIL PROTECTED] Subject: Tomcat 3.2.2 vs

RE: bug - iis tomcat

2001-05-06 Thread Marc Saegesser
Are you sure that the request is actually being forwarded to Tomcat and not being served directly by IIS? -Original Message- From: thomas marban [werk3AT] [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 03, 2001 9:52 AM To: [EMAIL PROTECTED] Subject: bug - iis tomcat Importance:

[ANNOUNCEMENT] Tomcat 3.2.2 beta 5 released

2001-05-11 Thread Marc Saegesser
the JSP source text on some platforms. If you are using any previous beta release of Tomcat 3.2.2 please upgrade to beta 5 as soon as possible. The release notes file in src/doc/readme covers the details of the Tomcat 3.2.2 release. Marc A. Saegesser

RE: Thread deadlocking in 3.2.2 beta 5?

2001-05-22 Thread Marc Saegesser
It is possible that running on a multi-processor machine has uncovered a thread synchronization problem. Could you provide a little more information about the application? Are JSP files changing and being recompiled often or is it mostly static? Could try running Tomcat 3.2.2b5 on a single

RE: Using = 150 CustomTags on a JSP breaks the VM for all Tomcats (4.0b5/3.2.2b3-b5)

2001-05-23 Thread Marc Saegesser
I tried your example and got the same result using JDK1.2.2/Hotspot. When I use a non-hotspot JVM I get an out of memory error. If you haven't already, please submit a bug report about this at http://nagoya.apache.org/bugzilla/ -Original Message- From: Mueller, Franz [mailto:[EMAIL

RE: Thread deadlocking in 3.2.2 beta 5?

2001-05-23 Thread Marc Saegesser
]] Sent: Tuesday, May 22, 2001 6:58 PM To: '[EMAIL PROTECTED]' Subject: RE: Thread deadlocking in 3.2.2 beta 5? Hello Marc, You and I think alike :). I have already upgraded the single processor Server to 3.2.2 beta 5. I ran a battery of tests at it to simulate heavy load. So far

RE: Thread deadlocking in 3.2.2 beta 5?

2001-05-24 Thread Marc Saegesser
: Wednesday, May 23, 2001 10:50 AM To: '[EMAIL PROTECTED]' Subject: RE: Thread deadlocking in 3.2.2 beta 5? Hello Marc (and others that have been so kind to help), Here is the rundown on what I have tested: * Running on a Quad Processor NT Enterprise 6 Sp6a * This server is production - fairly

[ANNOUNCEMENT] Tomcat 3.2.2 released

2001-05-28 Thread Marc Saegesser
notes file in src/doc/readme covers the details of the Tomcat 3.2.2 release. Tomcat 3.2.2 is now the latest production quality Tomcat release. Users of version 3.2.1 and earlier release are encouraged to update to this release. Marc A. Saegesser

RE: tomcat on Netware

2001-05-30 Thread Marc Saegesser
The NetWare binaries are there now. I can't build the binaries for every platform, so other volunteers build them and send them to me to be posted. Binaries for additional platforms will appears over the next few days. -Original Message- From: Mark Currie [mailto:[EMAIL PROTECTED]]

trouble working with jdbc/dbtags taglib

2001-06-04 Thread Elliott, Marc
(Thread.java:484) .. Marc Elliott Director of Information Architecture / HNW Inc. Digital Solutions for High-Net-Worth Marketers ph: 617-243-9199 x224 fx: 815-327-4167

RE: HELP! IIS won't load ISAPI_REDIRECT.DLL

2001-07-12 Thread Marc Padberg
the connection. (ie win32\i386) and follow those instructions Then once everything is configured start and stop the IIS service. (From SERVICES) Marc -Original Message- From: tomcat_sergio tomcat [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 12, 2001 11:20 AM To: [EMAIL PROTECTED] Subject

RE: NT install notes error

2001-01-24 Thread Marc Saegesser
Already done (several weeks ago). It will appear in the next release of Tomcat 3.2.x. -Original Message- From: Steve Quail [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 24, 2001 2:35 AM To: [EMAIL PROTECTED] Subject: NT install notes error Could someone please update

RE: Possible isapi bug.

2001-01-24 Thread Marc Saegesser
I do this all the time and it works fine. No reboots needed. -Original Message- From: Craig Tataryn [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 23, 2001 4:37 PM To: [EMAIL PROTECTED] Subject: Possible isapi bug. I've noticed that if I edit my uriworkermap.properties

how to disable the tomcat webserver?

2001-01-31 Thread Marc Leblanc
browse the directory. i try with httpd.conf of apache with Directory and Location but was unable to prevent this. Thank you Marc Leblanc Nomad Logic [EMAIL PROTECTED]

how to disable the tomcat webserver?

2001-01-31 Thread Marc Leblanc
browse the directory. i try with httpd.conf of apache with Directory and Location but was unable to prevent this. Thank you Marc Leblanc Nomad Logic [EMAIL PROTECTED]

how to disable the tomcat webserver?

2001-02-02 Thread Marc Leblanc
it , that hewill not let everyone browse the directory. i try with httpd.conf of apache with Directory and Location but was unable to prevent this. Thank you Marc Leblanc Nomad Logic [EMAIL PROTECTED]

How to disable tomcat webserver ?

2001-02-02 Thread Marc Leblanc
browse the directory. i try with httpd.conf of apache with Directory and Location but was unable to prevent this. Thank you Marc Leblanc Nomad Logic [EMAIL PROTECTED]

aliasing and basicAuth with apache-tomcat-cocoon

2001-02-06 Thread Marc Leblanc
Hi everyone,i wan to know if there is a way to configure aliasing and basic userAuthwith apache-tomcat-cocoon.exemple:my cocoon webapps is mount on /cocoon/servlets/lbss from/usr/jakarta-tomcat/webapps/cocoon/servlets/lbssbut i wan that url http://my.url/config to

aliasing and basicAuth with apache-tomcat-cocoon

2001-02-06 Thread Marc Leblanc
Hi everyone,i wan to know if there is a way to configure aliasing and basic userAuthwith apache-tomcat-cocoon.exemple:my cocoon webapps is mount on /cocoon/servlets/lbss from/usr/jakarta-tomcat/webapps/cocoon/servlets/lbssbut i wan that url http://my.url/config to

RE: tclBlend/Jacl in jsp's?

2001-02-12 Thread Marc Saegesser
I haven't used Jacl from a JSP, but I use it extensively from servlets and it works fine. The only thing odd was that I had to put the jar files in tomcat/lib (or the CLASSPATH) as opposed to web-inf/lib because of the way that Jacl looks for some classes. I'm using Tomcat 3.2.1 on WinNT.

RE: Problem with request.getServerName in redirect

2001-02-12 Thread Marc Saegesser
, Marc Saegesser -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: Monday, February 12, 2001 6:23 PM To: [EMAIL PROTECTED] Subject: Re: Problem with request.getServerName in redirect Melissa Matthews wrote: I am using Apache/Tomcat 3.2.1. When I use

RE: WinNT file name too long - JSP File naming algorithm

2001-02-13 Thread Marc Saegesser
It most likely isn't going to get fixed in Tomcat 3.2.2. The jsp file naming scheme has been cleaned up somewhat in Tomcat 3.3 but the path size limitation may still be reached. Recent changes to Jasper in Tomcat 4.0 should resolve this completely. -Original Message- From: [EMAIL

RE: jsp could not be loaded on winnt

2001-02-14 Thread Marc Saegesser
I've found the NPEs from the class loader generally mean corrupted .class files. Is it possible that the files got messed up when they were moved from the Linux machine to Win2000? You can turn on *lots* of debugging. There are notes in conf/server.xml about how to do it. Depending on how

  1   2   3   >