RE: Tomcat 3.3, server.xml and a lot of fun

2001-12-05 Thread Jim Cheesman
At 06:02 AM 05/12/01, you wrote: You're only jealous cos the little penguins are talking to me. So, any insight on the little penguins? I've given up on discussing Tomcat. I assume he's referring to the little penguin that is the Linux mascot... I think it's what is technically known as a

Re: webroot folder different than web app folder. possible?

2001-12-05 Thread Craig R. McClanahan
On Wed, 5 Dec 2001, amol wrote: Date: Wed, 5 Dec 2001 13:12:58 +0530 From: amol [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: webroot folder different than web app folder. possible? I have got the following folder

Re: Tomcat 3.3, server.xml and a lot of fun

2001-12-05 Thread Nikola Milutinovic
You're only jealous cos the little penguins are talking to me. So, any insight on the little penguins? I've given up on discussing Tomcat. I assume he's referring to the little penguin that is the Linux mascot... I think it's what is technically known as a joke - a

SSL problem

2001-12-05 Thread Rams
Hi, l've a problem regarding SSL. l'm using Tomcat 3.2 server. Different clients'll be contacting this server thinking as if they are contacting their respective merchant sites, wherein all sites' server certs are stored in the same Tomcat server in different

Tomcat creates a file called startup.log

2001-12-05 Thread Hitchman, Peter
Hi, We are running tomcat on Solaris 8. When it runs it creates a file called startup.log, but I cannot find any reference to this in the documentation. It appears to contain errors compiling JSPs and writes to stdout left in the java code. Please does anyone know where the creation/placement of

AW: Tomcat creates a file called startup.log

2001-12-05 Thread Ralph Einfeldt
It is defined in the shell script that starts tomcat. -Ursprüngliche Nachricht- Von: Hitchman, Peter [mailto:[EMAIL PROTECTED]] Gesendet: Mittwoch, 5. Dezember 2001 10:02 An: 'Tomcat Users List' Betreff: Tomcat creates a file called startup.log Hi, We are running tomcat on

Re: webroot folder different than web app folder. possible?

2001-12-05 Thread amol
It *must* be WEB-INF (all upper case) yeah..it *is* WEB-INF. dont take the lower case in the mail soo seriously. i have typed all that manually. -:) any comments on the *real* problem? the stuff is working peacefully right now on tomcat. i am new to tomcat/apache and even this web apps

Configuring tomcat4 to run as a WinNT Service

2001-12-05 Thread Amine AMAR
Hello, I'm runnig tomcat V4.0 under Win2000. It runs perfectly from the command line. I was used to the jk_nt_service.exe utility for tomcat 3.2.4. it seems that it no longer exists for tomcat 4 and was replaced by %tomcat_home%\bin\tomcat.exe. I tried to use the following command to install

Setup problem on Tomcat 4.0 and Java2 SDK v1.4 (XML Parser)

2001-12-05 Thread Wong, Ken LY
Title: Setup problem on Tomcat 4.0 and Java2 SDK v1.4 (XML Parser) Dear all, I'm now trying to setup a Tomcat 4.0 which co-operate with Java2SDK v1.4. My requirment is that, I need to use XML parser (JAXP), but due to lack of document support, I can't have it works properly. Could anyone

Tomcat Compilation

2001-12-05 Thread Laurent Michenaud
Hi, I've compiled Tomcat 3.3. Quite easy, with the options debug=false and optimize=true Do we get better performance compiling Tomcat ? Are there any other flags to increase the optimization level ? Michenaud Laurent - Adeuza - [ Développeur Web - Administrateur Réseau ] -- To unsubscribe:

Re: Configuring tomcat4 to run as a WinNT Service

2001-12-05 Thread amol
check out http://www.alexandriasc.com/software/JavaService - Original Message - From: Amine AMAR [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, December 05, 2001 3:08 PM Subject: Configuring tomcat4 to run as a WinNT Service Hello, I'm runnig tomcat V4.0 under Win2000. It

% in url

2001-12-05 Thread Laurent Michenaud
When i want to get a parameter from an url and the parameter value is %, the getParameter(variablename) in my jsp page returns null. It was working with Tomcat-3.2.3 but not with Tomcat-3.3. It got that in my server.xml : DecodeInterceptor useSessionEncoding=true

Character Encoding problems 2

