how to Set the j2ee sdk Environment Variables

2002-03-12 Thread sdy
hi All I'm new to j2ee. I install j2ee sdk on my lnux 7.2 server . According to sun's document J2EE(TM) SDK Installation,I set local environment successfully.But when I set the GLOBEL ENVIRONMENT,I only can find the profile in /etc,but there isn't any introduction to how to edit

FW: Tomcat 4.0.1 / 4.0.2b2 + IIS + security-constraint

2002-03-12 Thread Joakim Ahlén
Hi, A couple of months ago i posted a question regarding security constraints with tomcat 4.0.1 (Original post attached at the bottom). Since then, i've gotten mail from five or six people who have had the same problem but been unable to solve it, asking me if i did. So i thought i'd post what i

RE: Database Pooling

2002-03-12 Thread Chris Pheby
As to Excalibur, I don't yet know. Cocoon is a web publishing framework that allows such things as on demand transformation from XML to HTML, WAP and PDF (using Apache's formatting objects) and XSP (XML Server Pages). Find it at xml.apache.org. Chris, -Original Message- From: [EMAIL

SSL Problem

2002-03-12 Thread Alf Scherer
Hi, I've installed Tomcat 4.0.3 on my system running redhat-7.2, I've also created a CA using openssl to test Tomcat-ssl. I've generated a key and certreq as well using the using java keytool with the default changeit pwd. Well, after signing the certreq with openssl and importing it to the

Re: Database Pooling

2002-03-12 Thread Neo Gigs
But does Cocoon have anything related to DB polling? - Original Message - From: Chris Pheby [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Tuesday, March 12, 2002 4:56 PM Subject: RE: Database Pooling As to Excalibur, I don't yet know. Cocoon is a web publishing

RE: Database Pooling

2002-03-12 Thread Chris Pheby
My understanding is that Cocoon achieves connection pooling and component pooling by using the Avalon framework (Excalibur etc). Can someone correct me if I am wrong? Chris. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Neo Gigs Sent: 12 March 2002

Re: Closing Connections.

2002-03-12 Thread August Detlefsen
Yes you have to close the connections! Nothing will drop your server faster than running out of DB connections. If you open your connection with this: Connection conn = DriverManager.getConnection(url, user, password); Then you close it like this: conn.close(); --- Hari Yellina [EMAIL

Re: Database Pooling

2002-03-12 Thread Neo Gigs
But i do see anything related on their website... its kindna confusing up there - Original Message - From: Chris Pheby [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Tuesday, March 12, 2002 5:24 PM Subject: RE: Database Pooling My understanding is that Cocoon achieves

Error in starting..

2002-03-12 Thread Shashank
Hi ! I start the Tomcat using catalina.sh run option. Following message is printed on the console. -- PARSE error at line -1 column -1 org.xml.sax.SAXParseException: The encoding Cp1252 is not supported.

Re: Error in starting..

2002-03-12 Thread Neo Gigs
if u r using tomcat for unix, i think the right file to execute to start is startup.sh - Original Message - From: Shashank [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, March 12, 2002 5:44 PM Subject: Error in starting.. Hi ! I start the Tomcat using catalina.sh run

RE: Closing Connections.

2002-03-12 Thread Sergei Batiuk
Hello, It is a good practice to close all open connections with a JSP. Event though connections will be eventually closed by Java garbage collector, while open they consume valuable resources, such as memory and network traffic. To me it not an option if I should close db connections - I always

[AJP13] bad read : -103

2002-03-12 Thread Sebastien BASTARD
Hello, I have a application which have some problems to retrieve parameters of the request. I explain : Sometimes, the JSP page can't retrieve a parameter of the request. I don't understand why ? I set my Session.setDuration() to 24Hours even if i know there's no relation about the problem. I

RE: SSL Problem

2002-03-12 Thread Chris Campbell
hi. did you change the configuration in server.xml? You need to uncomment the section like this just checking. !-- Define an SSL HTTP/1.1 Connector on port 8443 -- !-- Connector className=org.apache.catalina.connector.http.HttpConnector port=8443 minProcessors=5

Rendering documents thru servlets

2002-03-12 Thread Manpreet Singh
Hi, We are using Tomcat 4.0.1 and Apache1.3.22 for our servlet support. A servlet is used to dish out different files to the requesting clients(browsers). If the request is for fetching jpeg/gif files, the contents are displayed properly in the browser window. But if the request is made to

CONNECTION BUSY

2002-03-12 Thread Gurmeet
How do I resolve [Microsoft][ODBC SQL Server Driver]Connection is busy with results for another hstmt problem. This is coming only if I am executing a no. of SQLs in quick succession. Please Help. Regards Gurmeet -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands:

Using CORBA or IIOP?

2002-03-12 Thread Kjeld Lau Petersen
Title: Using CORBA or IIOP? Hi Can Tomcat be configured to answer CORBA or IIOP requests? I would like to host EJB, that can be reached using CORBA or IIOP. How do I do that? In advance, thank you Regards Kjeld -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands:

RE: CONNECTION BUSY

2002-03-12 Thread Gurmeet
Yes, you are right . I am using JDBC-ODBC bridge. Regards Gurmeet -Original Message- From: Reynir Hübner [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 12, 2002 4:17 PM To: Tomcat Users List Subject: RE: CONNECTION BUSY The errormessage implies that you are using odbc bridge to

RE: CONNECTION BUSY

2002-03-12 Thread Justin Rowles
[Microsoft][ODBC SQL Server Driver]Connection is busy with results for another hstmt problem. This is coming only if I am executing a no. of SQLs in quick succession. The odbc bridge is not serialisable. That is to say, all requests are queued and answered one by one. If this is

Problem whith AJP13 [AJP13] bad read : -103

2002-03-12 Thread Sebastien BASTARD
Hello, I have a application which have some problems to retrieve parameters of the request. I explain : Sometimes, the JSP page can't retrieve a parameter of the request. I don't understand why ? I set my Session.setDuration() to 24Hours even if i know there's no relation about the problem. I

RE: CONNECTION BUSY

2002-03-12 Thread Gurmeet
Please tell me which one and where can I get it? Regards Gurmeet -Original Message- From: Justin Rowles [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 12, 2002 4:26 PM To: Tomcat Users List Subject: RE: CONNECTION BUSY [Microsoft][ODBC SQL Server Driver]Connection is busy with

AW: Using CORBA or IIOP?

2002-03-12 Thread Lauer, Oliver
Hi, Yes, you can do both - EJB/IIOP or CORBA/IIOP.It depends on the IIOP source. WIth the following statements for example you can call an EJB running within the J2EE-Reference-Implementation 1.3: java.util.Hashtable h = new java.util.Hashtable();

RE: CONNECTION BUSY

2002-03-12 Thread Reynir Hbner
the JDBC-ODBC bridge is not suitable for production, it's only for testing. I must recomend that you look at other ways of comunicating with your database. http://www.microsoft.com/sql/downloads/2000/jdbc.asp This would be the free driver you would use for microsoft SQL, but it is only a

RE: CONNECTION BUSY

2002-03-12 Thread Gurmeet
thanks a ton Reynir -Original Message- From: Reynir Hübner [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 12, 2002 4:29 PM To: Tomcat Users List Subject: RE: CONNECTION BUSY the JDBC-ODBC bridge is not suitable for production, it's only for testing. I must recomend that you look at

[JSP/JAVABEANS] set method and empty parameters...

2002-03-12 Thread Olivier Boulanger
Hi all, I send some values of a html form (using post method) to a JSP page, which calls a JavaBean to actualize its properties (jsp:setProperty name=myBean property=*/). But when a field of the form is null (empty string in the form), the set method of the bean is not executed. Ex : in the

Apache-2.0 + Tomcat-4.02 with SSL

2002-03-12 Thread Gabriel López Millán
Hi all. I don't find information about integrate Apache+Tomcat+SSL I can't retrieval client certificate from my servlet Can anybody help me? I have apache2.0 with ssl configure such as: * . SSLVerifyClient optional SSLOptions

security

2002-03-12 Thread Nicolas . Avi
Hello, I would like to use tomcat security, but I don't understand what is the j_security_check url called when sending login/password form. Does someone knows about it ? Furthermore, is it possible to protect the url '/myservlet?action=1' and not the url '/myservlet?action=2' Thanks -- To

Rép. : [JSP/JAVABEANS] set method and empty parameters...

2002-03-12 Thread Sebastien BASTARD
Hello, You can execute a method such as 'prepareParam' which set all variables to null of your JavaBean. Thus, you have, as default, null to your variables. Example : jsp:setProperty name=myBean property=prepareParam/ jsp:setProperty name=myBean property=*/ void setPrepareParam() {

Error ::running my application

2002-03-12 Thread Shashank
Hi ! I have deployed my application on tomcat server. while requests comes i.e runtime it prints following on console... --- WebappClassLoader: Lifecycle error : CL stopped -- What is this

RE: Rep. : [JSP/JAVABEANS] set method and empty parameters...

2002-03-12 Thread Olivier Boulanger
Hello, Thanks a lot... ...but in fact, i'd like to set to null the parameters whose values are explicitly empty strings (and not all of them) : i've got more than one form to set the properties of my bean, and they all call the same jsp page to process the jsp:setProperty name=myBean

Re: security

2002-03-12 Thread RAYMOND Romain
j_security_check est un mecanisme natif de l'API servlet. il suffit donc de de creer un formulaire HTML ou l'action = j_security_check par exemple suivant les specs : form method=POST action=j_security_check name=loginForm table cborder=0 cellpadding=0 cellspacing=0tr td valign=BOTTOM

Re: security

2002-03-12 Thread RAYMOND Romain
Hello, I would like to use tomcat security, but I don't understand what is the j_security_check url called when sending login/password form. Does someone knows about it ? Furthermore, is it possible to protect the url '/myservlet?action=1' and not the url '/myservlet?action=2' sorry I

importing packages

2002-03-12 Thread Hammonds Nicholas
Hello, I am doing some java servlet programming at the moment and I have the following problem. I would like to import some packages into my java servlet code. When normally doing this I would just make sure that the package I want to include is in the 'classpath' variable and do something like

Http Session over SSL

2002-03-12 Thread Horia Muntean
Hello to all. I have a problem with session tracking when I use secure connections: This is the scenario: On the server side, I have Slackware 8.0, with tomcat-4.0.3, apache 1.3.20 and a simple servlet witch does only one thing: public void doPost(HttpServletRequest request,

Large pages not completely displayed with IE 5.x and Tomcat 4.0.x

2002-03-12 Thread Michael Gerdau
Hi ! I have the following problem: I'm running Tomcat 4.0.x (x == 1, 2 or 3) standalone on a Win2000 machine. I have a WebApp (written with Struts) that accesses a RDBMS and creates pages which occasionally are 100+ kB in size. This takes some time (between 20-50 seconds). When I run Internet

RE: Large pages not completely displayed with IE 5.x and Tomcat 4.0.x

2002-03-12 Thread Randy Layman
I think an obvious first couple of questions: 1. Is the page competing execution or is it throwing an exception or perhaps hanging up due to deadlock? 2. Are you ever clicking the stop button in IE (perhaps causing the browser to give up before the connection is

Servlet invoker is currently unavailable....

2002-03-12 Thread Renato
Hi all, This is probably a basic question... after my servlet invoker is marked as unavailable how can turn it on again ? What is the manager command to 'fix' this ? Thanks in advance. Renato -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED]

RE: Large pages not completely displayed with IE 5.x and Tomcat 4 .0.x

2002-03-12 Thread Michael Gerdau
I think an obvious first couple of questions: 1. Is the page competing execution or is it throwing an exception or perhaps hanging up due to deadlock? Not that I'm aware of. I get the effect by simply logging onto the webapp from a different machine immediately after starting

Re: security

2002-03-12 Thread Nicolas . Avi
j'ai essaye mais ça ne marche pas. Par contre, je ne connais pas les filtres. Tu aurais une solution possible avec ça ? RAYMOND Romain wrote: Oui, le francais etait bienvenu. Mais pour ma question de proteger l'url '/myservlet?action=1' et pas l'url '/myservlet?action=2', est ce que

apache won't start

2002-03-12 Thread Bill Tantzen
No doubt this has come up before, but I am new to tomcat 4.0.x, so please excuse this elementary query. Platform: NT4.0 SP6 Apache 1.3 and Tomcat 4.0.3 work fine as standalone applications, but when I try to connect them using mod_webapp, the Apache service will not start. I have added

RE: apache won't start

2002-03-12 Thread PELOQUIN,JEFFREY (Non-HP-Boise,ex1)
shouldn't you use mod_webapp.dll instead of mod_webapp.so for a windows box, or does windows support .so as well? -Original Message- From: Bill Tantzen [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 12, 2002 7:14 AM To: Tomcat Users List Subject: apache won't start No doubt this has

Re: Is a keystoreType other than jks possible?

2002-03-12 Thread Horia Muntean
U need to use a server key, or a server certificate? I u want to use a server certificate u can import it into the keystore. If u want to use the server key, I can't help. Horia Muntean - Original Message - From: Krijn van der Raadt [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday,

AW: apache won't start

2002-03-12 Thread Ralph Einfeldt
I fell in the same trap some month ago. :) The newer apaches uses xxx.so under both plattform. I don't have the version at hand where this change was introduced. -Ursprüngliche Nachricht- Von: PELOQUIN,JEFFREY (Non-HP-Boise,ex1) [mailto:[EMAIL PROTECTED]] Gesendet: Dienstag, 12.

tomcat and start error with ultradev taglib extension application

2002-03-12 Thread ras
hi, I've a few questions, please be patient I'm not really confident with Java and Tomcat. 1° question why can't I start tomcat from the command line? Better said there's two tomcat binary, the one, when you install it, you can start it directly from a link that the installation set in the

Global JNDI Resources

2002-03-12 Thread Eric . Wang
Hi everybody. I know it tomcat4.x, we can JNDI resources for specific context. But I want to have some kind of global JNDI. So all my applications can share same resource. I found some info in developer's maillist. But it seems not working. Does tomcat support global JNDI now? Thanks, Eric

Tomcat, Tyrex and connection pooling management

2002-03-12 Thread Web Information
Hi, First of all, I know some parts of my question already exist in this list but they were never really answered ...! So, thanks a lot in advance for all responses. I've got three simples questions about Tomcat 4.x and database connections : 1. Tomcat use Datasource thanks to Tyrex library.

RE: image manipulating via servlets on tomcat4

2002-03-12 Thread Reynir Hübner
hi, www.acme.com has some solutions for gif encoding.. I guess you can just use awt for jpeg, and some other formats as well. you might also want to take alook at www.imagemagick.org and especially the Jmagick partition, I dont think Jmagick is yet available for win32 comps, only unix. hope

RE: apache won't start

2002-03-12 Thread Bill Tantzen
- -Original Message- - From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] - Sent: Tuesday, March 12, 2002 8:30 AM - To: Tomcat Users List - Subject: Re: apache won't start - - - - Maybe you could you try starting Apache from the command prompt - (instead of - as a service) and check the

Re: image manipulating via servlets on tomcat4

2002-03-12 Thread Micael Padraig Og mac Grene
That should be easy. Call a class that does all that and then load the image. Do I misunderstand you? At 10:54 PM 3/12/02 +0800, you wrote: Hi everybody, I am using tomcat4 on win 2000. I have searched all the archives and almost all websites related with java, to no avail. My problem is

Free KAWA?

2002-03-12 Thread Leon Vermaak
Is there a programming enviornment similar to KAWA, but is free that is good to work with? That helps you adminsitrate your classpaths etc... Thanks -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto:[EMAIL PROTECTED]

Re: Tomcat and Apple Macintosh

2002-03-12 Thread Ken Martin
On Tuesday, March 12, 2002, at 04:19 AM, Addey O.S.E. wrote: I have an iMac G3 350 with MacOS 9.2, MacOS X 10.1, and Linux Mandrake 8.0 PPC. I have Apache 1.3.23 installed under Mandrake 8.0 PPC, have downloaded Tomcat 4.0.3 and now I'm looking for an appropriate JDK to build it. I can't

Another simple error with rt.jar file

2002-03-12 Thread Kemp Randy-W18971
Yesterday I encountered the error recorded in this email trying the JSP examples on Tomcat 4.0.3, using Sun JDK1.4.0, on Sun Solaris 2.6. I followed the suggestions given, and even looked through the Tomcat archieves. Here is my current problem. If I copy the rt.jar file, which contains

Re: image manipulating via servlets on tomcat4

2002-03-12 Thread Tom Oinn
yilmaz wrote: Hi everybody, I am using tomcat4 on win 2000. I have searched all the archives and almost all websites related with java, to no avail. My problem is manupulating images via servlets on Tomcat. In fact , there are tons of examples on the internet and on the archives

AW: image manipulating via servlets on tomcat4

2002-03-12 Thread Ralph Einfeldt
- Use AWT as for any gui. Have a look at: java.awt.Toolkit.getImage(); java.awt.Image.getGraphics(); java.awt.Graphics.drawString(); If you did it already this way, what was your problem? -Ursprüngliche Nachricht- Von: yilmaz [mailto:[EMAIL PROTECTED]] Gesendet: Dienstag,

resource unavailable

2002-03-12 Thread jmt
Hi, I have a controllerServlet which is called by a index.html page, hosted in a standalone Tomcat server. web.xml specifies the servlet has to be started at the beginning, and it does. But when I call it from the index.html page, I get a 404 the requested resource (/controllerServlet) is

RE: Problems using own XML parser

2002-03-12 Thread John Wadkin
All, I'd appreciate a response on this otherwise I'll just have to assume that TomCat allows only xerces.jar as a parser. The jsp errors I mention relate to the default servlet for jsp. I tried commenting out (in conf/web.xml) all references to this servlet - it just created more errors! The

Please advice: Deploy the manager application

2002-03-12 Thread Renato
Hi all, I want to deploy the manager application to stop and start different contexts on a multiple Virtual Host environment. I don't want my clients to have direct access to it, just the administrator ( I'm thinking to build a wrapper around it, so it will be transparent for the users to

RE: image manipulating via servlets on tomcat4

2002-03-12 Thread Jarecsni János
Hi, well, the question should be split into two subquestions: 1) how to serve requests for images 2) how to manipulate images before sending them back to clients 1. The first is simple: create a servlet which receives an identifier (the name of the image to generate). It can then get the bytes

Simple embdded tomcat server with a single servlet

2002-03-12 Thread WATKINS, Andy, FM
Im trying to setup an embedded tomcat that gets run from a main(). Im using the Embedded.java class. I wont only a single servlet mapped, but the example main does not do this. Does anyone have a sample main configuring tomcat (programmatically via Embedded.java) to have a single servlet

Re: Help : Error Starting Tomcat 4.0.1 in AIX

2002-03-12 Thread Andy Soedibjo
Hi All, At 14:30 11/03/2002 -0600, you wrote: Did you actually look at these log files first? I only know a few words in French, but enough to see from your catalina.out that it could not create a jar file cache in your /tmp directory because it doesn't exist. Of course, it exist and i've

Re: Simple embdded tomcat server with a single servlet

2002-03-12 Thread Jerome Bouat
I search a mean too. The Embedded server ran but the client didn't achieved to send a message to my servlet. I'm interrested if you find a better way. Jerome I previously send this message in the list: -- I want to use the Jakarta catalina

RE: Problems using own XML parser

2002-03-12 Thread Evguenia Krylova
Isn't it that udner Tomcat 4x you can specify class path for a context in server.xml. I saw something like this in the comments portion of server.xml. I have not tried this, but would like to know if you found a way to use another parser with Tomcat. I assume you don't use JAXP API's but call

Apache + getInstance

2002-03-12 Thread Elisabeth Julg
Hi, I have a problem with servlet and apache : A servlet (started at the initialisation of my application) creates a share object HD_Memoire _Memoire build as : public class HD_Memoire implements Runnable { private static HD_Memoire instance = new HD_Memoire(); private HD_Memoire() {}

Re: image manipulating via servlets on tomcat4

2002-03-12 Thread Mark
Is the problem that the 'old' vs. newly generated image displays (with the same .gif/.jpg name)? If that's the case then it's likely a problem with browser image caching. The only way I found to get around that was to generate unique image file names each time the new images were generated,

RE: Problems using own XML parser

2002-03-12 Thread John Wadkin
I'm not privy to the workings of the servlet. There's a properties file I edit to indicate the name of the SAX driver: #Xerces sax.driver.name=org.apache.xerces.parsers.SAXParser OR #Aelfred sax.driver.name=com.microstar.xml.SAXDriver Xerces works fine, but Aelfred doesn't. The driver

RE: Please advice: Deploy the manager application

2002-03-12 Thread Cox, Charlie
see intermixed -Original Message- From: Renato [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 12, 2002 7:33 AM To: [EMAIL PROTECTED] Subject: Please advice: Deploy the manager application Hi all, I want to deploy the manager application to stop and start different

RE: apache won't start

2002-03-12 Thread rsequeira
Have you setup the web application connections in the apache configurations? If not, then add these lines, as an example, at the end of the httpd.conf: WebAppConnection conn warp localhost:8008 WebAppDeploy examples conn /examples WebAppInfo /webapp-info Restart apache (after

RE: Problems using own XML parser

2002-03-12 Thread Cox, Charlie
see the archives or bugzilla as this was addressed in 4.0.3 or 4.0.4b1(I don't remember which one) Charlie -Original Message- From: John Wadkin [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 12, 2002 10:59 AM To: 'Tomcat Users List' Subject: RE: Problems using own XML parser

RE: SSL Problem

2002-03-12 Thread Alf Scherer
Well, Yes that's what I already did, I've also added the keystoreFile attribute because I have put the keystore file under common/ssl. The strange thing about it is: it works when using a certifcate that was created using the keytool -selfcert option. -Original Message- From: Chris

Re: Global JNDI Resources

2002-03-12 Thread Craig R. McClanahan
On Tue, 12 Mar 2002 [EMAIL PROTECTED] wrote: Date: Tue, 12 Mar 2002 09:42:31 -0500 From: [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Global JNDI Resources Hi everybody. I know it tomcat4.x, we can JNDI resources for specific context.

RE: Free KAWA?

2002-03-12 Thread Kemp Randy-W18971
IBM Visual Age for Java and Sun Forte. -Original Message- From: Leon Vermaak [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 12, 2002 9:02 AM To: Tomcat Users List Subject: Free KAWA? Is there a programming enviornment similar to KAWA, but is free that is good to work with? That helps

Re: Http Session over SSL - Problem solved by pure luck

2002-03-12 Thread Horia Muntean
Problem solved by pure luck: If on the client side, I remove the conn.disconnect(); statement (right after in.close();) it seems that the ssl client uses the same sslsession obtained by the first connection and the server does not create new http sessions. seven. - Original Message

Re: Large pages not completely displayed with IE 5.x and Tomcat 4 .0.x

2002-03-12 Thread Robin Lee
Hi, I had the same problem as you did... One of my pages would not completely load... Using: Tomcat 4.02, j2sdk1.4. Windows 2K/NT, doesn't matter.. happens on both. At first I thought that it was because it was large. But it wasn't the problem. The page in question returned about 150K of

RE: apache won't start

2002-03-12 Thread Bill Tantzen
- Have you setup the web application connections in the apache - configurations? If not, then add these lines, as an example, at - the end of - the httpd.conf: - WebAppConnection conn warp localhost:8008 - WebAppDeploy examples conn /examples - WebAppInfo /webapp-info - - Restart

Re: Large pages not completely displayed with IE 5.x and Tomcat 4 .0.x

2002-03-12 Thread jeff . guttadauro
I ran into what I think is this problem before too, and here's what I ended up finding... I noticed the same thing as you, that the HTML was incomplete. My HTML was stopped right in the middle of a big list of SELECT OPTION's. I thought there was something wrong with the particular option

Apache Tomcat/4.0.3 - HTTP Status 404 - /servlet/SnoopServlet is not available.

2002-03-12 Thread Hostmaster of the day
Hello ... I'm writing again asking again for some help. In the meanwhile I changed from mod_jk to mod_webapps but I still receive the same error message. The logs in /var/tomcat4/logs/. are looking pretty good. http://localhost:8080 is working great. Tomcat 4.0.3 is working great. Apache

[Coyote] Coyote 1.0 Beta 2 available

2002-03-12 Thread Remy Maucherat
Coyote 1.0 Beta 2 is now available, and includes: - A high performance HTTP/1.1 processor - An adapter for Tomcat 3.3.x (new in this release) - An adapter for Tomcat 4.0.x - Bugfixes over 1.0 Beta 1 Binaries can be downloaded at:

Re: Apache Tomcat/4.0.3 - HTTP Status 404 - /servlet/SnoopServlet is notavailable.

2002-03-12 Thread rsequeira
Where is the SnoopServlet class located? Is it under /var/www/host2/html /WEB_INF/classes folder? RS Hostmaster of the day [EMAIL PROTECTED] on 03/12/2002 11:35:23 AM Please respond to Tomcat Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED] cc: Subject: Apache Tomcat/4.0.3 - HTTP

RE: Apache Tomcat/4.0.3 - HTTP Status 404 - /servlet/SnoopServlet is not available.

2002-03-12 Thread PELOQUIN,JEFFREY (Non-HP-Boise,ex1)
Could this ol' lack of trailing / problem Have you tried http://www.domain.com/servlet/SnoopServlet/ -Original Message- From: Hostmaster of the day [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 12, 2002 10:35 AM To: [EMAIL PROTECTED] Subject: Apache Tomcat/4.0.3 - HTTP Status 404 -

RE: Problems using own XML parser

2002-03-12 Thread John Wadkin
Charlie, It seems from: http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6374 http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6628 That webApps *can't* have their own parser. Stuck with Xerces 1, then! Taken a week to find that out :) Thanks, John Quote for the week: The stupid

Re: Apache Tomcat/4.0.3 - HTTP Status 404 - /servlet/SnoopServlet is notavailable.

2002-03-12 Thread rsequeira
Whoops! sorry...didn't read the last few lines of your email. snip The SnoopServlet.class is located here : /var/www/host2/html/WEB-INF/classes/SnoopServlet.class /snip My bad! RS [EMAIL PROTECTED] on 03/12/2002 11:43:08 AM Please respond to Tomcat Users List [EMAIL PROTECTED] To:

Deploytool and Tomcat

2002-03-12 Thread John De Lello
Can someone explain how to configure Tomcat to be able to use the J2EE DeployTool to deploy? If I start J2EE -verbose and then run DeployTool I am able to deploy to the implementation server fine. But I want to deploy my app to Tomcat. Thank you, John John De Lello DelWare Software Solutions,

Re: problem with catalina for 'non-web' application

2002-03-12 Thread Jerome Bouat
Someone send me a reply but my mailer crashed. It would be wonderfull if the mysterious sender send me his(her) reply again. Thanks. Jerome Bouat wrote: I want to use the Jakarta catalina library without the configuration files (server.xml, WEB-INF/web.xml, ...). The aim is to use (and

Re: Global JNDI Resources

2002-03-12 Thread Nikola Milutinovic
Craig R. McClanahan wrote: Global JNDI resources are a feature of the current nightly builds of Tomcat 4, which will eventually be delivered in 4.1. They are not a feature of the 4.0.x series. I hope it will be well documented. Nix. -- To unsubscribe: mailto:[EMAIL PROTECTED] For

RE: SSL Problem

2002-03-12 Thread Alf Scherer
Finally I found the root of the problem: i forgot to specify the -keyalg RSA option. Thanks anyway! p.s.: this was a typical RTFM issue -Original Message- From: Alf Scherer [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 12, 2002 5:38 PM To: 'Tomcat Users List' Subject: RE: SSL

Re: Apache Tomcat/4.0.3 - HTTP Status 404 - /servlet/SnoopServlet is notavailable.

2002-03-12 Thread rsequeira
OK let's try once again :-) Apologize for the previous dumb email. Anyway, maybe a stupid question :-) but have you configured your virtual host in the httpd.conf. Something like this VirtualHost 100.100.100.100 ServerAdmin [EMAIL PROTECTED] DocumentRoot /var/www/host2/html

Apache Tomcat/4.0.3 - HTTP Status 404 - /servlet/SnoopServlet is not available.

2002-03-12 Thread Administration Office
Unfortunately not :-( I got the same result. --Mark Could this ol' lack of trailing / problem Have you tried http://www.domain.com/servlet/SnoopServlet/ -Original Message- From: Hostmaster of the day [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 12, 2002 10:35 AM To: [EMAIL

Connection refuse

2002-03-12 Thread Venkatesh Sangam
Hi, I am generating 5 requests per second on the tomcat server using the following program. How will I know if the connection is refused by tomcat. If the server is overloaded with requests it starts refusing them. I have to capture this using my program below. can anybody please tell me how

Apache serve index.jsp not index.php

2002-03-12 Thread Edward Haynes
Hi. How can I get apache to serve up index.jsp as the default page? I have read a post on http://www.jguru.com/faq/view.jsp?EID=228635 that talks about setting up the DirectoryIndex on Apache and setting up the welcome-file-list in the web.xml of my application. I have done both of these, but I

Re: Apache serve index.jsp not index.php

2002-03-12 Thread Ken Martin
On Tuesday, March 12, 2002, at 01:12 PM, Edward Haynes wrote: Hi. How can I get apache to serve up index.jsp as the default page? I'm a newbie, but I'm pretty sure that you at least need to edit your httpd.conf file to look something like this: IfModule mod_dir.c DirectoryIndex

Re: Apache serve index.jsp not index.php

2002-03-12 Thread Peter Wieland
Have you tried the Apache DirectoryIndex directive? Something like DirectoryIndex index.jsp in your httpd.conf should work. This can be applied at global level or for each Directory or Location Refer to the Apache doc for details. Peter Hi. How can I get apache to serve up

pache Tomcat/4.0.3 - HTTP Status 404 - /servlet/SnoopServlet is not available.

2002-03-12 Thread Hostmaster of the day
You are welcome ! Yes I have : WebAppConnection conn warp localhost:8008 WebAppDeploy /var/www/host2/html/ conn / Could line 2 be the error ? --Mark OK let's try once again :-) Apologize for the previous dumb email. Anyway, maybe a stupid question :-) but have you configured your

Multiple instancess of Tomcat on the same machine.

2002-03-12 Thread Venkatesh Sangam
hi, I am running an experimental setup for Load balaning on the webservers. I am using Tomcat as the webserver. For this experimental setup,I will be running multiple instances of Tomcat on the same machine(listening on differnt ports). I have multiple copies of Tomcat stored on the same

RE: Apache serve index.jsp not index.php

2002-03-12 Thread Edward Haynes
Yes, I have that setup, but I just get a directory listing of the apache folder, not the tomcat folder -Original Message- From: Peter Wieland [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 12, 2002 2:29 PM To: [EMAIL PROTECTED] Subject: Re: Apache serve index.jsp not index.php Have

Redeployment Problems under Tomcat 4.0.2

2002-03-12 Thread Lawlor, Frank
I've run into some problems with 4.0.2. - I do NOT have persistent sessions enabled in server.xml I can initially deploy a web app by placing the .war file in webapps dir. However, if I try to redeploy I run into problems. To re-deploy I ususally stop Tomcat, delete the current app

RES: Free KAWA?

2002-03-12 Thread Jose Euclides da Silva Junior - DIGR.O
But VA isnt free! -Mensagem original- De: Kemp Randy-W18971 [mailto:[EMAIL PROTECTED]] Enviada em: terça-feira, 12 de março de 2002 13:48 Para: 'Leon Vermaak'; Tomcat Users List Assunto: RE: Free KAWA? IBM Visual Age for Java and Sun Forte. -Original Message- From: Leon

Re: pache Tomcat/4.0.3 - HTTP Status 404 - /servlet/SnoopServlet is notavailable.

2002-03-12 Thread rsequeira
Line 2 looks ok to me. If you could send in the virtual host section of the httpd.conf, the Host/Context part of your server.xml, and the appropriate part of your web.xml then maybe someone could figure out the problem. RS Hostmaster of the day [EMAIL PROTECTED] on 03/12/2002 01:36:22 PM

Re: image manipulating via servlets on tomcat4

2002-03-12 Thread Bo Xu
- Original Message - From: yilmaz [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Tuesday, March 12, 2002 9:54 AM Subject: image manipulating via servlets on tomcat4 Hi everybody, I am using tomcat4 on win 2000. I have searched all the archives and almost all

Re: Deploytool and Tomcat

2002-03-12 Thread Craig R. McClanahan
On Tue, 12 Mar 2002, John De Lello wrote: Date: Tue, 12 Mar 2002 13:02:31 -0500 From: John De Lello [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED], [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Deploytool and Tomcat Can someone explain how to configure Tomcat

Re: RES: Free KAWA?

2002-03-12 Thread Shantul Nigam
Instead of these Use NetBeans (www.netbeans.org), this is the foundation for Forte or Eclipse (www.eclipse.org), this is the foundation of IBM's WebSphere Studio. Shantul. On Tuesday, March 12, 2002, at 03:47 PM, Jose Euclides da Silva Junior - DIGR.O wrote: But VA isnt free!

Re: Error 500, Examples work

2002-03-12 Thread jeff . guttadauro
I ran into this a while back. Attribute page has no value!? ...quite a bizarre error, isn't it? I think that what I found out about this was that it happens for particularly large jsp pages (not large in terms of lots of HTML output but in terms of having lots of code in them) for some unknown

  1   2   >