Re: Running & debugging servlets on Linux

2003-11-17 Thread Eric MacAdie
--- Harry Mantheakis <[EMAIL PROTECTED]> wrote: > The Tomcat log files are located in the > CONTAINER_HOME/logs directory. > > To print out debugging statements in Servlets use > the GenericServlet.log() > method. Within HttpServlets all you have to do is > call "log(...)". Here is > an example wh

RE: Running & debugging servlets on Linux

2003-11-17 Thread Wade Chandler
nal Message- From: Harry Mantheakis [mailto:[EMAIL PROTECTED] Sent: Monday, November 17, 2003 4:57 AM To: Tomcat Users List Subject: Re: Running & debugging servlets on Linux Hello > 1) Tomcat for Linux does not pop up a new console, like in windows, so > I cannot watch my debug me

Re: Running & debugging servlets on Linux

2003-11-17 Thread James Neville
Kostas 1) Tomcat for Linux does not pop up a new console, like in windows, so I cannot watch my debug messages and/or exceptions. I may be wrong, but i'm pretty sure that:- $CATALINA_HOME/bin/catalina.sh run will write to console instead of the logfiles (catalina.out etc) And as Harry says, write

Re: Running & debugging servlets on Linux

2003-11-17 Thread Holger Klawitter
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 > 1) Tomcat for Linux does not pop up a new console, like in windows, so I > cannot watch my debug messages and/or exceptions. In most cases there is no place to "pop" something up. Remember Tomcat is a Server Process, running on Servers which often

Re: Running & debugging servlets on Linux

2003-11-17 Thread Harry Mantheakis
Hello > 1) Tomcat for Linux does not pop up a new console, like in windows, so I > cannot watch my debug messages and/or exceptions. > > 2) Servlets that need to write a file, work fine on windows, but cannot > write the file on Linux. Permissions etc are ok (root, rw). And because of > problems 1

Running & debugging servlets on Linux

2003-11-17 Thread K. Harvatis
Hi all, I make my servlets on windows, but their destination is going to be Linux. I encounter two problems: 1) Tomcat for Linux does not pop up a new console, like in windows, so I cannot watch my debug messages and/or exceptions. 2) Servlets that need to write a file, work fine on windows, but

Re: debugging servlets?

2002-10-24 Thread Cédric Viaud
" <[EMAIL PROTECTED]> Sent: Wednesday, October 23, 2002 8:51 PM Subject: Re: debugging servlets? > On Wed, 23 Oct 2002, Cédric Viaud wrote: > > > Try using "Eclipse" with the "Tomcat plug-in". > > > > You can run your web application and use the debug

Re: debugging servlets?

2002-10-23 Thread Jacob Kjome
http://www.sysdeo.com/eclipse/tomcatPlugin.html Jake At 02:51 PM 10/23/2002 -0400, you wrote: On Wed, 23 Oct 2002, Cédric Viaud wrote: > Try using "Eclipse" with the "Tomcat plug-in". > > You can run your web application and use the debugger at the same time. > > Very very convenient !!! > ht

Re: debugging servlets?

2002-10-23 Thread Jiann-Ming Su
On Wed, 23 Oct 2002, Cédric Viaud wrote: > Try using "Eclipse" with the "Tomcat plug-in". > > You can run your web application and use the debugger at the same time. > > Very very convenient !!! > http://eclipse.org/eclipse/faq/eclipse-faq.html#misc_3 -- Jiann-Ming Su [EMAIL PROTECTED] 404

Re: debugging servlets?

2002-10-23 Thread Cédric Viaud
TED]> Sent: Wednesday, October 23, 2002 5:12 PM Subject: debugging servlets? > What's the best way to debug servlets? Is there software or scripts that can > parse through the log files? Catalina.out doesn't have timestamps. And, > there's all those other

debugging servlets?

2002-10-23 Thread Jiann-Ming Su
What's the best way to debug servlets? Is there software or scripts that can parse through the log files? Catalina.out doesn't have timestamps. And, there's all those other log files as well. Seems a bit cumbersome. Thanks for any tips. -- Jiann-Ming Su [EMAIL PROTECTED] 404-712-2603 Devel

Re: Debugging servlets !!!

2002-09-30 Thread Jeff Sykes
Try here. These are directions for JBuilder 4, but I have seen this work on 4, 5, 6 and 7, too. http://community.borland.com/article/0,1410,27759,00.html > "Mohan,Gautam" wrote: > > > > Hi , > >normally if any java program has to be debugged we use > options java -Xdebug -Xnoagen

Re: Debugging servlets !!!

2002-09-26 Thread Toni . Kielo
LINA_OPTS-parameters value is the options you use normally (-Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,address=,server=y,suspend=y), except add "-Djava.compiler=NONE" to it. Debugging servlets is propably a little different then normal java apps. Docs say that 1. Se

Debugging servlets !!!

2002-09-26 Thread Mohan,Gautam
  Hi ,     normally if any java program has to be debugged we use options java -Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,address=,server=y,suspend=y HelloWorld   and then if using JBuilder we can attach to the program at port and start debugging or with jdb we us

Re: Debugging servlets

2002-09-26 Thread Raphael Posmyk
gautam schrieb: > I want to know is debugging servlets possible in Tomcat(version 4) . > If yes then how to go about it. Just user remote debuging with JPDA. Ciao, Raphael -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: &l

RE: Debugging servlets

