Re: JSP TagLib Help...pleease

2002-03-26 Thread Vijay Shinde
Hey Paul, I am sending you one link ,I hope this will help you. http://java.sun.com/webservices/docs/ea1/tutorial/doc/JSPTags.html Regards Vijay Pavel Brun wrote: > Hello all, > Are there any people on this list who are experienced with custom taglib, > especially, its lifecyle? Is there a

Default servlet -> listings = 0 doesn't work?

2002-03-26 Thread scott . merritt
In my web.xml file I've been trying to turn off directory listings by setting the listing parameter to 0 or false, but it it doesn't do anything. I can always see the contents of the directory in my web app. My web app does have it's own web.xml file but it doesn't specify anything unusual, defin

Re(2): Multiple Tomcat 3.2.4 JVMs Document

2002-03-26 Thread Robert Walther
Dear Dan, A few weeks ago you commented on my "Multiple Tomcat JVM's" posting. Thank you for you comments. i have had several similar comments to yours about my use of mod_rewrite to redirect URL's to their approporiate JkMounted contexts. If you remember, my httpd.conf had the following

JSP TagLib Help...pleease

2002-03-26 Thread Pavel Brun
Hello all, Are there any people on this list who are experienced with custom taglib, especially, its lifecyle? Is there a website that might help me understand taglib's or is there some kind of a taglib forum? Please let me know. I am encountering problems. Thanks Paul ~

Problem with mime types, nobody answers?

2002-03-26 Thread Héctor Garcia Peris
Hello all, I have tomcat 3.2.2 running in a debian potato 2.2.l9. I have a problem with mime types. When I get a page with extension .css I see that the mime type that the server returns to me is text/plain. I find a file under the conf directory that is web.xml that there are lines with this:

RE: JSP Examples not working HTTP 500

2002-03-26 Thread John Niven
> -Original Message- > From: balash hauser [mailto:[EMAIL PROTECTED]] > Sent: 26 March 2002 04:24 > To: [EMAIL PROTECTED] > Subject: JSP Examples not working HTTP 500 > > > I just installed Tomcat 4.0.3 in my w2k pc. I can get > to http://localhost:8080/index.html OK. But if I view > th

Re: Problem with cache clearing in Tomcat

2002-03-26 Thread Jeff Larsen
You may also want to try However, I don't really trust META tags. Browser implementations of META tags are not always reliable. Write to the response headers directly. I embed the following at the top of every jsp page. <% response.setHeader("Cache-Control", "no-cache"); response.setHeader("

Re: JNDI/EJB: looking for some references

2002-03-26 Thread Jeff Larsen
> Hi! > Thanks for the suggestions. > I'm actually able to invoke the remote EJB setting either the properties > you mentioned in the call of the new InitialContext or > setting them in the System properties and then calling > new InitialContext without parameters ; anyway, I wish I > could do

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

2002-03-26 Thread Schulze Christian
I noticed this, but if i view the source of this page (obviously generated by Tomcat) the links just looks this way so the Adress should be right. It seems , that if Tomcat creates an index.html when I access a Directory i maps the URL from https to http ... ??? -Ursprüngliche Nachricht

Re: SV: mod_jk problem

2002-03-26 Thread Fabien Nisol
I've configured my server.xml file like this (sorry, I forgot to mention server.xml in my last mail) red lines with *** in front of them are the lines that I added... I'm not quite sure if I need to uncomment lines starting with +++ in red, i did not see this in mod_jk/ AJP documentation I'll

Re: mod_jk problem

2002-03-26 Thread Fabien Nisol
Thank for your reply :) I'm really stuck out there I've changed my mod_jk.conf to : ## Auto generated on Mon Mar 25 15:27:15 GMT-05:00 2002## LoadModule jk_module libexec/mod_jk.so JkWorkersFile "/disk14/products/tomcat/jakarta-tomcat-4.0.3/conf/jk/workers.properties" JkL

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

