the package name so there is
not a naming conflict?
so my second question is, is there a way to have a class called "aaa.bbb" in
WEB-INF/classes of both project1 and project2 unerneath Tomcat/webapps, and
have Tomcat (and Eclipse) recognize them as separate classes?
John McClain
Seni
encrypted.
My question is
If I call a servlet from a browser and pass the servlet some parameters that
need to be sent encrypted, do the parameters get SSL encrypted BEFORE they
are sent, or are they sent clear text, then the SSL Handshake, then all
other data sent is encrypted?
John McClain
Senior
che.jk.common.ChannelSocket.processConnection(ChannelSocket.java:674)
at
org.apache.jk.common.ChannelSocket$SocketConnection.runIt(ChannelSocket.java
:866)
at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.jav
a:684)
at java.lang.Thread.run(Thread.java
question is, can this be done - querying other context sessions, and
would it be done with MBeans, or is there a better way? Can someone point me
to documentation on how to do something like this
John McClain
Senior Software Engineer
TCS Healthcare
[EMAIL PROTECTED]
(530)886-1700x235
"Skepticism i
why the
source cannot be found. Any helpin locating my problem would be greatly
appreciated, and I would be happy to prove more information if needed (I'm not
entirely sure what would be helpful). And again, I am sorry if this is not the
place for this kind of question!Happy coding!John
r:
javax/servlet/ServletContext
See - http://tomcat.apache.org/faq/classnotfound.html
Odds are you have your own servlet-api.jar somewhere in the webapp or
system
classpath and that is conflicting with the one in common/lib (installed by
tomcat)
-Tim
John Poley wrote:
Please forgive my intrus
Users List
> Subject: Re: Question concerning java.lang.NoClassDefFoundError:
> javax/servlet/ServletContext
>
>
> > ...and that servlet-api.jar from tomcat is in the path.
>
> You wouldn't happen to be messing with the classpath at all would you?
> That will cause h
r:
javax/servlet/ServletContext
> BINGO!
>
> freemarker.jar does not belong in the system classloader. It belongs in
> WEB-INF/lib.
>
> [ Quick rule of thumb - putting a lib in java/lib/ext will cause problems
99%
> of the time. ]
>
> -Tim
>
> John Poley wrote:
default
/
...
I also have the manager app which is bundled with Tomcat 5.5.12 and
whose context info does not define the path attribute.
I am not sure if the manager/host-manager app configuration is
interfering with my configuration.
Would appreciate all help in this regard!
John
Hello Folks:
I am currently upgrading from Tomcat 5.0.28 to 5.5.12.
I have built my application using Jetspeed 1.5 and I am having problems
with Context configuration.
On Tomcat 5.0.28, the servlet mappings work fine! For e.g.,
The URL http://localhost:8080 would automatically resolve to the
jet
Charles,
Thanks for the quick response!
The naming conventions are all lower case. Its just my way of typing I
guess! :)
Thanks again!
John
On 12/15/05, Caldarale, Charles R <[EMAIL PROTECTED]> wrote:
>
> > From: John Maine [mailto:[EMAIL PROTECTED]
> > Subject:
updated my JRE this will now point to the wrong version.
I tried to make this registry key a REG_EXPAND_SZ value so I could embed
an environment variable in it, but the tomcat service is unable to read
it.
Does anyone know of a way to keep this key up to date after a JRE
upgrade? Thanks
John
I've declared an error-page in my web app's web.xml file.However, sometimes
my error-page is displayed and sometimes the standard tomcat error page gets
displayed.I'm testing my app using JMeter and am trying to see how my app
behaves under extreme loads. Specifically, I want to make s
text.listenerStart(StandardContext.java:
3727)
at org.apache.c
...
HELP!
John McClain
Senior Software Engineer
TCS Healthcare
[EMAIL PROTECTED]
(530)886-1700x235
"Skepticism is the first step toward truth"
-
T
Hello
I have a JNDI Datasource pooling 10 connections on a database of my
mysql server. Why does it use only one process on the mysql server? I
have set max active to 10 connections and I am accessing the application
from different IPs at the same time. I then perform a SHOW PROCESSLIST
on my
Thanks for your detailed explanation.
In tomcat 5.0.28 I cannot find initialSize parameter. Is it something
that was added later?
And by idle connection, do we mean the connection that was closed in a
finally block (returned to the pool)?
John
Tim Lucia wrote:
The number of connections
management.
Is there a better way???
John McClain
Senior Software Engineer
TCS Healthcare
[EMAIL PROTECTED]
(530)886-1700x235
"Skepticism is the first step toward truth"
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For ad
Hello
I have a server (example.com) with tomcat 5.0.28 running a couple of
applications. In the manager I stop application 'foo' and it gives me:
OK - Stopped application at context path /foo
When I go to example.com:8080/foo I'm getting the expected error
message: HTTP Status 503 - This app
I am trying to tune an instance of tomcat running a single application.
And have a couple different questions.
I have read lots of faqs and webpages on the various types of garbage
collectors. I get from most of these that it takes lots of tuning
particular to each machine/server/application.
Hello,
I have tomcat setup with a couple applications running in the
server.xml.is there a way to get a list of these from within a
filter or a servlet or a jsp? Is there access to the container higher
then application?
Thanks.
--
If you know the id of a session is there anyway to get it out of the
application?
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
If we have a sessionObject that holds a reference to the httpsession..
that sessionobject is set in the httpsession as an attribute. Would
this effect garbage collection of that session?
Once it times out, it gets marked as invalid, correct?If it gets
collected, then all its attributes woul
How do you know when a session is garbage collected?
You can write a sessionlistener for when it gets deleted out of tomcat,
but after that, when do you know if its garbage collected?
I currently do not think my sessions are being collected. Within a day
500M of memory get eaten up and I can't c
session GC
easiest way to make sure they are GC'd is to set session time-outs.
-Original Message-
From: John Powers [mailto:[EMAIL PROTECTED]
Sent: Friday, March 31, 2006 6:07 PM
To: Tomcat Users List
Subject: session GC
How do you know when a session is garbage collected?
simple log. Then,
create a separate object of your class for each httpsession and add it
as an attribute of the httpsession. Of cause you want to make sure that
you do not keep other references to this object and keep the log simple.
Hansen
-Original Message-----
From: John Powers [mai
ject: Re: getsession if you know the id?
no, at least not, if you don't track all session yourself.
Why do you need the session?
Leon
On 4/1/06, John Powers <[EMAIL PROTECTED]> wrote:
> If you know the id of a session is there anyway
The "application" object in jsps...the hosts in the server.xml.
the context of the httpsessions for each user.
-Original Message-
From: Franck Borel [mailto:[EMAIL PROTECTED]
Sent: Monday, April 03, 2006 4:28 AM
To: Tomcat Users List
Subject: Re: getsession if you know the id?
> If
Hello
I have a serious problem with Tomcat 5.5.15 on windows 2003 with Java
1.5.0_06-b05.
Tomcat runs as service in mode jvm (and not mode java, not sure what
that is but anyway).
Every request on the server gives me this block of debug log on stdout.log
2006-04-03 17:51:36,421 DEBUG [ajp-800
Or use a filter to append that tag onto any response that is
html...
-Original Message-
From: Darryl L. Miles [mailto:[EMAIL PROTECTED]
Sent: Monday, April 03, 2006 2:38 PM
To: Tomcat Users List
Subject: Re: Tomcat tag question
MW Mike Weiner (5028) wrote:
> Dear List readers
>
> Sorr
/manager/list
Give you a list of the contexts in the current virtual host inside
tomcat. Is there a way to get a list (preferably xml) of the hosts
defined in tomcat?I have a servlet in each host that I want to call
and aggregate the info, but I need a list of the hosts so I can know who
to
stribution, or other
use of this information is strictly prohibited. If you have received
this e-mail in error, please notify the sender by return e-mail and
delete this message. Thank you.
-Original Message-
From: John Powers [mailto:[EMAIL PROTECTED]
Sent: Monday, April 03, 2006 4:17 PM
T
After having searched the MARC archives and Google for the better
part of a week I do not seem to be able to duplicate others' past
success with getting Tomcat to use a JNDI realm to authenticate users
via Active Directory. Basically I'm just trying to get a simple web
app straight from th
1.Use an index.jsp that has a meta-refresh to the right directory?
Or
2. use IIS to do it with a tomcat worker behind it.
-Original Message-
From: Bryan [mailto:[EMAIL PROTECTED]
Sent: Monday, April 10, 2006 9:38 AM
To: users@tomcat.apache.org
Subject: how setup landing page in tomca
Hello,
On an install we have just put up we are having problems compiling some
jsps.
In the work folder, we have the usual, --, org, apache, jsp, folder
structure
An index.jsp that has a metarefresh compiled into that fine and run
well.
However, another folder structure is setup there parallel
For example... its throwing a classnotfoundexception:
org.apache.jsp.quote_jsp when you try to navigate to
http://host/catdir/quote.jsp
What would cause a mismap between the catdir and a jsp at
org.apache.jsp.quote_jsp?
-Original Message-
From: John Powers [mailto:[EMAIL PROTECTED
Hello
I have apache2, mod_jk2 and tomcat 5.0.28 on linux.
Sometimes tomcat fails (the process is killed somehow) or simply apache
cannot propagate the requests to tomcat.
When this happens I get the following stuff in the apache errorlog:
[Thu Apr 13 10:03:31 2006] [error] msgAjp.receive(): Bad
If the file is in the web folder then you can just path to it
http://localhost:8080/somedir/somefile.ext
But if it isn't, then a servlet can read in from a file stream and read
out to the servlet's out stream...
-Original Message-
From: Rob Elliott [mailto:[EMAIL PROTECTED]
Sent: Thu
er webapps. Will I need
to deploy a WAR file to do this?
Thanks...
-----Original Message-
From: John Powers [mailto:[EMAIL PROTECTED]
Sent: Thursday, April 13, 2006 10:17 AM
To: Tomcat Users List
Subject: RE: Serve a file instead of a page using Tomcat.
If the file is in the web folde
3gpp
>
>
> I stopped and then started tomcat and entered the URL in the browser
>
> http://localhost:8080/video/3gp/video.3gp
>
> however I receive 404 "The requested resource is not available...
>
>
>
> -Original Message-
> From: John Powe
I'm not certain about the "full" terminology, but a minor gc will sweep
the new generation in the heap. These are common. Major gc's harvest
free objects in the tenured generation. There are different methods to
mark an object as good or bad in either GC..copy works well in the
new since we
Hello,
If I have a user search for "b-trunk" I would like them to be able to
find "b-trunk" (with hypen). I would also like someone searching for
"b trunk" to also find "b-trunk".
On the other side, if someone searches for 12412 I would like them to be
able to find 12412-235, 12412-121, 12412-
I don't know about editing the registry, but as a service, can't you use
the java tab in the tomcat settings? That's where we put our details.
-Original Message-
From: Farid Izem [mailto:[EMAIL PROTECTED]
Sent: Thursday, April 20, 2006 9:39 AM
To: Tomcat Users List
Subject: Question Abo
The access log is that isn't it?
Otherwise a filter would be fired off with each request.. you could put
a logger in there... but I'm thinking the access log does what you want
already correct?
-Original Message-
From: D Law [mailto:[EMAIL PROTECTED]
Sent: Wednesday, April 26, 2006 1:31
to my ParameterTest servlet with the security-constraint
defined? I need security to work here.
Thanks,
--
John Wallace | Java / Web Developer
[EMAIL PROTECTED] http://anode.com
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
nager
is in server/lib (I also tried it in common/lib.) I'm at a loss what to try
next, any help would be appreciated.
Thanks,
-john
EMAIL PROTECTED]
Sent: Friday, May 05, 2006 4:07 PM
To: Tomcat Users List
Subject: Re: META-INF/context.xml and custom Manager
Where is this class located? net.badcurrent.ose.tomcat.manager.CustomManager
Maybe it needs to be somewhere else. Just a guess.
On 5/5/06, John D'Emic <[EMAIL PROT
but I am just
guessing here. Just for kicks try common/lib or shared/lib.
On 5/5/06, John D'Emic <[EMAIL PROTECTED]> wrote:
>
> Its in ose.jar in server/lib. From looking at the tomcat logs, it don't
> see
> any exceptions trying to load it or anything like that.
Michael,
Adding the context.xml to the war file did the trick. When I redeployed the
war my custom manager loaded.
Thanks all for the help!
-john
-Original Message-
From: Michael Echerer [mailto:[EMAIL PROTECTED]
Sent: Saturday, May 06, 2006 2:09 AM
To: Tomcat Users List
Subject: Re
Does anyone know how to configure JNDI Datasource in 5.0.28
Google GWT uses embedded 5.0.28 in "hosted" and nobody seems to know how to
configure a datasource on the GWT list.
It would be greatly appreciated if anyone could show me how to configure
this. (GWT is basically useless to me without a
increase in net memory usage. What is the best strategy to
find this memory leak??? If it is not in user session memory, then can I
assume it is a Tomcat memory leak???
John McClain
Senior Software Engineer
TCS Healthcare
[EMAIL PROTECTED]
(530)886-1700x235
"Skepticism is the first step t
not set up per-context pools, but rather share one
pool among all contexts, even though I specified pools per context? If it
only uses one pool, which set of configuration params does it choose (since I
set different params in each context.xml).
Thanks!
J
On Wednesday 01 November 2006 11:58, Christopher Schultz wrote:
> John,
>
> John Gorkos wrote:
> > I use per-context JNDI handles to
> > the same Postgres database for multiple apps running inside tomcat. Each
> > context.xml sets up connection limits, max idle, et
thanks for your help. I think I'll try changing resource names. A name that
includes the appName would help prevent collisions, especially on a shared
server, where I don't own all the apps.
John Gorkos
-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
expend effort determining why the app isn't releasing the
> connections, as that's the real problem.
>
Done. We followed the JNDI datasource reccomendations on the Tomcat web page
and got bit. It was my fault for cutting and pasting so verbatim. The app
rticles on the net from around the time servlet 2.4 came out
talking about a logout() method. However, when I look in the servlet
javadocs there is nothing of the sort. Someone please tell me there is
an answer to this.
Thanks
John McPeek
When I call request.getUserPrincipal(); I still get the Principal back
and I can still call request.isUserInRole( "Foo" ); and get a valid
response for the currently logged in user.
John
From: John McPeek [mailto:[EMAIL PROTECTED]
Subject: FORM based authentication LOGOUT
I hav
not a more recent one would be gratefully
received.
I'm using Struts, Windows XP and JDK 1.5.0_09.
John.
Hi John,
Are you running this with WTP in eclipse? I see that Chuck was talking
about the tag. WTP puts the tag in the server.xml
like days gone by. This may be related to your situation.
John
From: John Langan [mailto:[EMAIL PROTECTED]
Subject: Webapp runs on Tomcat 5.5.9 but not 5.5.20
Thanks Larry for the advice, which solved the problem. Thanks also to Chuck
and John for the speedy replies and help.
My web application does display a directory listing in 5.5.9 and so I have
edited conf/web.xml to set listings to true and now my webapp runs.
I'm using eclipse 3.2 with WT
Will do. Thanks for the info.
John.
-Original Message-
From: Caldarale, Charles R [mailto:[EMAIL PROTECTED]
Sent: Monday, November 06, 2006 4:11 PM
To: Tomcat Users List
Subject: RE: Webapp runs on Tomcat 5.5.9 but not 5.5.20
> From: John Langan [mailto:[EMAIL PROTECTED]
> Subje
t looked at for every page load.
Thanks in advance all.
--
*****
John McCoy, Jr
Sr. Systems and Network Administrator
Enterprise Technology Services
Golden Gate University
415-442-6560
*
-
ncern in keeping the tomcat runtime memory to a minimum then
how fast a page is loaded.
Tx
John M. Cruz
Software Engineer, Staff
Management Infrastructure Technology (MIT)
Dialogic Research
(973) 967 6662
mailto:[EMAIL PROTECTED]
http://www.dialogic.com
g back into the system, she picked up User
B's session information (name, id, etc.)
Tomcat 5.5, JVM 1.5_7
Is this the same issue as described above? What is the best way fix my
problem?
I am using Tomcat 5.5.20 on Suse Linux 10.1 - JVM 1.5.0_09
Thanks,
--
John Wallace | Java /
Java Servlet/JSP users. How
about another mission-critical website in Hong Kong, PPS?
Thus, as Java technology is the backbone of mission-critical services,
the support and development will continue.
John Mok
-
To start a new topi
Martin,
I ran into this with FC5. What you have to do is use
the command "ls -l" and follow all the links (there
are quite a few) to where FC puts Tomcat in its
distribution. It's the same with Eclipse. You'll
have to follow the PATH and CLASSPATH variables as
well.
What I did was install ecli
. Hope that does it for
you.
John
public boolean commit() throws LoginException {
log.debug( "Commit login." );
if ( token != null ) {
if ( subject.isReadOnly() ) {
throw new LoginException( "Subject is Readonly" );
}
** (
that your customer is not bigger than WalMart.
John
Thank you all for all the answers and suggestions. Here're what I have
got
so far from you guys:
1. There's no way to tell a number, because there're too may factors that
will definitely influence my mileage.
Hehehe, I have e
Hi,
I new in the list. I hope can help somebody someday, but now I need
a hand to solve this mail's subject question.
I have configured a tomcat application to use https in a arbitrary
jsp file (just for testing) when the user request it. So, the webapp's
"web.xml" file contains the followin
way we get paid to do this stuff ;-)
May be a "workarround" is to use the rewrite filter located at
http://tuckey.org/urlrewrite/
Somebody is using it? is reliable?
Cheers!
- Pablo
On 1/3/07, Caldarale, Charles R <[EMAIL PROTECTED]> wrote:
> From: John Doe [mailto:[EMAIL PRO
ocbook/acegi.html#channel-security
[2] http://acegisecurity.org/multiproject/acegi-security-catalina/downloads.html
On 1/4/07, John Doe <[EMAIL PROTECTED]> wrote:
> Chris, Chuck:
>
> Thanks a lot by the explanation. Looks like Tomcat (or maybe the
> "Servlet specification"?
programmer must resolve this kind of situations.
Cheers!
- Pablo
On 1/4/07, Christopher Schultz <[EMAIL PROTECTED]> wrote:
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Pablo,
John Doe wrote:
> Thanks a lot by the explanation. Looks like Tomcat (or maybe the
> "Servlet speci
Hey Chuck,
That sounds like a cool job you have there, where do I sign up.
:-)
John
From: Leon Rosenberg [mailto:[EMAIL PROTECTED]
Subject: Re: run service in jdk 6
ported?
as in crosscompiled / reimplemented the vm?
Much of the former, some of the latter (JIT, GC, threads, etc
to be
UTF16 in the files properties. You still need the <%@ page
contentType="text/html; charset=UTF-16"%>
line, but it is a lot easier to read and maintain.
John
From: Pulkit Singhal [mailto:[EMAIL PROTECTED]
Subject: Re: How to display chinese chars in JSP / encoding
UTF-
Christopher Schultz wrote:
Also, you could set the error page that is used when a user doesn't have
the proper credentials to something that gives you the opportunity to
re-login in order to access the forbidden resource. When you want to log
someone out of BASIC authentication, you have to sen
Hello:
Instead of declaring which URLs need to be secure in web.xml, I would like to
determine this when the URL comes in, but then use Tomcat to deal with the
authentication if it is needed. Can anyone give me any pointers on where to get
started with that?
thanks,
John Caron
thank you, I will investigate securityfilter
Christopher Schultz wrote:
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
John,
John Caron wrote:
Instead of declaring which URLs need to be secure in web.xml, I would
like to determine this when the URL comes in, but then use Tomcat to
deal with
Do you know where I can find some documentation on this subject?
- Original Message -
From: "Mark Thomas" <[EMAIL PROTECTED]>
To: "Tomcat Users List"
Sent: Thursday, January 18, 2007 7:28 PM
Subject: Re: Daylight Savings 2007
John Flores wrote:
I am con
ce or pointers (or code!) to get started.
Thanks for any help.
John Caron
Unidata/UCAR
-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Hi Christopher:
Christopher Schultz wrote:
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
John,
John Caron wrote:
Our application is serving large amounts of scientific data over HTTP.
The user needs to login to access the data. We would like to use session
ids to reduce the login overhead
ed to ask
them for. Lastly tell users exactly what type of email they will and
won't receive from your organization. When they login to your site tell
them they should ALWAYS check that the domain name appears correctly in
the address bar.
thank you very much for your advice, i will use
Christopher Schultz wrote:
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
John,
John Caron wrote:
We plan on using SSL to do the initial authentication, but then use
session ids without SSL for the data transfer.
Okay, thanks for clarifying that. This is definitely a good thing to do
g we have to do daily or our memory consumption grows unbounded as
the sessions never die.
What was the issue from 5.5.17 and how might I fix it? Is occasional
session expiration failure a known issue?
Any help or direction is greatly appreciated.
--
John Hayward
27;s in them, and to watch the memory
and requests in real-time.
If you really *need* everything you're storing and you don't have any low
hanging fruit, you may just need to run with more memory. If you could test
such a configuration you may find that the memory utilization stabilize
ocess your gc log files to see
what was going on with your memory over time.
-John
On 2/7/07, Sharon French <[EMAIL PROTECTED]> wrote:
> Uhhh - no. The JVM will not return an OOME until the GC
> is completely finished and the request still cannot be
> satisfied. Even with co
I am yet another barking up that tree.
--- "Propes, Barry L [GCG-NAOT]"
<[EMAIL PROTECTED]> wrote:
> if you find out, please let me know...I'm barking up
> that tree, too.
>
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> Sent: Friday, February 09, 2007 4:50 PM
Hi,
I have an app that generates some big, expensive-to-create files.
Where can I store these files, so that they aren't destroyed when I
reload or redeploy, and still get allow users to access them via
Tomcat?
Thanks,
John Ped
yes you need to have a unique path
Also in the doc base, tomcat expects to see WEB-INF/web.xml
ie
/var/www/html/aaa/WEB-INF/web.xml
John
At 04:14 PM 10/12/2005 -0500, Caldarale, Charles R wrote:
> From: sudip shrestha [mailto:[EMAIL PROTECTED]
> Subject: Re: apache virtual h
but can¹t seem to
unsubscribe!
Anyone?
-John G
is what is used.
What is the default work directory?
-John Rodriguez
me.jsp");
%>
This way you will have all the record in one log file, but each can have
its own identifier (depending on how you set up your "ConversionPattern" in
the log4j.properties
John
At 11:38 PM 10/21/2005 +0200, Mauricio Fernandez A. wrote:
TK,
If i understand what y
he fact that's running on a SMP system? I'm really stuck, which is why
I'm wondering if anyone on the list can point me in the right direction
for a solution.
Thanks in advance.
John
-
To start a new t
Caldarale, Charles R wrote:
-Original Message-
From: John Gardner [mailto:[EMAIL PROTECTED]
Subject: Multiple Java processes when using Tomcat
Normally, I only expect to see 2,3,4 or 5 java processes
associated with the Tomcat user, not all of the above!
http://wiki.apache.org/tomcat
recent glibc releases use CLONE_THREAD.
Cheers, Ben
Thanks Ben.
This is what I needed.
Cheers
John
-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e
connection pooling is it normal to issue the above commands when a
connection is obtained and closed? Is there something I can do to say
don't do it? Is it an Application error, Tomcat error or JDBC driver
error?
Any and all feedback is appreciated.
Thanks, John Katilie
d: 41, resultset-id: 39
...
I tried doing a number of things but could never get any trace output
from org.apache.tomcat.dbcp.*. That's when I ended up turning on the
Teradata driver tracing by adding LOG=DEBUG in the url string.
Thanks again, John Katilie
-Original Message-
From: Christoph
Regards, John Katilie.
-Original Message-
From: Christopher Schultz [mailto:[EMAIL PROTECTED]
Sent: Wednesday, June 18, 2008 1:16 PM
To: Tomcat Users List
Subject: Re: Connection Pooling and Teradata
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
John,
Katilie, John wrote:
| Chris, Thanks
, jfk
-Original Message-
From: Christopher Schultz [mailto:[EMAIL PROTECTED]
Sent: Wednesday, June 18, 2008 4:05 PM
To: Tomcat Users List
Subject: Re: Connection Pooling and Teradata
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
John,
Christopher Schultz wrote:
| I use log4j, and have it corr
Hello All,
I have a very simple doPost method that reads the body of a POST
request. Seems to work fine on 6.0.14 but consistently fails to read
the body correctly in 6.0.16. Can someone help me with what's wrong here?
Thanks!
-- john
protected void doPost(HttpServletRequest re
ted
with a CometEvent and then my code would attempt to close the
CometEvent afterward. This would also randomly hang. Are these
problems related?
Thanks for any help.
-John Chilton
-
To start a new topic, e-mail: users@tomcat.apa
have a unique certificate per
Tomcat instance?
or can I
Run one instance of tomcat with one certificate that the 2 URLs can call
servlets?
Just wondering before I use this?
Thanks
John
-
To start a new topic, e-mail
101 - 200 of 1129 matches
Mail list logo