2001-12-05 Thread Nikola Milutinovic
Hi all. It's me again and troubles are not resolved. I've created a simple test servlet: import javax.servlet.*; import java.io.*; public class TestServlet extends GenericServlet { private static final String testText = \uC5A0 \uC5A1 \uC486

configuring a DB connection pooling for Oracle on Tomcat4

2001-12-05 Thread Amine AMAR
Hi, I need to use a database connection pooling for Oracle 817 with tomcat 4. I made all the configuration described in the documentation, but it still does not work. I went thru the docs again and understood that tomcat 4 can use only tyrex DBs thru default configuration, and that i need to

Re: Character Encoding problems 2

2001-12-05 Thread Gregor Kovac(
Hi! I have had similar problem with Cp1250 encoding(Tomcat and MySQL). You have to have in mind this was not done on Tomcat 4.x, but 3.x. This is what I have done: - %@page contentType=text/html; charset=windows-1250% on top of every JSP file - default_character_set=latin2 in my.cnf - created

RE: HTML under mod_jk

2001-12-05 Thread Larry Isaacs
You have the choice of starting with the simple approach to get things working, which is to map all requests for a webapp to Tomcat. This is the approach used in Tomcat 3.3 for the default auto-generated mod_jk.conf. It is accomplished using configuration lines like: JkMount /myapp ajpxx

RE: HTTP method POST is not supported by this URL

2001-12-05 Thread Jim Urban
Thanks, for taking the time to investigate this. It would be nice if somehow Tomcat could be made to be immune to such application errors. Jim -Original Message- From: Bo Xu [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 04, 2001 5:41 PM To: Tomcat Users List Subject: Re: HTTP

Re: Tomcat 3.3, server.xml and a lot of fun

2001-12-05 Thread Tom Oinn
java programmer wrote: snip webapps should never have made it into the spec. Name three well known web sites running in a mass virtual hosted environment and deployed as webapps with a web.xml file to boot ! Hell, name *any*. /snip Hi, We're the main european hub for bioinformatics

Re: Character Encoding problems 2

2001-12-05 Thread Nikola Milutinovic
I have had similar problem with Cp1250 encoding(Tomcat and MySQL). You have to have in mind this was not done on Tomcat 4.x, but 3.x. This is what I have done: - %@page contentType=text/html; charset=windows-1250% on top of every JSP file I don't think that is a correct character

Timestamps in isapi.log??

2001-12-05 Thread Hawkins, Keith (Keith)
Is there any way to get timestamps in the isapi.log file that is written by the isapi_redirector ?? Thanks, Keith

Re: Character Encoding problems 2

2001-12-05 Thread Martin Fekete
i got some problems with encoding too ... but there was problem when i submit data from forms (page was in cp1250 submited data were iso-8859-?) ... when i submited and writed to DB characters was wrong ... solution was to add filter which sets encoding of each request ... more here ..

RE: Tomcat 3.3, server.xml and a lot of fun

2001-12-05 Thread Justin Rowles
webapps should never have made it into the spec. Name three well known web sites running in a mass virtual hosted environment and deployed as webapps with a web.xml file to boot ! Hell, name *any*. We're the main european hub for bioinformatics research and resources, the fact that

Controlling size of isapi.log

2001-12-05 Thread Hawkins, Keith (Keith)
Left unattended, the isapi.log can grow quite large. Are there any means of controlling its size? Thanks, Keith

RE: Config Problem : VirtualHost, mod_rewrite and mod_jk

2001-12-05 Thread Larry Isaacs
Hi Geir, Concerning mod_rewrite, there was a lot of discussion about what mod_jk should do about the Servlet 2.2's requirement that HttpServletRequest.getRequestURI() return a URI that *remains* encoded. So that it *remains* encoded, the mod_jk in Tomcat 3.2.3 forwards the unparsed request to

RE: Tomcat 3.3 apache configuration

2001-12-05 Thread Larry Isaacs
Does have the servlets. class file(jar files) in apache doc root literally mean putting jar files in Apache's DocumentRoot directory? Or, does it mean you want to turn Apache's DocumentRoot into a web application so it can serve servlets and JSP? Cheers, Larry -Original Message-

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

2001-12-05 Thread yilmaz
hi Gabriel, i was having a similar proble a few months ago with big5 characters now it works properly and perfectly. first of all, my experience is that it depends on OS's default charset. my configuration is like this: at the top of the page i set charset with: %@ page contentType=text/html;

RE: HTTP method POST is not supported by this URL

2001-12-05 Thread Larry Isaacs
You could check to see if the ServletRequest is a HttpServletRequest and do a cast if necessary. However, I would guess most using GenericServlet probably don't bother with the HTTP method, as you suggest. The advantage of using the HttpServlet is that you get some automated http handling, such

Re: Problem with Bean

2001-12-05 Thread Charles Webber
Hi, I am working on a jsp and a bean class that I can't seem to make work and the errors I get from Tomcat are less than helpful. I'll include the source and error messages later. What I am attempting to accomplish is to write a single jsp that auto-refreshes. Each time that the page refreshes

RE: Tomcat Compilation

2001-12-05 Thread Larry Isaacs
I'm not aware of any additional flags. Also, I'm not certain that optimize=true has any impact. Cheers, Larry -Original Message- From: Laurent Michenaud [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 05, 2001 4:54 AM To: [EMAIL PROTECTED] Subject: Tomcat Compilation Hi,

Certificate authentication in Tomcat 3.2

2001-12-05 Thread Maciej Ko³odziej
Hi, What do I have to do to enable user certificate authentication in my application? I added: login-config auth-methodCLIENT-CERT/auth-method /login-config to my web.xml but it still doesn't ask me for the cert. The same is when I try to user BASIC or any other method. -- Best

RE: Tomcat 3.3 apache configuration

2001-12-05 Thread anil soleti
Hi Larry, yes,i would like to turn Apache's DocumentRoot into a web application for servlets and JSP. Regards, vis --- Larry Isaacs [EMAIL PROTECTED] wrote: Does have the servlets. class file(jar files) in apache doc root literally mean putting jar files in Apache's DocumentRoot

RE: % in url

2001-12-05 Thread Larry Isaacs
The '%' in a URL would need to be escaped, i.e.: http://localhost:8080/servlet/SnoopServlet?parm=%25 It is a bug in Tomcat 3.2.3 that http://localhost:8080/servlet/SnoopServlet?parm=% works. Unfortunately this URL throws an exception in Tomcat 3.3. I'll try to fix this for Tomcat 3.3.1.

Excluding JkMounts in Tomcat 3.x ?

2001-12-05 Thread Gary Lawrence Murphy
Is there any way to _exclude_ JkMounts? I have a servlet that responds to the base directory; in web.xml I have servlet-mapping servlet-namesportpage/servlet-name url-pattern//url-pattern /servlet-mapping so all requests to this path should invoke the servlet ...

ftp server crash running tomcat 4 with iis

2001-12-05 Thread Katherine Fraser
hi, all- i'm trying to get tomcat 4.0.1 working on my w2k server running iis 5.0. i have followed the directions found at http://www.vacodi.com/howto/tomcat/iisnt/index.html using jdk 1.3.1_01 and the isapi_redirector.dll (10/25/01) and tomcat is running fine, i.e., i can go to

server.xml - Part II

2001-12-05 Thread java programmer
First off, I'd like to reply to an earlier post and the I'll talk about a weird finding regarding server.xml with Tomcat 3.3 on Linux 2.4.x with Java 1.3.x. We're the main european hub for bioinformatics research and resources, the fact that webapps exist and can be packaged is incredibly

RE: Certificate authentication in Tomcat 3.2

2001-12-05 Thread Larry Isaacs
Tomcat 3.2.x and Tomcat 3.3 support only BASIC and FORM for auth-method. You would need to upgrade to Tomcat 4.x to get support for DIGEST and CLIENT-CERT. Cheers, Larry -Original Message- From: Maciej Ko³odziej [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 05, 2001 9:42 AM

Config problems with Warp and WebAppDeploy

2001-12-05 Thread Cross Fire Labs B.A. Lambrechts
Hi - Thanks in advance for your help on this. I am going CRAZY with this. setup up Apache and Tomcat as described in documentation. Tomcat v. 4.0.1 and Apache 1.3.22 on Sun Solaris 8 - using mod_webapp.so httpd.conf: When I insert the WebAppDeploy outside of the Virtual Host I get a

Re: Config problems with Warp and WebAppDeploy

2001-12-05 Thread Roman Schlueter
Hello, you can fix the problem 'Invalid Virtual...' if you enable the directive ServerName global. Your configuration in the section Virtual Host works fine because there is set the Server name 'ServerName 0.0.0.0'. Enable and assign this directive outside from each 'Virtual Host' section and

Tomcat 3.2.2 HTTP 500 error message

2001-12-05 Thread Pieters, Marina
Our company has a web application created by Java servlets; and this application runs on the Apache/Tomcat server (Sun). Since July 2001, the server was down with the HTTP 500 error message about 12 times. Each time, we have to restart Tomcat; but lately, this problem occurs more frequently.

Apache + Tomcat mod_webapp.so Does anyone have a solution?

2001-12-05 Thread JStanczak
Does anyone have a solution for using the mod_webapp.so to connect Apache and Tomcat on a Solaris 8 machine? I have a Solaris 8 Sparc and I've installed Tomcat 4.0 and Apache 1.3.22. I'm trying to use the mod_webapp.so to connect the two together. When I run the /apachectl configtest it comes up

Re: Config problems with Warp and WebAppDeploy

2001-12-05 Thread Cross Fire Labs B.A. Lambrechts
You're right - that fixed the WebAppDeploy syntax error - but still getting the Warp errors.still got something configured wrong in httpd.conf Anybody got any ideas? Beth Anne Lambrechts Cross Fire Labs, Inc. e-mail: [EMAIL PROTECTED] Phone/Fax: 703-724-9210 From: Roman Schlueter

Re: Apache + Tomcat mod_webapp.so Does anyone have a solution?

2001-12-05 Thread Cross Fire Labs B.A. Lambrechts
Have you copied mod_webapp.so into the apache/libexec directory? Beth Anne Lambrechts Cross Fire Labs, Inc. e-mail: [EMAIL PROTECTED] Phone/Fax: 703-724-9210 From: [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Apache + Tomcat mod_webapp.so

Re: Apache + Tomcat mod_webapp.so Does anyone have a solution?

2001-12-05 Thread JStanczak
Yes. Thank You, Justin A. Stanczak Web Manager Shake Learning Resource Center Vincennes University (812)888-5813 Cross Fire Labs

Re: Apache + Tomcat mod_webapp.so Does anyone have a solution?

2001-12-05 Thread Cross Fire Labs B.A. Lambrechts
Ok - well I am using Solaris 8 as well and I did not have to compile the mod_webapp.so at all - downloaded a tar file: webapp_module-1.0-tc40.tar and when I extracted it from the tar file - the mod_webapp.so was there so I just copied that one into the libexec directory. Beth Anne

EJB's

2001-12-05 Thread Alejandro Arredondo
Is it possible to deploy EJB's with tomcat? if it is possible how can I configure it to run EJB's? Thanks in advance _ Free E-mail --- http://letodesigns.mail.everyone.net Letodesigns Programming Free e-mail 6MB limit

Re: Apache + Tomcat mod_webapp.so Does anyone have a solution?

2001-12-05 Thread Roman Schlueter
Hello, please can you explain your warp problems explicitely. Ciao, Roman Cross Fire Labs B.A. Lambrechts wrote: Ok - well I am using Solaris 8 as well and I did not have to compile the mod_webapp.so at all - downloaded a tar file: webapp_module-1.0-tc40.tar and when I extracted it

Re: EJB's

2001-12-05 Thread jam100
I have been doing some work on server configuration and so I ran accross EJBs. In Tomcat 4.0 they are on the Context statement in the server.xml file. I do not work for Apache so I can not tell you if they existed prior to 4.0. Michael - Original Message - From: Alejandro Arredondo

Server Configuration

2001-12-05 Thread jam100
I have a couple of questions on server configuration. I have successfully set up a second host on my server. But I am having a problem with context paths underneath that host. The contexts seems to be pulling up an index.jsp from the last directory I was in, instead of pulling it up from its

Re: EJB's

2001-12-05 Thread Diarmuid ODwyer
No you have to use an EJB server such as JBoss (www.jboss.org), Sybase EAServer, J2EE Server, Weblogic, Websphere or Silverstream. JBoss is open source. There's a free 5 user developer license for EAServer and and J2EE is free as well from java.sun.com. Regards, DOD Alejandro Arredondo wrote:

Re: Apache + Tomcat mod_webapp.so Does anyone have a solution?

2001-12-05 Thread JStanczak
That's exactly what I did. I installed Apache, Tomcat and untared the mod_webapp.so. Then I edited the httpd.conf to add the two lines LoadModule and AddModule. I even tried it with just LoadModule and still got the same results. The reason I talked about the compiler is because someone

Re: Apache + Tomcat mod_webapp.so Does anyone have a solution?

2001-12-05 Thread Cross Fire Labs B.A. Lambrechts
Ok - Apache 1.3.22 with mod_ssl with Tomcat 4.0.1 with mod_webapp.so With the directives WebAppConnection warpConnection warp localhost:8008 WebAppDeploy bmi warpConnection /bmi included in the httpd.conf file. Start Tomcat then Apache. Run netscape and select the https site for the first

Re: Apache + Tomcat mod_webapp.so Does anyone have a solution?

2001-12-05 Thread Cross Fire Labs B.A. Lambrechts
Well - when all else fails I reinstall - I presume that you have the WebAppConnection and WebAppDeploy directives included in the httpd.conf as well? Beth Anne Lambrechts Cross Fire Labs, Inc. e-mail: [EMAIL PROTECTED] Phone/Fax: 703-724-9210 From: [EMAIL PROTECTED] Reply-To: Tomcat Users

Re: Apache + Tomcat mod_webapp.so Does anyone have a solution?

2001-12-05 Thread JStanczak
Not fully. I've only got to the /apachectl configtest stage. Then I get this error. Is there more I need to do? I was just following the directions that came with it. I'm thinking about just scraping Apache and using Tomcat to do what little html I'll need. Or maybe just go with something like

RE: JBoss + Tomcat running independently

2001-12-05 Thread Karl Oie
i have managed to run jboss+tomcat4+cocoon2 without problems, please read this: http://marc.theaimsgroup.com/?l=xml-cocoon-usersm=100279830403134w=2 mvh karl oie -Original Message- From: DOD [mailto:[EMAIL PROTECTED]] Sent: 5. desember 2001 17:37 To: [EMAIL PROTECTED]; [EMAIL

Re: Apache Tomcat 4.0.1

2001-12-05 Thread David Smith
Try using wild cards to limit what JkMount sends to TC (ie: *.jsp instead of *) and then use an alias in httpd.conf to your web app's directory. You'll have to use a Directory config setting to deny all from accessing WEB-INF. Goes something like (in httpd.conf): # Send all requests for

Deeply stuck - SuSE

2001-12-05 Thread Tim Pizey
Hi, I have been a happy RedHat user for a while, but have moved to SuSE 7.2. Whilst SuSE uses rpm it wraps it in YaST2, also the init.d stuff is SuSE specific and incomprehensible. I find I have successfully installed tomcat 3.???, almost by accident, but whilst the Tomcat 4 rpm is

IIS 5 Tomcat Configuration

2001-12-05 Thread Lybarger, Mark E.
I've hit a snag setting up tomcat 4.0.1 and iis 5.0. I followed the directions for Tomcat 3.3 and also used the following guide: http://members.ozemail.com.au/~lampante/howto/tomcat/iisnt/index.html Tomcat works fine using port 8080 on localhost. IIS integration works fine. I can use

RE: Need the 1,2,3 of JDBC realm (plz)

2001-12-05 Thread Miao, Franco CAWS:EX
1. try to put .jar files in \common\lib 2. directly put connectionURL=jdbc:as400://192.168.12.240/;libraries=itso?user=myuser;passw ord=mypwd in your Jsp code, that should works, not sure if you need to put port number in your code, like 1433 for SQL server. my code sample: // Loading

Re: Apache + Tomcat mod_webapp.so Does anyone have a solution?

2001-12-05 Thread Cross Fire Labs B.A. Lambrechts
Did you use the mod_webapp.so out of the eapi directory under the extracted tar? That is the one I used. Beth Anne Lambrechts Cross Fire Labs, Inc. e-mail: [EMAIL PROTECTED] Phone/Fax: 703-724-9210 From: [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List

Re: Apache + Tomcat mod_webapp.so Does anyone have a solution?

2001-12-05 Thread Roman Schlueter
Hello, I donn't know this error output, sorry. I have used a nightly version of mod_webapp.so and compiled by myself. Sources are at 'http://nagoya.apache.org/~pier/'. I don't know if you can use these for Solaris. I have compiled this module and so it works fine. Bye, Roman Cross Fire Labs

Re: Apache + Tomcat mod_webapp.so Does anyone have a solution?

2001-12-05 Thread Kerry_Boguszewski
Try this export LD_PRELOAD = /someplace_on_your_system/.../libgcc.so and subsequently apachectl configtest [EMAIL PROTECTED] 12/05/2001 12:08 PM Please respond to Tomcat Users List To: Tomcat Users List [EMAIL PROTECTED] cc: Subject:Re: Apache +

Re: Config problems with Warp and WebAppDeploy

2001-12-05 Thread Cross Fire Labs B.A. Lambrechts
Ok - try again to see if anyone has an idea Apache 1.3.22 with mod_ssl with Tomcat 4.0.1 with mod_webapp.so With the directives WebAppConnection warpConnection warp localhost:8008 WebAppDeploy bmi warpConnection /bmi included in the httpd.conf file. Start Tomcat then Apache. Run

Re: Apache + Tomcat mod_webapp.so Does anyone have a solution?

2001-12-05 Thread JStanczak
No I didn't use that one. I think I used that one before. I just tried with that one and it did you same thing. Thank You, Justin A. Stanczak Web Manager Shake Learning Resource Center Vincennes University (812)888-5813

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: IIS 5 Tomcat Configuration

2001-12-05 Thread Katherine Fraser
did you add the directory to your uriworkermap.properties file? now that the jsp files are in the root directory of your web server (since the root directory is /examples) you'll have to add /*.jsp=ajp13 -- or /*.jsp=default.worker -- to your list of sites to be redirected. -katherine

Re: Apache + Tomcat mod_webapp.so Does anyone have a solution?

2001-12-05 Thread JStanczak
I don't have the libgcc.so, I have the libgcc_s.so so I used it instead. When I used that variable now the message says: Syntax error on line 238 of /usr/local/apache/conf/httpd.conf: Cannot load /usr/local/apache/libexec/mod_webapp.so into server: ld.so.1: /usr/local/apache/bin/httpd: fatal:

Re: Apache + Tomcat mod_webapp.so Does anyone have a solution?

2001-12-05 Thread JStanczak
I just tried it again and this is what I get: # ./apachectl configtest Syntax error on line 238 of /usr/local/apache/conf/httpd.conf: Cannot load /usr/local/apache/libexec/mod_webapp.so into server: ld.so.1: /usr/local/apache/bin/httpd: fatal: relocation error: file

RE: Problem with Bean

2001-12-05 Thread Larry Isaacs
I'm not aware that a servlet container, such as Tomcat, makes any guarantee's about what: curDir = new File(images); is going to be relative too. As a result,: filenames = curDir.list(); results in an empty array. You might use: application.getRealPath(/images); to get a full

RE: IIS 5 Tomcat Configuration

2001-12-05 Thread Larry Isaacs
Which node was the isapi_redirect.dll filter added. If added to just a web site, remove it and add it to the computer node so it applies to all web sites. I assume this will make a difference, though I have not yet actually tried it. Cheers, Larry -Original Message- From: Lybarger,

Configure md_jk in http.conf

2001-12-05 Thread Lauer, Oliver
Hi all, although I've done the following in http.conf for mod_jk: JkMount /examples/*.jsp ajp13 I can even read *.html and *.gifs. Does somebody know why and what I've to do to prohibit that ? Thanx Oliver AXA eSolutions GmbH AXA Konzern AG Germany Oliver Lauer Web Architect

RE: IIS 5 Tomcat Configuration

2001-12-05 Thread Lybarger, Mark E.
I tried Katherine's advice, in another post, and am getting a little further (THANKS!). I'm now seeing a Tomcat 404 error thrown for jakarta/isapi_reirect.dll when asking for any page. Nice to see errors from tomcat, that shows that IIS is giving up the pages. The isapi_redirect filter is on

can not get EJB object

2001-12-05 Thread Ginger Huangfu
Hello all, I am trying to get a reference to an EJB object from a JSP using Tomcat4.0.1 and Inprise Application Server, but I got NamingException: Can not create resource instance (1) I define the following ejb reference in the web.xml file: ejb-ref

Re: 4.0.1 blowing up

2001-12-05 Thread Steve Howie
Howdo, After a bit of digging on the web, I got the problem solved by upgrading the Java SDK version on our server. I was running JSDK 1.2.1 and upgraded it to 1.3.1 and the problem went away. Kinda strange, though, that Tomcat 4.0 was fine and Tomcat 4.0.1 died on startup. Any ideas anyone?

Socket Write Error

2001-12-05 Thread Ravindra K. Bhat
Hi: When I load a particular HTML Page I get a meessage: Connection Aborted by peer: socket write error Any info will be appreciated. Thank you. -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto:[EMAIL PROTECTED]

test

2001-12-05 Thread Cross Fire Labs B.A. Lambrechts
test _ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto:[EMAIL PROTECTED]

RE: IIS 5 Tomcat Configuration

2001-12-05 Thread Larry Isaacs
If you see jakarta/isapi_redirect.dll being requested as if it were a page, it means that isapi_redirect.dll is being called recursively. It may only be used as a filter once for it to work correctly. I don't have time to actually test the following right now, but you are welcome to try these.

JDBCRealm and authentication - interesting problem!?

2001-12-05 Thread Cross Fire Labs B.A. Lambrechts
Here's an intersting one: Have followed all docs and advice from this list and still can't get dialog box to pop for username/password. No errors anywhere and debug says that BASIC authentication has been configured. Server.xml looks like this: Server port=8008 shutdown=SHUTDOWN debug=0 !--

Parameter tag nested within include action tag

2001-12-05 Thread julien-martin
Hello, I have two server pages include01.jsp and include02.jsp. One is calling the other one through the include action tag: jsp:include page=Include_Param02.jsp flush=true/ jsp:param name=myVar value=Toto / /jsp:include I am trying to have the second page display the parameter: %=

RE: IIS 5 Tomcat Configuration

2001-12-05 Thread Lybarger, Mark E.
I was able to get the site up and running. Here's what I ended up doing: - put virtual directory Jakarta as per the document, but under my customdomain instead of under the default website. - put the isapi_redirect.dll filter on the customdomain. (both these ultimately caused problems with other

can't run any webapp using JSP, including examples

2001-12-05 Thread Nirmal Rajarathnam
Hi, I use Tomcat 4.0.1 with jdk 1.4 beta 3, tomcat running in a stand-alone mode. I have problems running any webapp using JSPs including examples. Here is the error message geneared. Please let me know if there are any config changes between tomcat 4.0 and tomcat 4.0.1. The url used is

Error message

2001-12-05 Thread Bill Halpin
smime.p7m Description: application/pkcs7-mime

RE: IIS 5 Tomcat Configuration

2001-12-05 Thread Ignacio J. Ortega
It's almost true :) My setup for virtual servers ( not followed th thread completely but may be i can help :) 1) Add the filter *only* to th default configuration.. 2) Add a jakarta virtual dir in every subdomain you want to have tomcat in it.. 3) if you want to to use different log and uw.p

Response Code for Errors

2001-12-05 Thread Manoj Dandge
Hi , I am using tomcat 4 to run the servlets. And I am accessing the servlets using javacode(HttpURLConnection class and its getInputStream, getResponseMessage and getResponseCode) This is working well for existing servlets. But If I try to access servlet with wrong name I should get the

Re: Character Encoding problems

2001-12-05 Thread dimiter
I was in the same situation. But look the attached file and you'll have a way to set any kind of character set. Dimiter NS.zip Description: application/compressed -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list:

newbie Catalina and JBoss classpath question!

2001-12-05 Thread Carl Schwarcz
I'm a student trying to debug a servlet under Catalina (Tomcat 4.0.1) that calls a session bean under JBoss 2.4.3. My servlet dies horribly unable to load (NoClassDefFoundError) javax/ejb/EJBHome which I believe is in jboss-j2ee.jar. The appropriate directory is in my classpath. However by

settings

2001-12-05 Thread Hrushikesh Mukherjee.K
Hi This is Hrushikesh from Mumbai, India. I am a beginner of doing JSP programming. i have installed tomcat for doing jsp programming. for that i need settings in IIS server.with database as mysql server. please let me know what all settings i have to do? Thanking you very much, Best

WebAppDeploy Config Error??

2001-12-05 Thread Lambrechts, Beth Anne
Hi - Thanks in advance for your help on this. I am going CRAZY with this. setup up Apache and Tomcat as described in documentation. Tomcat v. 4.0.1 and Apache 1.3.22 on Sun Solaris 8 httpd.conf: When I insert the WebAppDeploy outside of the Virtual Host I get a syntax error Invalid Virtual

Tomcat 4.0.1: Deploying a servlet

2001-12-05 Thread Michael Buchardt
Hi you all, I tried to deploy a servlet as a part of a web-service via the web.xml file. The relevant content of the web.xml file is some information about two parameters to initialize the web-service, i.e. the name of a file, that is to create within the service and the location where to store

Re: Config problems with Warp and WebAppDeploy

2001-12-05 Thread Kirby Vandivort
I just wanna say thanks also. This is exactly the battle I was facing a few minutes ago and this one solved it for me also. On Wed, Dec 05, 2001 at 04:47:25PM +0100, Roman Schlueter wrote: Hello, you can fix the problem 'Invalid Virtual...' if you enable the directive ServerName global.

Re: Apache + Tomcat mod_webapp.so Does anyone have a solution?

2001-12-05 Thread Kirby Vandivort
Ditto. I did have to use the EAPI version. But bin/apachectl configtest told me about that so it was pretty straightforward. Anyone have a solaris binary of webapp 1.0.1? (1.0.1 is in the 'src' directory under the tomcat release, but no binaries of it have shown up yet) I tried to compile

problems with mod_webapp

2001-12-05 Thread Claus Bitten
Hi, I have a problem like in bug 3509 (http://nagoya.apache.org/bugzilla/show_bug.cgi?id=3509) I have a windows nt server with apache 1.3.22, tomcat 4.0.1, jdk 1.3.1 and mod_webapp. Both (tomcat and apache) work stand alone. But if I use mod_webapp to link apache and tomcat, it fails. Error log

Re: Apache + Tomcat mod_webapp.so Does anyone have a solution?

2001-12-05 Thread Kirby Vandivort
Did you say that you had compiled apache yourself? What parameters did you use when compiling it? I'm wondering if maybe something was set to make everything in apache static without allowing dynamic stuff.. Just a thought.. On Wed, Dec 05, 2001 at 12:08:05PM -0500, [EMAIL PROTECTED] wrote:

Mailing list question

2001-12-05 Thread Kirby Vandivort
Got an obtusely-offtopic question... I can't seem to successfully post a message from my [EMAIL PROTECTED] email account to tomcat-user. However, I can successfully post messages from my yahoo account. My ks.uiuc.edu account seems to be working in all other respects. I can send and

Re: EJB's

2001-12-05 Thread Vincent Stoessel
Diarmuid ODwyer wrote: No you have to use an EJB server such as JBoss (www.jboss.org), Sybase EAServer, J2EE Server, Weblogic, Websphere or Silverstream. JBoss is open source. There's a free 5 user developer license for EAServer and and J2EE is free as well from java.sun.com. Regards,

RE: Exception using Tomcat4.0 Manager

2001-12-05 Thread Mark Saltzman
Just this morning I figured what the problem was. I had my own server.xml file that did not have the manager context defined. The line I put in was (from tomcat4.0.1 final release): Context path=/manager docBase=manager debug=0 privileged=true/ The privileged=true is the

tomcat 4.0.1 / jdk1.3.1 / iis 4 jsp problem

2001-12-05 Thread Jason Ramsey
I have installed jdk 1.3.1 , tomcat 4.0.1 and iis4 (with sp6) on nt4.0 I installed tomcat following these instructions: http://members.ozemail.com.au/~lampante/howto/tomcat/iisnt/index.html Tomcat will work on port 8080 and render the example jsp's. I have set up my virtual directory

RE: EJB's

2001-12-05 Thread Kemp Randy-W18971
There are several EJB servers, and a comparison of price and features can be found at http://www.flashline.com/components/appservermatrix.jsp. However, Jboss is a good, open source, EJB server, and it comes bundled with Tomcat. -Original Message- From: Vincent Stoessel [mailto:[EMAIL

Re: Apache + Tomcat mod_webapp.so Does anyone have a solution?

2001-12-05 Thread JStanczak
No I didn't compile Apache. I'm currently using the binaries from the Apache site. Version 1.3.9. Thank You, Justin A. Stanczak Web Manager Shake Learning Resource Center Vincennes University (812)888-5813

Re: Mailing list question

2001-12-05 Thread JStanczak
Does it return you email saying you don't have permission or something like that? Thank You, Justin A. Stanczak Web Manager Shake Learning Resource Center Vincennes University (812)888-5813

Warp Socket Error

2001-12-05 Thread Cross Fire Labs B.A. Lambrechts
Has anyone ever seen this? 2001-12-05 20:27:10 jsp: init 2001-12-05 20:32:02 [org.apache.catalina.connector.warp.WarpConnector] Error accepting requests java.net.SocketException: Socket closed at java.net.PlainSocketImpl.socketAccept(Native Method) at

  1   2   >