2002-03-26 Thread Ralph Einfeldt
http://intra.home.de:443/examples/servlets/index.html Tomcat (or apache) doesn't switch to https you told the browser to do it :) The port 443 is the port for https. But as you tell the browser to use http it's trying to talk http to the https port. (Have a close look at the leading http://)

RE: help on NT 4 Servicese

2002-03-26 Thread Chris Pheby
You will find tomcat.exe which comes with Tomcat 4. This is the recommended way to start Tomcat 4. Tomcat.exe is really javaservice.exe which is documented at http://www.alexandriasc.com/software/JavaService/ Hope this helps, Chris. -Original Message- From: [EMAIL PROTECTED] [mailto:

JNDI Realm getRoles by group Membership attribute

2002-03-26 Thread Mark Teegarden
Okay, I'm doing this a little backwards, but I think this should work. I'm trying to figure out what roles a user has by querying the attribute list for groupMembership for the authenticated user. I know that the demonstrated method is to query the names of all the groups that a user is a membe

RE: RE: Configuring Tomcat 4

2002-03-26 Thread Chris Pheby
This question seems to get asked every few days. How could I get a HOWTO included in the Tomcat distribution?? -- Tomcat isn't the main server - however, for mod_web_app to work and integrate the two Tomcat must start /before/ Apache which is what the dependency means

where must i put my applets ?

2002-03-26 Thread atmo argo
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 business? Then you need professional email like [EMAIL PROTECTED] from Everyone.net http://www.everyone.net?t

Tag pooling

2002-03-26 Thread Arnaud Level
Hi every one, Tag pooling has been implemented in Tomcat 3.3. Does someone know where I can find any test application that shows an improvement in performance because so far I could not see any... Costin wrote "Most tests I run show a (significant) improvement in performance." I wish I could know

help on NT 4 Servicese

2002-03-26 Thread ramesh piyathilaka
please can you help me to find the following file to start windows NT4 Servicese with tomcat server when i was finding the file on the apache site i could not find it the file is jk_nt_servicese.exe regards ramesh rohan __ Do You Yahoo!? Yahoo! M

Re: JNDI/EJB: looking for some references

2002-03-26 Thread alberto bolchini
Hi! Thanks for the suggestions. I'm actually able to invoke the remote EJB setting either the properties you mentioned in the call of the new InitialContext or setting them in the System properties and then calling new InitialContext without parameters ; anyway, I wish I could do that without

Problem with cache clearing in Tomcat

2002-03-26 Thread somya_iyer
Hi, I'm using apache tomcat 4.0 and my application has been developed using only servlets and an oracle database. After a user logs out, when the next one logs in, the application continues with the old pages belonging to the previous user. The old session has been invalidated and the new sess

AJP vs WARP

2002-03-26 Thread Kirill Maximov
Hello! I tried to fing the information about the subject, but failed. I'd like to know, what are advantages and disadvantages of using AJP and warp connectors to TomCat 4.0.x. I need one of these connectors, because I'd like to use Apache httpd's SSL capabilities, and, if possible,

ClassCastException for JNI class loaded from common/lib

2002-03-26 Thread James Sheridan
Hi, I would be keen to get help on an issue with using JNI classes from multiple webapps. I have 2 webapps both of which need to load a class which wraps JNI code. According to the release notes it is a good idea to place the code which loads the library (loadLibrary()) outside the webapps dir, s

Failure to get removed from list

2002-03-26 Thread Paul Brown
I cannot remove myself and nobody will remove me. So i'm going to try and get banned as a last resort. CUNT PISS FUCK WANK SHIT BOLLOCKS PRICK sorry about this chaps but i see no alternative. This message contains confidential information and is intended only for the named individual and may

RE: RE: Configuring Tomcat 4

