Re: jdk 1.3 and tomcat 4.1

2006-06-17 Thread Bill Barker
"t malu" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi, > I'm a new user of java and tomcat. I have installed > jdk 1.3. I downloaded the apache tomcat 4.1. But > everytime I start the server, the following message > comes up and then closes. > The error message starts out as

Re: Own Connector for Tomcat

2006-06-22 Thread Bill Barker
"Daniela Piacenti" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hello everybody, > > I read a lot about the coyote connector and that it is possible to write > own connectors for Tomcat. But I did not find anything in the whole web, > how to do this. Now I am reading the source

Re: build.xml

2006-06-23 Thread Bill Barker
<[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] >I cannot locate org.eclipse.jdt.core.JDTCompilerAdapter. When I try to > build a war file with Ant my build fails because this adapter cannot be > found. Is there a work around. I am going to search on the web now. If you have a rec

Re: Executing Valve before Basic Authentication takes place

2006-07-04 Thread Bill Barker
Mark is correct: request.addHeader has been deprecated in 5.5.x+, and doesn't actually do anything at all. See Mark's response for the correct way to add your own request header. Alternatively, if the set the userPrincipal on the Request in your Valve, then Tomcat won't bother to try and auth

Re: Running Tomcat Embedded

2006-07-10 Thread Bill Barker
"Mike Wannamaker" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] >I wish to run Tomcat from within my own JVM. I would like it to run just > like Tomcat does today, however I'd just like to setup the various paths, > for like web app root directory, config directory, lib directory

Re: 302 Redirect on Tomcat 5.x+

2006-07-10 Thread Bill Barker
"Rob L" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] >I heard somewhere that tomcat 4 and below uses a 302 redirect on the home >(index) page. Is this still the case with 5.x+? > No. Tomcat 5.x+ serves http://www.myserver.com/myapp/ directly. However, it will 302 a request fo

Re: url changes

2006-07-10 Thread Bill Barker
"Graham Reeds" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] >I am setting up a website. Part of the site is employee blogs. As well as >the blogs there will be forums, products, etc. making: > > http://www.company.com/blogs/employee.name > http://www.company.com/forums/ > http:/

Re: Running Tomcat Embedded