2002-09-26 Thread Miguel Angel Mulero Martinez
10:09 Para: [EMAIL PROTECTED] Asunto: Debugging servlets Hi, I want to know is debugging servlets possible in Tomcat(version 4) . If yes then how to go about it. Thanx and Rgds, Gautam The only way to discover the limits of the possible is to look beyond into the possible

RE: Debugging servlets

2002-09-26 Thread Barney Hamish
Have a look at log4j -Original Message- From: Mohan,Gautam [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 26, 2002 10:09 AM To: [EMAIL PROTECTED] Subject: Debugging servlets Hi, I want to know is debugging servlets possible in Tomcat(version 4) . If yes then how to go

Re: Debugging servlets

2002-09-26 Thread Ben Walding
It sure is... If you're using Eclipse as your development environment, check out the TomCat debug plugin http://www.sysdeo.com/eclipse/tomcatPlugin.html Mohan,Gautam wrote: > Hi, > > I want to know is debugging servlets possible in Tomcat(version 4) > . If yes then h

RE: Debugging servlets

2002-09-26 Thread Collins, Jim
I use judicious use of log statements. > -Original Message- > From: gautam [mailto:[EMAIL PROTECTED]] > Sent: 16 August 2002 09:24 > To: Tomcat Users List > Subject: RE: Debugging servlets > > > Borland's JBuilder does a good job. Check it out

RE: Debugging servlets

2002-09-26 Thread gautam
Borland's JBuilder does a good job. Check it out. Regards, Satpathy -Original Message- From: Mohan,Gautam [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 26, 2002 1:39 PM To: [EMAIL PROTECTED] Subject: Debugging servlets Hi, I want to know is debugging ser

Debugging servlets

2002-09-26 Thread Mohan,Gautam
Hi,     I want to know is debugging servlets possible in Tomcat(version 4) . If yes then how to go about it.           Thanx and Rgds, Gautam   The only way to discover the limits of the possible is to look beyond into the possible

Re: Debugging Servlets

2002-07-12 Thread Jacob Kjome
o use bugseeker and want a project that is set up to work properly to debug Tomcat servlets, send me a personal email and I'll send you the project file. Jake At 10:09 AM 7/11/2002 +0200, you wrote: >Can somebody provide me a usable "HOW-TO" for >debugging servlets under To

Debugging Servlets with IDEA (or just an IDE)

2002-07-11 Thread Marc Logemann
Hi, Tomcat 4.0.4 on Windows i am one of these IDEA guys who frequently want to debug servlets in the IDE. IntelliJ suggests to integrate tomcat into the "RUN" proccess so that you can test servlets and get the output to IDE console and of course being able to add breakpoints and stuff. Here is

AW: Debugging Servlets

2002-07-11 Thread Ralph Einfeldt
nvironment variable JPDA_ADDRESS. (The default is 8000 in catalina.[bat|sh]) > -Ursprüngliche Nachricht- > Von: petra staub [mailto:[EMAIL PROTECTED]] > Gesendet: Donnerstag, 11. Juli 2002 10:09 > An: [EMAIL PROTECTED] > Betreff: Debugging Servlets > > I am using T

Debugging Servlets

2002-07-11 Thread petra staub
Can somebody provide me a usable "HOW-TO" for debugging servlets under TomCat? I want to connect remotely TomCat using e.g. JSwat or cqjd (JPDA), but without success. I am using Tomcat 4.0.3 and 4.1.7beta, have CATALINA_OPTS set (-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp

Debugging servlets in Tomcat using Visual Cafe Expert 4.0 Edition

2001-06-01 Thread Kumar, Amit
Hi, I followed the instructions provided at http://people.netscape.com/chanezon/tech/java/tomcat/debug_jsp_in_cafe.htm to debug servlets in Visual Cafe Expert 4.0. I am using tomcat 3.2.1 I get following error when

debugging servlets

2001-05-09 Thread Martin Bernauer
Does someone know good documentation/tutorials for how to debug servlets with JBuilder and Tomcat4bx? Any help greatly appreciated. -martin

RE: debugging servlets

2001-04-04 Thread Duck-Jin Chun
I also find that defining an evironment var works too. For windows try: set JAVA_COMPILER=NONE > -Original Message- > From: Benoît Jacquemont [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, April 04, 2001 11:42 AM > To: [EMAIL PROTECTED] > Subject: RE: debugging servlets &

RE: debugging servlets

2001-04-04 Thread William Kaufman
001 8:38 AM > To: [EMAIL PROTECTED] > Subject: debugging servlets > > > What was again the magic modification one has to make to > allow a more descriptive line in backtrace rather than > '(compiled code)' > when one gets for example: > > java.lang.NullP

RE: debugging servlets

2001-04-04 Thread Benoît Jacquemont
You have to use the -Djava.compiler=NONE command line option in your java command line in the tomcat.bat/tomcat.sh Benoît > -Message d'origine- > De : Christoph Kukulies [mailto:[EMAIL PROTECTED]] > Envoyé : mercredi 4 avril 2001 17:38 > À : [EMAIL PROTECTED] &g

debugging servlets

2001-04-04 Thread Christoph Kukulies
What was again the magic modification one has to make to allow a more descriptive line in backtrace rather than '(compiled code)' when one gets for example: java.lang.NullPointerException at java.util.Arrays.sort(Compiled Code) at Some.doGet(Compiled Code) at Some.doPost(C