1) Running with -verbose:class, this is what I get
(C:/Work/ExpandView/apache-tomcat-6.0.18 is the tomcat home):
Loaded javax.servlet.http.HttpServlet from
file:/C:/Work/ExpandView/apache-tomcat-6.0.18/lib/servlet-api.jar
2) This is the content of MyWebApp.xml:
WEB-INF/web.xml
3) My web
- Original Message
From: Michael Ludwig
To: Tomcat Users List
Sent: Tuesday, January 20, 2009 4:55:16 PM
Subject: UnsatisfiedLinkError in Windows Service (tomcat6w/5w.exe)
A primitive web app sketch involving Java extensions to a native library
(JNI) used up front in a ServletContex
> From: Stefan Riegel [mailto:stefan.rie...@telig.de]
> Subject: Re: Random Connection Closed Exceptions - Question
> to the code example
>
> So both code examples are correct, but the one in the
> docs minimizes resource usage?
Yes - but really only if there is additional processing necessary aft
Thanks for the explanation. This makes things clearer. So both code
examples are correct, but the one in the docs minimizes resource usage?
All db related code I have written so far looked like this:
try {
// db related code with result set loops and more
// db related code done, first poss
hey,
its solaris 10 sparc on a m5000 box..
any suggestions ..
thanks and regards,
P. Swami Vivekananda
=-=-=
Notice: The information contained in this e-mail
message and/or attachments to it may contain
confidential or privileged information. If you are
not the intended recip
Hello,
I am deploying my web application on Tomcat. How do I monitor the
tomcat performance?
1. If I am using GNU/Linux environment
2. If I am using Windows XP environment
What F/OSS package/software I should install?
--
Zaki Akhmad
-
> From: Stefan Riegel [mailto:stefan.rie...@telig.de]
> Subject: Re: Random Connection Closed Exceptions - Question
> to the code example
>
> Yes, I find the solution somewhat ugly and not very intuitive.
Which solution are you referring to? If it's the one in the Tomcat docs, that
so far still
Hello Flavio,
thank You for your answer but isn't Your code the same as my code below?
I don't see any significant difference.
Regards
Stefan
Flavio Crispim schrieb:
Hi Stefan
I would try this one:
Connection conn = null;
Statement stmt = null; // Or PreparedStatement if neede
Hello Alan,
unfortunately I'm not very experienced in "thread programming". But as I
understand does the proposed solution in the docs avoid the problem of
closing the connection object of the second thread. Yes, I find the
solution somewhat ugly and not very intuitive.
But the code below sh
> From: matyg [mailto:ma...@expand.com]
> Subject: Re: Upgrading Tomcat from 6.0.14 to 6.0.18 - classpath issue
>
> 1) (and as far as I know...) the
> javax/servlet/http/HttpServlet class is
> located in servlet-api.jar, which located under under
> /lib.
Make sure that's the *only* place servlet-
> From: Michael Ludwig [mailto:mil...@gmx.de]
> Subject: UnsatisfiedLinkError in Windows Service (tomcat6w/5w.exe)
>
> The directory containing these libraries *is* included in PATH.
Environment variables are not used by services, so it doesn't really matter
what's in PATH.
> Likewise, it is inc
A primitive web app sketch involving Java extensions to a native library
(JNI) used up front in a ServletContextListener works when started via
bin\startup.bat but doesn't work when installed as a Windows service and
started via bin\tomcat6w.exe in the case of 6.0.18 or bin\tomcat5w.exe
in the case
2009/1/20 Kaushal Shriyan :
>
> I am using tomcat-5.5.26, sun-jdk-1.5.0.15 on gentoo linux, I have enabled
> the below in server.xml
>
> directory="logs" prefix="localhost_access_log."
> suffix=".txt"
> pattern="%h %l %u %t %r %s %b %D %T" resolveHosts="false"/>
>
Hello,
I have two web applications in different context, one servlet will forward
the request to a servlet in the other application using encodeRedirectURL
and sendRedirect. The receiving servlet creates a new session and session
attributes are lost.
Running Tomcat 5.5.17.
Here is the flow:
GET
Hi
I am using tomcat-5.5.26, sun-jdk-1.5.0.15 on gentoo linux, I have enabled
the below in server.xml
The issue is that i don't see time parameter value in the
/var/log/tomcat-5.5/localhost_access_log.2009-01-20.txt file
Below is the snippet of the local access log
172.20.2.111 - - [20/Jan/200
Thanks charles, i thought there was an easier way to make a default webapp
other than naming it ROOT.war.
I will give that a shot to see if it works.
Adam
On Mon, Jan 19, 2009 at 10:36 PM, Caldarale, Charles R <
chuck.caldar...@unisys.com> wrote:
> > From: AD [mailto:straightfl...@gmail.com]
Wow, this almost reads like a direct quote from MySQL marketing
literature. Like marketing literature, it's not necessarily untruthful,
but it does describe things selectively.
Terence M. Bandoian wrote:
I don't have a great deal of experience with Postgres but I have been
using MySQL since the
We could diagnose this situation better if you could display/attach the most
recent log from $TOMCAT_HOME/log
Martin
__
Disclaimer and confidentiality note
Everything in this e-mail and any attachments relates to the official business
of Sender. T
Sun Sparc with Solaris 10 - Pswami postet the problem already few hrs ago:
http://www.nabble.com/Problem-in-APR-installation.-td21557473.html
Howver, got no clue about Solaris.
Cheers
Gregor--
just because your paranoid, doesn't mean they're not after you...
gpgp-fp: 79A84FA526807026795E4209D3B
> From: Pswami Vivekananda [mailto:pswami.vivekana...@tcs.com]
> i am trying to install tomcat-native-1.1.13 on my apache-tomcat-6.0.16
> server.
What OS?
> ld: fatal: relocations remain against allocatable but
> non-writable sections
> collect2: ld returned 1 exit status
Nice error! It's going
> From: D. Barnhoorn [mailto:d.barnho...@tfe.nl]
> Subject: RE: Servlet silently dropped
>
> Main servlet grabs /**
I don't think "/**" is a valid mapping, if I'm interpreting the servlet spec
properly. You should be using just "/" for your default (main) servlet.
> A hanging servlet would mean
hey everybody,
i am trying to install tomcat-native-1.1.13 on my apache-tomcat-6.0.16
server. the configure file seemed to work alright. but when i started make
i got the following error
#./configure --with-apr=/usr/local/apr
--with-java-home=/usr/jdk/jdk1.5.0_14
it worked fine
#make
ld: fatal: r
Hi Stefan
I would try this one:
Connection conn = null;
Statement stmt = null; // Or PreparedStatement if needed
try {
conn = ... get connection from connection pool ...
stmt = conn.createStatement("select ...");
ResultSet rs = stmt.executeQu
Hi,
I use -Dsun.net.inetaddr.ttl=3600 and left the negative.ttl as default (10?).
Our network runs its own caching dns server. Never had any trouble with it.
Ronald.
Op dinsdag, 20 januari 2009 om 10:46 uur schreef Tomcat Users List
:
Dear All,
Do any of you guys tune networkaddress.
Chuck,
>> One of those servlets stops handling or maybe even
>> getting requests that it has a mapping for.
>What does a thread dump show in this situation?
I will see if I can get access - the machine is more or less a black box for
me I'm afraid, and on an internal network that I cannot acces
Dominik Pospisil wrote:
Hello,
are there any plans to incorporate fix for
https://issues.apache.org/bugzilla/show_bug.cgi?id=43968 ?
Yes.
Seems that the issue was not fixed in jk-1.2.27.
Nope, but that's a good reason to go for 1.2.28 :)
Regards
--
^(TM)
---
Hello,
are there any plans to incorporate fix for
https://issues.apache.org/bugzilla/show_bug.cgi?id=43968 ?
Seems that the issue was not fixed in jk-1.2.27.
Thanks,
Dominik
-
To unsubscribe, e-mail: users-unsubscr...@tomcat.a
Dear All,
Do any of you guys tune networkaddress.cache.ttl or
networkaddress.cache.negative.ttl? If so, what values do you use?
--
Kees Jan
http://www.kjkoster.org/
kjkos...@gmail.com
06-51838192
-
To unsubscribe, e-mail: user
28 matches
Mail list logo