2006-07-11 Thread Bill Barker
have received this message in error, please contact the sender and > delete this message without printing it or otherwise retaining a copy. > -Original Message- > From: Bill Barker [mailto:[EMAIL PROTECTED] > Sent: July 10, 2006 11:44 PM > To: users@tomcat.apache.org > Subject:

Re: mod_proxy_ajp with multiple ajp ports

2006-07-12 Thread Bill Barker
I've seen some talk on [EMAIL PROTECTED] about implementing support for regexps in mod_proxy, but I don't think anything has happened yet. What you want is something like: RewriteRule /my/path/.*\.whatever\.else ajp://localhost:8285/my/path/$1.whatever.else [P] Check the documentation for mod

Re: mod_proxy_ajp with multiple ajp ports

2006-07-14 Thread Bill Barker
"Pid" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > > Christopher Schultz wrote: >> Bill, >> >> Thanks for the response. >> >>> I've seen some talk on [EMAIL PROTECTED] about implementing support for >>> regexps in mod_proxy, but I don't think anything has happened yet. >> >> It

Re: Solaris 10, Tomcat 5.5.9 and JDK 1.5.0_01 - Exception at start up

2006-07-18 Thread Bill Barker
"Jajati Samal" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi I have Solaris 10, JDK 1.5.0_01 and Tomcat 5.5.9, it crashes and I get > the following exception in catalina.out. I will appreciate if you can let > me > know any solution to this. Upgrade your Tomcat version. TC 5

Re: Question for Tomcat API experts - How to get period export of key throughput parameters

2006-07-18 Thread Bill Barker
"Edmon Begoli" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi, > > This question is directed towards Tomcat developers or Tomcat API experts. > > We are trying to establish an inspection mechanism that will track key > parameters > of Tomcat's over the period of time including s

Re: Tomcat don't validate Certificate by using mod_proxy_ajp

2006-07-29 Thread Bill Barker
Actually, Tomcat can't validate your client cert with either mod_jk or mod_proxy_ajp for the simple reason that the AJP/1.3 protocol only forwards the client cert and not the entire chain. You have to configure certificate validation in Httpd. "Florian Rock" <[EMAIL PROTECTED]> wrote in messag

Re: How to identify busy Tomcat threads

2006-08-02 Thread Bill Barker
<[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > When i look at the Tomcat status page via the browser, if it tells me that > all the threads are busy - but the details of each of the connections > indicates that these connections are in "k" - keep alive stage. Is there > a > way

Re: Enabling https with a IBM JVM

2006-08-02 Thread Bill Barker
"William Chu" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hello, > > I am trying to enable https on Tomcat 3.3.1. I am using an IBM JVM. > When I go to the url https://, I see the following exception. > In my browser, I get a 503 message saying that the "Server is > starting". >

Re: Enabling https with a IBM JVM

2006-08-02 Thread Bill Barker
eral years ago, so I don't remember the details :). But I'm may have been using the CoyoteConnector (which was available as an addon before 3.3.2 was released). > Thanks again! > Will > > On 8/2/06, Bill Barker <[EMAIL PROTECTED]> wrote: >> >> "

RE: How do I direct all http requests to Https

2006-08-04 Thread Bill Barker
With the TC 3.3 line, the auto-redirect is only implemented in the SVN trunk. > -Original Message- > From: William Chu [mailto:[EMAIL PROTECTED] > Sent: Friday, August 04, 2006 1:08 PM > To: Tomcat Users List; [EMAIL PROTECTED] > Subject: Re: How do I direct all http requests to Https >

RE: How do I direct all http requests to Https

2006-08-04 Thread Bill Barker
4, 2006 3:59 PM > To: Tomcat Users List; [EMAIL PROTECTED] > Subject: Re: How do I direct all http requests to Https > > Thank you Bill, > > I am using 3.3.1 . What is the SVN trunk? And how do I do this? > > Thank you > Will > > On 8/4/06, Bill Barker <[EMAI

Re: HTTPS and Keys

2006-08-07 Thread Bill Barker
"Mark Thomas" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > William Chu wrote: >> Hello, >> >> When configuring tomcat for HTTPS, how does tomcat know which key to >> use? If you run the keytool command multiple times, you generate >> multiple keys. The keys are stored in the .ke

Re: Odd behaviour on Expiry-headers

2006-08-14 Thread Bill Barker
You need to call response.setHeader before calling chain.doFilter. Otherwise, except for very small responses (like 304) Tomcat will have already sent the headers to the browser before chain.doFilter returns. What you are seeing in the Expires header for your 200 responses is Tomcat's default v

Re: Apache 2.2 proxy and Tomcat 5.5 container - couldn't map to root

2006-08-21 Thread Bill Barker
"Olexandr Prokhorenko" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi everybody, > > I believe this is a common problem, but I wasn't able to find any answer > to it, > yet. I have a project WAR deployed in Tomcat 5.5 container, so I can see > it as > http://tomcat.server:808

Re: Using tomcat auto configure

2006-08-28 Thread Bill Barker
Tomcat version? Older versions didn't support ApacheConfig under Engine. "Jim Weir" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] >I can generate a mod_jk.conf with the folllowing in my server.xml. The >problem is it's a blank file.. > > > modJk="/usr/local/apache2/modul

Re: configuring Tomcat for protocols other than http/s

2006-08-28 Thread Bill Barker
"Viraj Turakhia" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi all, > I am starting to work with Tomcat's code and have no clue where to start > from. > Any pointers would be very very helpful. Well, one method is to implement your own ProtocolHandler ( http://tomcat.apache.or

Re: Problem moving from HTTP to HTTPS

2006-08-31 Thread Bill Barker
Yeah, you need to delete the entire ... to allow everyone. However, for MSIE, you may still get problems due to the restricted caching headers that Tomat adds. "Filip Hanik - Dev Lists" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > * > > the "*" means all the roles that you h

Re: Tomcat 5.5.17 * behavior change

2006-09-01 Thread Bill Barker
It would have been easier to change server.xml, to something like: "brian bay" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > SOLVED! > > Well since no one else seems to care about ldap authentication and user > roles, I guess I'll reply to myself.. > > Apparently backwards co

Re: Regarding SSL (http-https) installation or importing the trusted certificate

2006-09-01 Thread Bill Barker
RTFM: http://tomcat.apache.org/tomcat-5.5-doc/ssl-howto.html "keyur sheth" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi everybody, > > I am trying to convert the tomcat container from http > to https. But I want to do it by installing the trusted certifica

Re: How to disable "HTTP/100 Continue" on Tomcat

2006-09-04 Thread Bill Barker
"Bruno Vilardo" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hello All, > > I am a new user of TOMCAT sorry for any dumb question;-) > > TOMCAT version is *"jakarta-tomcat-4.1.31".* > ** > We current have an application that replicates data. > > But we are having some issue becau

Re: How to disable "HTTP/100 Continue" on Tomcat

2006-09-04 Thread Bill Barker
t is ok to start sending the request body. Tomcat sends this before control has even reached your servlet, and only if the client asked it to. > HTH. > Thanks a lot, > > Best Regards, > > Bruno > > > > On 9/4/06, Bill Barker <[EMAIL PROTECTED]> wrot

Re: How to disable "HTTP/100 Continue" on Tomcat

2006-09-04 Thread Bill Barker
e "100 Continue" is telling the client that it is ok > to > start sending the request body. Tomcat sends this before control has even > reached your servlet, and only if the client asked it to. > > > > On 9/4/06, Bill Barker <[EMAIL PROTECTED]> wrote: >&g

Re: Error while converting tomcat container from http to https

2006-09-06 Thread Bill Barker
PureTLS doesn't use the standard Java keystore format. Consult the PureTLS docs for the correct format. Alternatively, specify sSLImplementation="org.apache.tomcat.util.net.jsse.JSSEImplementation" on the element to use JSSE instead of PureTLS. "keyur sheth" <[EMAIL PROTECTED]> wrote in mess

Re: Different Tomcat version instances with a single Apache front-end?

2006-09-06 Thread Bill Barker
"Garthfield Carter" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi, > > I currrently have Tomcat (5.0.28) set-up with an Apache front-end. I would > like to run an instance of Tomcat 5.5, as well, on the same server again > using the same Apache front-end. Can the command for

Re: Error: unable to find valid certification path to requested target

2006-09-06 Thread Bill Barker
You need to import the top level cert into cacerts with -trustcacerts. Otherwise it is untrusted. "Jeanna Geier" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] Hi I'm having some problems connecting to a Slide client and would appreciate any help you could offer. I'm a newbie here,

Re: How to disable "HTTP/100 Continue" on Tomcat

2006-09-06 Thread Bill Barker
Http 1.0 instead of http1.1 which > sends the "100/Continue". > > To do this we have edited the server.xml and commented the http1.1 and > uncommented the http1.0 option. But we are still seeing the "100/Continue" > message even known that the Http1.0 is configured

Re: Configuring/Securing mod_proxy_ajp

2006-09-07 Thread Bill Barker
"Jim Weir" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > To all, > > I am using mod_proxy_ajp w/ Apache 2.2.3/Tomcat 5.5.4 > > The problem I have with this is that I lose all my formatting from a site > build with Forrest. It seems to be returning only HTML and dropping all > t

Re: moving from win2k sp4 to win2k3 64bit

2006-09-07 Thread Bill Barker
If you are running as a service, then you'll probably have to download and compile procrun (aka tomcat5.exe) with a 64-bit compiler. Search the archives for instructions. "joon yoo" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hello, > > I'm a sysadmin, not a programmer so the

Re: Error: No available certificate or key corresponds to the SSL cipher suites which are enabled.

2006-09-10 Thread Bill Barker
I don't know if it's just copy/paste errors, but from what you've written, you've imported the ca cert twice, and into a different keystore file than you used to generate the key. What does > keytool -list say? "Jeanna Geier" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] Hi All-

Re: Question about the "compress" setting MIME-Version: 1.0

2006-09-10 Thread Bill Barker
The main difference is that Tomcat doesn't build the entire compressed response in memory (which is necessary if you need to send a content-length header). Instead, it used chunked encoding to send the compressed content out the wire as it comes in from the servlet. <[EMAIL PROTECTED]> wrote i

Re: How does one enter a non-ISO8859-1 character in the servlet path ?

2006-09-12 Thread Bill Barker
"Sriram Narayanan" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi: > > I was having a look at the bugzilla, and chanced across this post > http://issues.apache.org/bugzilla/show_bug.cgi?id=7013 > > I'm curious to know how one could enter a "non-ISO8859-1 character" in > the requ

Re: How to redirect to a jsp

2006-09-12 Thread Bill Barker
"Romain Quilici" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi all, > this question seems simple, but I did not figure out how to answer it. > > In my web.xml I have defined a default servlet. So it can handle requests > that does not match other servlets pattern. > > D

Re: Tomcat 5.x thread model

2006-09-14 Thread Bill Barker
For the standard Java connector, it's one socket - one thread (this is also true of the standard Java AJP/1.3 connector, but in this case requests from many different users will use the same socket). For the APR connector and the Nio connector (currently Tomcat 6 only), a thread will handle req

Re: Where is the information for user authentication logged

2006-10-10 Thread Bill Barker
"Shuwen" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi, > Pardon me for asking a simple question here. I have checked internet > but found no answer. I am using Tomcat 5.5. If the user logs in, is > there any log file that record the name of the user and login time? I

Re: stopping jk connector threads

2006-10-10 Thread Bill Barker
If you need to (and it's only necessary on some older Linux kernals), then the usual method is to set a connectionTimeout on the element. Then if Apache doesn't send another request to that thread within the specified time, the thread will close the connection, and terminate. "Enrique Arce" <[

Re: custom Form authenticator

2006-10-14 Thread Bill Barker
"Pid" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Am thinking about implementing a custom Form authenticator, does anyone > have any tips or links they can recommend before i get started? > > Particularly want to know if I can use it on one webapp, not force all > on the server t

Re: Using a custom connector in Tomcat 5.5

2006-10-17 Thread Bill Barker
"Jacob Marcus" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Thanks for the replies. > > Using the protocol="my.Class" does help me give my own implementation of > the > ProtocolHandler for the Connector. > The className attribute would have helped me specify my own implementatio

Re: KeepAlive Timeout configuration

2005-10-28 Thread Bill Barker
- Original Message - From: "Haug Thomas" <[EMAIL PROTECTED]> Newsgroups: gmane.comp.jakarta.tomcat.user Sent: Friday, October 28, 2005 2:58 AM Subject: KeepAlive Timeout configuration Hi everybody, I am looking for a way to configure the KeepAlive Timeout value of Tomcat 5.0.25 (and

Re: mod_jk, deployment, and auto-conf

2005-10-28 Thread Bill Barker
"Harry Hartley" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > What I want: > > 1) To have apache responsible for running all my static (html) pages > from my /www directory. > > 2) To have tomcat responsible for running all my web applications > (jsp's and Servlets) fr

Re: Client Certificate Authentication Failure

2005-11-06 Thread Bill Barker
Tomcat is getting the cert fine (otherwise you'd get a different reponse message). The problem is that it can't find a user to go with the certificate. This means that you've got a problem with your Realm configuration. Unfortunately, out of the Realms that ship with Tomcat, only MemoryRealm a

Re: Unix socket communications on Tomcat 5.5

2005-11-06 Thread Bill Barker
"Oliver Hookins" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Richard Mixon wrote: >> Oliver, >> >> Unless you have a special reason to use mod_jk2, you should probably be >> using mod_jk instead. See: >> http://tomcat.apache.org/connectors-doc/news/20041100.html#20041115.1 >>

Re: SSL Handshake before parameters sent???

2005-11-22 Thread Bill Barker
"John MccLain" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > We have a servlet that is served by Tomcat. IIS is employed to redirect ot > Tomcat via AJP. IIS is also SSL enabled as our data is sensistive. > > I wish to call a servlet and pass SSL encrypted data. BUT, to start the

Re: ThreadPool logFull, Tomcat not responding anymore

2005-11-25 Thread Bill Barker
"Konrath Thomas" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi .. > > > We have a problem on our product server with our web application (which > is too complicated to go into the details of here). > Every day at least once our web application is mysteriously hanging. The > app

Re: Issues When Restarting Tomcat

2005-11-25 Thread Bill Barker
This version has a known memory leak in the AJP/1.3 Connector. The work-around is to set: request.registerRequests=false in your $CATALINA_HOME/conf/jk2.properties file. "Carroll, Simon, CND" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] Hi, I have the following problem and I w

Re: Failed shutdown of Apache Portable Runtime

2005-11-26 Thread Bill Barker
If there are no other error messages, then it usually means that you simply don't have the APR Connector installed. "Behrang Saeedzadeh" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] Hi, >From time to time I recieve this error message whenever I attempt to shutdown Tomcat 5.5.12 f

Re: tld files inside jars are not auto discovered

2005-11-26 Thread Bill Barker
You need to install your tld in /META-INF/. Paths in jar files are case-sensitive. "Aaron Loucks" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] >I can't get TLD auto discovery to work for any custom taglibs i write > when I package them as jars. It works fine for the standard tagl

Re: tld files inside jars are not auto discovered

2005-11-27 Thread Bill Barker
/taglibs/breadcrumbs/BreadCrumbTag.class BreadCrumbTag.java "Aaron Loucks" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] >I double checked the jar file and the META-INF is in uppercase. Still no >luck =/ > > Bill Barker wrote: > >>You need to instal

Re: SSL Certificate Beginner Question

2005-11-29 Thread Bill Barker
"Scott Purcell" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Real helpful ... I searched on SRV.12 and it brought up a bunch of links > that have nothing to do with Tomcat config of SSL. > > I probably posted a lame request. Let me try again. > > I have purchased a certificate v

Re: mod_proxy_ajp

2005-12-01 Thread Bill Barker
"Joseph Shraibman" wrote in message news:[EMAIL PROTECTED] > Does anybody have any idea how to use mod_proxy_ajp? The documentation > page http://httpd.apache.org/docs/2.2/mod/mod_proxy_ajp.html just talks > about the ajp protocol. # Forward all to myapp ProxyPass ajp:/localhost:8009/myapp

Re: jasper encryption and patents

2005-12-01 Thread Bill Barker
"Tim Funk" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Jasper does not contain any encryption code which would violate any > commercial export laws. There are no IP patent suits against tomcat at the > moment. If this were to happen - we would have the assistance of the > sol

Re: mod_proxy_ajp

2005-12-01 Thread Bill Barker
"Bill Barker" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > "Joseph Shraibman" wrote in message > news:[EMAIL PROTECTED] >> Does anybody have any idea how to use mod_proxy_ajp? The documentation >> page http://httpd.apache

Re: Apache Portable Runtime

2005-12-02 Thread Bill Barker
"Robert Palmer" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Is this something that I should worry about? Is it easily resolved? I have > downloaded and installled Apache Portable Runtiime. It did not install in > the Java path though? > The message has been fixed in 5.5.13.

Re: Verisign Certificate Still Giving Me Troubles:

2005-12-03 Thread Bill Barker
Well, firstly, Verisign should have given you a cert.crt file :). Verisign uses an intermediate cert to sign with (available from their site). Based on configuring mod_ssl I'm guessing that you need to download it and set: SSLCertificateChainFile="/path/to/int/cert.crt" in your element. >Fro

