comment handling 4.1

2002-06-22 Thread Ralph Schaer


Hello

I have a small problem with Tomcat 4.1.


In my jsp page there is this line:

%= getChainString(flow, messages, locale) %% if (i  steps.size() -1) { //not last 
%,% }


Tomcat 4.0.4 creates this code:
---
// begin [file=/menu.jsp;from=(73,7);to=(73,47)]
out.print( getChainString(flow, messages, locale) );
// end
// begin [file=/menu.jsp;from=(73,51);to=(73,90)]
if (i  steps.size() -1) { //not last 
// end
// HTML // begin [file=/menu.jsp;from=(73,92);to=(73,93)]
out.write(,);

// end
// begin [file=/menu.jsp;from=(73,95);to=(75,8)]
}



Here the 4.1 code:
--
 out.print( getChainString(flow, messages, locale) );
 if (i  steps.size() -1) { //not last   out.write(,);
 }
 
 
 The problem ist that the out.write statement is commented out.
 Does anyone know what is the right behavior?
 
 Regards
 Ralph


--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




Microsoft SQL Server 2000 Driver for JDBC Errors

2002-06-22 Thread Mark A. Richman

I am trying to use the JDBC driver with Apache Tomcat 4.0 (JDK 1.4).
Here is
my context configuration for the Datasource from server.xml:

Context path=/admin docBase=admin debug=0 privileged=true
 Resource name=jdbc/DremiaDS auth=SERVLET
type=javax.sql.DataSource/
 ResourceParams name=jdbc/DremiaDS
  parameter
   nameUser/name
   valuesa/value
  /parameter
  parameter
   namePassword/name
   valuemypassword/value
  /parameter
  parameter
   nameDatabaseName/name
   valueDremia/value
  /parameter
  parameter
   nameServerName/name
   valuelocalhost/value
  /parameter
  parameter
   namedriverClassName/name
   valuecom.microsoft.jdbc.sqlserver.SQLServerDriver/value
  /parameter
  parameter
   namedriverName/name

valuejdbc:microsoft:sqlserver://localhost:1433;ServerName=localhost;Da
taba
seName=Dremia;User=sa;Password=mypassword/value
  /parameter
  parameter
   namemaxActive/name
   value8/value
  /parameter
  parameter
   namemaxIdle/name
   value4/value
  /parameter
 /ResourceParams
/Context

When attempting to access the database, I get the following error:

Debug: SQL Exception:
Debug: State  : 28000
Debug: Message: [Microsoft][SQLServer 2000 Driver for
JDBC][SQLServer]Login
failed for user 'sa'.
Debug: Error  : 18456
Debug: State  : 08001
Debug: Message: [Microsoft][SQLServer 2000 Driver for JDBC]An error
occured
while attempting to log onto the database.
Debug: Error  : 0

I am running SQL Server 2000 SP2 with security set to SQL Server and
Windows. This drivers seems to work fine from Forte CE as well.

Can someone lend a hand?

Thanks,
Mark A. Richman





errors compiling mod_jk for Apache 2.0.39

2002-06-22 Thread Dom

When I try to compile mod_jk in 4.1.3 connectors for Apache 2.0.39 on RH
7.3, I get the following errors :

