RE: apache + mod_SSL + tomcat

2002-02-06 Thread Anton Brazhnyk
Hi, -Original Message- From: Cressatti, Dominique [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 05, 2002 7:38 PM To: Tomcat Users List Subject: apache + mod_SSL + tomcat Hi, I've got apache + mod_SSL + tomcat working (I don't deserve that much credit as mod_ssl worked

welcome-file behavior

2002-02-06 Thread Guy McArthur
My web-app is set with a welcome-file-list, index.xml is the first welcome-file entry. Tomcat [4.0b2] does a HTTP 302 (temporary redirect) to the welcome-file for requests that do not specify a file. This is contrary to the behavior of almost every web server, ever. E.g. Apache et al will

AW: welcome-file behavior

2002-02-06 Thread Ralph Einfeldt
Just 2 ideas: - Inputfilter that rewrites the request to your index file. - Output filter that returns the index file instead of the redirect. Which option is better for you, depends on the architecture of your application. (I guess that for most applications the second option is easier.)

jdbc realm

2002-02-06 Thread Alex Johansson
Hi I use tomcat 3.2 and wounder how I can set up jdbc realm for each tomcat application. Eeach application use different databases. Today it seems that you only can have one jdbc realm instance for all the applications. In server.xml the syntax is for tomcat 3.2 RequestInterceptor

Re: How can I customize the apache 404

2002-02-06 Thread Liam Holohan
Clay Mitchell wrote: http://builder.cnet.com/webbuilding/pages/Servers/Apache/ss02d.html -Original Message- From: Galbayar [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 05, 2002 11:19 PM To: Tomcat Users List Subject: How can I customize the apache 404 How can I

Access Denied Error

2002-02-06 Thread Vinay Urs
Hello there, We have an application where IIS 4.0 is connected to Tomcat 4.0.1 with SQL Server 7.0 as the database. Tomcat is started up with the security policy where in the class directory is mentioned. We encounter the following error when the application tries to connect to the database:

Re: How can I customize the apache 404

2002-02-06 Thread David Cassidy
of course you could make your 404 page a jsp page then you could do a search of your site for the object that they were really after ... ;0 D Liam Holohan wrote: Clay Mitchell wrote: http://builder.cnet.com/webbuilding/pages/Servers/Apache/ss02d.html -Original Message- From:

Re: mod_webapp.so linking problem on AIX 4.3

2002-02-06 Thread Liam Holohan
Bhaskar Mulpuri wrote: I am building mod_webapp.so and I am running into the following linking problem. ld -H512 -T512 -bhalt:4 -bM:SRE -bnoentry -bI:/usr/local/apache/libexec/httpd.exp -lc -lm -liconv -lnsl -ldl -o mod_webapp.so mod_webapp.o

Is it possible to prevent Tomcat from creating a response?

2002-02-06 Thread vegard . myrland
I'm creating a single sign on plugin to different http servers using Tomcat. Functionality: If the user is not authenticated or authorized for the requested resource the user is redirected to another site for log in. If the user is authorized for the requested resource, the Tomcat module has

Get Document.Url

2002-02-06 Thread Odo
How can I get in my servlet Javascript's "document.URL" variable? How it be scripted in servlet? -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto:[EMAIL PROTECTED]

Re: Get Document.Url

2002-02-06 Thread Galbayar
JavaScript is Server Side Servlet is Server Side use getRequestURI() - Original Message - From: "Odo" [EMAIL PROTECTED] To: "Tomcat Users List" [EMAIL PROTECTED] Sent: Wednesday, February 06, 2002 18:28 Subject: Get Document.Url How can I get in my servlet Javascript's "document.URL"

Re: Is it possible to prevent Tomcat from creating a response?

2002-02-06 Thread Janek Bogucki
Would creating a redirection work after successful A A work? HTTP/1.0 302 Document follows Location: http://xxx.accenture.com/new-location/index.html Will this code be executed within a webapp or within a modified version of mod_webapp? -Janek --- [EMAIL PROTECTED] wrote: I'm creating a

Re: Get Document.Url

2002-02-06 Thread Odo
I know. ...Actually I wanted to process URLs with '@' in Servlet ex: http:[EMAIL PROTECTED] Galbayar wrote: JavaScript is Server Side Servlet is Server Side use getRequestURI() - Original Message - From: "Odo" [EMAIL PROTECTED] To: "Tomcat Users List" [EMAIL PROTECTED]

Re: Get Document.Url

2002-02-06 Thread David Cassidy
wouldn't that come across as the basic auth username ? getRemoteUser() ;-} D Odo wrote: I know. ...Actually I wanted to process URLs with '@' in Servlet ex: http:[EMAIL PROTECTED] Galbayar wrote: JavaScript is Server Side Servlet is Server Side use getRequestURI()

Re: Get Document.Url

2002-02-06 Thread Odo
getRemoteUser() returns null value. David Cassidy wrote: wouldn't that come across as the basic auth username ? getRemoteUser() ;-} D Odo wrote: I know. ...Actually I wanted to process URLs with '@' in Servlet ex: http:[EMAIL PROTECTED] Galbayar wrote: JavaScript is

Re: Servlet help...

2002-02-06 Thread Janek Bogucki
--- Clay Mitchell [EMAIL PROTECTED] wrote: How do I define where Tomcat looks for servlets? Where does it look for it by default? Thanks -Clay Have a look at this document http://jakarta.apache.org/tomcat/tomcat-4.0-doc/class-loader-howto.html It should answer your question.

Java Heap of tomcat continuously increases

2002-02-06 Thread Steve Wong
I am using Apache1.3.20 with mod_ssl + tomcat3.3 + mod_jk + Solaris 8 + Jdk1.2.2(green threads) I have a simple web application in tomcat. Using apachebenchmarking tool (ab) to generate many requests to my application via apache, I find that the allocated java

Classpath problems

2002-02-06 Thread Walter De Wit
Hello all, I've problems in letting log4j automatically find the log4j.properties file. I put log4j.jar in %CATALINA_HOME%\lib and my log4j.properties file in %CATALINA_HOME%\classes. I haven't put a log4j.jar version in my web-app/lib so normally all web applications should use the same log4j.

Tomcat 3.3 and 4.0, different behaviour when reloading the web.xml

2002-02-06 Thread WIPPERT,MAX (HP-Germany,ex1)
Hello everyone. I'm new to this mailing List, and hopefully I don't bother anyone asking questions which have already been answered. I'm using Tomcat 4.0 standalone on Win2K and Tomcat 3.3 on MPE. I use Tomcat to run JavaServlets. On MPE (it includes an Posix-Shell, behaves similar to Unix),

two web.xml?

2002-02-06 Thread Madock Chiwenda
How can a person specify default web.xml to be used at startup. I would like to start tomcat accessing the jsp in two different modes: 1. Accessing the source using WebDAV enabled editor. 2. Viewing the executed page content (HTML) using a browser. I think the source access can be achieved

Re: Strange output stream behavior

2002-02-06 Thread Volker Turau
Hi, that is correct behaviour, because Tomcat uses chunked transfer encoding. The browser interpretes these extra characters and displays only the content. volker turau FH Wiesbaden Fachbereich Informatik Tel.: +49-611-9495-205 FAX +49-611-9495-210 http://www.informatik.fh-wiesbaden.de/~turau

Apache + Tomcat

2002-02-06 Thread Gang Wu
Hi, I wonder where i can find doc for installing Apache as web sever and plug in Tomcat as servlet container only. Or Can anyone please give me a short headline about this issue. regards Gang -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED]