Re: Apache, Tomcat & Tomcat Connector 1.2.15

2005-12-03 Thread Bill Barker
"Larry Morroni" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi, > I have the following setup: > Sun Solaris 9 > Apache 2.0.54 > Tomcat 5.5.12 > Tomcat Connectors 1.2.15 > > I run a small ISP. We would like to setup one tomcat server instance to > handle multiple low-volume tom

Re: Charset configurations for JSP pages

2005-12-03 Thread Bill Barker
"Mieke Banderas" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Mark Thomas said: >>Mieke Banderas wrote: >>> Mark Thomas said: Read the spec. >>> Where in the spec? >> >>"JSP.4 Internationalization Issues" would seem to be a blinding >>obvious place to start. > > I didn't find

Re: Apache 2.2 and mod_proxy_ajp

2005-12-03 Thread Bill Barker
"Chris Lear" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] >* Jess Holle wrote (02/12/05 13:53): >> I have some vague recollection that performance of mod_proxy_ajp tested >> just /slightly /better than mod_jk. > > But where is the information on this? > You can search the [EMAIL P

Re: Jsvc Debian Tomcat standalone APR connector startup question

2005-12-04 Thread Bill Barker
No. The root one stays, but doesn't do anything except to wait for the shutdown signal. That way, you need to be root to shutdown. "M A" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] Hi, I am trying to set up a production server setup is as follows 1. JSVC (commons-daemon) 2. j

Re: Anyone tried mixing Jk2 & Php resources within the same virtual host ?

2005-12-04 Thread Bill Barker
"hv @ Fashion Content" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > It could be that I just need to fix my httpd.conf, but I am a bit stuck. > > I basicly have a virtualhost like this: > > DocumentRoot /var/www/site1 > > Allow from all > > > > JkUriSet worker ajp13:localhost:8

Re: Verisign Certificate Still Giving Me Troubles:

2005-12-04 Thread Bill Barker
truststoreFile="C:/Tomcat/bin/cert.cer" > maxThreads="150" minSpareThreads="25" maxSpareThreads="75" > enableLookups="true" disableUploadTimeout="true" > acceptCount=&q

Re: AJP13: request headers > max packet size

2005-12-05 Thread Bill Barker
I'm afraid that the 8KB limit is part of the AJP/1.3 protocol, so it is very unlikely to get "fixed" until AJP/1.4. At the moment, AJP/1.4 is just vapor-ware ;-). To do anything else would likely break too many installations in very horrible ways. Of course, you're free to modify the source f

Re: How can I get TomCat5.0.28 use JK1.2

2005-12-05 Thread Bill Barker
"David Chen" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi, there: > > I have problems to integrate TomCat5.0.28 with IIS5 on Win2000. The > problem > seems that from Apache web site it says JK2 was deprecated ( it's weird to > deprecate the higher version of product, isn't it

Re: AJP13: request headers > max packet size

2005-12-06 Thread Bill Barker
x27; field in the record is a 16-bit integer value, so if you need more than 64KB, you are pretty much SoL. > - Srini > > -Original Message- > From: news [mailto:[EMAIL PROTECTED] On Behalf Of Bill Barker > Sent: Monday, December 05, 2005 9:02 PM > To: users@tomcat.apache

Re: Connecting Tomcat and Apache using mod_jk and jni (deprecated?) or ajp13

2005-12-09 Thread Bill Barker
"Marc Richards" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] >I have Apache 2.x and Tomcat 5.5 connected using > mod_jk ajp13 workers (win32) and running fine. > However, under heavy load (using jmeter) I start to > get mod_jk errors indicating that the connection is > closed and i

Re: starting and stopping Tomcat from Java code

2005-12-14 Thread Bill Barker
Urm, something like: tomcat.stop(); where 'tomcat' is your Embedded instance? "Oleg Lebedev" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] Hello, I am trying to configure, start and then shutdown Tomcat from my Java class. I am planning to have all the jars required by Tomcat o

Re: ContextManager in Tomcat 5.5?

2005-12-15 Thread Bill Barker
I guess that Javadocs never got updated when this came over from Tomcat 3.3 ;-). The simplest is to use: .. "Michael Neel" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] I'm trying to figure out ways of running Tomcat behind IIS, and area where documentation is ver