2002-03-26 Thread Larry Chambers
4) Integrate Tomcat and Apache Add the following lines to httpd.conf: LoadModule webapp_module modules/mod_webapp.so AddModule mod_webapp.c You need to configure a connector in httpd.conf (examples shown for the modules you can export initially - remove the comments to enable them):

RE: security fraud in mod_jk

2002-03-26 Thread Ignacio J. Ortega
> De: Robert Douglass [mailto:[EMAIL PROTECTED]] > Enviado el: martes 26 de marzo de 2002 13:12 8< /* * We are now in a security nightmare, it maybe that somebody sent * us a uri that looks

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

2002-03-26 Thread Gurmeet
Anders thanks a lot. -Original Message- From: Anders Rundgren [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 26, 2002 7:34 PM To: Tomcat Users List Subject: Re: Session lost when switching from https to http in Tomcat 4 Gurmeet, I (or rathe my college), removed the line that appends "&

Re: problem with tomcat

2002-03-26 Thread rsequeira
If you have the main.htm under the webapps directory then this won't work. Since you are accessing it from under a ROOT context (http://localhost:8080/main.htm), you need to put the file in the webapps/ROOT directory (assuming that there is a context ROOT configured in your server.xml). RS

Filter - Tomcat 4.01 & Post methods

2002-03-26 Thread Jerome Moliere
Hi all, I'm using filters in Tomcat 4.01 (bundled with Jboss 2.4.4) for a while, I just faced a problem with filters applied on servlets using POST requests. All other filters applied on servlets invoking GET methods work fine, but a working filter (with some other servlets) while applied to a s

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

2002-03-26 Thread Anders Rundgren
Gurmeet, I (or rathe my college), removed the line that appends "&Secure" to JSESSIONIDs. Anders - Original Message - From: "Gurmeet" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Tuesday, March 26, 2002 14:32 Subject: RE: Session lost when switching from https t

RE: What is j_security_check?

2002-03-26 Thread John Niven
> -Original Message- > From: Lee Kyon [mailto:[EMAIL PROTECTED]] > Sent: 26 March 2002 08:42 > To: 'Tomcat Users List' > Subject: What is j_security_check? > > What exactly is "j_security_check" in the authentication > form? Built in security servlet? And if so is there any way > to mo

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

2002-03-26 Thread Gurmeet
Thanks Anders, But as you must be knowing if I implement a HttpSessionBindingListener then it would still be a problem. Can u please elaborate on the patching u did on CookieTool class. Regards Gurmeet -Original Message- From: Anders Rundgren [mailto:[EMAIL PROTECTED]] Sent: Tuesday, M

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

2002-03-26 Thread Anders Rundgren
Gurmeet, The only known workarounds I know of are handling sessions in URLs or patching the CookieTools class which we did. Anders - Original Message - From: "Gurmeet" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Tuesday, March 26, 2002 13:51 Subject: RE: Sessio

Tomcat, Webapp, Apache and mod_ssl, Protocol is switching

2002-03-26 Thread Schulze Christian
Hi I have a problem with my configuration of tomcat connected to apache (with mod_ssl) via mod_webapp Apache is configured to listen to Port 80 and 443, connecting to https://intra.home.de/examples gives an '404 not found' (Why that ? this worked with apache an JRun) https://intra.home.de/e

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

2002-03-26 Thread Gurmeet
Hi, I just read this and tested for my app also wherein I would have the same problem in coming days. Any better way of overcoming this problem other than persisting the session manually. Regards, Gurmeet -Original Message- From: Anders Rundgren [mailto:[EMAIL PROTECTED]] Sent: Tuesday

security fraud in mod_jk

2002-03-26 Thread Robert Douglass
Can anybody tell me what this means? It is from the mod_jk log. "Security fraud" sound ominous, and I know very little about security anyway. Thanks, RD [jk_uri_worker_map.c (424)]: In jk_uri_worker_map_t::map_uri_to_worker, found a security fraud in [/jakarta-tomcat-3.2.3/webapps/RobertDouglass/

Re: JNDI / DataSource problems

2002-03-26 Thread Nikola Milutinovic
> Thanks - I've tried both the latest stable (which doesn't appear to contain a > DataSource implementation) and the latest dev version (which does) of the > postgres jdbc drivers. Both fail... I have both of them, but there is no DataSource implementation class. What was your download lin

Crashing tomcat - different path problem?

2002-03-26 Thread Fabian Sommer
Hi there! I have a servlet running fine if i put it in the tomcat examples directory (adding a servlet and servlet-mapping definitions in web.xml), but when i try to put it in an own application directory (with slightly adopted sample web.xml-file (as found in the conf-directory), tomcat just

Re: Simple Question

2002-03-26 Thread Toru Watanabe
Hi López, Please note form Java2 SDK v1.4, Java starts to support IPv6. If you use Tomcat with j2sdk v1.4, then it might work. But it is very danger because there are only few (or no) achievement. Regards, Watanabe. In the message "Simple Question" <[EMAIL PROTECTED]> Gabriel Lóp

Re: JNDI / DataSource problems

2002-03-26 Thread Dave Minter
Thanks - I've tried both the latest stable (which doesn't appear to contain a DataSource implementation) and the latest dev version (which does) of the postgres jdbc drivers. Both fail... I'd kind of assumed that even a completely non-existant class would still result in an instantiated DataS

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

2002-03-26 Thread tek1
i believe that jws is simply a reference implementation that sun offers. if you want to use it commercially, i believe that you have to pay a license fee. however, tomcat is open source. it's been an extremely long time since i last looked at jws, but i believe that tomcat offers a lot more f

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

2002-03-26 Thread Anders Rundgren
You are right Manuel, Tomcat 4.0.2 using SSL unfortunately always sets a &Secure flag on JSESSIONIDs, which do not (depending on browser) allow you to do this https->http switch. http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6983 A Macintosh using IE 5 cannot even obtain a _standard_ SSL js

everybody seems ignoring me, HELP........

2002-03-26 Thread atmo argo
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 need professional email like [EMAIL PROTECTED] from Everyone.net http://www.everyone.net?t

RE: Problems compiling programs.

2002-03-26 Thread Carlos Martins
Hi Laurence, Copy the servlet.jar file located in your (CATALINA_HOME)\common\lib directory into your (JDK_HOME)\jre\lib\ext where CATALINA_HOME = the folder where you have your Tomcat instalation (ex: c:\program files\Tomcat 4) and JDK_HOME = the folder where your java development kit instala

Session lost when switching from https to http in Tomcat 4

2002-03-26 Thread Manuel Mall
Has the session semantic changed between Tomcat 3 and Tomcat 4? We have a servlet/JSP application in which users establish their servlet session using https but conduct the rest of their interactions using http. This works fine under Apache 1.3.22 with Tomcat 3.2.1 connecting using ajp12. After

Problems compiling programs.

2002-03-26 Thread Laurence Turpin
hi, I know this is probably quite a basic question but I have been trying for ages to sort it out. Please help. I have Windows XP home edition on my PC, and have Jakarta Tomcat 4.03 running with Java 2 sdk1.4.0. I find that I am having trouble compiling programs that have import statements s

Re: Problem with Apache and Tomcat connection

2002-03-26 Thread Jean-Luc BEAUDET
John Burnley a écrit : > My apologies in advance for the rookie questions. We are trying to put up a demo >app using Apache for static content and Tomcat for the JAVA base applications. > > Both work fine standalone, but when we try to 'marry' the two together we encounter >some problems. Spe

problem with tomcat

2002-03-26 Thread Stella Martzoukou
well.. i expect that this may sound silly but i encounter the following problem with Tomcat 3.2.1 on a win2000 machine I have a file called main.htm in the webapps directory that should be loaded when calling it from the url 127.0.0.1:8080/main.htm Still, I get a page not found 404 error and i

AW: Multiple users share java bean?

2002-03-26 Thread Alexander Reifinger
http://shannon.informatik.fh-wiesbaden.de/jsp/jsp/index.html Alexander > -Ursprüngliche Nachricht- > Von: Robert Douglass [mailto:[EMAIL PROTECTED]] > Gesendet: Dienstag, 26. März 2002 10:21 > An: Tomcat Users List > Betreff: RE: Multiple users share java bean? > > > What is the German bo

RE: Multiple users share java bean?

2002-03-26 Thread Robert Douglass
What is the German book you were going to recommend? -Original Message- From: Alexander Reifinger [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 26, 2002 10:04 AM To: Tomcat Users List Subject: AW: Multiple users share java bean? > First, am I correct in saying that the default behavio

Tomcat Multicast

2002-03-26 Thread Jesus Saez
Hi: I'm trying to modify Tomcat code to make it multicast, working over UDP channels. Could you help me telling me which modules or codes should i work with, please? Thanks -jesus- -- To unsubscribe: For additional commands: Troubles w

AW: Multiple users share java bean?

2002-03-26 Thread Alexander Reifinger
> 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 Register.jsp which uses a Javabean > called memberData.java then if 2 people were to submit data to > Regi

RE: Configuring Tomcat 4

2002-03-26 Thread Chris Pheby
Apache, MySQL, Tomcat, Netbeans and Mozilla --- Hope this helps Chris. - 1) Install Apache Install Apache_1.3.22-win32-x86.exe (Windows Installer of latest stable release) to c:\server\ (actually places it in Apache subdirectory

Re: Multiple users share java bean?

2002-03-26 Thread Fabian Sommer
Hello guys, i expect beans and servlets to behave different? As i know servlets should only be instanced once in the servlet container, and each request should be handled by the same instance of the servlet. To handle different data for different users, you need to use session tracking and sto

What is j_security_check?

2002-03-26 Thread Lee Kyon
What exactly is "j_security_check" in the authentication form? Built in security servlet? And if so is there any way to modify or even look at it? Thanks Lee -- To unsubscribe: For additional commands: Troubles with the list:

Simple Question

2002-03-26 Thread Gabriel López Millán
Support Tomcat IPv6? If so, support Tomcat IPv6+SSL? Thanks a lot, Gabi. -- - Gabriel Lopez Millan - Grupo ANTS-CIRCuS Facultad de Informática Universidad de Murcia (España) Tfo: +34 968367645 -- To unsubscribe:

SV: mod_jk problem

2002-03-26 Thread Klosa Uwe
Hi Fabian, have you configured the ajp13 connector in the server.xml? Uwe -Ursprungligt meddelande- Fran: Fabien Nisol [mailto:[EMAIL PROTECTED]] Skickat: den 25 mars 2002 22:29 Till: [EMAIL PROTECTED] Amne: mod_jk problem Hello all.. I've got some problems accessing my tomcat pages

Re: Multiple users share java bean?

2002-03-26 Thread Soefara Redzuan
Wow, you boys made me realize how little I know, and now I'm even starting to doubt my prior understanding. Can you please help me clarify the following. 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

advice on how to deploy webapps for students

2002-03-26 Thread Thierry Delaitre
Hi, What is the best way to deploy tomcat for 100 students ? I've created 75 webapp contexts for students but tomcat now creates approx. 165 threads ! Is it really necessary to create a context for each student, so that they have their own webapp area or should is be ok to create a number of dir

RE: Tomcat & IIS + MemoryRealm

2002-03-26 Thread Lee Kyon
It seems that noone got an answer to this one but if someone knows where I can find a documentation of the problem or something like an official bug statement that would help too. Need it for a diploma work :P thanks -Original Message- From: Lee Kyon Sent: Montag, 25. Marz 2002 13:27 T

<    1   2