Re:Re: How to force Tomcat to compile?

2002-02-05 Thread Anja Falkner
Hi, thanks for your advice for recompiling classes. I think I have to explain the situation more exactly. (To Reynir): The context reloadable is set to true. (To Guido): I have tried to compile the classes in WEB-INF/classes with javac. Then I get an ClassDefNotFoundError. (To Marcelo

RE: How to force Tomcat to compile?

2002-02-05 Thread Reynir Hübner
using, what system (linux, unix, windows) and which jdk version ? -reynir -Original Message- From: Anja Falkner [mailto:[EMAIL PROTECTED]] Sent: 5. febrúar 2002 19:30 To: Tomcat Users List Subject: Re: How to force Tomcat to compile? Hi, thanks for your advice for recompiling

Re: How to force Tomcat to compile?

2002-02-05 Thread Anja Falkner
Hello Reynir, my JSPs use some Java-Classes. This Java-Classes are positioned in WEB-INF/classes. Normally Tomcat compiles this classes by his own. But if I do some changes in *.java, Tomcat doesn't check, that *.java has changed and doesn't recompile. That's the problem. To found a solution, I

RE: How to force Tomcat to compile?

2002-02-05 Thread YI,LI (HP-USA,ex1)
, 2002 14:50 To: Tomcat Users List Subject: Re: How to force Tomcat to compile? Hello Reynir, my JSPs use some Java-Classes. This Java-Classes are positioned in WEB-INF/classes. Normally Tomcat compiles this classes by his own. But if I do some changes in *.java, Tomcat doesn't check, that *.java

RE: How to force Tomcat to compile?

2002-02-05 Thread Shannon Chen
hi, Anja, i don't think tomcat will recompile automatically. you can compile changed java file by yourself and put the class file under WEB-INF/classes. it should work. one more thing, if you set ReloadInterceptor fullReload=true, you don't need to restart tomcat. it will reload both context

RE: How to force Tomcat to compile?

2002-02-05 Thread Reynir Hübner
Anja, I´ve never heard or used this auto-compiler feature in tomcat. I tried it by inserting a very simple heyworld.java servlet with in my classes directory, and nothing happens, at least it definately does not get compiled. I always use javac to compile everything with in my classes folder

Re: How to force Tomcat to compile?

2002-02-05 Thread Anja Falkner
Hi all, thanks for your help. Now I'm going to try some things. I hope, that self-compiling and restarting Tomcat will do it. Anja -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto:[EMAIL PROTECTED]

Re: How to force Tomcat to compile?

2002-02-05 Thread Micael Padraig Og mac Grene
Anja. Your compilation cannot be the problem, Anja. I use only self-compiled classes. I don't even put my source code into Tomcat. Use the manager app to stop and restart your web application, is my suggestion, after you compile. Or, you can stop and start Tomcat. Micael At 07:49 PM 2/5

Re: How to force Tomcat to compile?

2002-02-05 Thread Ian Duggan
directory. Surely this can't be the case? I'm pretty sure that those have to be compiled manually, and that Tomcat notices the updated .class file from your hand compilation if you have set reloadable=true in the servlet context. For .jsp pages, natuarally Tomcat has to compile those automatically

JSP Won't Compile Under Tomcat 4

2002-01-18 Thread Wagoner, Mark
I am trying to move an app from Tomcat 3.3 to 4.01 and am running into a really strange problem. Everything works fine except for my error page, which won't compile. I get the following: 2002-01-18 09:08:18 ApplicationDispatcher[] Servlet.service() for servlet jsp threw exception

RE: JSP Won't Compile Under Tomcat 4

2002-01-18 Thread Justin Rowles
An error occurred at line: 18 in the jsp file: /error.jsp Generated servlet error: D:\Tomcat\work\localhost\_\error$jsp.java:64: Class org.apache.jsp.PrintWriter not found. exception.printStackTrace(new PrintWriter(out)); ^

RE: JSP Won't Compile Under Tomcat 4

2002-01-18 Thread Wagoner, Mark
: Friday, January 18, 2002 9:17 AM To: 'Tomcat Users List' Subject: RE: JSP Won't Compile Under Tomcat 4 An error occurred at line: 18 in the jsp file: /error.jsp Generated servlet error: D:\Tomcat\work\localhost\_\error$jsp.java:64: Class org.apache.jsp.PrintWriter not found

RE: JSP Won't Compile Under Tomcat 4

2002-01-18 Thread Reynir Hübner
Users List' Subject: RE: JSP Won't Compile Under Tomcat 4 I'm not importing it because I am not using directly. Tomcat is throwing the error when it is invoking its internal JSP compiler. To be honest, I don't even know which JAR file the org.apache.jsp package is in. -Original Message

RE: JSP Won't Compile Under Tomcat 4

2002-01-18 Thread Justin Rowles
I'm not importing it because I am not using directly. Tomcat is throwing the error when it is invoking its internal JSP compiler. Hmm... interesting. Yes, Tomcat is throwing the error when it tries to compile the .java file that it has genereated. There is, however, a source file called

RE: JSP Won't Compile Under Tomcat 4

2002-01-18 Thread Wagoner, Mark
Tomcat 3. -Original Message- From: Justin Rowles [mailto:[EMAIL PROTECTED]] Sent: Friday, January 18, 2002 9:32 AM To: 'Tomcat Users List' Subject: RE: JSP Won't Compile Under Tomcat 4 I'm not importing it because I am not using directly. Tomcat is throwing the error when it is invoking

RE: JSP Won't Compile Under Tomcat 4

2002-01-18 Thread Justin Rowles
I still can't understand why none of this was necessary under Tomcat 3. Probably the package import instruction you needed was added by the .java generator because some of the code it was adding to create the .java file from the .jsp file would need it. You can find out by looking in your

RE: JSP Won't Compile Under Tomcat 4

2002-01-18 Thread Craig R. McClanahan
On Fri, 18 Jan 2002, Justin Rowles wrote: Date: Fri, 18 Jan 2002 14:47:01 - From: Justin Rowles [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Subject: RE: JSP Won't Compile Under Tomcat 4 I still can't understand why none

RE: JSP Won't Compile Under Tomcat 4

2002-01-18 Thread Larry Isaacs
is left out because it is not needed. What version of Tomcat 3.3 compiled the error.jsp page? Cheers, Larry -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: Friday, January 18, 2002 1:04 PM To: Tomcat Users List Subject: RE: JSP Won't Compile Under Tomcat

Unable to compile JSP, cannot find package

2002-01-09 Thread Chris Duprat
Hello, I'm using tomcat 4.0.1 and follow the wepApps rules I've got jsp in the app directory, these jsp import packages from the app/WEB-INF/classes directory. I thought that the classes in the WEB-INF/classes and jars in the WEB-INF/lib directories were automatically found by the webapp

Re: Getting tomcat to re-compile all .jsp's

2001-12-31 Thread Marcelo Demestri
:58 AM Subject: Getting tomcat to re-compile all .jsp's _ Easy question, I hope. I have a project with some files included in numerous .jsp's using %@ include file=... %, the problem is that I am making changes to included files, and tomcat

Getting tomcat to re-compile all .jsp's

2001-12-30 Thread cam
_ Easy question, I hope. I have a project with some files included in numerous .jsp's using %@ include file=... %, the problem is that I am making changes to included files, and tomcat is not detecting changes to the including jsp's. So, my changes are not

Unable to compile class for JSP

2001-12-22 Thread Softwareentwicklung Hauschel
Hey all, does anybody know this Problem ? Unable to compile class for JSP C:\WebApplikations\Tomcat4.0\work\localhost\xmlprofile\pub\ueberweisung$jsp. java:61: Incompatible type for method. Explicit cast needed to convert java.lang.Throwable to java.lang.Exception. if (pageContext

mod_webapp compile problems

2001-12-21 Thread Lars Nielsen Lind
Hi. I have downloadet the source version of mod_webapp and now I want to compile it with -deapi. I have unpacked the mod_webapp tar file with the source but there is no configure file. The readme.txt file says that I could use the following command to compile mod_webapp: ./configure -deapi

Re: mod_webapp compile problems

2001-12-21 Thread Cavan Morris
you need to run ./support/buildconf.sh first. That will create the .configure file. - Original Message - From: Lars Nielsen Lind [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Friday, December 21, 2001 12:04 AM Subject: mod_webapp compile problems Hi. I have

Re: mod_webapp compile problems

2001-12-21 Thread Lars Nielsen Lind
: Friday, December 21, 2001 9:12 AM Subject: Re: mod_webapp compile problems you need to run ./support/buildconf.sh first. That will create the .configure file. - Original Message - From: Lars Nielsen Lind [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Friday, December 21

Re: mod_webapp compile problems

2001-12-21 Thread Lars Nielsen Lind
I have fixed the problem. Just added --enable-debug to the compile command, and then it was possible to use the make command. Best regards, Lars Nielsen Lind - Original Message - From: Lars Nielsen Lind [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Friday, December 21

Re: RE2: Jsp compile option for Big5 encoding / encoding question

2001-12-12 Thread Craig R. McClanahan
On Mon, 3 Dec 2001, Ing. Gabriel Gajdos wrote: Date: Mon, 3 Dec 2001 09:41:39 +0100 From: Ing. Gabriel Gajdos [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: RE2: Jsp compile option for Big5 encoding / encoding question Craig (or somebody

Re: RE2: Jsp compile option for Big5 encoding / encoding question

2001-12-05 Thread yilmaz
Message - From: Ing. Gabriel Gajdos [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, December 04, 2001 4:02 PM Subject: RE: RE2: Jsp compile option for Big5 encoding / encoding question Thanx Craig, but I affraid, this was not the problem. | | JSP (start file): | % |String

mod_jk compile fails with undefined symbol RTLD_NOW

2001-12-05 Thread Robert Dunlop
I'm a newbie to Apache/Tomcat so I'm hoping someone can point me in the right direction here... I'm running on an OpenBSD system (2.9 - release build) When I attempt to build mod_jk.so using the supplied scripts (or directly with apxs as documented in the mod_jk HOWTO) I get the following output

RE: RE2: Jsp compile option for Big5 encoding / encoding question

2001-12-04 Thread Ing. Gabriel Gajdos
Thanx Craig, but I affraid, this was not the problem. | | JSP (start file): | % |String contentType = text/html;charset=windows-1250; |response.setContentType(contentType); | % | | | The setting windows-1250 is not a valid character encoding name in Java. | Try Big5 instead for

Re: Jsp compile option for Big5 encoding / encoding question

2001-12-03 Thread Jim Cheesman
-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: Jsp compile option for Big5 encoding Hi: It is known that Tomcat4.0 handles by default iso8859 as encoding for jsp. Is there any way to change the default? I have checked all configuration file

Re: Jsp compile option for Big5 encoding / encoding question

2001-12-03 Thread Craig R. McClanahan
On Mon, 3 Dec 2001, Jim Cheesman wrote: Date: Mon, 03 Dec 2001 09:11:56 +0100 From: Jim Cheesman [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: Re: Jsp compile option for Big5 encoding / encoding question At 01:53 AM 03

RE2: Jsp compile option for Big5 encoding / encoding question

2001-12-03 Thread Ing. Gabriel Gajdos
Craig (or somebody else), could you, please, give me a hint in following question? | JSP pages follow these rules: | | * If you declare a pageEncoding attribute on your %@ page % | directive (supported in JSP 1.2 only), that character set is used | to read the text of the page itself (as

RE: RE2: Jsp compile option for Big5 encoding / encoding question

2001-12-03 Thread Ing. Gabriel Gajdos
Thanx, Craig, but something is wrong... | Yes, dynamically setting the content type and character encoding is | supported in JSP 1.2 (and therefore in Tomcat 4). You have three choices: | | * You can use a scriptlet to set the content type at the top of your | JSP page: | | % | String

Re: Jsp compile option for Big5 encoding / encoding question

2001-12-03 Thread Jim Cheesman
At 09:02 AM 03/12/01, you wrote: And thanks for the (mostly) snipped answer. At 01:53 AM 03/12/01, you wrote: This default is required by the Servlet and JSP specifications, so it is not configurable. So why did they decide against unicode??? Shouldn't that be the standard?

RE: RE2: Jsp compile option for Big5 encoding / encoding question

2001-12-03 Thread Craig R. McClanahan
On Mon, 3 Dec 2001, Ing. Gabriel Gajdos wrote: Date: Mon, 3 Dec 2001 11:02:50 +0100 From: Ing. Gabriel Gajdos [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: RE: RE2: Jsp compile option for Big5 encoding / encoding question Thanx, Craig

Re: Jsp compile option for Big5 encoding

2001-12-02 Thread Craig R. McClanahan
PROTECTED] Subject: Jsp compile option for Big5 encoding Hi: It is known that Tomcat4.0 handles by default iso8859 as encoding for jsp. Is there any way to change the default? I have checked all configuration file(server.xml etc) however cannot find any entry regarding it. Thanks in advance

Does Tomcat 4 auto compile servlets?

2001-12-01 Thread Javier Soques
Hello, does Tomcat 4.x auto compile servlets? Thanks __ Do You Yahoo!? Buy the perfect holiday gifts at Yahoo! Shopping. http://shopping.yahoo.com -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED

Jsp compile option for Big5 encoding

2001-11-30 Thread Antony
Hi: It is known that Tomcat4.0 handles by default iso8859 as encoding for jsp. Is there any way to change the default? I have checked all configuration file(server.xml etc) however cannot find any entry regarding it. Thanks in advance. Regards, Antony

AIX Compile mod_webapp

2001-11-29 Thread Mike McGuinness
Hello all, Has anyone been able to compile mod_webapp on AIX? I'm running tomcat 4.01 on AIX 5.1. I've checked the archives and didn't find out if anyone was successful. There were some posts, but nothing I could find was conclusive. Sorry for this post if I missed anything in the archives

Re: mod_webapp/apache solaris 8 compile problems

2001-11-01 Thread Pier Fumagalli
Cracauer, David D. at [EMAIL PROTECTED] wrote: From my distro of GCC (both on Sol8 x86 AND sparc), libgcc is already included as a .so in /usr/local/lib... Just make sure you export the correct LD_LIBRARY_PATH by doing: Where did you get your distro? http://www.sunfreeware.com/ Or thru

RE: mod_webapp/apache solaris 8 compile problems

2001-10-31 Thread Cracauer, David D.
, October 30, 2001 8:11 PM To: Tomcat Users List Subject: Re: mod_webapp/apache solaris 8 compile problems Steve Brunton at [EMAIL PROTECTED] wrote: Cracauer, David D. wrote: I have a sun blade 100 running Solaris 8 that I am using to show that it is possible to run our web apps on unix. I

Re: Unable to compile JSPs in Tomcat 4

2001-10-04 Thread Jiger Java
is notoriouse of working only with old xerces parser i.e xerces 1.2 or before. Bye, Jiger From: Jiger Java [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Unable to compile JSPs in Tomcat 4 Date: Wed, 03 Oct 2001 18:39:14 +0530 Hi Friends, I am working

Re: Unable to compile JSPs in Tomcat 4

2001-10-04 Thread Jiger Java
From: Jiger Java [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: Unable to compile JSPs in Tomcat 4 Date: Thu, 04 Oct 2001 17:02:48 +0530 Hi all, Ok so finally I have been able to solve my Tomcat Problem. I am writing this for others to not waste 2 days

Urgent: Tomcat-3.2.3 doesn't compile pages jsp

2001-10-04 Thread Mapoteca Rio
Hi, I use Apache 1.3.12, jdk 1.3.1 , Tomcat 3.2.3 and mod_jk. When a running /host/examples/jsp/numberguess.jsp in port 8080 this aplication works and when I run in port 80, I see this page with the code. I think that tomcat doesn't compile this page. Can anyone help me? Thanks mapoteca-rio

Re: Urgent: Tomcat-3.2.3 doesn't compile pages jsp

2001-10-04 Thread Sriram Narayanan
compile this page. Can anyone help me? Thanks mapoteca-rio __ Do You Yahoo!? NEW from Yahoo! GeoCities - quick and easy web site hosting, just $8.95/month. http://geocities.yahoo.com/ps/info1

Re: Urgent: Tomcat-3.2.3 doesn't compile pages jsp

2001-10-04 Thread Mapoteca Rio
, Tomcat 3.2.3 and mod_jk. When a running /host/examples/jsp/numberguess.jsp in port 8080 this aplication works and when I run in port 80, I see this page with the code. I think that tomcat doesn't compile this page. Can anyone help me? Thanks mapoteca-rio

Re: Urgent: Tomcat-3.2.3 doesn't compile pages jsp

2001-10-04 Thread Jack Lauman
/numberguess.jsp in port 8080 this aplication works and when I run in port 80, I see this page with the code. I think that tomcat doesn't compile this page. Can anyone help me? Thanks mapoteca-rio __ Do You Yahoo!? NEW from Yahoo

Re: Urgent: Tomcat-3.2.3 doesn't compile pages jsp

2001-10-04 Thread Mapoteca Rio
Apache 1.3.12, jdk 1.3.1 , Tomcat 3.2.3 and mod_jk. When a running /host/examples/jsp/numberguess.jsp in port 8080 this aplication works and when I run in port 80, I see this page with the code. I think that tomcat doesn't compile this page. Can anyone help me? Thanks

RE: Urgent: Tomcat-3.2.3 doesn't compile pages jsp

2001-10-04 Thread Durham David Cntr 805CSS/SCBE
Do you have your workers file configured properly? -Original Message- From: Mapoteca Rio [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 04, 2001 1:32 PM To: [EMAIL PROTECTED] Subject: Re: Urgent: Tomcat-3.2.3 doesn't compile pages jsp Thanks, Sriram. I execute o apachectl status

Unable to compile JSPs in Tomcat 4

2001-10-03 Thread Jiger Java
: org.apache.jasper.JasperException: Unable to compile class for JSP at org.apache.jasper.servlet.JspServlet.loadJSP(Unknown Source) at org.apache.jasper.servlet.JspServlet$JspServletWrapper.loadIfNecessary(Unknown Source) at org.apache.jasper.servlet.JspServlet

Re: Compile Servlet

2001-10-01 Thread Vic Ricker
Sounds like you might not have servlet.jar in your classpath. You might want to try using an IDE like Sun's new Forte 3. The CE version is free. -Vic Isak Rickyanto wrote: Hello all.. I am newbie... I want to compile my servlet , i have set TOMCAT_HOMe, JAVA_HOME and my javac

Compile Servlet

2001-09-30 Thread Isak Rickyanto
Hello all.. I am newbie... I want to compile my servlet , i have set TOMCAT_HOMe, JAVA_HOME and my javac not succedded to compile the servlet... And I confuse about setting classpath so my javac can found the servlet Please help me step by step about setting classpath

Re: How can I compile mod_webapp.c???

2001-09-23 Thread Pier Fumagalli
Jaime Garcia [EMAIL PROTECTED] wrote: Hi, I´m trying Apache 2.x and Tomcat 4 work together. I find mod_webapp.c but i don't know how i can compile it. Anyone can help me please ./configure ... make ... That's supposed to work.

How can I compile mod_webapp.c???

2001-09-20 Thread Jaime Garcia
Hi, I´m trying Apache 2.x and Tomcat 4 work together. I find mod_webapp.c but i don't know how i can compile it. Anyone can help me please Thanks

Re: Tomcat 4.0-b7 doesnt compile jsp pages

2001-08-30 Thread Roland
Dear Roland, Please write down the error, else no one can help you. My servlet and Jsp files are runing fine in Tomcat 4.0 beta7 ~ . Ok, here again, I'm using Tomcat 4.0-b7 under Windows NT Server I unzip the Tomcat 4.0-b7 zip file to a directory. Start it, everything seems to run

Tomcat 4.0-b7 doesnt compile jsp pages, problem solved!

2001-08-30 Thread Roland
After reinstalling the tomcat 4.0-b7 it suddenly worked. And then I repeated the same mistake I have made before. I copied my jar files from the old tomcat-4.0-b5/lib and in that process OVERWROTE the newer versions jasper-runtime.jar and namingfactory.jar. I didnt know they had changed the jar

Custom Tag Can't Compile problem.

2001-08-29 Thread MindTerm
: Unable to compile class for JSP An error occurred at line: 8 in the jsp file: /jsp/project/ACC03.jsp Generated servlet error: C:\learning\tomcat4\work\localhost\tea\jsp\project\_0002fjsp_0002fproject_0002fACC03_jsp.java:90: Class

RE: Custom Tag Can't Compile problem.

2001-08-29 Thread Blanchard Andrew H (CPOCEUR)
, 2001 9:03 AM To: [EMAIL PROTECTED] Subject: Custom Tag Can't Compile problem. Dear all, I want to implement custom tag in jsp and I got the following error : Environment: -- OS: Win 2k Tomcat 4.0.7 beta TagManager.class located

Re: Custom Tag Can't Compile problem.

2001-08-29 Thread Dmitri Colebatch
JspTagException( SimpleTag: + ex.getMessage() ); } return SKIP_BODY; } public int doEndTag() { return EVAL_PAGE; } } Error: Unable to compile class for JSP An error occurred at line: 8 in the jsp file

RE: Custom Tag Can't Compile problem.

2001-08-29 Thread Blanchard Andrew H (CPOCEUR)
Do you mean the class TagManager is, in fact, NOT in a package at all? If its not, your tagclassTagManager/tagclass is correct. Its my understanding that it *should* work as long as the file TagManager.class exists in /WEB-INF/classes/ (or is in the classpath). I have never tried to compile

RE: Custom Tag Can't Compile problem.

2001-08-29 Thread MindTerm
TagManager.class exists in /WEB-INF/classes/ (or is in the classpath). I have never tried to compile and use a custom-tag without placing it in a package. Please post your findings. -- Andy Blanchard -Original Message- From: MindTerm [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August

RE: Custom Tag Can't Compile problem.

2001-08-29 Thread Blanchard Andrew H (CPOCEUR)
, 2001 10:54 AM To: [EMAIL PROTECTED] Subject: RE: Custom Tag Can't Compile problem. Dear Blanchard Andrew H, Before, it is /WEB-INF/classes/TagManager.java ( without package ) and it doesn't work. After change, it is /WEB-INF/classes/tools/TagManager.java ( inside package tools ) and it works

Tomcat 4.0-b7 doesnt compile servlets

2001-08-29 Thread Roland
hello, after starting Tomcat4.0-b7 the work directories remain, empty, the servlets are not compiled from the jsp pages. Every access to a jsp page(even the Tomcat examples) results in an error. Why is this?

Re: Tomcat 4.0-b7 doesnt compile servlets

2001-08-29 Thread MindTerm
Dear Roland, Please write down the error, else no one can help you. My servlet and Jsp files are runing fine in Tomcat 4.0 beta7 ~ . JSP files are placed in /webapps/projectname/jsp/modulename/*.jsp while Servlet files are placed in /webapps/projectname/WEB-INF/classes/*.class

Unable to compile class for ...

2001-08-28 Thread Wiechert, Holger
not screwing up the files). So the error message is: Error: 500 Location: /myapp/someJSP.jsp Internal Servlet Error: org.apache.jasper.JasperException: Unable to compile class for JSPC:\test_cat2\webapps\myapp\WEB-INF\CLASSES\com\mycomp\Constants.java:1: The source file encoding may be different

Reason: Unable to compile class for ...

2001-08-28 Thread Wiechert, Holger
-User (E-Mail) Betreff: Unable to compile class for ... Hi, I've seen that this error has been in the discussion here a few times, but finally has never been answered. It occures *sometimes*, when a JSP uses a java class. To make things clear: I only use the standard tools: JBuilder4 and once

mod_jk compile problems with Solaris 8

2001-08-22 Thread Peter Shankey
### All the vars line up but when I make -f Makefile.solaris all the compile fails here are the last few lines: gcc -DSOLARIS2=280 -DUSE_EXPAT -I../lib/expat-lite -DNO_DL_NEEDED -I/u80/w1/apa che_1.3.17/include -I../jk -I/u80/w1/j2sdk1_3_1/include -I/u80/w1

Newbie wants to compile mod_jk for existing Apache sans apxs

2001-08-14 Thread Bernard T. Higonnet
Hello, I have Apache 1.3.19 plopped down on my system as a result of installing Mandrake 8.0. I have installed tomcat 3.2.3 from the tarball and it seems to work to the extent that I can look at the examples at localhost:8080/examples. I have the source code for mod_jk but I can't follow the

Re: Newbie wants to compile mod_jk for existing Apache sans apxs

2001-08-14 Thread e-value - Maxime Mathon
apxs is in you apache/bin directory (ie /usr/local/apache/bin) set APACHE_HOME if you want to be clean. Bernard T. Higonnet wrote: Hello, I have Apache 1.3.19 plopped down on my system as a result of installing Mandrake 8.0. I have installed tomcat 3.2.3 from the tarball and it seems to

Re: Newbie wants to compile mod_jk for existing Apache sans apxs

2001-08-14 Thread Bernard T. Higonnet
e-value - Maxime Mathon wrote: apxs is in you apache/bin directory (ie /usr/local/apache/bin) set APACHE_HOME if you want to be clean. Well, no. That's my problem. On my machine (a standard Mandrake installation (I did not tell it to put apache in some funny place) as far as I am aware)

Re: Newbie wants to compile mod_jk for existing Apache sans apxs

2001-08-14 Thread e-value - Maxime Mathon
The best things to do is to install apache1.3.19 with --enable-module=so in option. Bernard T. Higonnet wrote: e-value - Maxime Mathon wrote: apxs is in you apache/bin directory (ie /usr/local/apache/bin) set APACHE_HOME if you want to be clean. Well, no. That's my problem. On my

Re: Newbie wants to compile mod_jk for existing Apache sans apxs

2001-08-14 Thread Christian Cleber
Did you try to use the binarie of mod-jk.so for the tomcat 3.2.3 ? Bernard T. Higonnet wrote: Hello, I have Apache 1.3.19 plopped down on my system as a result of installing Mandrake 8.0. I have installed tomcat 3.2.3 from the tarball and it seems to work to the extent that I can look at

Unable to compile class for JSP

2001-08-10 Thread [EMAIL PROTECTED]
/classes'. But I get this message: org.apache.jasper.JasperException: Unable to compile class for JSP What am I doing wrong? - This mail was sent through Eoffice: http://www.eoffice.dk

Re: Unable to compile class for JSP

2001-08-10 Thread Craig R. McClanahan
/ROOT/WEB-INF/classes'. But I get this message: org.apache.jasper.JasperException: Unable to compile class for JSP What am I doing wrong? - This mail was sent through Eoffice: http://www.eoffice.dk

RE: Unable to compile class for JSP

2001-08-10 Thread Larry Isaacs
Tried your files in Tomcat 3.3 and Tomcat 3.2.3 as described and they worked fine for me. Please supply more of the error message that gives what the compile error was. Larry -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, August 10, 2001 12:33 PM

RE: Compile JSP with Tomcat/IBM JDK 1.2.2/AIX4.3.3

2001-08-08 Thread Klaas van der Ploeg
the top of the file, or insert a new package statement. 3. Add the -O option to the commandline String[] in compile() (to 'optimize' compilation) 3. Compile your class put it in a jar (jar -cvf ) 4. Put the jar file in the tomcat/lib directory 5. Add jspCompilerPlugin parameter to web.xml

RE: Compile JSP with Tomcat/IBM JDK 1.2.2/AIX4.3.3

2001-08-06 Thread Klaas van der Ploeg
Hi, I did not mean Jikes because I already have a javac (which comes with the JDK), and I don't want to compile Jikes from source for the AIX platform. But your directions pointed me in the right way: I wrote a class around the javac from IBM, basically it's a copy of JikesJavaCompiler

Re: mod_jk.so unable to compile, please help. Urgent

2001-08-06 Thread Beth Kelly
Funny signature! Kyle Wayne Kelly (504)391-3985 http://www.cs.uno.edu/~kkelly - Original Message - From: raghu [EMAIL PROTECTED] To: tomcat [EMAIL PROTECTED] Sent: Monday, August 06, 2001 7:01 AM Subject: mod_jk.so unable to compile, please help. Urgent ../jk/jk_jni_worker.c:67

RE: mod_jk.so unable to compile, please help. Urgent

2001-08-06 Thread Nance, Michael
Edit the apxs and make sure the path to your apahce is correct (It is hard coded) I have a compiled mod_jk.so (but it is for a specific version of Apache) try using this command to compile (youll have to change the path to your apahce) /opt/pokemon/lib/server/apache/1.3.12+ssl_0.95-solaris2.70

RE: Compile JSP with Tomcat/IBM JDK 1.2.2/AIX4.3.3

2001-08-06 Thread Gautam Sinha
To: [EMAIL PROTECTED] Subject: RE: Compile JSP with Tomcat/IBM JDK 1.2.2/AIX4.3.3 Hi, I did not mean Jikes because I already have a javac (which comes with the JDK), and I don't want to compile Jikes from source for the AIX platform. But your directions pointed me in the right way: I wrote a class around

RE: Unable to compile class for JSP

2001-08-03 Thread Evgeniy Strokin
every things was well. Hope this information helps somebody. -Original Message- From: Evgeniy Strokin [mailto:[EMAIL PROTECTED]] Sent: Friday, August 03, 2001 1:20 PM To: [EMAIL PROTECTED] Subject: Unable to compile class for JSP Hi All, I have installed Tomcat 3.2.3 and transit my

Unable to compile class for JSP

2001-08-03 Thread Evgeniy Strokin
Hi All, I have installed Tomcat 3.2.3 and transit my application (it works in tomcat 3.2.1) I got that exception: Internal Servlet Error: org.apache.jasper.JasperException: Unable to compile class for JSPC:\Softgage\work\localhost_8080\_0002findex_0002ejspindex_jsp_0.java:1: Package

Compile JSP with Tomcat/IBM JDK 1.2.2/AIX4.3.3

2001-08-02 Thread Klaas van der Ploeg
Hi All, I managed to install Tomcat 3.2.3 on AIX with IBM's JDK 1.2.2. I also deployed my application on it using a .war file. But, when I request a jsp page, I get an exception sun.tools.javac.Main etc Of course, this is related to the fact that I'm not using sun's jdk. My question: -

RE: Compile JSP with Tomcat/IBM JDK 1.2.2/AIX4.3.3

2001-08-02 Thread Andrew Inggs
Klaas van der Ploeg wrote: I managed to install Tomcat 3.2.3 on AIX with IBM's JDK 1.2.2. I also deployed my application on it using a .war file. But, when I request a jsp page, I get an exception sun.tools.javac.Main etc Of course, this is related to the fact that I'm not using sun's

Bug: 3.3b1, cannot compile auto-generated java (ServletException(Throwable))

2001-08-02 Thread Andrew Cooke
); } near the end of the jsp code generates the error org.apache.jasper.JasperException: Unable to compile D:\jakarta-tomcat-3.3-b1\work\DEFAULT\jsp\pay_in_1.java:125: Incompatible type for constructor. Can't convert java.lang.Throwable to java.lang.String. throw new

TOMCAT won't compile, problem somewhere between jakarta servletapi and ant, please help

2001-08-02 Thread alexus
i'm trying to build tomcat 3.2.3 from source code on FreeBSD-4.3 STABLE i'm stuck on step jakarta-servletapi su-2.05# echo $JAKARTA_HOME /usr/local/java/JAKARTA su-2.05# cd $JAKARTA_HOME/jakarta-servletapi su-2.05# pwd /usr/local/java/JAKARTA/jakarta-servletapi su-2.05# sh build.sh dist expr:

TOMCAT won't compile

2001-08-02 Thread alexus
i figured what was the problem last point.. so ignore my last posting now i'm geting this.. any ideas? anyone? su-2.05# sh build.sh dist expr: syntax error Buildfile: build.xml prepare: compile: [copydir] DEPRECATED - The copydir task is deprecated. Use copy instead. javadoc: [javadoc

RE: JSP Compile Test Case

2001-07-23 Thread Filip Hanik
~ Namaste - I bow to the divine in you ~ Filip Hanik Software Architect [EMAIL PROTECTED] www.filip.net -Original Message- From: Will England [mailto:[EMAIL PROTECTED]] Sent: Monday, July 23, 2001 1:15 PM To: [EMAIL PROTECTED] Cc: will a england Subject: JSP Compile Test Case Hi! Got around

RE: JSP Compile Test Case

2001-07-23 Thread Will England
-Original Message- From: Will England [mailto:[EMAIL PROTECTED]] Sent: Monday, July 23, 2001 1:15 PM To: [EMAIL PROTECTED] Cc: will a england Subject: JSP Compile Test Case Hi! Got around to writing a test case. Data: SunOS 2.7 JDK 1.2 Tomcat 3.2.2 Setup: I have a single JSP

RE: JSP Compile Test Case

2001-07-23 Thread Filip Hanik
[mailto:[EMAIL PROTECTED]] Sent: Monday, July 23, 2001 1:57 PM To: [EMAIL PROTECTED] Subject: RE: JSP Compile Test Case yeah, I thought of that after I sent the message and moved the jsp directory above the WEB-INF directory and changed the Context mount point. Didn't help. Same error

What does this exception mean? Tomcat is not supposed to compile Java file, right?

2001-07-19 Thread Daniel Kruler
org.apache.jasper.JasperException: Unable to compile class for JSPC:\tomcat\common\lib\apache_soap.jar(org/apache/soap/server/Deploymen tDescriptor.java): Public class org.apache.soap.server.DeploymentDescriptor must be defined in a file called DeploymentDescriptor.java. C:\tomcat\common\lib

Re: What does this exception mean? Tomcat is not supposed to compile Java file, right?

2001-07-19 Thread David Haraburda
Tomcat is attempting to compile your JSP file into a Java servlet (.java file) Tomcat will then compile this .java file, and the resulting class is what will be run when your web browser hits the JSP page. It looks like your apache_soap.jar isn't configured correctly (I'm not familiar

RE: What does this exception mean? Tomcat is not supposed to compile Java file, right?

2001-07-19 Thread Daniel Kruler
It's the JSP that came with Apache SOAP distribution. Sometimes that JSP doesn't compiles and sometimes (on the 2nd try) it will compile normally, without any changes in JSP or need to restart Tomcat. -Original Message- From: David Haraburda [mailto:[EMAIL PROTECTED]] Sent: Thursday

RE: JSP compile error - class not found

2001-07-18 Thread Will England
) Second, the may be issues involving the use of multiple class loaders (??) Hope this helps! -Original Message- From: Will England [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 17, 2001 4:11 PM To: [EMAIL PROTECTED] Subject: JSP compile error - class not found Greetings

RE: JSP compile error - class not found

2001-07-18 Thread Jann VanOver
compile error - class not found Greetings! Tried copying tools.jar to the TOMCAT_HOME/lib directory. Didn't help. Set TOMCAT_HOME and JAVA_HOME vars. Didn't help. Any other ideas? -- /~'find `funny quote`': Command not found; humor not installed. 1986 Concours 72,xxx 1982 Maxim 12,xxx

JSP compile error - class not found

2001-07-17 Thread Will England
Greetings! Running tomcat 3.2 on Sun 2.7 Porting a working application from 3.1. All jsp's and servlets work under 3.1. Running multiple virtual machines under one Tomcat with the host parameter in server.xml. The JSPs are failing to compile -- org.apache.jasper.JasperException: Unable

RE: JSP compile error - class not found

2001-07-17 Thread Robert Finneran
:[EMAIL PROTECTED]] Sent: Tuesday, July 17, 2001 4:11 PM To: [EMAIL PROTECTED] Subject: JSP compile error - class not found Greetings! Running tomcat 3.2 on Sun 2.7 Porting a working application from 3.1. All jsp's and servlets work under 3.1. Running multiple virtual machines under one Tomcat

Re: to compile or not

2001-07-13 Thread Adam Fowler
Hi, As tomcat is written in Java and runs on 1.3.1 I would think that it wouldn't make a difference. Of course, if it was compiled with 1.2.2 and there's some extremely weird error then you might be write. I still don't understand why ppl are getting a memory leak error. It seems to happen

Re: to compile or not

2001-07-13 Thread John Riker
Thanks I'll give blackdown a try and let you know. Strange thing is, before I thought I had error message related to this sudden shutdown issue, however when I deleted the logs, and it shutdown again this time, no new log files were created. Not sure if that's because I deleted the logs while

<    3   4   5   6   7   8   9   10   >