Re: c:import doesn't work right with HEAD requests

2005-12-18 Thread Bill Barker
<[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > On Sun, Dec 18, 2005 at 12:26:07PM -0800, Hassan Schroeder wrote: > My guess is that tomcat uses a "HEAD" request to retrieve content with > c:import if the request for the jsp page containing the c:import was > requested with a "HEAD

Re: problem with stopping Tomcat

2005-12-18 Thread Bill Barker
"marju jalloh" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Now when I reboot my pc this is the error I get > Sep 9, 2005 1:07:23 AM org.apache.coyote.http11.Http11Protocol init > INFO: Initializing Coyote HTTP/1.1 on http-8080 > ServerLifecycleListener: createMBeans: MBeanExcept

Re: c:import doesn't work right with HEAD requests

2005-12-18 Thread Bill Barker
"Hassan Schroeder" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > [EMAIL PROTECTED] wrote: > >> I really couldn't care less whether the content-length header is >> different. The important thing here is what is in the logs. > > No, it's not; the important thing is whether there's

Re: tomcat error

2005-12-20 Thread Bill Barker
Let me guess: You're using Solaris :). I've got no clue why Sun suddenly changed this The message has been down-graded to DEBUG level in 5.5.14+, and is pretty much harmless. "James Taylor" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] Hi there, Can someone please help me r

