Re: How to use Tomkat with apache.

2001-05-24 Thread sibendud
Hi I think the manuals and docs that comes with Tomcat package is enough for primary installation . For config, consult the .htmls under tomcat_home /docs/uguide/. Best regards Sib [EMAIL PROTECTED] on 05/24/2001 03:10:55 AM Please respond to [EMAIL PROTECTED] To: [EMAIL PROTECTED]

Tomcat Servlets bringing down Win2000 Server

2001-05-24 Thread Jon Gibbs-Smith
We have been running a system of Servlets for some years on both Unix and NT4 platforms. I recently installed Tomcat 3.2.1 on a Win2000 server running IIS5. All appeared fine both on port 8080 and using the isapi_redirect and reading/writing to the sql 2000 database. BUT servlets

Re: Tomcat Servlets bringing down Win2000 Server

2001-05-24 Thread Guido Medina
I had the same with Red Hat Linux 7.1 + Apache 1.3.19 + IBM 1.3 + Tomcat 3.2.1 and seems to be a VERY BIG FUCKIN' BUG in the mod_jk so do u wanna know what I did ?, I changed "back" to mod_jserv... When you find the solution you tell me... Guido. System analyzer/Java leader... -

Which Version of Tomcat Supports Servlet 2.3 Specification?

2001-05-24 Thread karthik g
Thankx Karthik _ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

Re: Which Version of Tomcat Supports Servlet 2.3 Specification?

2001-05-24 Thread Guido Medina
v4.0 dev...but be careful 'cause the version is under development 'cause the specification 2.3 is not final yet...go to http://jakarta.apache.org/tomcat/ and you will get the exact answers... Guido... - Original Message - From: karthik g [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent:

Query

2001-05-24 Thread haneesh
on compiling the attached java file i receive the following error C:\test\changed\loginagain.java:27: cannot resolve symbolsymbol : method setMaxInactiveInterval (int)location: interface javax.servlet.http.HttpSession httpsession.setMaxInactiveInterval(1800); ^1 error advice thanks

Ctx( ): 400 R( /) null error for tomcat

2001-05-24 Thread Barrett, Steven
Tomcat reports the error... Ctx( ): 400 R( /) null When a site is accessed externally as soon as a HTML FORM POST occurs. The POST works perfectly well when the site is accessed internally. The external requests are routed through IIS initially which is setup to do a redirect to TOMCAT

Ctx( ): 400 R( /) null error

2001-05-24 Thread Barrett, Steven
Tomcat reports the error... Ctx( ): 400 R( /) null When a site is accessed externally as soon as a HTML FORM POST occurs. The POST works perfectly well when the site is accessed internally. The external requests are routed through IIS initially which is setup to do a redirect to TOMCAT

RE: Query

2001-05-24 Thread Rams
when l compiled it, error is at line 61..undefined variable 'propernoun'... so declare it.. Rams -Original Message-From: haneesh [mailto:[EMAIL PROTECTED]]Sent: Thursday, May 24, 2001 12:49 PMTo: [EMAIL PROTECTED]Subject: Query on compiling the attached java file i receive the

Re: Multiple requests

2001-05-24 Thread Alex Fernández
You can't but try. Un saludo, Alex. David Oxley wrote: I am not doing the flushBuffer(). But apart from that, that is what I am doing. Will the flushBuffer() prevent the browser from doing its subsequent request. We are using IE5. Dave [EMAIL PROTECTED] -Original Message-

RE: IDE for tomcat

2001-05-24 Thread Martin Spiers
If your employers pockets are deep then JBuilder 4 is pretty good with jsp and servlets. It's well integrated with tomcat (although I'm using apache as the web server) and you can run and debug jsp and servlets within the ide, and get all the nice code completion etc. in jsp files. Unfortunately

Re: JSP Naming Standards ?

2001-05-24 Thread Marco Baringer
On Mon, May 21, 2001 at 09:11:21AM +0100, [EMAIL PROTECTED] wrote: Are there recognised naming standards for JSP's ? If I have a customer login page for Company ABC should I call it. I've gone through almost all of the Java documentation and haven't found anything so I'll go out on a limb

RE: *** Ordinary users can kill the tomcat server? ***

2001-05-24 Thread Cox, Charlie
Title: RE: *** Ordinary users can kill the tomcat server? *** This is definately a problem, but you can minimize this problem by restricting access to port 8007 to the local machine in the server.xml by adding: Parameter name=inet value=127.0.0.1/ Then you can control who has access to