Re: Apache + Tomcat

2002-02-06 Thread Liam Holohan
Gang Wu wrote: Hi, I wonder where i can find doc for installing Apache as web sever and plug in Tomcat as servlet container only. Or Can anyone please give me a short headline about this issue. regards Gang -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands:

RE: TOMCAT 4.X - mod_jk

2002-02-06 Thread Kevin Passey
Hi again, I have found my answer here http://dcb.sun.com/practices/howtos/tomcat_apache.jsp Thanks anyway. Kevin Passey -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto:[EMAIL PROTECTED] -Original

PLEASE URGENT: log off problem!!!

2002-02-06 Thread Catalin
Hi, guys! I have an jakarta-tomcat-3.3-m4 on a win2k professional OS that is runnig as a service on that machine. My problem is that every time an user does log-off from windows 2000 and after that does login, my jakarta service is stopped!!! Another problem that I have is that I'm loosing

RE: PLEASE URGENT: log off problem!!!

2002-02-06 Thread Brian Adams
two reasons: 1. bug in jdk add -Xrs to wrapper.cmd_line in wrappers.properties. 2. don't run the service as interact with desktop. goodluck B -Original Message- From: Catalin [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 06, 2002 4:03 PM To: [EMAIL PROTECTED] Subject: PLEASE