Re: mod_jk (1.2.14 & 1.2.15) bug

2005-12-21 Thread Bill Barker
"OG" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hello, > > Recently I found a possibel mod_jk bug. I'm using Apache 1.3.34, > mod_jk 1.2.14, and Jetty 5.1.15. > > The bug surfaced once I started rewriting URLs with mod_rewrite. It > appears that mod_jk sends a cookie2 header

Re: Mod_jk and Security

2005-12-21 Thread Bill Barker
Of course the simplest is to forward all protected content to Tomcat. If you are using Form auth, this is pretty much your only option. It would be a nice feature for (currently vapor-ware) AJP/1.4 however. Otherwise, you have to configure the authorization in both Tomcat and Apache in parall

Re: Seamless Container Authentication

2005-12-21 Thread Bill Barker
Assuming that your Realm is really an o.a.c.Realm, then all you need is to write an Authenticator to work with your Realm. Something like: public class MyAuthenticator extends org.apache.catalina.authenticator.AuthenticatorBase { public boolean authenticate(Request request, Response res

Re: mod_jk versus mod_proxy under load ?

2005-12-29 Thread Bill Barker
mod_proxy_http is almost always slower than a properly configured mod_jk (due to the lack of persistant connections). The work is to get a 'properly configured mod_jk' ;-). Personally, I like mod_proxy_ajp, just for the integrated configuration options. The speed should be comperable to mod_j

Re: Getting list of all deployed web applications

2005-12-29 Thread Bill Barker
"Martin Gainty" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hello Dhaval > > Did you try > Host myHost = (Host)context.getParent()? > Anyone else? > You're Context needs to be privileged for that to work. If you're not using a SecurityManager, you should be able to do it via J

Re: Suggestion for SSL

2005-12-30 Thread Bill Barker
"Jack , Zhan Hua Ping" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi, > buddy, > > Please don't hate me too much. I don't know how to organize messages into > a thread for a mail list. > So you must have seen many related messages not organized from me. > > I have a suggestion

Re: Question about compiling JK1.2.15

2006-01-02 Thread Bill Barker
It looks like you did: ./configure --with-apache=/path/to/httpd/source instead of: ./configure --with-apxs=/path/to/httpd/dist/bin/apxs The first builds mod_jk for static linking with Httpd, the second builds mod_jk.so. The second also correctly resolves the apr and apr-util includes autom

Re: Question about compiling JK1.2.15

2006-01-02 Thread Bill Barker
"Bob Smith" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Bill, > > Thanks for pointing that out. I got locked in to the way I did > it from a previous version and didn't look far enough. > > Can you point out where the docs for configuring mod_proxy_ajp might > be? It's integra

Re: hex dump

2006-01-04 Thread Bill Barker
"feghoul mohamed" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > hello everybody > > i am seeing the following in my catalina.out log file. > > 12 34 00 1d 00 1b 49 44 3d 52 50 36 31 39 31 32 | > .4ID=RP61912 > 26 63 6f 72 70 73 3d 73 61 69 73 69 65 2e 6a 73 | > &corps=saisie

Re: Failure in building Tomcat 5.5.2

2006-01-05 Thread Bill Barker
<[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] >I'm trying to build Tomcat 5.5.2 on a Tru64 4.0F box. >The command ant build fails with the following messages: > > /d2/apache/tomcatnew/jakarta-tomcat-5.5.2-src/jakarta-tomcat-5/build.xml:528: > The following error occurred whi

Re: tomcat ssl cert question

2006-01-07 Thread Bill Barker
"Mike Korcynski" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] >I have Tomcat and Apache HTTP server running on the same machine. I > have a key and certificate for the HTTP server set up and working > properly. I have an application running in tomcat, I want to make the > applica

