Re[2]: How to POST very large data to Servlet? (a question about ServletRequest.getInputStream)

2002-03-26 Thread Søren Neigaard
Hi John I have no idea if you problem is the same as mine, but I have had similar problems, and I eventually fixed it by enlarging the heap and stack memory parameter for the JVM. As said, I don't know if it will help you, but it did help me :) /Søren Tuesday, March 26, 2002, 10:36:40 PM, John

gzip compression

2002-03-26 Thread Pascal Echevest
I've developped a HTTP client which is able to send to a servlet HTTP requests with gzip compressed data. So, the servlet reads the gzipped stream, does its tasks and sends back a result as a gzipped stream to the client. This works fine with two other Web server/Application server couples but not

sessions, security, and the RFCs

2002-03-26 Thread Joel Rees
I've been watching the conversation on https, http, session switching, and so forth. If I followed this right, it sounds as if Tomcat 4, in dropping session information on the switch, is being RFC compliant. So I want to know -- what are the security implications in keeping the session across a sw

Re: Deployment [Newbie]

2002-03-26 Thread Nikola Milutinovic
> Got tomcat going well on linux, but deployment is giving me a headache :-(( > > I'm looking at the documentation and the example web.xml file and I'm not > sure what I need to do to set up a webapp ??? > > I've got my folder in webapps: groupa > > Directory Structure: > groupa > WEB-

Tomcat 4 NT Service

2002-03-26 Thread Karthik Gopal
Hi , Where can I find the jk_nt_service.exe for Tomcat 4? Or can I reuse any older version of this exe. Thankx Karthik -- To unsubscribe: For additional commands: Troubles with the list:

RE: Session lost when switching from https to http in Tomcat 4

2002-03-26 Thread Gurmeet
Hi, It might drive me crazy. But I just noticed one thing. I have a JSP with a bean in session scope ---it swtches to https does something switches back to http --- in this jsp in http I call a method on the bean which was there in session , it returns me the value as if it sustained

RE: tomcat4 config.

2002-03-26 Thread vergel
FIGURED IT OUT! for anyone who installs a Linux version of Tomcat4 and can't configure it. Check this directory and set the environmental settings for tomcat. /etc/tomcat4/conf/tomcat4.conf Set all your settings there and you should be able to start tomcat without any errors. It was a si

RE: Deployment [Newbie]

2002-03-26 Thread Micael Padraig Og mac Grene
You can lead a horse to water, but you cannot make it float on its back. At 03:08 PM 3/27/02 +1200, you wrote: >Lol :-) No time for reading books - I need to get this going :-) > >I've found http://www.onjava.com/lpt/a//onjava/2001/04/19/tomcat.html so >hopefully that provides me with a better s

Basic authentication and Tomcat servlets

2002-03-26 Thread Barris, Wes (LI, Uni of Queensland)
I am running Tomcat 4.0.1 connected to Apache 1.3.23 via mod_webapp 1.0 on a Redhat 7.2 system. Directory 'a' is protected using Basic Apache authentication: /htdocs/a Directory 'b' is where my servlets are deployed via webapp: /htdocs/b I want to allow anyone access to 'b', but inside a serv

Fw: failure notice

2002-03-26 Thread Joel Rees
Are there problems with [EMAIL PROTECTED] ? Or perhaps the problem is Outleak Esspresso attaching "mailto:" to the the "to:" header? - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, March 27, 2002 11:35 AM Subject: failure notice > Hi. This is the

RE: Deployment [Newbie]