Pb with the reloadable option with Apache/Tomcat.

2002-02-06 Thread Jean-Luc BEAUDET
Don't pay attention if this is the second Message, please. Hi everybody, I'm using SOLARIS 8, apache 1.3.22, tomcat 4.0.1 Tomcat is configured to communicate with Apache via the WARP Connector. As it is set for devlopement stuff, i want all the changes made in the WEB_INF/lib or classes

Tomcat NT Service Bug??

2002-02-06 Thread Vinay Urs
Hello there, We are encountering problems with Tomcat (versions 3.3 and 4.0.1). Our application, running on Tomcat on one machine, is creating directories on a remote file system. Tomcat is being started with a policy file. The application is able to pickup the remote file system if Tomcat is

AW: PLEASE URGENT: log off problem!!!

2002-02-06 Thread Ralph Einfeldt
That's normal. You can set the SessionTimeOut to a different value. I wouldn't recommens to set it to much higher values than the default of 30 minutes, as this will increase the resource usage of the system. You have to keep in mind that each aktive session needs some memory to store its

RE: TOMCAT 4.X - mod_jk

2002-02-06 Thread John Wadkin
I've quickly read the howto and I'm not sure that I agree with everything! I haven't defined a virtual host in httpd.conf and everything works fine. The author also makes this curious statement: !-- Replace localhost with what your Apache ServerName is set to -- !-- # This line

index.jsp-index.html

2002-02-06 Thread Odo
How configure default page from index.jsp to index.html in Tomcat 4.0? -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto:[EMAIL PROTECTED]

RE: Tomcat NT Service Bug??

2002-02-06 Thread Kimberley Scott
Hiya, This may be off base, but mapped drives may only exist while you're logged in. When the service starts, it runs as 'System' for whom the mapped drive does not exist. I remember there was a way for NT to 'map' drives during startup, so that they are available to all users including system

RE: index.jsp-index.html

2002-02-06 Thread Walter De Wit
In %CATALINA_HOME%\conf\web.xml This web.xml is loaded for every web application before the web.xml of the web application itself is loaded. In this 'global' web.xml you can specify defaults. -Original Message- From: Odo [mailto:[EMAIL PROTECTED]] Sent: woensdag 6 februari 2002 13:51 To:

RE: Apache + Tomcat

2002-02-06 Thread Daniel Thomas
I wrote a doc on how to integrate them once. I am not sure how good it is, I am not exactly a technical author, but it might be use full. It is based on the a windows environment. Hope it helps Dan Installing Tomcat and Apache on The Application Server Required files:

SSL Connection between Apache and Tomcat

2002-02-06 Thread Sasvari, Zsolt
How can I set a secure connection between Apache and Tomcat? As I see the Ajp connetor is not SSL enabled. Then how secure will be a system if Tomcat runs in different machine from Apache? I looked through the mailing list archive and didn't find any answers. Has anybody something idea? Thanks,

Strange behavour?

2002-02-06 Thread Odo
Could anyone explain me this Tomcat4 behavour? In index.html(or index.jsp) I wrote: html head titleShow URL/title /head body h4 script language="JavaScript" document.write("URL is - ",document.URL); /script /h4 /body /html and when I access like "[EMAIL PROTECTED]" to

AW: TOMCAT 4.X - mod_jk

2002-02-06 Thread Ralph Einfeldt
What happened is the following: The original documents contain the comment !-- Replace localhost with what your Apache ServerName is set to -- but the example didn't contain the string 'localhost'. Now there are two suggested solutions what was ment with that comment. - the entry 'name=Apache'

Re: apache + mod_SSL + tomcat

2002-02-06 Thread Dean Hiller
I never saw an answer go by to the below question and was curious what it would be. Does no one now the answer Dean Cressatti, Dominique wrote: Hi, I've got apache + mod_SSL + tomcat working (I don't deserve that much credit as mod_ssl worked right out the box) but I wonder couldn't