Re: forcing encodeURL to work on URLs outside of webapp context

2006-01-07 Thread Bill Barker
"Jeff Hoffmann" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] >I have a webapp that that's being accessed from Apache through mod_jk. When >the requests come to Apache, they get sent through mod_rewrite to add the >appropriate webapp context path in front of the rest of the reques

Re: AW: JSessionID

2006-01-09 Thread Bill Barker
"Jess Holle" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Conveying servlet sessions by SSL session is clearly not required by the > spec, though... > > I'm not sure whether Tomcat supports this... > It doesn't (mostly because nobody has been interested enough to write the cod

Re: How do I log to file jasper compile error messages?

2006-01-09 Thread Bill Barker
"Steven Peterson" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] >I am migrating from version 4.1 to 5.5 and am wrestling with the logging. >How do I get compile errors from jasper to go to a log file instead of the >console? I have set swallowOutput to true in the context config,

Re: Help - org.apache.jasper.JasperException: Unable to initialize TldLocationsCache: null

2006-01-10 Thread Bill Barker
Try it without the ... in web.xml. Tomcat (and any other JSP-2.0 container) will pick up a .tld in /META-INF of a jar file in WEB-INF/lib automagically. Unfortunately, Jasper is hiding the root cause of the Exception that is being thrown, so I can't see why it's unhappy :(. If the above does

Re: Recommended way to selectively RequestDispatch.include/forward to form based login?

2006-01-12 Thread Bill Barker
"Ken Johanson" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hello, > > Does anyone have a suggested way to selectively, inside a simple JSP or > Servlet, cause the built-in Tomcat form-login to be presented? > > Currently, I'm doing the following: > > -Have protected URI inside

Re: Tomcat start but many errors in catalina.out

2006-01-12 Thread Bill Barker
"Wendy Smoak" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] On 1/12/06, Sven Gehr <[EMAIL PROTECTED]> wrote: >> I use tomcat-5.0.30 on a suse10-system. When I start tomcat I get an long >> error-output in catalina.out. Can anybody help me to fix this? >... >> Jan 13, 2006 12:19:30