RE: Non http servlet?

2001-05-24 Thread Joel Kozlow
If your goal is to write a servlet that reads and writes XML, then there is a simple way to do that. You can extend HttpServlet and over-ride doPost(...), not doGet(...). Then To Read, parse the params out of the HttpServletRequest as bytes: while (iBytesRead -1) {

RE: Include question...

2001-05-24 Thread Joel Kozlow
Sure it is...just do this... % String sPage = index.jsp; if (myCondition()) { sPage = anotherPage.jsp; } else if (anotherCondition()) { sPage = yetAnother.jsp; } % jsp:include page=%= sPage % flush=true / Hope that helps.

RE: Thread deadlocking in 3.2.2 beta 5?

2001-05-24 Thread Joel - Jakarta List
Hello Marc (and others that have been so kind to help), Here is the rundown on what I have tested: * Running on a Quad Processor NT Enterprise 6 Sp6a * This server is production - fairly static content (w/no recompile) * Verified thread deadlocking behavior on 2 different

XmlMapper Debug level

2001-05-24 Thread egcs12md
Hi all, I use Tomcat 4.0b5, when startup XmlMapper useDebug level 3, when I change server.xml like this: ** Server port="8005" shutdown="SHUTDOWN" debug="0" xmlmapper:debug level="0" / Service

RE: Query

2001-05-24 Thread William Kaufman
It means what it sounds like: the method isn't defined in the version of HttpSession that's on your CLASSPATH. I thinkthat method was added in JSDK 2.1. What version are you compling against? -- Bill K. -Original Message-From: haneesh [mailto:[EMAIL PROTECTED]]Sent:

RE: Changing Tomcats default servlet url?

2001-05-24 Thread William Kaufman
I need the url to not have the 'servlet' in it. Anybody know how to do this? Add a servlet-mapping tag to your web.xml file. The DTD for that file (for JSDK 2.2 / Tomcat 3.2) is available at http://java.sun.com/j2ee/dtds/web-app_2_2.dtd and in the JSDK 2.2 specification. Also, how

RE: Run Tomcat as a NT Service Problem

2001-05-24 Thread Ronald G. Louzon
It sounds like you don't have "xerces.jar" as the first thing on your classpath. To make this the first thing on your classpath: 1) Edit the file %TOMCAT_HOME%\conf\wrapper.properties 2) You see some lines in this file that start with "wrapper.classpath". Before the first of those

RE: How to use Tomkat with apache.

2001-05-24 Thread Christian Rudolph
Doesn't the User Guide only cover Tomcat 3.2 release? I have learned that DTDs are much stricter under Tomcat 4 beta, and it's taking me awhile to get things configured correctly. I have found little to document the DTD changes (I don't count error messages.) If anyone knows of good configuration

HTTPS connections from servlet

2001-05-24 Thread Steven Banks
I am having severe trouble getting my application to access a secure web-server from within one of my servlets. I have installed all the necessary JSSE jar files, set the properties: System.setProperty(java.protocol.handler.pkgs,

RE: Include question...

2001-05-24 Thread Gilles Laborderie
The problem is probably a syntax error such as a forgotten closing } or something like that. This disrupts the rest of the code when the page gets compiled in a servlet resulting in a try not being caught. Double-check the syntax in your jsp code. You can also open the servlet that Tomcat is

Re: Non http servlet?

2001-05-24 Thread D. Jay Newman
OK, I'll try this, but I thought that the HttpConnector expected the HTTP protocol, and I can't use that (for various reasons). This isn't a web project, it's going to be used in a totally different way. I'd rather base this on the Servlet class, which doesn't have the overhead of the

RE: Error message

2001-05-24 Thread Gilles Laborderie
Right-click startup.bat, select properties, select the memory tab, set initial environment to 4096, click OK and try again Gilles -Original Message- From: Steven Loh [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 24, 2001 2:47 AM To: [EMAIL PROTECTED] Subject: Error message

Install problems in FreeBSD 4.2

2001-05-24 Thread Lance Hill
Hi, I recently downloaded and installed jdk1.3.0_02 on a FreeBSD system. I followed the instructions included with the jakarta-tomcat README which indicated that I needed to set an environment variable of JAVA_HOME=/usr/local/jdk1.3.0_02 and add $JAVA_HOME/bin to the PATH. The instructions

Is there A Guide to Setting Up Apache Tomcat on Linux Anywhere on the Web?

2001-05-24 Thread Tom . Hunter
I've been struggling to get Apache Tomcat running on Linux. Can anyone point me to a web-based guide (hopefully PDF) to doing this? Thank you, Tom Hunter

RE: Install problems in FreeBSD 4.2

2001-05-24 Thread Christian Hargraves
You are using the jdk1.3 from Linux on FreeBSD? So then you are running it through the Linux Kernel emulator? Are you trying to compile tomcat from the source? If you have your env variables, it should work fine out of the box. JAVA_HOME, TOMCAT_HOME, and might as well set ANT_HOME as well. I

Tomcat Servlets bringing down Win2000 Server

2001-05-24 Thread Jon Gibbs-Smith
Sorry sent in html earlier - We have been running a system of Servlets for some years on both Unix and NT4 platforms. I recently installed Tomcat 3.2.1 on a Win2000 server running IIS5. All appeared fine both on port 8080 and using the isapi_redirect and reading/writing to the sql 2000

Jikes problem when tomcat is installed into a directory containning blanks

2001-05-24 Thread Zsolt Koppany
Hi, as the subject says, I have problems with jikes when the tomcat installation directory contains blanks. I have tried to fix the problem to store to short name of the installation directory into TOMCAT_HOME but it didn't help? Any ideas what I should do? Because we deliver our software with

RE: Thread deadlocking in 3.2.2 beta 5?

2001-05-24 Thread Marc Saegesser
Joel, Thanks for the information. My test was using Tomcat stand-alone on a dual-processor machine. I'll try to run the test again later today using the ISAPI redirector. -Original Message- From: Joel Kozlow [mailto:[EMAIL PROTECTED]]On Behalf Of Joel - Jakarta List Sent:

Virtual Hosting and security

2001-05-24 Thread Renato Weiner
Hi all, I know this is a quite common subject but I didn't find any ultimate answer. In a shared hosting environment, how can I prevent clientX to read files from clientY ? - java.policy doesn't cover this. If I use grant codeBase 'file:/...' or 'http://', it doesn't work. - can I override

Re: Is there A Guide to Setting Up Apache Tomcat on Linux Anywhereon the Web?

2001-05-24 Thread Jan Labanowski
Did you try to go to, say: http://www.goohle.com and search for: Apache Tomcat Linux Tell us what you found... Jan On Thu, 24 May 2001 [EMAIL PROTECTED] wrote: I've been struggling to get Apache Tomcat running on Linux. Can anyone point me to a web-based guide (hopefully PDF) to doing

Re: Is there A Guide to Setting Up Apache Tomcat on Linux Anywhere on the Web?

2001-05-24 Thread Maureen Fisher
make that http://www.GOOGLE.com/ ;-) At 11:18 AM 5/24/2001 -0400, Jan Labanowski wrote: Did you try to go to, say: http://www.goohle.com and search for: Apache Tomcat Linux Tell us what you found... Jan On Thu, 24 May 2001 [EMAIL PROTECTED] wrote: I've been struggling to get Apache

Re: Is there A Guide to Setting Up Apache Tomcat on Linux Anywhere on the Web?

2001-05-24 Thread Tim O'Neil
As with most other search engines, simply putting the keywords Apache Tomcat Linux yield link upon link of references in news group archives. You really need to craft specific queries to the engine you're using. Or use a meta search engine. This is a good site though:

RE: mod_jk is garbled? Garbled? I got the binary...

2001-05-24 Thread Renato Salazar
Hi Scott, I still have problems with my installation but it seems that you've succeded installing apache-tomcat. I have some questions for you: When you finally managed starting Apache after getting mod_jk.so, could you access http://localhost/examples inmediately or you have to do something

RE: Thread deadlocking in 3.2.2 beta 5?

2001-05-24 Thread Todd Carmichael
My experience with finding threading issues in NT/Win2k has been to get a quad involved as soon as possible. Problems are often still hidden when running duals. -Original Message- From: Marc Saegesser [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 24, 2001 8:05 AM To: [EMAIL PROTECTED]

Re: *** Ordinary users can kill the tomcat server? ***

2001-05-24 Thread Arcadio A. Sincero Jr.
RE: *** Ordinary users can kill the tomcat server? ***The execute() method of the org.apache.tomcat.task.StopTomcat class first does a scan of the localhost for a valid Ajp12 connector to determine the port number. So I imagine it is possible to use a port other than 8007. You just need to tell

tomcat and ultra dev

2001-05-24 Thread Mehmet Ugur Kuzu (LinkPlus)
Title: tomcat and ultra dev Hi everbody, I want to run macromedia ultra dev 4.0 generated jsp code under tomcat , but i got a lot of error messages( i paste an example above ) when i tried to run my pages , is there any body can say me what version of tomcat , jdk and apache i must use

Two webapps sharing same classpath in Tomcat 4.0-b3

2001-05-24 Thread Peck, Jason
I have two different webapps deployed to Tomcat 4.00-b3. I have a jar file with the same name in the the WEB-INF/lib directory for each however each contains a different version of the code. I am finding that Tomcat will only use the last one loaded. Is this a feature or a bug? Is each webapp

RE: mod_jk is garbled? Garbled? I got the binary...

2001-05-24 Thread Scott Merritt
Well, it works half way... When I hit localhost/examples I get a directory listing, and if I click on the JSP folder I can view the index.html in there, but it can't seem to find the JSP files. Not sure about that... I did a custom install where I picked which packages I wanted, but it's

Re: JDBC/ODBC: Technological choice

2001-05-24 Thread aswath satrasala
Hi, First, I would like to point the restrictions Access will place in using standard SQL, when you are using JDBC or JDBC-ODBC. You may not have the same flexibility in your SQL as with SQL server or oracle. Assuming you know the limitations, you are better off using ASP, if you are using

Re: tomcat and ultra dev

2001-05-24 Thread Guido Medina
Title: tomcat and ultra dev One question, why you open the connection twice in the same jsp ?, I don't understand why, I need more data to help you, I can help you 'cause I use to give guidelines in java in my enterprise and problems with jdbc is very known for me... Guido. System

Multipart Form Posting with Tomcat 3.2.1

2001-05-24 Thread Ben Galbraith
Did I read correctly some time ago that there's a bug with HTTP connector that shipped with Tomcat 3.2.1 that prevents multipart form posting (i.e. browser file uploading) from working properly? If so, does anyone know when the next release version (i.e. not beta) of Tomcat 3.2.x or Tomcat 3.3.x

RE: Multipart Form Posting with Tomcat 3.2.1

2001-05-24 Thread Brandon Cruz
The bug was with Ajp13 connector. I think it has been fixed. If you are using Ajp12, there should not be a problem. Brandon -Original Message- From: Ben Galbraith [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 24, 2001 12:55 PM To: [EMAIL PROTECTED] Subject: Multipart Form Posting

RE: Threads please help

2001-05-24 Thread Han Wang
I tried the same test connecting to a solaris box, and have no problems (I stopped after trying 200 simultaneous connections) Is this a known problem with the NT version? Anyone? Han -Original Message- From: Han Wang [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 23, 2001 10:53 AM To:

Re: tomcat and ultra dev

2001-05-24 Thread Guido Medina
Title: tomcat and ultra dev This error is because you must close the following list in that order: ResultSet.close(); PreparedStatement.close(); and after connection.close(); if you close the connection before the others you get an SQLException... Guido. - Original Message -

How to config JSP compiler in tomcat3.2.1 to use jdk1.3

2001-05-24 Thread Steve Mu
I am having problem to config JSP compiler to use jdk1.3. I have gone through all the document availible to me. I have modified the class path etc. Which property file should I look into to solve this problem? Thanks very much, Steve

RE: mod_jk is garbled? Garbled? I got the binary...

2001-05-24 Thread Scott Merritt
Actually I just found out that http://localhost/examples IS working, /examples isn't working on any virtual hosts... Damn. Almost there. I guess I have to RTFM. -Original Message- From: Renato Salazar [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 24, 2001 8:35 AM To: [EMAIL

Re: JDBC/ODBC: Technological choice

2001-05-24 Thread Guido Medina
OK, I'm a linux fan running in Red Hat 7.1, Tomcat, postgresql and I use Microsoft Access to get my postgresql database, MicroAccess is not one definition or engine, is a tool, don't be so extricted with yourself, of course, for the web jdbc is the best: one piece of advise: ddo u have sql server

Re: Multipart Form Posting with Tomcat 3.2.1

2001-05-24 Thread Guido Medina
No, for me is no true, the bug is the entire mod_jk with the CPU overloading... - Original Message - From: Brandon Cruz [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, May 24, 2001 1:58 PM Subject: RE: Multipart Form Posting with Tomcat 3.2.1 The bug was with Ajp13 connector.

RE: How to config JSP compiler in tomcat3.2.1 to use jdk1.3

2001-05-24 Thread Mehmet Ugur Kuzu (LinkPlus)
Title: RE: How to config JSP compiler in tomcat3.2.1 to use jdk1.3 Hi, thank a lot, i achieve my form with fallowing code by your helps, thhanks again, and i think this can be an example of a login page with an access database for other members, sincerely Mehmet Ugur Kuzu %@page

Re:Re: JDBC/ODBC: Technological choice

2001-05-24 Thread Alexandre Bouchard
Mm... i am not sure that I understand. What did you mean by restrictions Access will place? I think that all I gonna need in my scripts are SELECT and INSERT queries. As long as I can use these two SQL instructions, I will be happy. And for the deployment, i read in a tutorial that to setup

Re: How to config JSP compiler in tomcat3.2.1 to use jdk1.3

2001-05-24 Thread Guido Medina
What platform are you using ?, anyway, check in your autoexec.bat (/etc/profile) set JAVA_HOME=JAVA_PATH=path_to_jdk_root_folder - Original Message - From: Steve Mu [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, May 24, 2001 2:27 PM Subject: How to config JSP compiler in

FATAL: configuration error

2001-05-24 Thread Aristide Aragon
Hello When I start tomcat, by typing $TOMCAT_HOME/bin/startup.sh I get the classpath printed, and then: FATAL: configuration error java.lang.SecurityException: sealing violation at java.net.URLClassLoader.defineClass(URLClassLoader.java:234) at

RE: Two webapps sharing same classpath in Tomcat 4.0-b3

2001-05-24 Thread Eric Wu
I have been running into the same problem. I would be interested to know what you find out. My platform is Tomcat 3.2.1 with IIS on NT 4. Eric Wu Java Architect GlobalMedic Inc. 8200 Decarie Blvd., Suite 205 Montreal, Qc. Canada, H4P 2P5 Tel: (514) 738-6770 Ext. 239

Re: Re:Re: JDBC/ODBC: Technological choice

2001-05-24 Thread Guido Medina
Yeah, that is true, for example, with one odbc pointing to and mdb for example you cannot do this: rs.getString(1) and after try to do it again, you must do TYPE x = rs.getTYPE(n); and read x the times you want but no read a column more than once from Query... Guido. - Original Message

Virtual Hosting Help! JSP file not found

2001-05-24 Thread Scott Merritt
I have www.mydomain.com and mydomain.com that I'd like people to be able to hit from their browser, unfortunately only http://mydomain.com is working. So I figured I'd try just adding another host entry to the server.xml file with the context path=www.mydomain.com. WRONG. That didn't work. Any

Re: Virtual Hosting Help! JSP file not found

2001-05-24 Thread Guido Medina
Did you check in your httpd.conf ?, you must put in the servername www.yourdomain.com and serveralias yourdomain.com and ApJServMount /pathtoyourohome localhost:8007/... I guess...I need more expecifications about your installation, platform, webserver, etc etc... - Original Message -

RE: Virtual Hosting Help! JSP file not found

2001-05-24 Thread Scott Merritt
I'm using Redhat 7.0, Apache 1.3.20 and Tomcat 3.2.1 with mod_jk.so. So I'm guessing ApJServMount I'd need to use if instead I chose the mod_jserv instead of mod_jk. I included mod_jk.conf in my httpd.conf and added the Host elements in the servers.xml file: Host name=mydomain.com Context

RE: How to config JSP compiler in tomcat3.2.1 to use jdk1.3

2001-05-24 Thread Steve Mu
I am using win2k. I have set the environment variable JAVA_HOME to the jdk1.3 path. However, it does not seem pick it up. Steve -Original Message- From: Guido Medina [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 24, 2001 11:50 AM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re:

Re: Setting up Virtual Hosts

2001-05-24 Thread Jeff Kilbride
Yes: NameVirtualHost 111.222.333.444 VirtualHost www.mydomain.com server.xml: Host www.mydomain.com This is how I have it set up and it works for about 10 domains. --jeff From: Glen Eustace [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date: Wed, 23 May 2001 05:28:13 GMT To: [EMAIL

*2* tomcats on same machine with *same* context on Apache Web Server.

2001-05-24 Thread Chauhan, Anand
Hi All: Here is the link which does describe using two Tomcats on the same machine with different connector ports. It uses different contexts as seen in the example in the link below, namely, ApJServMount /joe ajpv12://localhost:8007/joe ApJServMount /joe ajpv12://localhost:8009/bill. refer

Re: Setting up Virtual Hosts

2001-05-24 Thread Glen Eustace
NameVirtualHost 111.222.333.444 VirtualHost www.mydomain.com server.xml: Host www.mydomain.com Thanks for this info. I grabbed the source last night and although I am having a great deal of difficulty finding my way around in it ( Im not a Java programmer ) I did find references to the

Re: How to config JSP compiler in tomcat3.2.1 to use jdk1.3

2001-05-24 Thread Guido Medina
Sorry, I forgot something; you must put also path=%java_home%\bin;.in your autoexec.bat or add this to your enviroment variables... - Original Message - From: Steve Mu [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, May 24, 2001 3:21 PM Subject: RE: How to config JSP compiler

Re: JDBC/ODBC: Technological choice

2001-05-24 Thread Alexandre Bouchard
Yeah, that is true, for example, with one odbc pointing to and mdb for example you cannot do this: rs.getString(1) and after try to do it again, you must do TYPE x = rs.getTYPE(n); and read x the times you want but no read a column more than once from Query... That's really bizar... And

Re: How to config JSP compiler in tomcat3.2.1 to use jdk1.3

2001-05-24 Thread Guido Medina
I don't advise to modify your classpath, avoid to do this, copy your your jars to /tomcat/lib...and only put to your path %java_home%\bin and with this tomcat will find the javaw...and so on... - Original Message - From: Guido Medina [EMAIL PROTECTED] To: [EMAIL PROTECTED]; [EMAIL

Re: Setting up Virtual Hosts

2001-05-24 Thread Guido Medina
No, this is not the proper way to do it, is like this: NameVirtualHost 111.222.333.444 VirtualHost 111.222.333.444 serverna,me www.yourdomain.com serveralias yourdomain.com ApJServMount /*.jsp //localhost:8007 DocumentRoot / etc etc... Host 111.222.333.444

Images not being server by Tomcat 4.0-b*

2001-05-24 Thread Peck, Jason
I get the following exception from Tomcat when a request for an image is made from html that was delivered from a servlet. The URL used to invoke the servlet is: http://localhost:8080/consalgo/servlet/bondi The URL of the image requested from the returned html is: img border=0 height=159

Property Files

2001-05-24 Thread Dalia, Keith A - TOS-DITT1
I have a connection pool that uses a properties file. I been placing the props file into the tomcat_home classes directory and that works fine. However, I want to put it in the war file someplace it is appended to the classpath when tomcat starts up. I tried the lib directory in the war but it

Re: *2* tomcats on same machine with *same* context on Apache Web Server.

2001-05-24 Thread Guido Medina
You don't need to put 2 JVM, what you should do is to specify two virtual host in your server.xml...that's all...is better performance with ConnectionPool... Guido - Original Message - From: Chauhan, Anand [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, May 24, 2001 3:20 PM

Re: JDBC/ODBC: Technological choice

2001-05-24 Thread Guido Medina
Well, I guess this is a bug in mdb, is better to work with variables and forget about bugs...that's all...Guido - Original Message - From: Alexandre Bouchard [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, May 24, 2001 3:49 PM Subject: Re: JDBC/ODBC: Technological choice Yeah,

RE: *2* tomcats on same machine with *same* context on Apache Web Server.

2001-05-24 Thread Chauhan, Anand
Thanks Guido: That sounds good but I am stuck to using a single hostname for my app. Also, as a matter of fact, my earlier reference didn't work with regards to using the same context with two tomcats on Apache Web Server. I don't understand where I am wrong. Please help. Thanks again.

Stop Apache ..

2001-05-24 Thread Venkatesh Sangam
Hi Can anyone please tell me how to stop Apache Server (other than Ctrl C) Thanks Venkatesh _ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

Server.xml

2001-05-24 Thread Venkatesh Sangam
Hi, Can anyone please tell me how do I change the Port on which the Tomcat Server runs using Java program .. How do I modify server.xml using a Java program thnaks Venkatesh _ Get Your Private, Free E-mail from MSN Hotmail

RE: Stop Apache ..

2001-05-24 Thread Nael Mohammad
httpd stop or apachectl stop or type ps -ef|grep httpd, look for the process id and type kill PID . Where PID is the HTTPD process id. Do this as a last resort if all else fails. Nael Mohammad Neomar, Inc. [EMAIL PROTECTED] 415-403-7300 x314 (Work) 415-793-0609 (Mobile) When Wireless

Re: *2* tomcats on same machine with *same* context on Apache Web Server.

2001-05-24 Thread Guido Medina
Those are my files in my real server running at: www.cubaonline.cu check in the modules, at the beginning of the virtual host directive and in the lastone virtual host that is the only one that use jsp, also check in the server.xml, just adapt your configuration to this, is a lot of job but 100%

RE: Stop Apache ..

2001-05-24 Thread Filip Hanik
Windows Apache.exe -k shutdown Unix apachectl stop (you should have this script in your bin directory) Filip ~ Namaste - I bow to the divine in you ~ Filip Hanik Software Architect [EMAIL PROTECTED] www.filip.net -Original Message- From: Venkatesh Sangam [mailto:[EMAIL PROTECTED]]

RE: HTTPS connections from servlet

2001-05-24 Thread Martin van den Bemt
It's just a code snippet from one of my servlets.. It works fine... Mvgr, Martin Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider()); System.setProperty(java.protocol.handler.pkgs,com.sun.net.ssl.internal.ww w.protocol); String url = https://servername; // let's

Re: Stop Apache ..

2001-05-24 Thread Gerald Waugh
Venkatesh Sangam [EMAIL PROTECTED] wrote Hi Can anyone please tell me how to stop Apache Server (other than Ctrl C) Thanks Venkatesh /etc/rc.d/init.d/httpd stop or on some systems /etc/rc.d/init.d/httpd.init stop Change stop to start to get it going again. Gerald

Tomcat and weblogic

2001-05-24 Thread Salwa Ananou
Hi, I m a new tomcat user and i don't know a lot about it; My stuff is designed to work with an application server and i need also tomcat; Can i use Tomcat as a application server, ? or must I install weblogic and tomcat at the same machine; or does weblogic include all tomcat

RE: FATAL: configuration error

2001-05-24 Thread Brett Knights
sealing violation is new in jdk 1.3 and addresses a potential security problem. The java web site has notes on this. What I found is that certain xml related jar files each includes the class files for dom, sax, jaxp etc. You can mess with the order of the jar files on your class path to work

Re: FATAL: configuration error

2001-05-24 Thread Guido Medina
If you are using Red Hat 7.1 jdk1.4 from sun is not working, try IBM1.3 Guido - Original Message - From: Brett Knights [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, May 24, 2001 5:08 PM Subject: RE: FATAL: configuration error sealing violation is new in jdk 1.3 and addresses

RE: Include question...

2001-05-24 Thread Jann VanOver
Kyle, make sure you read up on your JSP includes -- the one that Joel is giving your works DIFFERENTLY than the include you were using before. Specifically, in your original example, it didn't work because the @ include happens during COMPILATION -- not during RUNTIME. Your problem was that you

FW: Include question...

2001-05-24 Thread Kyle Burke
Jann, Turns out that it wasn't that at all. I just overlooked a missing }. Sorry for the inconvenience to the group. Oh, and Waldemar, thanks for forwarding it along. Thanks to all, Kyle -Original Message- From: Strubinski,Waldemar W [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 24,

My fix for ClassCastException when running in DOS

2001-05-24 Thread Peter Costello
When trying to execute Tomcat4.0-b5 from DOS, I received ClassCastExceptions. After searching the mail, I saw someone mention that classes loaded by different classloaders are treated as different classes even though the names may match. I made the following changes to 'catalina.bat' and it now

RE: Please help. Accessing protected url from java when using form based authentication

2001-05-24 Thread Jann VanOver
Title: Please help. Accessing protected url from java when using form based authentication You must unsubscribe yourself. Here's some info posted by another user about unsubscribing: it is a little tricky to unsubscribe from tomcat-userwhen you have changed your e-mail address and need

Tomcat interferes with CGI operation

2001-05-24 Thread Daniel Olson
We are experiencing what seems to be a rather odd, but potentially common problem. I have a Perl CGI script for another project that writes a bunch of data into a temp file, then calls another program that reads that file and creates another temp file with a different extension. The script then

Re:Re: JDBC/ODBC: Technological choice

2001-05-24 Thread aswath satrasala
From: Alexandre Bouchard [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re:Re: JDBC/ODBC: Technological choice Date: Thu, 24 May 2001 14:46:06 -0400 Mm... i am not sure that I understand. What did you mean by restrictions Access will place? I think that all I

RE: Tomcat interferes with CGI operation

2001-05-24 Thread Martin van den Bemt
You leave a lot open to be guessed.. Can you be more specific eg who needs to handle the script access, which url is used, what url is you application running, do you execute the script from a servlet, does the servlet try to read from the /tmp directory, which user does tomcat run on (default it

2 forwards, HttpSession gone

2001-05-24 Thread Allen Hopkins
I have a problem that I've cooked down to a simple test scenario: A servlet (call it servlet_1) gets an HttpSession and sets an attribute in it: req.getSession().setAttribute(new String(Boo!)); It then forwards to another servlet, servlet_2, which in turn forwards to another servlet,

I'm really getting tired of these messages...

2001-05-24 Thread Martin van den Bemt
Is something wrong on the maillinglist?? The attached message had PERMANENT fatal delivery errors! After one or more unsuccessful delivery attempts the attached message has been removed from the mail queue on this server. The number and frequency of delivery attempts are determined by local

Re: I'm really getting tired of these messages...

2001-05-24 Thread Guido Medina
Maybe two Email that are subscribe that don't exists already... - Original Message - From: Martin van den Bemt [EMAIL PROTECTED] To: jakarta-tomcat-user [EMAIL PROTECTED] Sent: Thursday, May 24, 2001 8:26 PM Subject: I'm really getting tired of these messages... Is something wrong on

RE: I'm really getting tired of these messages...

2001-05-24 Thread Martin van den Bemt
It's only when I send a message to the maillinglist and that's a lot lately.. Maby that email needs to be unsubscribed by someone.. (it's not mine...) Mvgr, Martin -Original Message- From: Guido Medina [mailto:[EMAIL PROTECTED]] Sent: Friday, May 25, 2001 2:44 AM To: [EMAIL

RE: Tomcat interferes with CGI operation

2001-05-24 Thread Daniel Olson
I figured there'd be questions. I just couldn't think of anything else to include in my message. The project I'm concerned about does not use servlets at all. Everything is Perl CGI and the program that aborts. It's only that having Tomcat running on the server that causes the process to crash.

RE: Tomcat interferes with CGI operation

2001-05-24 Thread Jan Labanowski
More things should also be known... What user id is Apache runnning, and what UID is tomcat. If Tomcat is root and Apache is nobody, Apache cannot write over stuff which Tomcat wrote. Jan On Fri, 25 May 2001, Martin van den Bemt wrote: You leave a lot open to be guessed.. Can you be more

Re: Run Tomcat as a NT Service Problem

2001-05-24 Thread Huynh Tin
Dear Louzon, Thank you for your information, but i didn't have "xerces.jar" ...This file not existed in Jboss-Tomcat2.2 ! What i need to do . Thank you ! I'm using JDK1.3, JBoss-Tomcat2.2 Best regards ! Huynh Tin - Original Message - From: Ronald G. Louzon To: '[EMAIL

Re: Redhat 7.1 ApacheTomcat How-to (long)

2001-05-24 Thread Neil Jolly
On May 23, 2001 09:10 am, you wrote: It doesn't seem to be the problem. So far I've managed building my own mod_jk.so and starting Apache with it (I don't have any problem at Apache startup unlike days before). Now It seems like Apache doesn't recognize /examples as a Tomcat directory, it's

Post + multipart/form-data not working in Tomcat --- Help neededimmediately.

2001-05-24 Thread Srinivas . Chebolu
Hi, I'm getting the following error when my servlet uses post+multipart/form-data request. -- HTTP/1.1 200 OK Date: Fri, 25 May 2001 02:09:11 GMT Server: Apache/1.3.12 (Unix) mod_jk

Post + multipart/form-data not working in Tomcat --- Help neededimmediately.

2001-05-24 Thread Srinivas . Chebolu
Hi, I'm getting the following error when my servlet uses post+multipart/form-data request. -- HTTP/1.1 200 OK Date: Fri, 25 May 2001 02:09:11 GMT Server: Apache/1.3.12 (Unix) mod_jk

  1   2   >