RE: Tomcat NT Service Bug??

2002-02-06 Thread Vinay Urs
Thanks for the suggestion, Kim. We have changed the NT Service to run for a particular user and we are using UNC instead of mapped drives. But this has still not solved the problem. Vinay --- Kimberley Scott [EMAIL PROTECTED] wrote: Hiya, This may be off base, but mapped drives may only

RE: apache + mod_SSL + tomcat

2002-02-06 Thread Brian Adams
my guess is yes, if you do not check in jsp/servlets are on https (request.isSecure()) and if you are allowing users to port 8080 (block it). my guess... :) -Original Message- From: Dean Hiller [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 06, 2002 7:33 AM To: Tomcat Users List

SendMailServlet.class

2002-02-06 Thread chad kellerman
Hello again, I finally got Tomcat and Apache running smoothly. ( well almost). I was going thru the examples, everyone worked except one. The mail. Looking into the problem I noticed that the SendMailServlet.class file was not created in

RE: TOMCAT 4.X - mod_jk

2002-02-06 Thread John Wadkin
It's interesting. Look at the server-noexamples.xml.config file that is supplied with TomCat. It's implied that the only difference between this file and the standard server.xml is the context def's for the examples web app. Yet in the server-noexamples.xml.config file: Engine

AW: SendMailServlet.class

2002-02-06 Thread Ralph Einfeldt
To compile the servlet you have to have the mail jars in the classpath. (mail.jar and activation.jar) -Ursprüngliche Nachricht- Von: chad kellerman [mailto:[EMAIL PROTECTED]] Gesendet: Mittwoch, 6. Februar 2002 14:38 An: [EMAIL PROTECTED] Betreff: SendMailServlet.class snip/ javac

RE: SendMailServlet.class

2002-02-06 Thread Mark Meany
SendMailServlet.java:1: error:Cannot find type javax/mail/Message Try downloading the Sun JavaMail API and putting the jars somewhere visible to your application. All should be Ok after this. http://java.sun.com/products/javamail/index.html M.

RE: Tomcat NT Service Bug??

2002-02-06 Thread Vinay Urs
Please ignore the previous mail.. the solution works like a charm. Thanks a lot, Vinay --- Kimberley Scott [EMAIL PROTECTED] wrote: Hiya, This may be off base, but mapped drives may only exist while you're logged in. When the service starts, it runs as 'System' for whom the mapped drive

RE: apache + mod_SSL + tomcat

2002-02-06 Thread Cressatti, Dominique
Anton Brazhnyk answered it. I followed his advice. I basically commented out the HttpConnector running on port 8080 and that was it. From that point I can't an http connection on port 8080 but I can still access my app on port 80 (normal http) and port 443 (https). One point that was made by

Tomcat +JSSE problem

2002-02-06 Thread Alex Perez
Hello! I'm having a nightmare trying to get Tomcat v:3.3 working properly with JSSE. So far, this is what I've done: -- [System]: Win2K Server + Apache + Tomcat 3.3 + jdk1.3.1 + JSSE1.0.2 Installed JSSE on

Re: Tomcat 3.3 and 4.0, different behaviour when reloading the web.xml

2002-02-06 Thread Remy Maucherat
Hello everyone. I'm new to this mailing List, and hopefully I don't bother anyone asking questions which have already been answered. I'm using Tomcat 4.0 standalone on Win2K and Tomcat 3.3 on MPE. I use Tomcat to run JavaServlets. On MPE (it includes an Posix-Shell, behaves similar to

RE: jdbc realm

2002-02-06 Thread Ignacio J. Ortega
Hi I use tomcat 3.2 and wounder how I can set up jdbc realm for each tomcat application. Eeach application use different databases. you cant do this in 3.2.X, but in 3.3 and 4.0 you can define a Different realm in every context, just by folding the JDBCRealm config line inside a context

Re: index.jsp-index.html

2002-02-06 Thread Janek Bogucki
--- Odo [EMAIL PROTECTED] wrote: How configure default page from index.jsp to index.html in Tomcat 4.0? Add the second servlet-mapping element shown here to $CATALINA_HOME/conf/web.xml !-- The mapping for the JSP servlet -- servlet-mapping servlet-namejsp/servlet-name

[JBoss244-Tomcat401] compatibility issue

2002-02-06 Thread Jarecsni Jnos
Hi, I've been upgrading to JBoss244 (with Catalina). Things are fine so far, except for this: we have a lot of "request.getRequestDispatcher("symbolicID").forward(reques, response)" in our application. "SymbolicID" is a name of a screen or a request processor (the very same as those in Sun's

Re: Re: Problem with POST and FORM based authentication

2002-02-06 Thread Anil Paul
Thanks for replying. I've checked this and the login page is fine. == html body h4Please login:/h4 form method=POST action=j_security_check input type=text name=j_username input type=password name=j_password input type=submit value=OK /form /body /html == As I wrote earlier, it

Re: apache + mod_SSL + tomcat

2002-02-06 Thread Dean Hiller
I think there is a way to solve the problem without shutting down port 8080. Someone please verify this is true. If I use a servlet, my servlet can determine if the connection is from 8443 or 8080 and if it is from 8080 can deny the user access right away. Is this correct? I was kind of

RE: apache + mod_SSL + tomcat

2002-02-06 Thread Cressatti, Dominique
...my servlet can determine if the connection is from 8443 or 8080.. While not much clued up about java (but having seen a few examples) I would think its possible. Then again why would you like to do it at the servlet level? Why would you want to keep port 8080 opened when 80, 443 or 8443 are?

RE: Tomcat 3.3 and 4.0, different behaviour when reloading the web.xml

2002-02-06 Thread WIPPERT,MAX (HP-Germany,ex1)
Hi Remy, thanx for you answer. Using the Manager App with startstop or with reload reloads my Servlet, destroy() and init() are processed. Unfortunatly this does NOT force TC4.0 to reload the web.xml. I think I will have a look at the nighly build... Regards, Max -Original Message-

Re: SendMailServlet.class

2002-02-06 Thread chad kellerman
Sorry to have to write again but I am lost. I set the CLASS_PATH. That did not work, I downloaded the javamail, and moved allthe jar file to /usr/local/jakarta-tomcat-4.0/dist/common/lib/ which should have done it. But not. Still same error. I open up SendMailServlet.java and looked:

[JBoss244-Tomcat401] compatibility issue (2)

2002-02-06 Thread Jarecsni Jnos
Hi, a bit of additional info to the previous e-mail: getRequestDispatcher works with static resources (html pages, JSP pages). It only doesn't work with those "dynamic" resources (like screens, request processors). Cheers, Jnos PS: btw, now I don't even see clearly how on earth should

RE: SendMailServlet.class

2002-02-06 Thread Michel
I believe you also need the activation.jar from Sun? Did you get that? gr. Michel -Original Message- From: chad kellerman [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 06, 2002 16:09 To: Tomcat Users List Subject: Re: SendMailServlet.class Sorry to have to write again

RE: SendMailServlet.class

2002-02-06 Thread Mark Meany
Ok, on the index page for JavaMail is a link to the Javabeans Activation Framework, you need that as well: http://java.sun.com/beans/glasgow/jaf.html. mail.jar is available in the JavaMail /lib directory, copy this to your: activation.jar is available in the Javabeans Activation Framework

RE: [JBoss244-Tomcat401] compatibility issue

2002-02-06 Thread Jarecsni Jnos
Well, it seems I've sent my question too early on the list, sorry for that! The solution is to include request.getServletPath() in the resource name. So now I issue: request.getRequestDispatcher(request.getServletPath()+"/"+dynamicResourceID) Cheers, Jnos -- Jarecsni, Jnos MORGAN HILL

Re: SendMailServlet.class

2002-02-06 Thread chad kellerman
Boy, ever had on of those days. I was using the wrong javac. Not the one with the JDK. I used the correct one and now I am getting SendMailServlet.java:7: cannot resolve symbol symbol : class Message location: package mail import javax.mail.Message; For just about every import. I

Error 200?

2002-02-06 Thread Gary Lawrence Murphy
I have a client who wrote a bunch of JSP pages that all return a tomcat Error 200 in the middle of the headers; because the error message is wrapped in blank lines, the message terminates the HTTP headers causing itself and any subsequent headers to be printed on the html page. I search the

RE: Squeezing performance out of Tomcat

2002-02-06 Thread Amit Kelkar
One thing that is totally off left field, but may help... We had a similar lag problem, - on one of our clients 100mb network with a HP switch, we were getting lags on images etc. The problem was that it would go to the central server to resolve all IP's and especially domain names. Thus we

AW: SendMailServlet.class

2002-02-06 Thread Ralph Einfeldt
I guess that's still the same error, you get just a different message with the other jdk. mail.jar in probaly not in the classpath when you call javac. -Ursprüngliche Nachricht- Von: chad kellerman [mailto:[EMAIL PROTECTED]] Gesendet: Mittwoch, 6. Februar 2002 16:42 An: Tomcat

Re: SendMailServlet.class

2002-02-06 Thread Nancy Crisostomo Martinez
Chad, Although I have added the activation, mail and pop3 JAR files to the CLASSPATH, TOMCAT_HOME/lib, $TOMCAT_HOME/common/lib, $TOMCAT_HOME/webapps/app/WEB-INF/lib I could run my application, but when I press a button to send the mail, I got an error message on the console and the mail is not

RE: apache + mod_SSL + tomcat

2002-02-06 Thread Anton Brazhnyk
Hi, -Original Message- From: Cressatti, Dominique [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 06, 2002 4:00 PM To: Tomcat Users List Subject: RE: apache + mod_SSL + tomcat Anton Brazhnyk answered it. I followed his advice. I basically commented out the HttpConnector

Can I use Form based Authentication to secure my html pages

2002-02-06 Thread Satish Reddy
Hi, I am trying to secure some of my web pages using the Form based Authentication provided by tomcat. I am using tomcat3.3a with Apache 1.3.12. I am able to restrict the jsp pages but not the html pages. Is this the way it works? If there is anything i need to set for html pages. I will

WarpConnector: how to enable static content below dynamic content?

2002-02-06 Thread Michel
Howdy! I'm Using Tomcat 4 with Apache 1.3 using the WarpConnector on RH7.2 Because the index page of my website is a JSP, I mapped the root of my website to a tomcat webapp using: WebAppDeploy mywebsite warpConnection / Now I can't use any of the static pages from Apache, like /usage,

RE: SendMailServlet.class

2002-02-06 Thread Loïc Lefèvre
Could you send the e-mail address for recipient(s) and sender that you are using? -Message d'origine- De : Nancy Crisostomo Martinez [mailto:[EMAIL PROTECTED]] Envoyé : mercredi 6 février 2002 17:02 À : Tomcat Users List Objet : Re: SendMailServlet.class Chad, Although I have added the

Re: SendMailServlet.class

2002-02-06 Thread Markus Colombo
Hi, Seems like you did not specify a correct host. I specify the host like this: Properties props = new Properties(); props.put(mail.host, mail.domain.ch); Session session = Session.getDefaultInstance(props, null); Message msg = new MimeMessage(session); msg.setFrom(new InternetAddress((String)

RE: SendMailServlet.class

2002-02-06 Thread John Wadkin
A quick rummage on the net turned this up... http://java.sun.com/products/javamail/FAQ.html#securityManager Just type the exception javax.mail.NoSuchProviderException into Google and it turns up loads of stuff! John Quote for the week: Experience is not what happens to a man; it is what a

AW: SendMailServlet.class

2002-02-06 Thread Ralph Einfeldt
That not his problem, he can't even compile the classes. Saw your previous posts, but I can't help you as we didn't have any problems with JavaMail. -Ursprüngliche Nachricht- Von: Nancy Crisostomo Martinez [mailto:[EMAIL PROTECTED]] Gesendet: Mittwoch, 6. Februar 2002 17:02 An:

Re: apache + mod_SSL + tomcat

2002-02-06 Thread Dean Hiller
In my app, we don't need everything to run over SSL and we are not using apache so we only have ports 80 and 8443. I changed the default 8080 to 80 and should have probably changed 8443 to 443. When SSL is not necessary, we don't use it as it slows down the downloading of the pages. Dean

Re: apache + mod_SSL + tomcat

2002-02-06 Thread Dean Hiller
thanks for the xml Anton that is much better than putting the code in the servlet, and is easy to expand to a per servlet/html page basis. thanks, Dean -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto:[EMAIL

RE: WarpConnector: how to enable static content below dynamic content?

2002-02-06 Thread Mike Millson
In my experience, this isn't possible. If someone knows how to do it, I sure would like to know also. Mike -Original Message- From: Michel [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 06, 2002 11:10 AM To: Tomcat Users List Subject: WarpConnector: how to enable static content

Catalina: cannot generate configuration for Apache

2002-02-06 Thread Jarecsni Jnos
Hi, The Tomcat 4.0.1 documentation at http://jakarta.apache.org/tomcat/tomcat-4.0-doc/config/ajp.html suggest one wanting to integrate TC401 with Apache the following: [...] To generate the global Apache directives (e.g. LoadModule, JkLogFile), you define a Server Listener: Server

Re: SendMailServlet.class

2002-02-06 Thread chad kellerman
Nancy, Actually, for some reason when I ran, ant dist, all the class files were created except the class file for SendMailServlet.java. I tried the create the class file by hand and that's where I ran into trouble I have tried a few things. I am thinking I am going to keep at it

enforce clientAuth

2002-02-06 Thread Sasvari, Zsolt
I'm using Tomcat 3.3 and I configured an SSL connection. It works. Then I set clientAuth=true for the http connector but nothing changed. Tomcat didn't require a client cert or anything when I access from browser. How can I enforce the client authentication? Any idea? Thanks, Zsolt Sasvari --

RE: WarpConnector: how to enable static content below dynamic content?

2002-02-06 Thread Cressatti, Dominique
What about something like: WebAppDeploy mywebsite warpConnection /*.jsp Dom -Original Message- From: Michel [mailto:[EMAIL PROTECTED]] Sent: 06 February 2002 16:10 To: Tomcat Users List Subject: WarpConnector: how to enable static content below dynamic content? Howdy! I'm

Re: AW: SendMailServlet.class

2002-02-06 Thread chad kellerman
Ok, Got it. Geesh, computers really get on my nerves. ;^) I saw that SendMailServlet.java needed two jar files to compile. And since no matter what I did to set the CLASS_PATH it would not work. So I added the jar files in the line: /usr/java/jdk1.3.1_01/bin/javac -classpath

standardContext.namingInitFailed

2002-02-06 Thread Jack Lauman
I'm getting the following error in my log files after each webapp is loaded: StandardContext[/soap]: Cannot find message associated with key standardContext.namingInitFailed I assume this has something to do with JNDI... how can I fix it? Jack -- To unsubscribe: mailto:[EMAIL PROTECTED] For

getParameterMap() question

2002-02-06 Thread Steven Elliott
Sorry if this is somewhat offtopic but maybe some experts here can help clear this up for me. I would like to use the ServletRequest.getParameterMap() in a JSP page using the request object. I post a form in the previous page using the POST method and the request in processed with the following

Re: getParameterMap() question

2002-02-06 Thread Steven Elliott
Never mind. I should know an array when I see one 8§. Apologies for the extra traffic Steven -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto:[EMAIL PROTECTED]

Re: SendMailServlet.class

2002-02-06 Thread RSEQUEIRA
Shouldn't it be CLASSPATH instead of CLASS_PATH chad kellerman [EMAIL PROTECTED] on 02/06/2002 09:09:15 AM Please respond to Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] cc: Subject: Re: SendMailServlet.class Sorry to have to write again but I am lost.

Tomcat as an NT service

2002-02-06 Thread Ken Sanderson
Thanks for the help I recieved early, found out why I couldnt get it to work with JDK and it would work with JRE. Turns out the software sent the Enterprise Edition not the Standard Edition which has all the bin files I needed, at any rate, all working. I can now run tomcat using the startup

Verisign CSR generation for Tomcat

2002-02-06 Thread Garske, Tom
I've been trying to locate any documentation on how generate an SSL certificate(CSR)that can be submitted to Verisign via tomcat, however I've been unsuccessful in doing so. The link below, only shows how to create a keystore and this obviously cannot be submitted to a CA. If someone could

RE: Tomcat as an NT service

2002-02-06 Thread Alex Perez
Have you got anything in the log for the service? Alex -Original Message- From: Ken Sanderson [mailto:[EMAIL PROTECTED]] Sent: 06 February 2002 19:16 To: Tomcat Users List Subject: Tomcat as an NT service Thanks for the help I recieved early, found out why I couldnt get it to work

Tomcat 4.0 Servlet not recognized

2002-02-06 Thread Stefan Langer
Hello I'm using Tomcat 4.0 standalone for developement under Eclipse. I have an application that uses a single Servlet named Dispatcher as a request dispatcher. The Servlet extends HttpServlet. When I start tomcat as an Application in Eclipse Tomcat starts up and trys to load the Servlet. The

RE: Tomcat as an NT service

2002-02-06 Thread Ken Sanderson
Nothing in my system logs and the only change to the other log files in the logs folder of tomcat is to jvm.stderr. The message added is: javax.xml.parsers.FactoryConfigurationError: java.lang.ClassNotFoundException: org.apache.crimson.jaxp.SAXParserFactoryImpl at

Tomcat 4.0 Apache 2.0

2002-02-06 Thread Lajos Moczar
Hi all - Has anyone been successful in getting Tomcat 4.0 to work with Apache 2.0? I downloaded the mod_webapp source code (the 1.0.1 tarball as well as the latest from cvs) and compiled it, but libtool would not build a dynamic library. I have no idea why - it complains about something not

Init method of servlet called twice?

2002-02-06 Thread Donie Kelly
Hi all Can anybody tell me why the init method can be called twice in a servlet. I am loading the servlet on startup and init is first called there. The first request to the servlet then calls the same init method again? Please help. I cannot init twice. Thanks Donie -- To unsubscribe:

Re: Init method of servlet called twice?

2002-02-06 Thread Dean Hiller
I remember dealing with problems like that before but they are vague in my head. Your problem is better posted on the java forum I think. I am trying to recall what happened. It was something like I would hit back in my browser and then forward so IE would call init again. I remember

web hosting

2002-02-06 Thread Mark Gordon
I have a friend that is hosting a apache/tomcat machine for a couple of people. We are running apache and tomcat 4.0.1 Does anyone know a resource for information on how to set this environment up so that each user can manage his/her webapps within tomcat. We cannot restart tomcat (no

RE: Tomcat as an NT service

2002-02-06 Thread Randy Layman
This would indicate that Tomcat can't read the server.xml file because its missing the XML parser. Check your wrapper.properties file and make sure that all the TOMCAT_HOME\lib jar files are mentioned where it builds the classpath. Randy -Original Message- From: Ken

RE: Init method of servlet called twice?

2002-02-06 Thread Randy Layman
Craig posted a technical explanation of this about two weeks ago, so search the archives for that, but the short version is that for every unique address that your servlet responds to the init method will be called. Having an alias for your servlet (so you can pass parameters) and using

RE: Init method of servlet called twice?

2002-02-06 Thread Donie Kelly
Thanks Dean but I'm not using IE or Netscape. I'm using a different client which we wrote ourselves. The client hasn't changed but I've done something to cause this behaviour as is didn't do it yesterday Thanks Donie -Original Message- From: Dean Hiller [mailto:[EMAIL PROTECTED]]

RE: WarpConnector: how to enable static content below dynamic content?

2002-02-06 Thread Michel
This seems to work! Thank you very much. gr. Michel -Original Message- From: Cressatti, Dominique [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 06, 2002 19:05 To: Tomcat Users List Subject: RE: WarpConnector: how to enable static content below dynamic content? What

Re: Mapping multiple hosts to single Host

2002-02-06 Thread August Detlefsen
In httpd.conf, inside each VirtualHost, you can set the ServerAlias directive - it will allow the same VirtualHost to recognize multiple domain names: NameVirtualHost 12.34.56.78 VirtualHost 12.34.56.78 ServerName myCompany.com ServerAlias myCompany.net myCompany.org myOtherCompany.com

Re: web hosting

2002-02-06 Thread Micael Padraig Og mac Grene
Why does the use of Apache preclude installing and so on web apps? At 12:54 PM 2/6/02 -0700, you wrote: I have a friend that is hosting a apache/tomcat machine for a couple of people. We are running apache and tomcat 4.0.1 Does anyone know a resource for information on how to set this

RE: Init method of servlet called twice?

2002-02-06 Thread Donie Kelly
Yes, Randy, you're right I have two mappings for the same servlet. Can you tell me how to search the archives. Where are they? I only receive this list by mail and have just deleted last weeks list. Thanks for the help Donie -Original Message- From: Randy Layman [mailto:[EMAIL

  1   2   >