Re: Migration from 1.0 to 1.2.x: Gotchas?

2006-01-14 Thread Bill Barker
"Wendy Smoak" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] On 1/14/06, Venkat & Radha Venkataramanan <[EMAIL PROTECTED]> wrote: >> I have an Pharma J2EE application developed using the Struts framework >> running on a weblogic 6.0 server (yes, and it's only 3 years old!). >> >> W

Re: Jsvc memory management experiences

2006-01-15 Thread Bill Barker
"Marco Rossi" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi all, > > I've searched in list archive and I've found a discussion about tomcat > memory occupation [1]. I sucessfully deployed my first production web > app using jsvc on Fedora Core 4, to allow tomcat on port 80.

Re: SSL Porting from Apache to Tomcat

2006-01-18 Thread Bill Barker
"Armand Rock" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hello, > I'm currently in the process of porting an application from Apache to > Tomcat > (Apache was originally used as a front end to Orion). > > The server I'm porting from does not have any keystore information setup

Re: Realm in tomcat

2006-01-18 Thread Bill Barker
"Jack" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > In tomcat, "Realm" has such a definition: A Realm is a "database" of > usernames and passwords that identify valid users of a web application (or > set of web applications), plus an enumeration of the list of roles > associat

Re: Server certificates for tomcat

2006-01-19 Thread Bill Barker
"Jack" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Server certificate: > > The certificate for the engine with alias "tomcat" > > The certificate for a specific host > > The certificate for a specific web-app > > > > If a web-app doesn't have a certificate, it can

Re: Sending a lot of info the a jsp page

2006-01-20 Thread Bill Barker
"Dola Woolfe" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi, > > This question will reveal how little I know about > networking or http or something else. > > Basically I wrote an applet that sends data to a > servlet. I do it by forming a url with a query string > (GET). But t

Re: Sending a lot of info the a jsp page

2006-01-21 Thread Bill Barker
"Dola Woolfe" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > > --- Bill Barker <[EMAIL PROTECTED]> wrote: > >> >> "Dola Woolfe" <[EMAIL PROTECTED]> wrote in message >> > news:[EMAIL PROTECTED] >> >

  1   2   3   4   5   6   >