2002-03-26 Thread Lawrence, Gareth
btw: It isn't necessary to add all servlets to the web.xml file; it's only necessary when the servlet requires additional information, such as initialization parameters. So in most cases you wont need to worry about this :-)) -Original Message- From: Lawrence, Gareth [mailto:[EMAIL PRO

RE: Deployment [Newbie]

2002-03-26 Thread Lawrence, Gareth
Hi :-) Firstly you need to add the following entry to the TOMCAT_HOME/conf/server.xml file, setting the values for the path and docBase to the name of your web application. That's the first step and then you'll be able to copy html files into the groupa folder. Your default web.xml file will

RE: tomcat4 config.

2002-03-26 Thread Lawrence, Gareth
Opps :-( cont ... #!/bin/bash JAVA_HOME=/usr/java/jdk1.3.1 JAKARTA_HOME=/opt/jakarta ANT_HOME=$JAKARTA_HOME/jakarta-ant TOMCAT_HOME=$JAKARTA_HOME/build/tomcat PATH=$JAVA_HOME/bin:$PATH export JAVA_HOME JAKARTA_HOME ANT_HOME PATH TOMCAT_HOME I think :-) *After this

RE: tomcat4 config.

2002-03-26 Thread Lawrence, Gareth
Okay, (NB I got some good help from http://www.linuxgazette.com/issue69/peda.html) I believe with bash that the Environmental Variables Needed go into /etc/profile And they will look something like: Start with JDK: Now I believe with bash that it is profile -Original Message--

RE: tomcat4 config.

2002-03-26 Thread vergel
Hi Gareth (et all) I'm using RedHat Linux 2.4.9-31 with a bash shell. I installed Tomcat4 via .rpm files from the jakarta site. I'm using Apache 1.3.23 (in linux) and Tomcat 4.03. I can init tomcat4 via: /etc/rc.d/init.d/tomcat4 start but I get these errors. Starting tomcat4: chown: getting

Please help me! problem with tomcat.

2002-03-26 Thread fatty
Maybe it's silly, but I want get some help! In one of my jsp page I want to show a image dynamically, so I put an dynamical IMG tag in the HTML jsp is outputting. But when the client request the page the image cann't be showen. And there is some error message :" 2002-03-26 17:40:00 -

RE: Deployment [Newbie]

2002-03-26 Thread Lawrence, Gareth
Lol :-) No time for reading books - I need to get this going :-) I've found http://www.onjava.com/lpt/a//onjava/2001/04/19/tomcat.html so hopefully that provides me with a better starting point than the tomcat documentation. -Original Message- From: Micael Padraig Og mac Grene [mailto

Re: Deployment [Newbie]

2002-03-26 Thread Micael Padraig Og mac Grene
Get any book on servlets. Jason Hunter's book is a good one. At 03:01 PM 3/27/02 +1200, you wrote: >Greetings All, > >Got tomcat going well on linux, but deployment is giving me a headache :-(( > >I'm looking at the documentation and the example web.xml file and I'm not >sure what I need to do t

Deployment [Newbie]

2002-03-26 Thread Lawrence, Gareth
Greetings All, Got tomcat going well on linux, but deployment is giving me a headache :-(( I'm looking at the documentation and the example web.xml file and I'm not sure what I need to do to set up a webapp ??? I've got my folder in webapps: groupa Directory Structure: groupa

RE: tomcat4 config.

2002-03-26 Thread Lawrence, Gareth
Depends what shell your using and what your setup is :-)) I'm using tcsh on debian and the file to set my variables in is /etc/csh.cshrc I've got: setenv JAVA_HOME /usr/java/j2sdk1.4.0 setenv JAKARTA_HOME /usr/java/jakarta setenv ANT_HOME $JAKARTA_HOME/jakarta-ant-1.4.1 setenv TOMCAT_HOME $JAKAR

tomcat4 config.

2002-03-26 Thread vergel
I'm at a loss at how to configure this Server. I just need a couple of pointers to steer me right and unfortunately they're some of what I think are the obvious ones. I'm using Apache 1.3.23 (linux) and Tomcat 4.03 and I'm confused. Where do I set the JAVA_HOME and the CATALINA_BASE?

RE: Tomcat 4/SSL/mod_webapp - losing session data when switching to SSL

2002-03-26 Thread Manuel Mall
Les, see http://www.mail-archive.com/tomcat-user@jakarta.apache.org/ and look for the thread mentioned below. Manuel -Original Message- From: Les Hazlewood [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 27 March 2002 10:30 To: Tomcat Users List Subject: Re: Tomcat 4/SSL/mod_webapp - losin

Re: Tomcat 4/SSL/mod_webapp - losing session data when switching to SSL

2002-03-26 Thread Les Hazlewood
Manuel, I just joined this list right before I sent my email, so I don't know what was talked about. Where (what thread) are they located? Is this really a "feature"? Thats seems rediculous...the Tomcat folks have to know that this is highly undesirable for the majority of web-based appl

Re: Is Tomcat small when embedded?

2002-03-26 Thread Christopher K. St. John
Petar Maymounkov wrote: > 3. If I don't need any fancy features for my purposes, how > small can I make Tomcat as an embedded server? > It's kind of tricky. The 'Embedded' interface doesn't, by itself, make Tomcat 4 any smaller. It's just an alternative to the config files. There are lots of e

Re: AW: Multiple users share java bean?

2002-03-26 Thread Joel Rees
Chenming Zhao elucidated: > In fact I output the loginname. But here, when the problem happened, still > the loginname was updated. So the problem is that the loginname was updated, > then the username cannot get the right value. But when I tested it on > different computer, it's correct.

RE: Tomcat 4/SSL/mod_webapp - losing session data when switching to SSL

2002-03-26 Thread Manuel Mall
Les, see the recent messages with the subject "Session lost when switching from https to http in Tomcat 4". This behaviour seems to be a Tomcat 4 feature, ie. Tomcat 4 appears to be using a different JSESSIONID for secure and non-secure sessions. Manuel -Original Message- From: Les Haz

Is Tomcat small when embedded?

2002-03-26 Thread Petar Maymounkov
Hi, I have the following questions concering my attempt to use Tomcat as an embedded servlet server: 1. Can Tomcat be easily used as an embedded servlet server? 2. Does Tomcat have an easy way of serving static content, stored in a jar file? 3. If I don't need any fency feutures for my purposes

Tomcat 4/SSL/mod_webapp - losing session data when switching to SSL

2002-03-26 Thread Les Hazlewood
Hello folks... I have something that I'm just completely stumped onwhile Google has been my best friend the last 5 hours, I still haven't found a solution. The problem: When going from http://mydomain/whatever.jsp to https://mydomain/secureArea/anything.jsp Funny things happen.

RE: Session lost when switching from https to http in Tomcat 4

2002-03-26 Thread Manuel Mall
Anders, thanks, I will try your patch and hope that the Tomcat developer community will take your suggestion to make this behaviour configurable on board. Manuel -Original Message- From: Anders Rundgren [mailto:[EMAIL PROTECTED]] Sent: Tuesday, 26 March 2002 18:38 To: [EMAIL PROTECTED];

tomcat4 with apache 1.3 on windows 2000

2002-03-26 Thread wuthichai wongthatsanekorn
I am trying to configure tomcat4 to work with apache 1.3 but have no luck so far. I try mod_jk but I can't get apahce to start. Is there a place with clear explanation document about how to do this? Thanks, Wut __ Do You Yahoo!? Yahoo! Movies -

Proble with tomcat any help will be thanks.

2002-03-26 Thread fatty
In one of my jsp page I want to show a image dynamically, so I put an dynamical IMG tag in the HTML jsp is outputting. But when the client request the page the image cann't be showen. And there is some message in console like this:" 2002-03-26 17:40:00 - Ctx( /gongwen ): IOException in: R( /g

Re: (HELP) where must i put my applets ?

2002-03-26 Thread Tom
What do you want to do? An applet runs on the client machine where as a servlet runs on the server. The way an applet and a servlet are written is completely different. If you want to simply put the applet up on the server (with the corresponding html file) you may want to look in your webapps/R

java.lang.NoClassDefFoundError: javax/sql/ConnectionEventListener

2002-03-26 Thread David Burns
I am trying to use torque generated classes from a servlet and am running into trouble with the ConnectionEventListener interface found in j2ee.jar. Vanilla servlets are running fine, but I run into trouble with the Torque classes, see stack trace below. I suspect it has something to do with

Re: 'Remember Me'

2002-03-26 Thread Daniel Hinojosa
Ken Martin wrote: > On Monday, March 25, 2002, at 10:31 AM, Daniel Hinojosa wrote: > >> There was a bit more to my question though that you truncated. > > > No offense intended... I answered the part I knew there was a > reference for. Reading and writing cookies is one part of your desired >

JSP compile error when switching JDK to 1.4.0

2002-03-26 Thread Ganey, Todd
I know this has been posted before, but I either missed or there was no solution posted on how to correct the JSP compile error when you switch JDKs from (in my case) 1.3.02 to 1.4.0 in Jakarta TC 4.0.3 on a Windows 2000 or ME machine. after installing the new JDK, pointing references to the new

(HELP) where must i put my applets ?

2002-03-26 Thread atmo argo
--- atmo argo <[EMAIL PROTECTED]> wrote: >i've make a simple applet but i don't know how to make it servlet. what must i do ? >where must i put this file? >_ _ Run a small bu

Re: Problem with cache clearing in Tomcat

2002-03-26 Thread todd tredeau
I found this issue seemed to have gone away for me, when I tried newest 4.1 and JMX enabled Hope this helps todd http://www.wiserlabz.com collaborative effort to promote Novell and Open Source solutions Soefara Redzuan wrote: > To first check whether it's a browser or Tomcat server probl

Re: AW: Multiple users share java bean?

2002-03-26 Thread Chenming Zhao
In fact I output the loginname. But here, when the problem happened, still the loginname was updated. So the problem is that the loginname was updated, then the username cannot get the right value. But when I tested it on different computer, it's correct. So I wonder why there is the problem when

How is the jsp:forward processed

2002-03-26 Thread Nitin Vira
Hi, Can someone please give me a understanding of how jsp:forward and jsp:include directive processed in Tomcat JSP engine, what are the steps followed by the jsp container and what jasper classes are used. Thanks for any help. Nitin -- To unsubscribe: For additi

RE: How to POST very large data to Servlet? (a question about ServletRequest.getInputStream)

2002-03-26 Thread John Roth
Note: Repost of Assert failed, buff too small. We are currently troubleshooting a problem (originally posted last week 3/20/02) relating to this same issue. Our application uploads data using an HTTP POST. Directly to Tomcat or with HTTP, it works fine. With HTTPS, ajp13.java reports "Assert F

RE: Properties files.

2002-03-26 Thread Chapman, Carl
Had a similar problem. This code seems to work in a servlet (more comment after): -- PrintWriter out = null; ServletContext servletContext = getServletContext(); try { out = response.getWriter(); } catch ( IOException

mime types

2002-03-26 Thread Ram Kurapati
Hello: I am looking for a java utility to find the mime type of the request body(not thru header). Thanks in advace. Rama Kurapati -- To unsubscribe: For additional commands: Troubles with the list:

Re: How to POST very large data to Servlet? (a question about ServletRequest.getInputStream)

2002-03-26 Thread Christopher Bare
You should look for information on Multipart requests. It's a modification of the standard http request that uses a format similar to that used by the SMTP email protocol. It's used for uploading files from a browser to a server. I think Struts has a handler for multipart requests, and there is a

Re: Problem with cache clearing in Tomcat

2002-03-26 Thread Soefara Redzuan
To first check whether it's a browser or Tomcat server problem, go to another computer on your nework that has not yet been used to view the offending JSP/servlet. If you find you're still viewing an older version of the page, then it's obviously caching on the server. I've found that 9 times

Re: Integration of Tomcat and custom Server

2002-03-26 Thread Christopher K. St. John
"Karthik M." wrote: > > I want to integrate Tomcat web server > will our Server. Basically I want to start Tomcat from our server and deploy > wars in it. Is there any proper interface in tomcat to do this and how to > use it. For Tomcat 4, check out org.apache.catalina.startup.Embedded. Ther

RE: Properties files.

2002-03-26 Thread Xiao, Wei
I just removed "/" in front of the properties files. I even checked index$jsp.java file. But I am still getting the same exception. Wei -Original Message- From: David Burns [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 26, 2002 3:49 PM To: Tomcat Users List Subject: Re: Properties file

RE: Servlet mapping question

2002-03-26 Thread Sanjay Bahal
What I am trying to do now is mapping my servlets to names like /search/* to SearchServlet /def/* to DefaultServlet etc. I would think this is a convulted naming/mapping convention but that is as far as I have been able to think. Thanks a lot, Sanjay --- Lance Smith <[EMAIL PROTECTED]> wrote: > A

Re: Properties files.

2002-03-26 Thread David Burns
Are you sure you want the "/" in the name? On Tuesday 26 March 2002 03:43 pm, you wrote: > I put abc.properties in .../WEB-INF/classes and have the following codes, > it gave me NullPointerException. > > java.util.Properties props = new java.util.Properties(); > java.io.InputStream is = > props.g

RE: Properties files.

2002-03-26 Thread Xiao, Wei
I jar it and put the jar file to./WEB-INF/lib, restart and have the following codes in index.jsp, it gave me NullPointerException. Same as put .properties in WEB-INF/classes directory. java.util.Properties props = new java.util.Properties(); java.io.InputStream is = props.getClass().getResourceAs

RE: Properties files.

2002-03-26 Thread Xiao, Wei
I put abc.properties in .../WEB-INF/classes and have the following codes, it gave me NullPointerException. java.util.Properties props = new java.util.Properties(); java.io.InputStream is = props.getClass().getResourceAsStream("/abc.properties"); props.load(is); java.lang.NullPointerException

RE: AW: Multiple users share java bean?

2002-03-26 Thread Wagoner, Mark
Are your sure loginname is getting set properly? Try including the value in your JSP output (right before the call to mb.test()) just to make sure. -Original Message- From: Chenming Zhao [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 26, 2002 3:05 PM To: Tomcat Users List Subject: Re: A

RE: Servlet mapping question

2002-03-26 Thread Lance Smith
All tomcat URLs are case sensitive just like *nix, even on windoz. Nothing we can do about it. Other method is to map /* to a specific servlet that parses the * and send it on to the correct class. Then you could make it none case sensitive. -Original Message- From: Sanjay Bahal [mailto:

creating mod_jk.so on AIX 4.3.3

2002-03-26 Thread Steve Starks
Hi, Im using Aix 4.3.3 and apache 1.3 and am trying to make my mod_jk.so file for tomcat 3.3a. Following the directions I try the build_unix.sh. Everytime I run anything I get a ksh: apxs not found Yes the file is there it is in /usr/HTTPServer/bin and its called apxs I can just go to that dire

Re: Properties files.

2002-03-26 Thread David Burns
I load application property files off the classpath and was able to load property files from mywebapp/WEB-INF/classes directory. Had a little trouble with the log4j.properties, had to place that file in common/classes (may have to do with where log4j.jar is located). Hope this helps.

Re: AW: Multiple users share java bean?

2002-03-26 Thread Chenming Zhao
- Original Message - From: "Wagoner, Mark" <[EMAIL PROTECTED]> To: "'Tomcat Users List'" <[EMAIL PROTECTED]> Sent: Tuesday, March 26, 2002 2:12 PM Subject: RE: AW: Multiple users share java bean? > Are you sure you really want independent instances of the bean, or just the > ability to

Re: Properties files.

2002-03-26 Thread Mauricio Nuñez
Hi try this: jar cvf properties.jar *.properties move properties.jar to WEB-INF/lib and restart! bye El Martes 26 Marzo 2002 15:56, Xiao, Wei escribió: > Hi all, > > I was trying to migrating an existing application to Tomcat 4.0. We used a > lot of properties files and just specified the dir

Properties files.

2002-03-26 Thread Xiao, Wei
Hi all, I was trying to migrating an existing application to Tomcat 4.0. We used a lot of properties files and just specified the directory in classpath, then we can call load("/abc.properties"). Where should I put properties files (*.properties) in tomcat? How should I call to load it? Thanks a

creating mod_jk.so AIX

2002-03-26 Thread Steve Starks
I am using Aix 4.3.3 and apache 1.3 and am trying to make my mod_jk.so file for tomcat 3.3a. Following the directions I try the build_unix.sh. Everytime I run anything I get a ksh: apxs not found Yes the file is there it is in /usr/HTTPServer/bin and its called apxs I can just go to that direct

Integration of Tomcat and custom Server

2002-03-26 Thread Karthik M.
Hello all, I am to new to Tomcat and group.I want to integrate Tomcat web server will our Server. Basically I want to start Tomcat from our server and deploy wars in it. Is there any proper interface in tomcat to do this and how to use it. TIA Karthik

RE: Getting a JSP re-compiled from run-time (I don't mean reloadable=true)

2002-03-26 Thread Anthony Eden
If the JSP file is modified it will be recompiled. If you are actually generating JSP files then when the generation finishes and the page is first requested the JSP will be compiled. You can also force compilation by updating the last modified time by 'touch'ing the file. Sincerely, Anthony

RE: AW: Multiple users share java bean?

2002-03-26 Thread Dahnke, Eric
Referring to this point: >Great, that's what I thought. But here's why I'm getting confused. The >servlet tutorial says that a servlet is created once and once only (that's >when the init() is run). If I comment out the init() method in my servlet do I get an instance of it for each request?

[ANNOUNCEMENT] Tomcat 4.0.4 Beta 2 released

2002-03-26 Thread Remy Maucherat
The second beta release of Tomcat 4.0.4 has been released. This release includes bugfixes and small feature additions over Tomcat 4.0.2/4.0.3 (please refer to the release notes for the complete list). Of particular interest in this beta release is the inclusion of a new standalone HTTP/1.1 connec

Re: AW: Multiple users share java bean?

2002-03-26 Thread peter lin
I misunderstood. You want many users to use the same bean to get common information, kind of like a message board. each user works independently, but they are using a common bean. someone else said "If it is the latter, then just use local variables in your bean methods." more information about

Re: mod_jk problem

2002-03-26 Thread Fabien Nisol
At 05:28 PM 26/03/2002 +0100, you wrote: >I have a line with LoadModule and one with AddModule and without the '!'. >But someone seems to call mod_jk, so your config could be ok. > >I think you don't need the ajp12 worker for mod_jk. Than your worker list >contains only the ajp13 worker. Next I

Getting a JSP re-compiled from run-time (I don't mean reloadable=true)

2002-03-26 Thread Zsolt Koppany
Hi, my application wants to generate JSP files during runtime and depending on application logic. I understand that setting reloadable=true would solve the problem but that would affect the run time performance of tomcat. What I mean: when I generate (modify) a JSP file I want tomcat to recomp

RE: AW: Multiple users share java bean?

2002-03-26 Thread Wagoner, Mark
Are you sure you really want independent instances of the bean, or just the ability to keep the variable values separate by user? If it is the latter, then just use local variables in your bean methods. -Original Message- From: Chenming Zhao [mailto:[EMAIL PROTECTED]] Sent: Tuesday, Marc

Re: AW: Multiple users share java bean?

2002-03-26 Thread Vijay Shinde
JMS - Javs Messaging Service Chenming Zhao wrote: > What's the meaning of JMS? I'm not sure my problem is just what you said. I > want to get independent instance or the same bean for each user. So they can > work independently, and won't influence with each other. Thanks. > > - Original Mes

Re: AW: Multiple users share java bean?

2002-03-26 Thread Chenming Zhao
What's the meaning of JMS? I'm not sure my problem is just what you said. I want to get independent instance or the same bean for each user. So they can work independently, and won't influence with each other. Thanks. - Original Message - From: "peter lin" <[EMAIL PROTECTED]> To: "Tomcat

Multiple Tomcat instances

2002-03-26 Thread Vijay Kandy
Hello all, Iam having problems configuring multiple instances of Tomcat with Apache. I have 7 instances of Tomcat talking to Apache. But Tomcat is serving both HTML and Servlet content. I want Apache to serve HTML and Tomcat to serve out Servlet content. I have a _server.xml file for each

Re: AW: Multiple users share java bean?

2002-03-26 Thread peter lin
One common technique to solve this is to use JMS. All beans that are instances of the same user listen to the same topic. when one instance of the user's bean is updated, the other instances are notified. Each bean then goes to the database to refresh itself. peter lin Chenming Zhao wrote: >

Log File?

2002-03-26 Thread Ravindra K. Bhat
How do I find out who is logging to my server? Thank you -- To unsubscribe: For additional commands: Troubles with the list:

Re: Integrating Tomcat 3.3 in Jbuilder 6

2002-03-26 Thread Jeff Larsen
If you haven't done so already, try posting this question to the appropriate newsgroups at http://www.borland.com/newsgroups. I've found them to be very helpful on issues like this. Jeff - Original Message - From: "Laurent Michenaud" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PR

AW: Multiple users share java bean?

2002-03-26 Thread Chenming Zhao
In fact, it's a good and difficult topic. Now I haven't still understood it completely. I have a question about my application. I describe the work what I need to finish. First the jsp file gets a user name, then pass it to java bean. And the bean get some values from the database accoding to the

RE: Servlet mapping question

2002-03-26 Thread Sanjay Bahal
I found a problem with this. If you don't do /* it becomes case sensitive. So that again becomes an issue. Sanjay --- Sanjay Bahal <[EMAIL PROTECTED]> wrote: > Yes this works? I will paly with it more and post. > Thanks a lot, > Sanjay > --- Lance Smith <[EMAIL PROTECTED]> > wrote: > > Sanjay, > >

RE: Problem with mime types, nobody answers?

2002-03-26 Thread Larry Isaacs
Tomcat 4.x does read the conf/web.xml to establish web application default settings. It is where default support for JSP and static files, among other things, is defined and configured. Cheers, Larry > -Original Message- > From: Reto Badertscher [mailto:[EMAIL PROTECTED]] > Sent: Tuesd

Tomact-Apache Link

2002-03-26 Thread Sanjay Bahal
How do I link Apache and Tomcat. Is it mod_jk or mod_webapp. What are the links to get them. Thanks a lot, Sanjay __ Do You Yahoo!? Yahoo! Movies - coverage of the 74th Academy Awards® http://movies.yahoo.com/ -- To unsubscribe:

AW: Tomcat, Webapp, Apache and mod_ssl, Protocol is switching

2002-03-26 Thread Schulze Christian
Hi, thanks for your quick reply > -Ursprüngliche Nachricht- > Von: Ralph Einfeldt [mailto:[EMAIL PROTECTED]] > Gesendet: Dienstag, 26. März 2002 17:42 > An: Tomcat Users List > Betreff: AW: Tomcat, Webapp, Apache and mod_ssl, Protocol is switching > > > Just to verify that I understood

tomcat 4.1 - 3/7 and 3/23 build jndi contribute alias host

2002-03-26 Thread todd tredeau
Hello; We have a jndi source written for manager which works with Netware / NDS. I would like to contribute it so it can be intergrated with current builds. It works with the 3-7 build, and of course now would have to be re-written because of changes in the latests builds. Perhaps it can

RE: Configuring Tomcat 4/mod_webapp

2002-03-26 Thread Sanjay Bahal
What is the exact link to get mod_jk. I can't seem to find it- 4) Integrate Tomcat and Apache Stop the Tomcat and Apache services. Then download mod_webapp from jakarta.apache.org Thanks Sanjay --- Chris Pheby <[EMAIL PROTECTED]> wrote: > Apache, MySQL, Tomcat, Netbeans and Mozilla > -

RE: Problem with mime types, nobody answers?

2002-03-26 Thread Larry Isaacs
> -Original Message- > From: Héctor Garcia Peris [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, March 26, 2002 12:44 PM > To: Tomcat Users List > Subject: RE: Problem with mime types, nobody answers? > > > At 18:32 26/03/02, you wrote: > >The conf/web.xml file is no longer read by Tomcat

Re: Tomcat 4.0.4-b2 available?

2002-03-26 Thread Jonathan Eric Miller
Thanks! Jon - Original Message - From: "Remy Maucherat" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Tuesday, March 26, 2002 1:00 AM Subject: Re: Tomcat 4.0.4-b2 available? > > I noticed that the following directory now exists on the Jakarta Web site. > > > > h

Classpath Problems

2002-03-26 Thread João Augusto Charnet
I hava some classes that are grouped up in a package called SFWClasses in the following directory: /Web-inf/classes/SFWClasses. I used to use Jakarta 3.2.3, but now I have upgraded to 4.03. With the older version everything worked fine, now with this new version I get an Error that Jakarta cou

Re: AW: Multiple users share java bean?

2002-03-26 Thread Soefara Redzuan
First of all, thank you so much Alexander for taking the time to explain this so thoroughly. > > First, am I correct in saying that the default behaviour for a > > Javabean is that each servlet or JSP that uses it will create > a new >instance of that Javabean ? For example, if we have > Regi

RE: Problem with mime types, nobody answers?

2002-03-26 Thread Héctor Garcia Peris
At 18:32 26/03/02, you wrote: >The conf/web.xml file is no longer read by Tomcat 3.2.x. You >will need to add these entries to the WEB-INF/web.xml in each web >application that needs them. But, there would be a default file with the mime types. Or not? -

RE: Integrating Tomcat 3.3 in Jbuilder 6

2002-03-26 Thread Laurent Michenaud
Yes, i want to integrate the version 3.3. I don't want to use the 3.2.3 and 4.0.1 versions installed by jbuilder. -Message d'origine- De : Serhiy Brytskyy [mailto:[EMAIL PROTECTED]] Envoyé : mardi 26 mars 2002 18:37 À : Tomcat Users List Objet : Re: Integrating Tomcat 3.3 in Jbuilder 6

RE: problem with getting SSL to work

2002-03-26 Thread Bill Graham
Setting up Tomcat as you described will cause it to listen for the https protocol on port 8443. try going to https://localhost:8443. > -Original Message- > From: Rocky [mailto:[EMAIL PROTECTED]] > Sent: Monday, March 25, 2002 4:00 PM > To: [EMAIL PROTECTED] > Subject: problem with getting

Re: Integrating Tomcat 3.3 in Jbuilder 6

2002-03-26 Thread Serhiy Brytskyy
Laurent Michenaud wrote: >Hi, > >Does anyone know how to integrate Tomcat 3.3 >with JBuilder 6 ? > >Bye > >Michenaud Laurent >- Adeuza - >[ Développeur Web - Administrateur Réseau ] > > >-- >To unsubscribe: >For additional commands: >Trouble

Integrating Tomcat 3.3 in Jbuilder 6

2002-03-26 Thread Laurent Michenaud
Hi, Does anyone know how to integrate Tomcat 3.3 with JBuilder 6 ? Bye Michenaud Laurent - Adeuza - [ Développeur Web - Administrateur Réseau ] -- To unsubscribe: For additional commands: Troubles with the list:

RE: Problem with mime types, nobody answers?

2002-03-26 Thread Larry Isaacs
The conf/web.xml file is no longer read by Tomcat 3.2.x. You will need to add these entries to the WEB-INF/web.xml in each web application that needs them. Cheers, Larry > -Original Message- > From: Héctor Garcia Peris [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, March 26, 2002 10:47 AM

Virus is Win32cari and the file is cari.src, also dwarf4you.exe

2002-03-26 Thread Micael Padraig Og mac Grene
The virus that was attached to Yuval Levav's email was Win32cari and in my Quarantine is cari.src. That may also have carried dwarf4you.exe, which has newly showed up in my Quarantine. -- To unsubscribe: For additional commands: Trouble

Virus

2002-03-26 Thread Micael Padraig Og mac Grene
A virus is being spread under your email address's name. At 06:50 PM 3/26/02 +0200, you wrote: >Hi, > Does anyone have mod_jk.so compiled for apache 1.3 for solaris. > If so, I would aprreciate it if you send it to me. >Thanks, > Yuval > >-- >To unsubscribe:

Re: everybody seems ignoring me, HELP........

2002-03-26 Thread Micael Padraig Og mac Grene
They are two different servers. Look and see. At 02:27 AM 3/26/02 -0800, you wrote: >there is no more jws for win9x. > >anybody can tell me what is the difference tomcat v.s javawebserver. >thank's. > >_ >Run a small business? Then you

mod_jk.so apache1.3

2002-03-26 Thread Yuval Levav
Hi, Does anyone have mod_jk.so compiled for apache 1.3 for solaris. If so, I would aprreciate it if you send it to me. Thanks, Yuval -- To unsubscribe: For additional commands: Troubles with the list:

Virus in yuval.levav@mobiletek.com

2002-03-26 Thread Micael Padraig Og mac Grene
This user is spreading a virus with the following message "Hi How are yo? look to bill caricature it's vvvery vey unny :-) :-) i promise you will love it? ok buy" Micael

context realm and mod_webapp

2002-03-26 Thread Ove Heimark
I have some questions regarding the "elements" within the Apache Connector Service in the server.xml file. My wish is to use Apache as the web server for static content and Tomcat as the appsrv engine without the internal http connector. But where do I define the webapp contexts? Inside this Apa

AW: Tomcat, Webapp, Apache and mod_ssl, Protocol is switching

2002-03-26 Thread Ralph Einfeldt
Just to verify that I understood everything: You request: https://intra.home.de/examples/ and get a directory listing that contains the link: that link resolves to http://intra.home.de:443/examples/servlets/index.html That means, that the browser thinks that http://intra.home.de:443 is the

Problems with compiling .jsp running as Windows NT service 4.0x

2002-03-26 Thread warper
Hi all, First of all, congratulations to the Ant developers. I haven't tried it yet, but that situation won't last long. Especially since I do not like Makefile's either. But now for the real thing. I have installed Apache Tomcat on 2 computers using the .exe binary distribution. Both insta

Re: mod_jk problem

2002-03-26 Thread Bernd Koecke
I have a line with LoadModule and one with AddModule and without the '!'. But someone seems to call mod_jk, so your config could be ok. I think you don't need the ajp12 worker for mod_jk. Than your worker list contains only the ajp13 worker. Next I saw in your server.xml that the Ajp13Connecto

tomcat 4.0.3 - apache 1.3.24 - windoze 2k (send mod_jk plz)

2002-03-26 Thread Neil Streeter
I have installed all binary packages is there a binary version of mod_jk available that fits this setup? -- or -- will the 'old' binary that I could find for tomcat 3.x work w/o problems? (it says it was compiled agains the x.17 version of apache - so I'm guessing not) I don't have

RE: JSP TagLib Help...pleease

2002-03-26 Thread Pavel Brun
ThanksHas anybody encountered the following problem where tags are evaluated twice, my output statements show that my doStartTag(), doAfterBody() and doEndTag() are evaluated twice?? Any ideas, please let me know. Thanks Paul -Original Message- From: Vijay Shinde [mailto:[EMAIL PROT

  1   2   >