Re: Tomcat not accesible (timeout)

2006-07-29 Thread Mark Thomas
heinz rübezahl wrote: > Hi there, > I have installed tomcat on a linux server. it runs (accourding to log > catalina.out) but if i try to contact it via a browser i get nothing within > the first 5 minutes and after some more time i'm getting a time out. > What could be the problem? I would be

Re: Problems reading XML file from Tomcat 5.5, ¿Have Tomcat a file cache?

2006-07-29 Thread Mark Thomas
Christopher Schultz wrote: > I don't think that Tomcat does any caching like this. Are you using > something like Cocoon to serve your XML files? Is there any other > software that could be in there? Tomcat will cache static resources by default. Please see the cachingAllowed attribute in http://t

Re: Tomcat don't validate Certificate by using mod_proxy_ajp

2006-07-29 Thread Florian Rock
ok i checked my mod_jk config again and you are right: don't working thanks for your replay, florian Bill Barker schrieb: > 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

Re: Tomcat 5.5.17 can connect to any webserver without mod_jk ?is this true?

2006-07-29 Thread Mark Thomas
Raju Balugu wrote: > Hi All, > > I recently migrated to tomcat5.5.17 from 4.1.29.I got the info like we can > connect to any webserver wihout the mod_jk .is this true?please let me know > ?if yes ,how to configure that? This is not true. Take a look at http://tomcat.apache.org/connectors-doc/howt

Re: Multiple JAAS configurations, one Tomcat

2006-07-29 Thread Mark Thomas
Mikolaj Rydzewski wrote: > Tomcat docs say, that to enable JAAS realm one has to configure it with > its configuration name (related to jass.config file). So is it possible > to use JAAS configuration name dependant on which application user is > authenticated against? This should be possible prov

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: [OT] Usage of Ibatis in production

2006-07-29 Thread Martin Gainty
Does it have some capability to export to JNDI? Thanks, Martin -- * This email message and any files transmitted with it contain confidential information intended only for the person(s) to whom this email message is addressed. If

[OT] Re: PUT or POST?

2006-07-29 Thread Christopher Schultz
Nikita, > We have a webapp that needs to support binary updloads from a remove > fat client: if our client crashes we'd like it to automatically "send" a > zipped log file to our web application. the delivered file would NOT be > stored in Tomcat server's file system - but inserted into db. > > A

PUT or POST?

2006-07-29 Thread Nikita Tovstoles
We have a webapp that needs to support binary updloads from a remove fat client: if our client crashes we'd like it to automatically "send" a zipped log file to our web application. the delivered file would NOT be stored in Tomcat server's file system - but inserted into db. Apparently our

Re: Tomcat5.5 and IIS 6.0 problem

2006-07-29 Thread Pulkit Singhal
i didn't touch the subject line...i have no clue what u r talkign about On 7/26/06, Mark Thomas <[EMAIL PROTECTED]> wrote: When starting a new thread (ie sending a message to the list about a new topic) please do not reply to an existing message and change the subject line. To many of the list

Re: [OT] Usage of Ibatis in production

2006-07-29 Thread Tomi NA
On 7/29/06, Larry Meadors <[EMAIL PROTECTED]> wrote: I almost agree, but one point of clarification: iBATIS is not ORM, which is a way to map tables and views to Java beans. iBATIS is SQL mapping, and there are a few key differences. First and foremost is that you can map from anything to anythi

Re: [OT] Usage of Ibatis in production

2006-07-29 Thread Larry Meadors
I almost agree, but one point of clarification: iBATIS is not ORM, which is a way to map tables and views to Java beans. iBATIS is SQL mapping, and there are a few key differences. First and foremost is that you can map from anything to anything. Not just tables and views to beans, but also quer

Re: [OT] Usage of Ibatis in production

2006-07-29 Thread Tomi NA
On 7/29/06, Phil (waex) <[EMAIL PROTECTED]> wrote: Hi, Sorry for if this question is slightly off topic, I'm revisiting my work practices at the moment and I'm considering the usage of various frameworks to replace hand coding. I was wondering if any of the users in the list use Ibatis in product

Re: Bandwidth Profiler?

2006-07-29 Thread charly
You can use the "Slow Connection Simulation" feature of Axis TCPMon for this. http://ws.apache.org/commons/tcpmon/tcpmontutorial.html#slow HTH. Regards Karl-Heinz - Original Message - From: "Garthfield Carter" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Wednesday, July 26, 200

Re: How to configure the logs for Tomcat 5.5.17