/usr/lib/gcc-lib/i386-redhat-linux/2.96/../../../crt1.o: In function
`_start':
/usr/lib/gcc-lib/i386-redhat-linux/2.96/../../../crt1.o(.text+0x18):
undefined reference to `main'
mod_jk.lo: In function `ws_start_response':
/apps/jakarta-tomcat-connectors-4.1.3-src/jk/native/apache-2.0/mod_jk.c:225:
undefined reference to `apr_psprintf'
/apps/jakarta-tomcat-connectors-4.1.3-src/jk/native/apache-2.0/mod_jk.c:229:
undefined reference to `apr_pstrdup'
etc...
collect2: ld returned 1 exit status
apxs:Error; Command failed with rc=65536


Dom




--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




Re: Can servlet write to file in /WEB-INF?

2002-06-22 Thread Milt Epstein

On Sat, 22 Jun 2002, john-paul delaney wrote:

 I was trying to see if I could write to a file in the /WEB-INF
 directory but I couldn't get it to work - is there a problem with a
 servlet writing to this directory or is it just me (again ;( ) ?

 thanks
 /j-p.

 URL url = context.getResource(/contextTest.txt);
 URLConnection con = url.openConnection();
 con.setDoOutput(true);
 OutputStream out = con.getOutputStream();
 PrintWriter pw = new PrintWriter(new OutputStreamWriter(out));
 pw.println(foo);
 pw.close();
 out.close();

Well, I've never tried it before, but what you've got is pretty much
as described in an old Jason Hunter article:

http://www.javaworld.com/jw-12-1998/jw-12-servletapi-p3.html

I don't know if things have changed since then.

Of course, another issue is whether the user that the servlet is
running as has the appropriate permissions to write into that
file/directory.

Milt Epstein
Research Programmer
Systems and Technology Services (STS)
Campus Information Technologies and Educational Services (CITES)
University of Illinois at Urbana-Champaign (UIUC)
[EMAIL PROTECTED]


--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




context path null error

2002-06-22 Thread SomchaiDion

Help me please,
I found the error message in the log files as shown below. Can anybody
explain me what is it.

Thanks
Somchai
=
2002-06-21 10:22:32 StandardHost[localhost]: Error deploying application at
context path null
java.lang.reflect.InvocationTargetException
at
org.apache.commons.digester.Digester.createSAXException(Digester.java
:2033)
at
org.apache.commons.digester.Digester.createSAXException(Digester.java
:2053)
at
org.apache.commons.digester.Digester.endElement(Digester.java:833)
at org.apache.crimson.parser.Parser2.maybeElement(Parser2.java:1536)
at org.apache.crimson.parser.Parser2.parseInternal(Parser2.java:500)
at org.apache.crimson.parser.Parser2.parse(Parser2.java:305)
at
org.apache.crimson.parser.XMLReaderImpl.parse(XMLReaderImpl.java:442)
at org.apache.commons.digester.Digester.parse(Digester.java:1302)
at
org.apache.catalina.core.StandardHostDeployer.install(StandardHostDep




--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: Tomcat 4 performance issues - Trying Tomcat 4.1.3 Beta

2002-06-22 Thread Reynir Hübner


Victor  the others..

I've tested tc 4.1.5 and I get very similar problems as I did with tc. 4.1.3.

if I stress/load my application with 10*10 threads I get messages like this on the 
stdout log : 

ThreadPool: Caught exception executing 
org.apache.tomcat.util.net.TcpWorkerThread@422a3b, terminating thread
java.lang.OutOfMemoryError
no stack trace available
java.lang.OutOfMemoryError
no stack trace available

I increased the memory for jvm to 256mb and now tomcat runs, but executes everything 
alot (aprox 15-20 times) slower than tc 4.03 so I'm sticking to that for now, at least 
I would not use tc4.1.5 for production as it is right now. 
 
-reynir




 -Original Message-
 From: Victor Popiol [mailto:[EMAIL PROTECTED]]
 Sent: 21. júní 2002 15:57
 To: Tomcat Users List
 Subject: RE: Tomcat 4 performance issues - Trying Tomcat 4.1.3 Beta
 
 
 It also helped us when we increased the memory. Right now, we 
 have scheduled a daily service restart (this is in production :-( ).
 
 I'll be looking forward to your feedback regarding 4.1.5
 
 Regards
 Victor
 
 -Original Message-
 From: Reynir Hübner [mailto:[EMAIL PROTECTED]]
 Sent: Friday, June 21, 2002 11:43 AM
 To: Tomcat Users List
 Subject: RE: Tomcat 4 performance issues - Trying Tomcat 4.1.3 Beta
 
 
 
 I had the same problem, increased memory up to 512 and got rid of it.
 But it seemd kind of obvious to me that tomcat 4.1.3 was 
 taking way more memory than 4.0.3, for example an application 
 that normally takes 40 - 60 mb was taking 400mb of memory 
 under load, and it did not seem to release the memory unless 
 I killed the java.exe process. All my problems came as I was 
 stress-testing the application. I'm testing version 4.1.5 
 right now, I'll let you know if there is any difference. 
 
 -reynir
 
 
  
 
  -Original Message-
  From: Victor Popiol [mailto:[EMAIL PROTECTED]]
  Sent: 21. júní 2002 15:44
  To: Tomcat Users List
  Subject: RE: Tomcat 4 performance issues - Trying Tomcat 4.1.3 Beta
  
  
  More details:
  
  Server
  Compaq Single Processor 512 MB RAM
  Windows 2K
  
  Tomcat
  - Tomcat 4.1.3 Beta, binary distribution running as a service 
  and using Tomcat 4.0's isapi_redirector.dll to interface with IIS
  - Using Ajp3Processor with IIS
  - Runs as an NT Service
  - JVM parametes: -Xrs -Xincgc -Xms128m -Xmx256m
  
  
  Application
  - Struts
  - Lots of JSP's using I18N and custom tags
  - Database server is Oracle 8.1.7
  - # requests/day: 7,750
  
  Thanks
  Victor
  
  
  -Original Message-
  From: Remy Maucherat [mailto:[EMAIL PROTECTED]]
  Sent: Friday, June 21, 2002 9:46 AM
  To: Tomcat Users List
  Subject: Re: Tomcat 4 performance issues - Trying Tomcat 4.1.3 Beta
  
  
  Victor Popiol wrote:
   I installed Tomcat 4.1.3 beta. Took a while to configure 
  because the hidden issue with the user vs username parameter 
  in the datasource definition.
   
   After it has been running for a day, it died. Looking at 
  the logs I found the following:
   
   java.lang.OutOfMemoryError
 no stack trace available
   java.lang.OutOfMemoryError
 no stack trace available
   java.lang.OutOfMemoryError
 no stack trace available
   java.lang.OutOfMemoryError
 no stack trace available
   
   Any idea of components leaking memory?
  
  Without any additional details, I can't really help.
  
  A bug which could cause this has been fixed after 4.1.3:
  http://nagoya.apache.org/bugzilla/show_bug.cgi?id=9715
  
  This bug was also present in TC 4.0.x, though.
  
  Remy
  
  
  --
  To unsubscribe, e-mail:   
  mailto:[EMAIL PROTECTED]
  For additional commands, e-mail: 
  mailto:[EMAIL PROTECTED]
  
  
  --
  To unsubscribe, e-mail:   
  mailto:[EMAIL PROTECTED]
  For additional commands, e-mail: 
  mailto:[EMAIL PROTECTED]
  
  
 
 --
 To unsubscribe, e-mail:   
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail: 
 mailto:[EMAIL PROTECTED]
 
 
 --
 To unsubscribe, e-mail:   
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail: 
 mailto:[EMAIL PROTECTED]
 
 

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




Re: Can servlet write to file in /WEB-INF?

2002-06-22 Thread john-paul delaney

Thanks Milt... yes I'm reading servlet programming by the same author, he'd written a 
servlet example that reads and writes a counter to an external file resource but it 
seems the file location varies depending on the container implementation - I was 
trying to understand how to determine an exact location of a resource for reading 
from, and writing to.

Any further advice gratefully accepted.

/j-p.


On Sat, 22 Jun 2002, Milt Epstein wrote:

 Well, I've never tried it before, but what you've got is pretty much
 as described in an old Jason Hunter article:
 
 http://www.javaworld.com/jw-12-1998/jw-12-servletapi-p3.html
 
 I don't know if things have changed since then.
 
 Of course, another issue is whether the user that the servlet is
 running as has the appropriate permissions to write into that
 file/directory.
 
 Milt Epstein
 Research Programmer
 Systems and Technology Services (STS)
 Campus Information Technologies and Educational Services (CITES)
 University of Illinois at Urbana-Champaign (UIUC)
 [EMAIL PROTECTED]


---
 JUSTATEST Art Online
  www.justatest.com




--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




security_constraint question

2002-06-22 Thread Ed Thompson

OK, rookie question

I have a file in $TOMCAT_HOME/webapps/comics  (index.html)

$TOMCAT_HOME/webapps/comics/WEB-INF/web.xml has:

security-constraint
  web-resource-collection
 web-resource-nameProtected Area/web-resource-name
 !-- Define the context-relative URL(s) to be protected --
 url-pattern/comics/url-pattern
 url-pattern/comics/*/url-pattern
 !-- If you list http methods, only those methods are protected --
 http-methodDELETE/http-method
 http-methodGET/http-method
 http-methodPOST/http-method
 http-methodPUT/http-method
  /web-resource-collection
  auth-constraint
 !-- Anyone with one of the listed roles may access this area --
 role-namecomics/role-name
  /auth-constraint
/security-constraint

I have is set up for BASIC as my auth-method.  Pretty much cut and paste
form the examples directory.

However, on my browser when I go to //thompson3:8080/comics, it takes me
right to index.html.
Why does it not require me to login first?  What have a missed in the Tomcat
configuration?

Help greatly appreciate - been struggling with this for a couple of days...

(PS - the examples works great - going to
//thompson3:8080/examples/jsp/security/protected forces a login)





--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




APR compile problems

2002-06-22 Thread Lars Nielsen Lind

Hi - help is wanted.

I have downloadet the CVS version of modwebapp and APR. When I am 
configurering the APR I get this message:
.
.
.
Creating include/arch/unix/apr_private.h.in ...
./buildconf: autoheader: command not found
Creating configure...
.
.
.

The config file is created but when I compile modwebapp I get the same error

I have checked the APR dir in modwebapp. There is an include dir with an 
arch dir with an unix dir but there is no apr_private.h or 
apr_private.h.in files. Not before and not after the building/configuration.

I am using Jakarta-Tomcat 4.0.4 LE JDK14 / Apache 1.3.26 and Red Hat 7.3.

Any solutions?

Best regards,

Lars Nielsen Lind


--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: security_constraint question

2002-06-22 Thread Mark A. Richman

Try replacing:

url-pattern/comics/url-pattern
url-pattern/comics/*/url-pattern

with:

url-pattern/*/url-pattern

This applies the security constraint to your web app (not the root of
the server). The former would only be effective on
http://thompson3:8080/comics/comics/.

- Mark


-Original Message-
From: Ed Thompson [mailto:[EMAIL PROTECTED]] 
Sent: Saturday, June 22, 2002 3:42 PM
To: Tomcat Users List
Subject: security_constraint question

OK, rookie question

I have a file in $TOMCAT_HOME/webapps/comics  (index.html)

$TOMCAT_HOME/webapps/comics/WEB-INF/web.xml has:

security-constraint
  web-resource-collection
 web-resource-nameProtected Area/web-resource-name
 !-- Define the context-relative URL(s) to be protected --
 url-pattern/comics/url-pattern
 url-pattern/comics/*/url-pattern
 !-- If you list http methods, only those methods are protected --
 http-methodDELETE/http-method
 http-methodGET/http-method
 http-methodPOST/http-method
 http-methodPUT/http-method
  /web-resource-collection
  auth-constraint
 !-- Anyone with one of the listed roles may access this area
--
 role-namecomics/role-name
  /auth-constraint
/security-constraint

I have is set up for BASIC as my auth-method.  Pretty much cut and paste
form the examples directory.

However, on my browser when I go to //thompson3:8080/comics, it takes me
right to index.html.
Why does it not require me to login first?  What have a missed in the
Tomcat
configuration?

Help greatly appreciate - been struggling with this for a couple of
days...

(PS - the examples works great - going to
//thompson3:8080/examples/jsp/security/protected forces a login)





--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]





--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




Re: security_constraint question

2002-06-22 Thread Ed Thompson

Thanx, that did it!

- Original Message -
From: Mark A. Richman [EMAIL PROTECTED]
To: 'Tomcat Users List' [EMAIL PROTECTED]
Sent: Saturday, June 22, 2002 4:23 PM
Subject: RE: security_constraint question


 Try replacing:

 url-pattern/comics/url-pattern
 url-pattern/comics/*/url-pattern

 with:

 url-pattern/*/url-pattern

 This applies the security constraint to your web app (not the root of
 the server). The former would only be effective on
 http://thompson3:8080/comics/comics/.

 - Mark


 -Original Message-
 From: Ed Thompson [mailto:[EMAIL PROTECTED]]
 Sent: Saturday, June 22, 2002 3:42 PM
 To: Tomcat Users List
 Subject: security_constraint question

 OK, rookie question

 I have a file in $TOMCAT_HOME/webapps/comics  (index.html)

 $TOMCAT_HOME/webapps/comics/WEB-INF/web.xml has:

 security-constraint
   web-resource-collection
  web-resource-nameProtected Area/web-resource-name
  !-- Define the context-relative URL(s) to be protected --
  url-pattern/comics/url-pattern
  url-pattern/comics/*/url-pattern
  !-- If you list http methods, only those methods are protected --
  http-methodDELETE/http-method
  http-methodGET/http-method
  http-methodPOST/http-method
  http-methodPUT/http-method
   /web-resource-collection
   auth-constraint
  !-- Anyone with one of the listed roles may access this area
 --
  role-namecomics/role-name
   /auth-constraint
 /security-constraint

 I have is set up for BASIC as my auth-method.  Pretty much cut and paste
 form the examples directory.

 However, on my browser when I go to //thompson3:8080/comics, it takes me
 right to index.html.
 Why does it not require me to login first?  What have a missed in the
 Tomcat
 configuration?

 Help greatly appreciate - been struggling with this for a couple of
 days...

 (PS - the examples works great - going to
 //thompson3:8080/examples/jsp/security/protected forces a login)





 --
 To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]





 --
 To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
mailto:[EMAIL PROTECTED]




--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




Re: APR compile problems

2002-06-22 Thread Lars Nielsen Lind

Lars Nielsen Lind wrote:

 Hi - help is wanted.

 I have downloadet the CVS version of modwebapp and APR. When I am 
 configurering the APR I get this message:
 .
 .
 .
 Creating include/arch/unix/apr_private.h.in ...
 ./buildconf: autoheader: command not found
 Creating configure...
 .
 .
 .

 The config file is created but when I compile modwebapp I get the same 
 error

 I have checked the APR dir in modwebapp. There is an include dir with 
 an arch dir with an unix dir but there is no apr_private.h or 
 apr_private.h.in files. Not before and not after the 
 building/configuration.

 I am using Jakarta-Tomcat 4.0.4 LE JDK14 / Apache 1.3.26 and Red Hat 7.3.

 Any solutions?

 Best regards,

 Lars Nielsen Lind


 -- 
 To unsubscribe, e-mail:   
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail: 
 mailto:[EMAIL PROTECTED]


Solved the problem by myself :-)

Downloaded Autconf 2.13 from gnu.org and configured it followed by make 
install and now I can do the APR.

Best regards,

Lars Nielsen Lind



--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




why the email list don't work

2002-06-22 Thread Anibal Constante Brito

I want unsubcribe, but a send 3 email to this address: 
[EMAIL PROTECTED] useless.

I want unsubcribe, beacuse I go to vacations and I don't want my mailbox full.

Thanks.



Tomcat 4.0.3 Internal server errors

2002-06-22 Thread Stephen and Jan Black

Tomcat sends an HTTP status 500 error when running a form email 
submission routine. The Bean compiled and ran on my development box 
using JRun, but after deploying the war file in the webapps directory on 
the production server I get the 500 errors. I verified that the .java 
file would compile on the production box.

Any thoughts?



--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




Re: Can servlet write to file in /WEB-INF?

2002-06-22 Thread Milt Epstein

On Sat, 22 Jun 2002, john-paul delaney wrote:

 Thanks Milt... yes I'm reading servlet programming by the same
 author, he'd written a servlet example that reads and writes a
 counter to an external file resource but it seems the file location
 varies depending on the container implementation - I was trying to
 understand how to determine an exact location of a resource for
 reading from, and writing to.

 Any further advice gratefully accepted.

Not sure I have any other great suggestions.  Are you getting any kind
of error messages or anything in the logs?  Did you check in different
directories to see if the file was created somewhere?  Another
possibility is to try reading a file -- you might have to try it in a
few different locations to see what path (as the argument to
getResource()) matches up with what directory.


 On Sat, 22 Jun 2002, Milt Epstein wrote:

  Well, I've never tried it before, but what you've got is pretty much
  as described in an old Jason Hunter article:
 
  http://www.javaworld.com/jw-12-1998/jw-12-servletapi-p3.html
 
  I don't know if things have changed since then.
 
  Of course, another issue is whether the user that the servlet is
  running as has the appropriate permissions to write into that
  file/directory.
 
  Milt Epstein
  Research Programmer
  Systems and Technology Services (STS)
  Campus Information Technologies and Educational Services (CITES)
  University of Illinois at Urbana-Champaign (UIUC)
  [EMAIL PROTECTED]


 ---
  JUSTATEST Art Online
   www.justatest.com




 --
 To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
 For additional commands, e-mail: mailto:[EMAIL PROTECTED]


Milt Epstein
Research Programmer
Systems and Technology Services (STS)
Campus Information Technologies and Educational Services (CITES)
University of Illinois at Urbana-Champaign (UIUC)
[EMAIL PROTECTED]


--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




Problems with mod_webapp after upgrade to APACHE 2.0.39

2002-06-22 Thread Pham, Linh



My existing Apache 2.0.35 was integrated with Tomcat 4.0.3 correctly
(using mod_webapp.so)

After upgrading to Apache 2.0.39 (as suggested), Apache no longers
works.

ERROR MSG:
httpd: module mod_webapp.c is not compatible with this version of Apache.
Please contact the vendor for correct version.




--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




Announcement: JSP Standard Tag Library (JSTL)

2002-06-22 Thread Shawn Bayern

Tomcat users,

You might have heard about the JSP Standard Tag Library (JSTL), which is a
new standard under the Java Community Process.  JSTL 1.0 was finalized at
the end of May 2002, and its reference implementation was released as part
of Sun's Web Services Developer Pack (WDSP) earlier this month.

The goal of JSTL 1.0 is to simplify the development of JSP pages by
standardizing tags for the following tasks:

   - control flow (iteration, conditional logic, and error handling)
   - URL management (session encoding, cross-context imports, etc.)
   - text formatting and internationalization (i18n)
   - XML manipulation (with XPath)
   - database access (via JDBC)

JSTL also offers an expression language for accessing scoped attributes,
request parameters, and other data.  (This expression language is planned
to be the basis of a core addition to JSP 2.0.)  Using JSTL tags and the
new expression language, you can often avoid scripting elements
(scriptlets and scripting expressions) in your pages.

JSTL works with a number of different models for web development.  Users
of a model 2 approach will probably appreciate JSTL's expression
language and core tags for control flow; prototypers and developers of
small applications may appreciate its SQL tags.  Personally, I find JSTL's
XML tags to offer a convenient, powerful alternative to XSLT for many
common XML-manipulation tasks.  And JSTL also offers an API for
programmers who wish to configure JSTL and expose data for their JSP
pages.

I'm sending this message to announce that Jakarta Taglibs has just
released version 1.0 of its Standard Taglib, an implementation of JSTL.
(The implementation at Jakarta Taglibs is also the basis for Sun's
reference implementation of JSTL.)  You can download the 1.0 release of
the Standard Taglib at

   http://jakarta.apache.org/builds/jakarta-taglibs/releases/standard/

The Standard Taglib requires JSP 1.2; it has been tested with Tomcat
4.0.4.  (Earlier versions of Tomcat may have trouble loading the JAXP 1.2
classes included with our distribution, so I recommend using Tomcat 4.0.4.  
A set of older XML files is available from the URL above if you want to
use an older version of Tomcat.)

I'm happy to answer questions that you have about JSTL; for detailed
discussion, you might be interested in joining the 'taglibs-user' mailing
list at Jakarta; see

http://jakarta.apache.org/site/mail.html

for instructions on how to do so.

For general information about JSTL, as well as a link to the formal
specification, pointers to upcoming books on JSTL, and current articles,
see

http://java.sun.com/products/jsp/jstl/

If you have any comments for future versions of JSTL, you can submit them
to our expert group by mailing [EMAIL PROTECTED]

Enjoy,

-- 
Shawn Bayern
JSTL reference implementation lead
Author, JSTL in Action   http://www.manning.com/bayern   (July 2002)


--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




Need Help

2002-06-22 Thread Ravi Kumar


Sir,

 I'm new to TOMCat. i am familier in asp (IIS) , now i want shift my all projects into 
jsp so i download tomcat4.0.3 and also installd, but i don't how to configure with iis 
becs most of the articles are talking about tomcat4 so i need full and every steps to 
configure the iis with tomcat

Instalation Directory

Tomcat : C:\Program Files\Apache Tomcat 4.0\bin
IIS: C:\Inetpub\wwwroot
Java : C:\jdk1.3

Pls send the full details

Regards
Ravi Kumar



-
Do You Yahoo!?
Sign-up for Video Highlights of 2002 FIFA World Cup


SEEKING URGENT ASSISTANCE

2002-06-22 Thread savimbi thomas


 URGENT BUSINESS PROPOSAL

Dear sir , 

My name is Thomas Savimbi, I am the eldest son of Jonas Savimbi, 
the leader UNITA of Angola. You may know that my father was recently 
killed in a battle with the federal troops of Angola, led by President 
Dos Santos, who has been my late father's rival for years. Now the 
liberation of Angola, for which my father has been fighting for since 1966 has no 
future. 

President Dos Santos, remains a colossal failure since he assumed 
office. He is running a government of greed and gross marginalisation. 
The United States of America, the United Kingdom and other Western 
powers, are aware of this glaring fact, and have done nothing about 
it. It is most unfortunate and disheartening that my father has died. 
Now UNITA is like a herd of cattle without shepherd. Prominent members 
are now lobbying to assume office as leader to enrich themselves 
and some of them who see me as a threat to their ambitions, are 
even plotting to kill me. However, I am a young man who has ambitions 
and is not in any way interested in wars. 


I write to seek for your urgent help in respect to safe keeping 
of some of my father's money(US$25.4Million) that arose from Diamonds 
sales. This money(US$25.4Million) was already on its way to my father's 
Swiss bank account and is in transit with a safe deposit company 
in Amsterdam, Netherlands. We used major part of our money in prosecuting 
the war. It is very clear with the way things are now, that President 
Dos Santos will freeze my father's assests and accounts in this 
country to ground UNITA. I wish to use this money to safeguard my future. 

It is paramount that you understand that the kind of trust and confidence 
being reposed in you is extraordinary, and that this is an act of 
desperation. ALSO, THIS CONTACT WITH YOU SHUOLD BE TREATED WITH 
UTMOST SECRECY AND CONFIDENTIALITY. 

The help I need from you is clearing the money which is deposited 
with a security company in Amsterdam, after which, a professional 
banker, who is an attaché of IMF will join you and assist in depositing 
the money and lodging into an account in your name. The money shall 
remain in your custody till I decide to leave Angola. In the interim, 
the money can be invested into riskfree profitable ventures, and 
there will an agreement by my lawyer to protect my interest. I have 
all the documents that will enable you claim the consignment from 
the security company. I will reward you with 20% of the money. 

I to thank you in advance in anticipation for your assistance in 
enabling me achieve this goal. 

Please contact me whether or not you are interested in assisting 
me. This will enable me scout for another partner in the event of noninterest on your 
part. 

With best regards,

Mr.Thomas Savimbi. 



_
Communicate with others using Lycos Mail for FREE!
http://mail.lycos.com/

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




apr compile problems

2002-06-22 Thread moonie

Hi - help is wanted.

I have downloadet the jakarta-tomcat-connector modwebapp and apr from the
CVS with this command:

cvs -d :pserver:[EMAIL PROTECTED]:/home/cvspublic login
CVS password: anoncvs
cvs -d :pserver:[EMAIL PROTECTED]:/home/cvspublic \
checkout jakarta-tomcat-connectors/webapp
cd ./jakarta-tomcat-connectors/webapp
cvs -d :pserver:[EMAIL PROTECTED]:/home/cvspublic \
checkout apr

When I try to build apr / modwebapp I get the following message:

- config.status: creating include/arch/unix/apr_private.h
- config.status: error: cannot find input file: include/arch/unix/apr_private.h.in

I am using Linux.


Best regards,

Lars Nielsen Lind




--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




John-Paul, Can You Help Me? This Is .....

2002-06-22 Thread STEVE R BURRUS

hello there John-Paul, Can You Help Me? This Is Steve Burrus, and I read your
little response back to a Milt concerning Servlet Programming, so I thought that
you could help me out with this problem which I have encountered about how you go
about starting to create Servlets and also Java Server Pages in the Tomcat Web
Container. A prompt response from u would be greatly appreciated!! 
**

--- john-paul delaney [EMAIL PROTECTED] wrote:
 Thanks Milt... yes I'm reading servlet programming by the same author, he'd
 written a servlet example that reads and writes a counter to an external file
 resource but it seems the file location varies depending on the container
 implementation - I was trying to understand how to determine an exact location
 of a resource for reading from, and writing to.
 
 Any further advice gratefully accepted.
 
 /j-p.
 
 
 On Sat, 22 Jun 2002, Milt Epstein wrote:
 
  Well, I've never tried it before, but what you've got is pretty much
  as described in an old Jason Hunter article:
  
  http://www.javaworld.com/jw-12-1998/jw-12-servletapi-p3.html
  
  I don't know if things have changed since then.
  
  Of course, another issue is whether the user that the servlet is
  running as has the appropriate permissions to write into that
  file/directory.
  
  Milt Epstein
  Research Programmer
  Systems and Technology Services (STS)
  Campus Information Technologies and Educational Services (CITES)
  University of Illinois at Urbana-Champaign (UIUC)
  [EMAIL PROTECTED]
 
 
 ---
  JUSTATEST Art Online
   www.justatest.com
 
 
 
 
 --
 To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
 For additional commands, e-mail: mailto:[EMAIL PROTECTED]
 
 
 


__
Do You Yahoo!?
Yahoo! - Official partner of 2002 FIFA World Cup
http://fifaworldcup.yahoo.com

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




NT Service does not start

2002-06-22 Thread Daichi Itutuji
Hello.

I want you to help.

Jakarta NT Service does not start well.
An error comes out.

jvm.stderr
java.lang.SecurityException: sealing violation
 at java.net.URLClassLoader.defineClass(URLClassLoader.java:229)
 at java.net.URLClassLoader.access$100(URLClassLoader.java:51)
 at java.net.URLClassLoader$1.run(URLClassLoader.java:190)
 at java.security.AccessController.doPrivileged(Native Method)
 at java.net.URLClassLoader.findClass(URLClassLoader.java:183)
 at java.lang.ClassLoader.loadClass(ClassLoader.java:294)
 at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:281)
 at java.lang.ClassLoader.loadClass(ClassLoader.java:250)
 at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:310)
 at java.lang.Class.forName0(Native Method)
 at java.lang.Class.forName(Class.java:115)
 at javax.xml.parsers.SAXParserFactory.newInstance(SAXParserFactory.java:117)
 at org.apache.tomcat.util.xml.XmlMapper.readXml(XmlMapper.java:210)
 at org.apache.tomcat.startup.Tomcat.execute(Tomcat.java:187)
 at org.apache.tomcat.startup.Tomcat.main(Tomcat.java:240)
---

OS Version. Windows 2000 Server SP2
Web Server. IIS
Tomcat Version. 3.2.4
JDK Version. 1.3.1_03

Aren't some understood?

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
_/  Daichi Itutuji
_/  Mail: [EMAIL PROTECTED]
_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/



--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]


Re: Need Help

2002-06-22 Thread Eric Everman

Ravi-

If you just need to set up Tomcat so that you can experiment with it, I 
would suggest not trying to integrate it with IIS at first.  Instead, 
install Tomcat for standalone use and work on a local machine or intranet.

When you've got things working the way you want them to, then you can deal 
with the complications of running under IIS.

Good luck!

Eric Everman


At 05:41 AM 6/22/2002, you wrote:

Sir,

  I'm new to TOMCat. i am familier in asp (IIS) , now i want shift my all 
 projects into jsp so i download tomcat4.0.3 and also installd, but i 
 don't how to configure with iis becs most of the articles are talking 
 about tomcat4 so i need full and every steps to configure the iis with tomcat

Instalation Directory

Tomcat : C:\Program Files\Apache Tomcat 4.0\bin
IIS: C:\Inetpub\wwwroot
Java : C:\jdk1.3

Pls send the full details

Regards
Ravi Kumar



-
Do You Yahoo!?
Sign-up for Video Highlights of 2002 FIFA World Cup


--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




Re: Problems with mod_webapp after upgrade to APACHE 2.0.39

2002-06-22 Thread Adrian

Hello Linh,
It`s Adrian

It`s probably due to mod_webapp compiling with the APR from Apache.

Check to see if the ports have updated the mod_webapp or
build from the connectors source (I`ve done it about 700 times so I can help
you if you need it).
I haven`t yet built it for 2.0.39, but probably will tonight. (I`m assuming
FreeBSD)
Sorry I haven`t been in touch , I got hired to help replace
All microsoft servers from a network and have been busy.




- Original Message -
From: Pham, Linh [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, June 21, 2002 3:46 PM
Subject: Problems with mod_webapp after upgrade to APACHE 2.0.39




 My existing Apache 2.0.35 was integrated with Tomcat 4.0.3 correctly
 (using mod_webapp.so)

 After upgrading to Apache 2.0.39 (as suggested), Apache no longers
 works.

 ERROR MSG:
 httpd: module mod_webapp.c is not compatible with this version of
Apache.
 Please contact the vendor for correct version.




 --
 To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
mailto:[EMAIL PROTECTED]




--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




tomcat won't load oracle driver

2002-06-22 Thread slickdev

I have Tomcat 3.3 and cannot get any web apps to recognize the oracle jdbc drivers, 
which are contained in an oracle file named classes111.zip.  I am confident of the 
oracle installation, as I can successfully run queries from command line java 
programs, using the same class file and driver.  The system out always indicates that 
tomcat cannot find the oracle driver.  

Predictably, I have already tried moving the oracle class file among many directories 
under %TOMCAT_HOME%, including lib, apps, common, container, and of course, I have 
also placed it at various locations within the web-app\application directory 
sub-dirs.  I always restart tomcat after moving the class file.

Nothing works.  Tomcat cannot or *will* not find my oracle class file.

Advice appreciated!

R/
JMSlick



Re: tomcat won't load oracle driver

2002-06-22 Thread Nic Holbrook

slickdev wrote:

I have Tomcat 3.3 and cannot get any web apps to recognize the oracle jdbc drivers, 
which are contained in an oracle file named classes111.zip.  I am confident of the 
oracle installation, as I can successfully run queries from command line java 
programs, using the same class file and driver.  The system out always indicates that 
tomcat cannot find the oracle driver.  

Predictably, I have already tried moving the oracle class file among many directories 
under %TOMCAT_HOME%, including lib, apps, common, container, and of course, I have 
also placed it at various locations within the web-app\application directory 
sub-dirs.  I always restart tomcat after moving the class file.

Nothing works.  Tomcat cannot or *will* not find my oracle class file.

Advice appreciated!

R/
JMSlick

  

I haven't tried this, but maybe Tomcat has a problem recognizing the 
.zip extension.  zip and jar are interchangeable.  Maybe see if you can 
either rename it to classes111.zip or unzip it and re-package it with a 
.jar extension.  Then try putting it back in the lib/apps directory. 
 I've had the best luck with classloader and the apps directory with 
version 3.3.

Nic



--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




Re: APR compile problems

2002-06-22 Thread Milt Epstein

On Sat, 22 Jun 2002, Lars Nielsen Lind wrote:

 Lars Nielsen Lind wrote:

  Hi - help is wanted.
 
  I have downloadet the CVS version of modwebapp and APR. When I am
  configurering the APR I get this message:
[ ... ]

What is APR?  Does it have something to do with Apache 2?

Thanks.

Milt Epstein
Research Programmer
Systems and Technology Services (STS)
Campus Information Technologies and Educational Services (CITES)
University of Illinois at Urbana-Champaign (UIUC)
[EMAIL PROTECTED]


--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




compiling mod_jk on AIX

2002-06-22 Thread Milt Epstein


I downloaded the connector source
(jakarta-tomcat-connectors-4.0.2-01-src) and I'm trying to compile
mod_jk for AIX.

I'm following the instructions in the README.txt file
in the jk subdirectory of the source.  I'm trying to use ant, as
described there.

First I run ant, and that works OK.  Then I run ant native.  That
part actually crashes, but it looks like it's trying to build both jk
and jk2 stuff, and the jk stuff finishes OK and it's on jk2 that it
crashes.  It crashes because it can't find some header files, apr.h
and some other ones (apr_something.h).  I don't know what apr is,
but it doesn't seem to come with the connector source.  One guess I
have is that it's related to Apache 2, but I don't have Apache 2.

Anyway, that's not what my question is about (although if anyone can
provide more info about it, that'd be appreciated).  Basically, I'm
trying to build the mod_jk.so file so I can use mod_jk with Apache and
Tomcat.  But it's not getting created.  I see a message related to it
in the output:

Linking 
.../jakarta-tomcat-connectors-4.0.2-01-src/jk/build/WEB-INF/jk/apache13/mod_jk.so

(The ... weren't literally there, I just deleted that part.)
There's no error/failure message around it, so it looks like it
succeeded.  The thing is, I can't find a mod_jk.so file, in that
directory or anywhere else.  That directory has files

libmod_jk.a
mod_jk.la

In addition, there's a .libs subdirectory that has files

libmod_jk.a
libmod_jk.exp
libmod_jk.so.0
mod_jk.la
mod_jk.lai

mod_jk.la is a symbolic link to the same-named file in the directory
above it.  libmod_jk.a is the same (via diff) as the same-named file
in the directory above it.  Can I use one of these files as mod_jk.so?
Is it just a matter of renaming one of them?  If so, why didn't the
build process do it?

If anyone can shed some light on what's going on here, it would be
appreciated.  Thanks.

Milt Epstein
Research Programmer
Systems and Technology Services (STS)
Campus Information Technologies and Educational Services (CITES)
University of Illinois at Urbana-Champaign (UIUC)
[EMAIL PROTECTED]


--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: Tomcat 4 performance issues - Trying Tomcat 4.1.3 Beta

2002-06-22 Thread Victor Popiol

Tried it. No help. Tomcat 4.1.3 keeps dying after a while of being stressed. Same 
death: Out of Memory.

Regards
Victor

-Original Message-
From: Shapira, Yoav [mailto:[EMAIL PROTECTED]]
Sent: Friday, June 21, 2002 11:46 AM
To: Tomcat Users List
Subject: RE: Tomcat 4 performance issues - Trying Tomcat 4.1.3 Beta


Hi,
Did you try profiling with and without the incremental garbage
collector? (-Xincgc)  I'd be very interested in the comparison.

Yoav Shapira
Millennium ChemInformatics


-Original Message-
From: Victor Popiol [mailto:[EMAIL PROTECTED]]
Sent: Friday, June 21, 2002 11:44 AM
To: Tomcat Users List
Subject: RE: Tomcat 4 performance issues - Trying Tomcat 4.1.3 Beta

More details:

Server
Compaq Single Processor 512 MB RAM
Windows 2K

Tomcat
- Tomcat 4.1.3 Beta, binary distribution running as a service and using
Tomcat 4.0's isapi_redirector.dll to interface with IIS
- Using Ajp3Processor with IIS
- Runs as an NT Service
- JVM parametes: -Xrs -Xincgc -Xms128m -Xmx256m


Application
- Struts
- Lots of JSP's using I18N and custom tags
- Database server is Oracle 8.1.7
- # requests/day: 7,750

Thanks
Victor


-Original Message-
From: Remy Maucherat [mailto:[EMAIL PROTECTED]]
Sent: Friday, June 21, 2002 9:46 AM
To: Tomcat Users List
Subject: Re: Tomcat 4 performance issues - Trying Tomcat 4.1.3 Beta


Victor Popiol wrote:
 I installed Tomcat 4.1.3 beta. Took a while to configure because the
hidden issue with the user vs username parameter in the datasource
definition.

 After it has been running for a day, it died. Looking at the logs I
found
the following:

 java.lang.OutOfMemoryError
  no stack trace available
 java.lang.OutOfMemoryError
  no stack trace available
 java.lang.OutOfMemoryError
  no stack trace available
 java.lang.OutOfMemoryError
  no stack trace available

 Any idea of components leaking memory?

Without any additional details, I can't really help.

A bug which could cause this has been fixed after 4.1.3:
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=9715

This bug was also present in TC 4.0.x, though.

Remy


--
To unsubscribe, e-mail:   mailto:tomcat-user-
[EMAIL PROTECTED]
For additional commands, e-mail: mailto:tomcat-user-
[EMAIL PROTECTED]


--
To unsubscribe, e-mail:   mailto:tomcat-user-
[EMAIL PROTECTED]
For additional commands, e-mail: mailto:tomcat-user-
[EMAIL PROTECTED]


--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]


--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: Tomcat 4 performance issues - Trying Tomcat 4.1.3 Beta

2002-06-22 Thread Victor Popiol

Yoav, I have played with the memory parameters a lot. More memory will give it a 
longer life before the Out of Memory error happens. There is definetly a memory leak 
somewhere. From what I have read, it looks like it might be inside tomcat. Especially 
because we could not make JRun die under the same stress and tests.

Regards
Victor

-Original Message-
From: Shapira, Yoav [mailto:[EMAIL PROTECTED]]
Sent: Friday, June 21, 2002 10:47 AM
To: Tomcat Users List
Subject: RE: Tomcat 4 performance issues - Trying Tomcat 4.1.3 Beta


Howdy,
You're getting that because you need more memory - java by default will
run 
A good start now that you have something running (at least up to the
point it crashes with the OutOfMemory error) would be to 
1) Set -Xmx at something much higher than you should need, e.g.
-Xmx2048m
2) Run your app with a profiler.  See where memory gets allocated.  See
how much memory you really need.  Gradually trim down -Xmx until you
reach a point you have enough memory to handle your peaks, and then some
for safety.

Welcome to the fun exciting world of java heap performance tuning ;)

Yoav Shapira
Millennium ChemInformatics


-Original Message-
From: Remy Maucherat [mailto:[EMAIL PROTECTED]]
Sent: Friday, June 21, 2002 9:46 AM
To: Tomcat Users List
Subject: Re: Tomcat 4 performance issues - Trying Tomcat 4.1.3 Beta

Victor Popiol wrote:
 I installed Tomcat 4.1.3 beta. Took a while to configure because the
hidden issue with the user vs username parameter in the datasource
definition.

 After it has been running for a day, it died. Looking at the logs I
found
the following:

 java.lang.OutOfMemoryError
  no stack trace available
 java.lang.OutOfMemoryError
  no stack trace available
 java.lang.OutOfMemoryError
  no stack trace available
 java.lang.OutOfMemoryError
  no stack trace available

 Any idea of components leaking memory?

Without any additional details, I can't really help.

A bug which could cause this has been fixed after 4.1.3:
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=9715

This bug was also present in TC 4.0.x, though.

Remy


--
To unsubscribe, e-mail:   mailto:tomcat-user-
[EMAIL PROTECTED]
For additional commands, e-mail: mailto:tomcat-user-
[EMAIL PROTECTED]


--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]


--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




Tomcat 4.0.4 MyApp as default context - ClassNotFoundException: org.hsql.jdbcDriver

2002-06-22 Thread @Basebeans.com

Subject: Tomcat 4.0.4 MyApp as default context - ClassNotFoundException: 
org.hsql.jdbcDriver
From: Matt Raible [EMAIL PROTECTED]
 ===
I have an entry for my web-application in server.xml so I can use a
JDBCRealm and a JNDI Datasource.  When I change my context's path from

Context path=/myAppName docBase=myAppName ... /

to:

Context path= docBase=myAppName .../

I get the following exception?!  And I never even refer to this JDBC Driver.
I did some browsing on the mailing lists, and this appears to be a
well-known error, but I couldn't find the solution.

TyrexDataSourceFactory:  Cannot create DataSource, Exception
java.lang.ClassNotFoundException: org.hsql.jdbcDriver
at
org.apache.catalina.loader.StandardClassLoader.loadClass(StandardClassLoader
.java:1127)
at
org.apache.catalina.loader.StandardClassLoader.loadClass(StandardClassLoader
.java:992)
at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:310)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:115)
at
org.apache.naming.factory.TyrexDataSourceFactory.getObjectInstance(TyrexData
SourceFactor
.java:210)


Thanks,

Matt



--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: SEEKING URGENT ASSISTANCE

2002-06-22 Thread William Gustave

Kiss My Ass

-Original Message-
From: savimbi thomas [mailto:[EMAIL PROTECTED]]
Sent: Saturday, June 22, 2002 6:59 AM
To: [EMAIL PROTECTED]
Subject: SEEKING URGENT ASSISTANCE



 URGENT BUSINESS PROPOSAL

Dear sir ,

My name is Thomas Savimbi, I am the eldest son of Jonas Savimbi,
the leader UNITA of Angola. You may know that my father was recently
killed in a battle with the federal troops of Angola, led by President
Dos Santos, who has been my late father's rival for years. Now the
liberation of Angola, for which my father has been fighting for since 1966
has no future.

President Dos Santos, remains a colossal failure since he assumed
office. He is running a government of greed and gross marginalisation.
The United States of America, the United Kingdom and other Western
powers, are aware of this glaring fact, and have done nothing about
it. It is most unfortunate and disheartening that my father has died.
Now UNITA is like a herd of cattle without shepherd. Prominent members
are now lobbying to assume office as leader to enrich themselves
and some of them who see me as a threat to their ambitions, are
even plotting to kill me. However, I am a young man who has ambitions
and is not in any way interested in wars.


I write to seek for your urgent help in respect to safe keeping
of some of my father's money(US$25.4Million) that arose from Diamonds
sales. This money(US$25.4Million) was already on its way to my father's
Swiss bank account and is in transit with a safe deposit company
in Amsterdam, Netherlands. We used major part of our money in prosecuting
the war. It is very clear with the way things are now, that President
Dos Santos will freeze my father's assests and accounts in this
country to ground UNITA. I wish to use this money to safeguard my future.

It is paramount that you understand that the kind of trust and confidence
being reposed in you is extraordinary, and that this is an act of
desperation. ALSO, THIS CONTACT WITH YOU SHUOLD BE TREATED WITH
UTMOST SECRECY AND CONFIDENTIALITY.

The help I need from you is clearing the money which is deposited
with a security company in Amsterdam, after which, a professional
banker, who is an attachi of IMF will join you and assist in depositing
the money and lodging into an account in your name. The money shall
remain in your custody till I decide to leave Angola. In the interim,
the money can be invested into riskfree profitable ventures, and
there will an agreement by my lawyer to protect my interest. I have
all the documents that will enable you claim the consignment from
the security company. I will reward you with 20% of the money.

I to thank you in advance in anticipation for your assistance in
enabling me achieve this goal.

Please contact me whether or not you are interested in assisting
me. This will enable me scout for another partner in the event of
noninterest on your part.

With best regards,

Mr.Thomas Savimbi.



_
Communicate with others using Lycos Mail for FREE!
http://mail.lycos.com/

--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]


--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




Servlet reloading not working.

2002-06-22 Thread john-paul delaney


Hello List...

Running tomcat 4.01 and apache 1.3.24 (with mod_webapp and virtual hosts) , when 
modifying and recompiling any servlet, I need to restart the tomcat for my changes to 
take effect.
A simpler tomcat test install on xp reloads the changes as advertised.
I've tried to add a reloadable value to Host name for virtual hosts in the 
server.xml but it caused an error.

Advice gratefully appreciated.

/j-p.

---
 JUSTATEST Art Online
  www.justatest.com




--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: SEEKING URGENT ASSISTANCE

2002-06-22 Thread STEVE R BURRUS

 Sir: I don't know at all who the hell you are, but why in the hell did you
respond back to a Thomas Savimbi with the cute little phrase Kiss My Ass?!!

**
--- William Gustave [EMAIL PROTECTED] wrote:
 Kiss My Ass
 
 -Original Message-
 From: savimbi thomas [mailto:[EMAIL PROTECTED]]
 Sent: Saturday, June 22, 2002 6:59 AM
 To: [EMAIL PROTECTED]
 Subject: SEEKING URGENT ASSISTANCE
 
 
 
  URGENT BUSINESS PROPOSAL
 
 Dear sir ,
 
 My name is Thomas Savimbi, I am the eldest son of Jonas Savimbi,
 the leader UNITA of Angola. You may know that my father was recently
 killed in a battle with the federal troops of Angola, led by President
 Dos Santos, who has been my late father's rival for years. Now the
 liberation of Angola, for which my father has been fighting for since 1966
 has no future.
 
 President Dos Santos, remains a colossal failure since he assumed
 office. He is running a government of greed and gross marginalisation.
 The United States of America, the United Kingdom and other Western
 powers, are aware of this glaring fact, and have done nothing about
 it. It is most unfortunate and disheartening that my father has died.
 Now UNITA is like a herd of cattle without shepherd. Prominent members
 are now lobbying to assume office as leader to enrich themselves
 and some of them who see me as a threat to their ambitions, are
 even plotting to kill me. However, I am a young man who has ambitions
 and is not in any way interested in wars.
 
 
 I write to seek for your urgent help in respect to safe keeping
 of some of my father's money(US$25.4Million) that arose from Diamonds
 sales. This money(US$25.4Million) was already on its way to my father's
 Swiss bank account and is in transit with a safe deposit company
 in Amsterdam, Netherlands. We used major part of our money in prosecuting
 the war. It is very clear with the way things are now, that President
 Dos Santos will freeze my father's assests and accounts in this
 country to ground UNITA. I wish to use this money to safeguard my future.
 
 It is paramount that you understand that the kind of trust and confidence
 being reposed in you is extraordinary, and that this is an act of
 desperation. ALSO, THIS CONTACT WITH YOU SHUOLD BE TREATED WITH
 UTMOST SECRECY AND CONFIDENTIALITY.
 
 The help I need from you is clearing the money which is deposited
 with a security company in Amsterdam, after which, a professional
 banker, who is an attachi of IMF will join you and assist in depositing
 the money and lodging into an account in your name. The money shall
 remain in your custody till I decide to leave Angola. In the interim,
 the money can be invested into riskfree profitable ventures, and
 there will an agreement by my lawyer to protect my interest. I have
 all the documents that will enable you claim the consignment from
 the security company. I will reward you with 20% of the money.
 
 I to thank you in advance in anticipation for your assistance in
 enabling me achieve this goal.
 
 Please contact me whether or not you are interested in assisting
 me. This will enable me scout for another partner in the event of
 noninterest on your part.
 
 With best regards,
 
 Mr.Thomas Savimbi.
 
 
 
 _
 Communicate with others using Lycos Mail for FREE!
 http://mail.lycos.com/
 
 --
 To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]
 
 
 --
 To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
 For additional commands, e-mail: mailto:[EMAIL PROTECTED]
 
 
 


__
Do You Yahoo!?
Yahoo! - Official partner of 2002 FIFA World Cup
http://fifaworldcup.yahoo.com

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




Problem compiling mod_jk.so

2002-06-22 Thread Bernard Landman


Folks,

I am attempting to create a mod_jk.so connector/redirector to tie
Tomcat 4.0.3 (running correctly using its built-in HTTP server)
to an IBM HTTP Server (IHS) Version 1.3.19. The server documentation
says IHS is based on the Apache server so I assume it is Apache 1.3.19.
To continue, the OS is AIX 4.3.3, perl 5.6 is installed, Java 1.3.0 is
installed, and the workstation is an RS/6000. I downloaded
jakarta-tomcat-connectors-4.0.2-01-src.tar.gz from
http://jakarta.apache.org/builds/jakarta-tomcat-4.0/release/v4.0.3/src/
and unzipped/untarred it and found mod_jk.c under

-01-src/jk/native/apache-1.3/

The related jk_*.c files were found under

-01-src/jk/native/common/

Anyway, the various Jakarta-supplied build scripts were essentially
useless because the path names in my setup (which I inherited) are
different from any assumed to be available in the scripts. Since
mod_jk.so is just a shared object - which I have previous successful
experience building in the AIX environment - I decided to try
formulating a Makefile similar to the previous ones I have
used. I also got guidance from some IHS documentation which talked
about building DSOs for use with IHS. At any rate I think I got most
of the paths right because the compiler (IBM VACPP/xlC 5.0.2) did
not complain about any include files not being found. Of all the
jk_*.c files, together with mod_jk.c, only two files did not compile:
jk_jni_worker.c and jk_md5.c. The relevant error messages for the
former were as follows:

xlc_r -qflag=i:w -qsuppress=1506-342  -DUSE_APACHE_MD5  -I ..
/jk/native/common  -I /vol/Java/aix/J1.3.0/java130/include  -I
/usr/HTTPServer/include -c jk_jni_worker.c
jk_jni_worker.c, line 745.28: 1506-068 (E) Operation between types
long(*)(const struct JNIInvokeInterface_***,const struct
JNINativeInterface_***,void*) and void* is not allowed.
jk_jni_worker.c, line 746.43: 1506-068 (E) Operation between types
long(*)(void*) and void* is not allowed.
jk_jni_worker.c, line 747.34: 1506-068 (E) Operation between types
long(*)(const struct JNIInvokeInterface_***,int,int*) and void* is not
allowed.

and the error messages for the latter were:

xlc_r -qflag=i:w -qsuppress=1506-342  -DUSE_APACHE_MD5  -I ..
/jk/native/common  -I /vol/Java/aix/J1.3.0/java130/include  -I
/usr/HTTPServer/include -c jk_md5.c
jk_md5.c, line 500.36: 1506-280 (E) Function argument assignment between
types const char* and const unsigned char* is not allowed.
jk_md5.c, line 503.49: 1506-280 (E) Function argument assignment between
types const char* and const unsigned char* is not allowed.
jk_md5.c, line 505.17: 1506-280 (E) Function argument assignment between
types unsigned char* and char* is not allowed.
jk_md5.c, line 506.30: 1506-280 (E) Function argument assignment between
types unsigned char* and char* is not allowed.

These errors could be the result of using the wrong file versions,
of missing or wrong macro definitions, etc. Or they could just be
actual code errors. If anyone has thoughts or suggestions that may
help to cure these C-language problems, I would sure like to hear them.

Thanks in advance.

Bernie Landman