2006-07-29 Thread Jon Dickinson
Put the commons-logging.jar and log4j.jar in your server/lib directory and your log4j.properties file in the server/classes directory. This is a seperate class loader from the one used for your web applications so you can define the Tomcat server logging seperately from your web application loggin

Re: [OT] Usage of Ibatis in production

2006-07-29 Thread Martin Gainty
Its amazing how many people become hopelessly dependent on their tool du jour i.e. If you come to a situation where a Query needs to be optimised you most probably will get the response What is a query? Whats is optimisation? Thanks for the quick response on HHH weekend, M- *

Tomcat don't validate Certificate by using mod_proxy_ajp

2006-07-29 Thread Florian Rock
Hi, tomcat doesn't validate my client certificate when using mod_proxy_ajp: my config: SSLEngine on SSLCertificateFile /somepath/somecert.crt SSLCertificateKeyFile /somepath/somecert.key SSLVerifyClient optional_no_ca SSLVerifyDepth 0 SSLOptions +StdEnvVars +ExportCertData

Re: Missing Request Parameters

2006-07-29 Thread jon wingfield
Rache, Tools like ieHTTPHeaders and LiveHTTPHeaders will also help you determine what the browser actually sends to the server, including any redirects caused by 302 response codes. HTH, Jon > Rache, > >> But this usually occur after redirects. > > This is what I was going to ask about: if you

Re: File Writing Permission Problem with Tomcat

2006-07-29 Thread Christopher Schultz
Li, > The exception is FileNotFoundException (Permission Denied) > > If the path is not correct, it should not have "Permission Denied" message. > > What i found here is: > - when i catched the uploaded file in mem and trying to create a > FileInputStream along with the path "/var/../../target_d

Re: Missing Request Parameters

2006-07-29 Thread Christopher Schultz
Rache, > But this usually occur after redirects. This is what I was going to ask about: if you fail to put all the important parameters into the redirect, then you will lose them. For example, if you have a form handler that accepts 5 request parameters, you cannot simply say: response.sendRedir

Re: [OT] Usage of Ibatis in production

2006-07-29 Thread Larry Meadors
I was a Hibernate (2.x) user before finding out about iBATIS. Hibernate has it's place, but for high-performance, nothing beats iBATIS and hand-written SQL. It is certainly worth your time to look into. Larry On 7/29/06, Phil (waex) <[EMAIL PROTECTED]> wrote: Hi, Sorry for if this question i

Re: [OT] Usage of Ibatis in production

2006-07-29 Thread Martin Gainty
Good Morning Phil- Dont have personal experience with either framework but you may want to read this -- http://www.javalobby.org/java/forums/t16496.html Anyone else? Martin -- * This email message and any files transmitted with

Re: Missing Request Parameters

2006-07-29 Thread Martin Gainty
Good Morning Ben what is the specified method for the form? In the eventuality of lack of method you will call service() method.. HTH, Martin - * This email message and any files transmitted with it contain confidential informati

Tomcat not accesible (timeout)

2006-07-29 Thread heinz rübezahl
Hi there, I have installed tomcat on a linux server. it runs (accourding to log catalina.out) but if i try to contact it via a browser i get nothing within the first 5 minutes and after some more time i'm getting a time out. What could be the problem? I would be really thankful for some help.

[OT] Usage of Ibatis in production

2006-07-29 Thread Phil \(waex\)
Hi, Sorry for if this question is slightly off topic, I'm revisiting my work practices at the moment and I'm considering the usage of various frameworks to replace hand coding. I was wondering if any of the users in the list use Ibatis in production / commercial systems for data persistence to RDB,

I have many problems with my Tomcat

2006-07-29 Thread juan.morales.pablos
I've installed my Tomcat and I can see this page: http://localhost:8080 but when I want to enter in the examples I can't see it and I don't know why, What can I do? Many Thanks Carlos

Different JSESSIONID in Cookie and URL?

2006-07-29 Thread Christian Mittendorf
Hello! I've created an app based on Tapestry 4 that I'm deploying on a server with a Tomcat 5.5 and an Apache with mod_jk and SSL. If I open this app in the browser, I'll first get a cookie with JSESSIONID X. Then, on the first page the app is using a different JSESSIONID in its rewritten

Re: File Writing Permission Problem with Tomcat

2006-07-29 Thread Li
Hi Chris, Thanks for replying. The exception is FileNotFoundException (Permission Denied) If the path is not correct, it should not have "Permission Denied" message. What i found here is: - File factually uploaded and stored in mem successfully, - when i catched the uploaded file in mem and tr