Re: SSLServerSocketFactory not found in 4.1.27

2004-07-27 Thread Bill Barker
You should use the Coyote Connector instead of the deprecated HttpConnector. David Smithson [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi. On Fedora C2, Tomcat 4.1.27, tomcat fails to start due to a missing class file it seems. Here's the error from tomcat.out. [ERROR]

Re:

2004-07-27 Thread Craigmcc
attachment: yorkzdbsyg.bmp- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE:

2004-07-27 Thread Pradeep Chauhan
Hi Craig, I didnt understand what does this bmp means ? Regards, Pradeep -Original Message- From: Craigmcc [mailto:[EMAIL PROTECTED] Sent: 27.07.2004 12:16 To: Tomcat-user Subject: Re: - To unsubscribe, e-mail:

Re: SSL Certificate Errors

2004-07-27 Thread Honey George
I do not know what caused this problem..but you can solve this by explicitely trusting all the certificates. And this will work if client side certs are not used. You can find information on how to do this in the following URL. http://javaalmanac.com/egs/javax.net.ssl/TrustAll.html Thanks,

JK2 AJP13 and Content-Length

2004-07-27 Thread Hannah Li
In AJPv13 doc, there is a note: *Note: *The *content-length* header is extremely important. If it is present and non-zero, the container assumes that the request has a body (a POST request, for example), and immediately reads a separate packet off the input stream to get that body. Does it

RE: Tomcat Datasource

2004-07-27 Thread Pedro Nevado
In case it helps, have a look a this parameter: ResourceParams name=jdbc/vivoenDS parameter namefactory/name valueorg.apache.commons.dbcp.BasicDataSourceFactory/value /parameter Pedro -Mensaje original- De: Bussie, Andre D [mailto:[EMAIL PROTECTED]

Java Class is not compiling

2004-07-27 Thread Sayeed
Sir I am new to Tomcat. I am now making my first Servlet and trying to creat a class (sayeed). It give me errors as under : C:\Apache\Tomcat\webapps\ch03\myfirstwebappjavac sayeed.java sayeed.java:5: package javax.servlet.http does not exist import javax.servlet.http.HttpServlet;

RE: Java Class is not compiling

2004-07-27 Thread Nitschke Michael
It seams you are new to Java too. The error messages say that the compiler could not find the jar file javax.jar, or servlet.jar depends on your java version. The package statement at the first line is necessary to group java classes in domains that have the same functionality or fit tematiclly

RE: Java Class is not compiling

2004-07-27 Thread Aris Javier
You should download j2sdkee version or the enterprise version of java.. =) -Original Message- From: Nitschke Michael [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 27, 2004 3:30 PM To: Tomcat Users List Subject: RE: Java Class is not compiling It seams you are new to Java too. The

AW: JK2 AJP13 and Content-Length

2004-07-27 Thread Gunnar Pörschke
Hello Hannah, The header has a content - lengh, but don't ask me what size :-( I'm facing nearly the same problem. And I stuck on the doc as well.. :-( You need to set the content lengh, but you need to set this lengh. I didn't set the lengh and I had trouble while post command (file upload).

JK 1.2.6 released

2004-07-27 Thread Henri Gomez
The Tomcat team is pleased to announce the release of version 1.2.6 of the Apache Tomcat mod_jk web server connector. Tomcat is the reference implementation of a web application server which implements the Java Servlet and JavaServer Pages specifications. mod_jk is a connector which allows a

Re: JK 1.2.6 released

2004-07-27 Thread Sébastien GALLET
I can't compile mod_jk with my debian (sarge) Here is the log make[2]: entrant dans le répertoire « /var/data1/neo/apache/TMP/libapache2-mod-jk/src/jk/native/common » /bin/sh /usr/share/apache2/build/libtool --silent --mode=compile gcc -I/usr/include/apache2 -g -O2 -DHAVE_JNI

Re: Keep session when going to a secure server

2004-07-27 Thread Jules Gosnell
WADI (wadi.codehaus.org) is able to transparently migrate the sessions of a distributable webapp to the node on which a relevant request lands, so would be of use to you here. If you are using cookies, then you may find that your browser refuses to send the same cookie to both servers if it

Re: JK 1.2.6 released

2004-07-27 Thread Mario Guenterberg
On Tue, Jul 27, 2004 at 11:25:03AM +0200, Sébastien GALLET wrote: I can't compile mod_jk with my debian (sarge) Here is the log make[2]: entrant dans le répertoire « /var/data1/neo/apache/TMP/libapache2-mod-jk/src/jk/native/common » /bin/sh /usr/share/apache2/build/libtool --silent

Migrating from TC3.3.1 to TC4.1.30 What's changed?

2004-07-27 Thread Lemke, Michael IZ/HZA-IOR
I have to migrate out TC3.3.1 to TC4.1.30 to support a third party application. Apparently, the conf/server.xml has changed considerably. I can't find any change logs or FAQs to do that sort of migration. One problem: I launched the webapps with files like conf/apps-APPNAME.xml. How do I do

Problems with Tomcat install on Redhat

2004-07-27 Thread Mumanyi Bravismore
I have installed jakarta-tomcat-4.1.30 on Redhat 9. However, when I try to load the tomcat index page on SSL (https://machine ip:8443), I am getting a connection refused error. I have jdk installed on the box and have executed: $JAVA_HOME/bin/keytool -genkey -alias tomcat -keyalg RSA .

Re: Problems with Tomcat install on Redhat

2004-07-27 Thread Karen M Y Ng
You need to edit your server.xml file which can be found in $CATALINA_HOME/conf by uncommenting the following code and add two lines on keypass and keystore as follows: !-- Define a SSL Coyote HTTP/1.1 Connector on port 8443-- Connector port=8443 max thread=... ...

Re: Java Class is not compiling

2004-07-27 Thread Schalk Neethling
Download J2EE from the following URL: http://java.sun.com/j2ee/1.4/download.html#sdk Aris Javier wrote: You should download j2sdkee version or the enterprise version of java.. =) -Original Message- From: Nitschke Michael [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 27, 2004 3:30 PM To:

Re: JK 1.2.6 released

2004-07-27 Thread Sébastien GALLET
Mario Guenterberg a écrit : On Tue, Jul 27, 2004 at 11:25:03AM +0200, Sébastien GALLET wrote: I can't compile mod_jk with my debian (sarge) Here is the log make[2]: entrant dans le répertoire « /var/data1/neo/apache/TMP/libapache2-mod-jk/src/jk/native/common » /bin/sh

Apache1.3 SSL with client authentication jk2 tomcat 5

2004-07-27 Thread nicolas alin
Hi, I'm looking to do the same thing as Radu Radutiu (archive here : http://www.junlu.com/msg/94462.html) but when i use int the httpd.conf directives like JkSet2 workerEnv sslEnable 1 nothing work and apache don't start. Do you know how to use JkSet under apache 1.3 on Windows ? how to passe

Re: HttpUrlConnection.getInputStream() returns empty

2004-07-27 Thread Reynir Þór Hübner
hi, you could maybe try somthing like the following : try { String str_url = https://www.domain.com;; URL urlid = new URL(str_url); HttpsURLConnection conn = (HttpsURLConnection)urlid.openConnection(); conn.setRequestMethod(GET); conn.setDoOutput(false); out.write(RESPONSECODE = +

Re: JK 1.2.6 released

2004-07-27 Thread Mario Guenterberg
Hi, libapache2-mod-jk2 (2.0.4-1) is available for testing. You can download it or updating your sources.list. Sorry for my incorrect previous message...;-) greetings Mario -- Grau ist alle Theorie, und schwierig die Praxis! (Goethe, Faust I)

Re: JK 1.2.6 released

2004-07-27 Thread Sébastien GALLET
Mario Guenterberg a écrit : Hi, libapache2-mod-jk2 (2.0.4-1) is available for testing. thanks, but I use mod-jk not mod-jk2 Maybe I will update my sites to mod-jk2 but I can't do it now You can download it or updating your sources.list. Sorry for my incorrect previous message...;-) greetings

Re: Problems with Tomcat install on Redhat

2004-07-27 Thread Mumanyi Bravismore
I have tried adding the two lines with no successs. Karen M Y Ng wrote: You need to edit your server.xml file which can be found in $CATALINA_HOME/conf by uncommenting the following code and add two lines on keypass and keystore as follows: !-- Define a SSL Coyote HTTP/1.1 Connector on

max connection pool,max threads

2004-07-27 Thread Jignesh Patel
Hi, I have a specific questions: How much maximum database connection pool bared by tomcat5.0.19? How much maximum thread can be bear by tomcat5.0.19? -Jignesh - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: HttpUrlConnection.getInputStream() returns empty

2004-07-27 Thread Honey George
Hi reynir, I have made the changes as per you suggestion and I am getting the response code as 200. But still the inputstream returns empty, is.available() returns 0 bytes. thanks, - george --- Reynir_Þór_Hübner [EMAIL PROTECTED] wrote: hi, you could maybe try somthing like the following :

RE: max connection pool,max threads

2004-07-27 Thread Pradeep Chauhan
Hi , In general ppl had done Load testing more then 1000 users also. Even i had done the Load test on Tomcat with 200 Concurent user. and it worked properly. Performence of any server is directly proportional to Hardware configuration. Depending on ur application and hardware you can judge the No

Re: HttpUrlConnection.getInputStream() returns empty

2004-07-27 Thread David Goodenough
I am hitting what looks like exactly the same problem. I have a JSP application which uses the io tags to submit XMl requests to a servlet running on the same machine. The XML servlet carries on running quite happily even once the errors start from the webUI which is the JSP bit. Once the

RE: Migrating from TC3.3.1 to TC4.1.30 What's changed?

2004-07-27 Thread Shapira, Yoav
Hi, Many things changed, including fairly dramatic changes in the configuration. It's at least a 2-major-release jump after all. Tomcat 5 supports more configuration of applications via their own xml context configuration files than tomcat 4 does. You may want to migrate to Tomcat 5 instead of

RE: servlets and jsp with Tomcat 5.0

2004-07-27 Thread Shapira, Yoav
Hi, I didn't see any question or error in your message. What's wrong (besides several sub-optimal coding practices) ? Yoav Shapira Millennium Research Informatics -Original Message- From: Bill Reynolds [mailto:[EMAIL PROTECTED] Sent: Monday, July 26, 2004 7:22 PM To: [EMAIL PROTECTED]

RE: Validating Users

2004-07-27 Thread Shapira, Yoav
Hi, Yup, you should be able to get to the admin app using the richard user. The file is case-sensitive, and you have to restart the server after you edit it (with the default configuration). Yoav Shapira Millennium Research Informatics -Original Message- From: Richard Crawford

RE: Java Class is not compiling

2004-07-27 Thread Caldarale, Charles R
From: Schalk Neethling [mailto:[EMAIL PROTECTED] Subject: Re: Java Class is not compiling Download J2EE from the following URL: http://java.sun.com/j2ee/1.4/download.html#sdk Aris Javier wrote: You should download j2sdkee version or the enterprise version of java.. Actually, that's

RE: Java Class is not compiling

2004-07-27 Thread Shapira, Yoav
Hi, Yeah, I second Mr. Caldarale's advice. Don't get j2ee.jar on your classpath. Yoav Shapira Millennium Research Informatics -Original Message- From: Caldarale, Charles R [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 27, 2004 9:44 AM To: Tomcat Users List Subject: RE: Java Class is

SocketException while writing to Outputstream

2004-07-27 Thread Sreejith
Hi all, I am running Tomcat 4.1.27 on JDK 1.4.2, Win2k. I am getting a SocketException (Software caused connection abort) while writing to Outputstream. Searched the net but couldn't find an useful answer. What could be the issue? Any hint would be greatly appreciated Given below is the

org.apache.jasper.JasperException: Name prototypedb is not bound in this Context

2004-07-27 Thread Shilpa Nalgonda
I am not able to set up datasource for connection pooling , i am using tomcat 4.1.3, and connection to mysql database.. following is the code to retrieve the datasource... === Context ctx

RE: Win2kSP4, Apache-2.0.49 + Tomcat-5.0.27 + mod_jk2-2.0.43 - Memory Reference Error

2004-07-27 Thread Noah
OK, it seems to have reduced the number of errors drastically but not eliminated them, so I most likely just need to allocate still more memory. I'll post again hopefully with a post-mortem tomorrow. - Noah Previous Message:

Re: AW: JK2 AJP13 and Content-Length

2004-07-27 Thread Hannah Li
This has been bother me for quite some time and I have searched and googled everywhere but can not find an answer. I just want to make sure whether AJPv13 reads request body sent in chunks (no Content-Length in header). If AJPv13 does handle it, I may need to find some other causes like I may

RE: SocketException while writing to Outputstream

2004-07-27 Thread Shapira, Yoav
Hi, The user closed the browser while you were generating your page. Get a later version of tomcat where this has been fixed. Yoav Shapira Millennium Research Informatics -Original Message- From: Sreejith [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 27, 2004 8:38 AM To: [EMAIL

Re: Tomcat Datasource

2004-07-27 Thread Ruth, Brice
In addition to defining the DataSource in Tomcat's admin tool, you'll need to define the Resource in you web.xml - something like this: resource-ref !-- optional -- description Resource reference to a factory for java.sql.Connection instances that may be

RE: Win2kSP4, Apache-2.0.49 + Tomcat-5.0.27 + mod_jk2-2.0.43 - Memory Reference Error

2004-07-27 Thread Pradeep Chauhan
Hi Noah, Great news!! Regards, Pradeep -Original Message- From: Noah [mailto:[EMAIL PROTECTED] Sent: 27.07.2004 19:29 To: [EMAIL PROTECTED] Subject: RE: Win2kSP4, Apache-2.0.49 + Tomcat-5.0.27 + mod_jk2-2.0.43 - Memory Reference Error OK, it seems to have reduced the number of errors

RE: Tomcat Datasource

2004-07-27 Thread Shapira, Yoav
Hi, You'll also need to define a ResourceLink in your Context, that links You only need a ResourceLink if your Resource is defined in GlobalNamingResources. This person's Resource is defined in his/her Context, so a ResourceLink is not needed. Another good idea would be to use a more recent

Re: Beyond bassic form authentication?

2004-07-27 Thread Anastasios Angelidis
That wont work. Try navigating to the login page of the security sample on Tomcat. and try loging in! It will throw an exception of the sort that it canot authenticate against itself Yiannis Mavroukakis wrote: Why not make the welcome page part of the secured app , let the users

Re: Tomcat Datasource

2004-07-27 Thread Ruth, Brice
Shapira, Yoav wrote: Hi, You'll also need to define a ResourceLink in your Context, that links You only need a ResourceLink if your Resource is defined in GlobalNamingResources. This person's Resource is defined in his/her Context, so a ResourceLink is not needed. Another good idea would

RE: Tomcat Datasource

2004-07-27 Thread Shapira, Yoav
Hi, I wasn't wrong, just unable to read, it appears ;) I thought it was inside a Context declaration. Yoav Shapira Millennium Research Informatics -Original Message- From: Ruth, Brice [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 27, 2004 10:15 AM To: Tomcat Users List Subject: Re:

Re: Tomcat Datasource

2004-07-27 Thread Ruth, Brice
Very true, I stand corrected :) Shapira, Yoav wrote: Hi, I wasn't wrong, just unable to read, it appears ;) I thought it was inside a Context declaration. Yoav Shapira Millennium Research Informatics -Original Message- From: Ruth, Brice [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 27,

Point Apache at Tomcat Contexts

2004-07-27 Thread Matthew Mamet
Hi, I'm a developer for a small hosting company. We currently host Java-enabled sites on a windows server. We use IIS, jk2, and Tomcat to serve Java. The problem we have is that every time the Tomcat server.xml is touched (new site, new context, etc), we have to restart Tomcat, and that affects

OT: Eclipse users list/mail group

2004-07-27 Thread Sternbergh, Cornell
Hi First, my apologies for being off-topic. I've been searching eclipse.org for list/forum/group/whatever, for simple users of Eclipse, not developers, without success. Anybody know such a source? TIA Cornell - To

Re: OT: Eclipse users list/mail group

2004-07-27 Thread Denis Haskin
When you find it please tell the rest of us! It's unclear to me which of the lists is a general-user list... they seem to be very specific. Thanks, dwh Sternbergh, Cornell wrote: Hi First, my apologies for being off-topic. I've been searching eclipse.org for list/forum/group/whatever, for

RE: Beyond bassic form authentication?

2004-07-27 Thread Yiannis Mavroukakis
Ok..:) puts D hat and sits in the corner Let me see if I got this right..if you put a form on the unprotected resource that posts to j_security_check, in theory and according to the servlet spec, you should be redirected to the same url (or the requested url and be authenticated). If that is

RE: Tomcat Datasource -- please help..

2004-07-27 Thread Shilpa Nalgonda
I have defined the resource in web.xml as below... and also defined the datasouce resources under context in server.xml... even then it does not help.. I get the same error org.apache.jasper.JasperException: Name prototypedb is not bound in this Context Web.xml

RE: Point Apache at Tomcat Contexts

2004-07-27 Thread Shapira, Yoav
Hi, The Tomcat Admin tool is hardly production-grade, I think we can all agree, but the Tomcat Manager Tool allows addition and removal of contexts without restarting Tomcat. We'd like to hang our hopes on that :-) Patches and any other contributions are always welcome ;) I think you can point

Re: OT: Eclipse users list/mail group

2004-07-27 Thread David Goodenough
platform seems to be where the most general questions get asked. David On Tuesday 27 July 2004 15:34, Denis Haskin wrote: When you find it please tell the rest of us! It's unclear to me which of the lists is a general-user list... they seem to be very specific. Thanks, dwh Sternbergh,

Re: Eclipse users list/mail group

2004-07-27 Thread epyonne
Have you tried www.eclipse.org? They have several newsgroups there. - Original Message - From: Sternbergh, Cornell [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Tuesday, July 27, 2004 09:31 AM Subject: OT: Eclipse users list/mail group Hi First, my apologies for

Re: Tomcat Datasource -- please help..

2004-07-27 Thread Ruth, Brice
I believe if you're defining your DataSource in the Context directly, not in the Global Naming Resources, then you do not need the resource-ref in web.xml, nor the ResourceLink mentioned below. What code are you using to get to your connection? The JNDI lookup should be to

RE: Tomcat Datasource -- please help..

2004-07-27 Thread Shilpa Nalgonda
Below is the code i am using to get the connection, and datasource... Context ctx = new InitialContext(); Context env = (Context)ctx.lookup(java:comp/env); DataSource ds = (DataSource) env.lookup(jdbc/prototypedb);

RE: Migrating from TC3.3.1 to TC4.1.30 What's changed?

2004-07-27 Thread Lemke, Michael IZ/HZA-IOR
From: Shapira, Yoav Sent: Tuesday, July 27, 2004 3:01 PM To: Tomcat Users List Subject: RE: Migrating from TC3.3.1 to TC4.1.30 What's changed? Tomcat 5 supports more configuration of applications via their own xml context configuration files than tomcat 4 does. Eek, another change to

Re: Tomcat Datasource -- please help..

2004-07-27 Thread Ruth, Brice
I believe that should work. I'm out of ideas ... it seems strange that the Exception you're getting is complaining about prototypedb not being bound, instead of jdbc not being bound ... usually that comes first. That's the only thing that sticks out to me, but I don't really know what to make

RE: Migrating from TC3.3.1 to TC4.1.30 What's changed?

2004-07-27 Thread Shapira, Yoav
Hi, One problem: I launched the webapps with files like conf/apps-APPNAME.xml. How do I do that with TC4.1.x? Is there a simple solution? Yes: use Context tags inside conf/server.xml to define your applications. Set autoDeploy=false for the Host so that only your explicit Context tags

RE: Tomcat Datasource -- please help..

2004-07-27 Thread Shilpa Nalgonda
As you have said i am getting jdbc not bound exception only. But at one point i changed the env lookup to point to prototypedb instead of jdbc/prototypedb.. so thats when i get prototypedb not bound error... Anyway do you think that i have put the context to the jndi resource in the wrong place

RE: Tomcat Datasource -- please help..

2004-07-27 Thread Shapira, Yoav
Hola, Can you use Context#listBindings, iterate through that enumeration, and print out what bindings you do have in your naming context? Yoav Shapira Millennium Research Informatics -Original Message- From: Shilpa Nalgonda [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 27, 2004 11:36

Re: Tomcat Datasource -- please help..

2004-07-27 Thread Ruth, Brice
Well, the way I do it is adding the data source using the admin tool, then adding a resource-ref to web.xml and a ResourceLink to the Context. This keeps things a bit cleaner in my opinion. What you're doing should work .. but I can't really give you much more than that. Try defining it

RE: Tomcat too slow in Windows 2000 server

2004-07-27 Thread Juan Escalante
Hi everyone, I found out where's the root of the problem, I still don't know exactly what it is though: The machine I am using as a server has 2 NICs, one to connect to the telephony network and another one to connect to the companys LAN and the Internet, I disabled the connection to the LAN and

Win2K3 / Tomcat 4.1 and 5.0 issues

2004-07-27 Thread Martin, David S
Here is the environment: DELL 6650 running a fresh Win2k3 Advanced Server installation Tomcat 5.0 JDK 1.4.2 The machine is connected to our intranet at 100Mbit. Here is the problem: I got Tomcat 5.0 and my web app to install and run fine. The problem begins when I

Webapp in Tomcat 5 SUPER SLOW!

2004-07-27 Thread Kevin . Wilson
The same app on TC 4.1.27 loads pages almost instantly. I converted the webapps using Netbeans 3.6 and loaded it to first a 5.0.25 then a 5.0.27 tomcat server and all pages take forever to load. I have another app on the same server and it loads its pages at normal speed. App 1 does use the

configuration of server.xml

2004-07-27 Thread chandrashekhar sf cs
  hi whenever i create a folder under webapp suppose myApp the servlet and jsp don't work in browser. i am using stand alone server and win2000. what should change in server.xml. please help. chandrashekhar

RE: Webapp in Tomcat 5 SUPER SLOW!

2004-07-27 Thread Shapira, Yoav
Hi, I'd question the conversion mechanism and the server configuration. The same code should run at the same speed if not faster on tomcat 5 when compared to tomcat 4. Yoav Shapira Millennium Research Informatics -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]

RE: configuration of server.xml

2004-07-27 Thread Shapira, Yoav
Hi, Create the folder, populate it according to the App Developer's guide (see the First Webapp link in the Tomcat docs), and restart the server. Yoav Shapira Millennium Research Informatics -Original Message- From: chandrashekhar sf cs [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 27,

problem with servlets and tomcat

2004-07-27 Thread sowmya
Hi, I am getting the HTTP 404 message - but my settings have been done - atleast, seems so to me. I access my servlet using http://local:8080/servlet/SimpleServlet and my class file is in webapps/ROOT/WEB-INF/classes. I am trying to set up Tomcat with Servlets before I can migrate my actual

Re: SSLServerSocketFactory not found in 4.1.27

2004-07-27 Thread David Smithson
I'm new to Tomcat, Coyote, Catalina, etc. It seemed to me that the Coyote connector would not work in 4.1.27. What would a coyote connector look like? I think the RPMs distributed with FC2 are mysteriously broken anyway. I may just trash them and install a 5.x from scratch. On Mon, 2004-07-26

Website Planning

2004-07-27 Thread Jonathan
OK, I'm going to ask my previous question(s) in a different way Basically, I want to build a website that has dynamic news and a dynamic navbar on the index page. This website also needs to have a forums app, and a photo gallery app. Everyplace on the site should contain the same dynamic nav

RE: problem with servlets and tomcat

2004-07-27 Thread Shapira, Yoav
Hi, Since your servlet is mapped to /SimpleServlet, access it as /SimpleServlet, not /servlet/SimpleServlet. Yoav Shapira Millennium Research Informatics -Original Message- From: sowmya [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 27, 2004 1:08 PM To: [EMAIL PROTECTED] Subject:

Re: Beyond bassic form authentication?

2004-07-27 Thread Anastasios Angelidis
So if I understand you... On my index page which is not protected put a form with form ... action=j_security_check And somewhere at the top of page have something like if(getUserPrincipal()) redirect I guess we can both try it lol... Yiannis Mavroukakis wrote: Ok..:) puts D hat and sits in

RE: Webapp in Tomcat 5 SUPER SLOW!

2004-07-27 Thread Kevin . Wilson
I failed to mention that I am using the SSL http connector not the standard. -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 27, 2004 11:50 AM To: Tomcat Users List Subject: RE: Webapp in Tomcat 5 SUPER SLOW! Hi, I'd question the conversion

sendRedirect not working same after upgrade to 5...26

2004-07-27 Thread Williams, Bret M.
Hi, I recently upgraded from Tomcat 3.2.1 to 5.xxx and noticed that sendRedirect() did not work the same between the two versions. In Tomcat 5 when I tried to redirect to a servlet whose output contenttype was text/plain or application/pdf I would get a blank page and be forced to refresh

RE: sendRedirect not working same after upgrade to 5...26

2004-07-27 Thread Shapira, Yoav
Hi, It's not a problem that's been discussed to death, that's for sure. Enable the AccessLogValve (it's commented out by default in server.xml) and observe the URL requested and server response code for your redirect request. As for archives, try the ones at AIMS (marc.theaimsgroup.com or

Re: Beyond bassic form authentication?

2004-07-27 Thread Dennis Dai
On 7/27/2004 10:34 AM, Anastasios Angelidis wrote: So if I understand you... On my index page which is not protected put a form with form ... action=j_security_check And somewhere at the top of page have something like if(getUserPrincipal()) redirect I guess we can both try it lol... No,

Failed to start application. But why?

2004-07-27 Thread LINGALA, AMARESHWAR G (SBCSI)
Hi, I just tried to deploy a new Struts application on Tomcat. But I could not get it to start. Below is the error received. SEVERE: Exception during cleanup after start failed LifecycleException: Container StandardContext[/SSBilling] has not been started at

Re: Beyond bassic form authentication?

2004-07-27 Thread Anastasios Angelidis
That what Iwas saying previously. So how can I put a login page on my home page to allow access to the protected. Resources. theserverside.com has it and all kinds of web sites. Dennis Dai wrote: On 7/27/2004 10:34 AM, Anastasios Angelidis wrote: So if I understand you... On my index page which

ANN: Install Tomcat on your IBM mainframe in an hour or less

2004-07-27 Thread Kirk Wolf
JZOS - Java™ for z/OS® is a set of free tools designed to make Java easier to use on the mainframe. *** JZOS Java Batch Launcher and Toolkit *** Run Java applications on z/OS or OS/390 as normal MVS batch jobs (without BPXBATCH) - * Simple yet flexible way to configure and invoke Java from

Re: Beyond bassic form authentication?

2004-07-27 Thread Anastasios Angelidis
I want to do exactly like the serverside.com You have alogin form on each unprotected page thata llows you to login So you can hit the news page, the discussion page, patterns etc... without having to login, but each section offer the login form... Dennis Dai wrote: On 7/27/2004 10:34

RE: Failed to start application. But why?

2004-07-27 Thread Shapira, Yoav
Hi, Is there anything else in your logs? What tomcat version are you using? Yoav Shapira Millennium Research Informatics -Original Message- From: LINGALA, AMARESHWAR G (SBCSI) [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 27, 2004 2:19 PM To: Tomcat Users List Subject: Failed to start

RE: Failed to start application. But why?

2004-07-27 Thread LINGALA, AMARESHWAR G (SBCSI)
Well that's all I can find in the logs. I am using version 5.0.18 -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 27, 2004 1:26 PM To: Tomcat Users List Subject: RE: Failed to start application. But why? Hi, Is there anything else in your logs?

RE: Failed to start application. But why?

2004-07-27 Thread Shapira, Yoav
Hi, This error comes from StandardContext#start and in most cases it would be preceded by another warning or error in the log. Can you start it normally, not with the Manager app? Yoav Shapira Millennium Research Informatics -Original Message- From: LINGALA, AMARESHWAR G (SBCSI)

Re: Win2K3 / Tomcat 4.1 and 5.0 issues

2004-07-27 Thread QM
On Tue, Jul 27, 2004 at 08:53:45AM -0700, Martin, David S wrote: : - : | Test | O/S, Tomcat Ver. | Time| : - : | 1| Linux, 5.0 | ~2 min | : | 2| Win2k3, 5.0 | ~20 min | : | 3| Win2k3, 4.1 | ~20

RE: Failed to start application. But why?

2004-07-27 Thread LINGALA, AMARESHWAR G (SBCSI)
Well it says it cant read the file Jul 27, 2004 1:45:49 PM org.apache.catalina.core.StandardHostDeployer install INFO: Installing web application at context path /SSBilling from URL file:/appl/aaa/tomcat/webapps/SSBilling Jul 27, 2004 1:45:49 PM org.apache.catalina.core.StandardContext

Re: Tomcat Datasource -- please help..

2004-07-27 Thread David Smith
Hi. I see a couple of things different from my working setup in your setup below. First: You need a tag as below just before the ResourceParams.../ResourceParams block: Resource name=jdbc/prototypedb auth=container type=javax.sql.DataSource/ Second, and this might not be a show stopper,

RE: Win2K3 / Tomcat 4.1 and 5.0 issues

2004-07-27 Thread Martin, David S
QM, As it turns out it might not be a Tomcat issue after all. I had our IT guys install IIS on the machine with the issue, created a test HTML page that has an upload field and IIS is showing the same type of problem ... weird.

Re: Win2K3 / Tomcat 4.1 and 5.0 issues

2004-07-27 Thread QM
On Tue, Jul 27, 2004 at 12:05:00PM -0700, Martin, David S wrote: : our IT guys install IIS on the machine with the issue, created a test : HTML page that has an upload field and IIS is showing the same type of : problem ... weird. Hmm... That takes Java I/O out of the picture. Same type of FS

Re: Win2K3 / Tomcat 4.1 and 5.0 issues

2004-07-27 Thread David Smith
I know this isn't an answer to your problem, but I've run Tomcat 5.0.19 on my Win2k3 system and it responded as fast as any of my Linux boxes. That's saying a lot considering I was running Cocoon 2 on it -- an XML publishing app that seems to eat CPU for breakfast. I didn't remove any

what is the preferred way to instantiate MBeans at startup

2004-07-27 Thread Jerome Lacoste
Hi, I am looking at this J2EE application, deployed on JBoss 3.x, which could be ported easily to a pure servlet/jsp application if some of its dependencies with JBoss were cut down. One of these is the possibility to start services in JBoss using a jboss.jcml file, and to register MBean

RE: Win2K3 / Tomcat 4.1 and 5.0 issues

2004-07-27 Thread Cary . Conover
Return Receipt Your RE: Win2K3 / Tomcat 4.1 and 5.0 issues document:

Re: Win2K3 / Tomcat 4.1 and 5.0 issues

2004-07-27 Thread Cary . Conover
There is additional security in IIS v6 that causes many of these issues. It is the third tab in the IIS configuration section in the Management Console on W2K3. I would experiment with identifying the specific java servlet redirector for each of the tomcats bases that are in use on the system

RE: Win2K3 / Tomcat 4.1 and 5.0 issues

2004-07-27 Thread Martin, David S
QM, Yes, they both have the same FS in the Win2K and Win2K3 machines. Well I know it's not the NIC card on the machine because I can log onto the server that is having the issue, go to the machine where the 48MB file lives and drag and drop it onto the desktop and the file transfers in ~2 min.

RE: Win2K3 / Tomcat 4.1 and 5.0 issues

2004-07-27 Thread Martin, David S
Cary, I am not doing any IIS redirection to Tomcat. I was asked to get IIS on that same machine to see if IIS would have the same slowness when someone tried to upload a file to it. David Martin

Win2K3 / Tomcat 4.1 and 5.0 issues

2004-07-27 Thread Cary . Conover
Return Receipt Your Win2K3 / Tomcat 4.1 and 5.0 issues document:

RE: Win2K3 / Tomcat 4.1 and 5.0 issues

2004-07-27 Thread Cary . Conover
Return Receipt Your RE: Win2K3 / Tomcat 4.1 and 5.0 issues document:

RE: Win2K3 / Tomcat 4.1 and 5.0 issues

2004-07-27 Thread Cary . Conover
Return Receipt Your RE: Win2K3 / Tomcat 4.1 and 5.0 issues document:

Tomcat 5.0.27 / JavaServer Faces

2004-07-27 Thread Betto McRose G,
I cannot run a war file into the server the war file has jsf files, the message is the resource is not available I also tried to run sample dirs directly copying the entire dir, but I got always the same error Betto McRose G,

DBCP in Tomcat 5.0: must deploy some artifacts in /common/lib (classes) ?!

2004-07-27 Thread Jerome Lacoste
Hi, I am deploying a J2EE app in Tomcat 5.0.27. The application uses commons-dbcp. I've found out that if I don't put the jocl file AND the DB drivers in the $CATALINA_HOME/common/lib/ (classes) directory, the DBCP would fail. Either the config file is not found Caused by:

RE: DBCP in Tomcat 5.0: must deploy some artifacts in /common/lib(classes) ?!

2004-07-27 Thread Shapira, Yoav
Hi, That's because Tomcat bundles DBCP. If you want to separate them completely, put your copy in WEB-INF/lib, and the bundled copy in server/lib, and nothing for DBCP in the common or shared classloader repositories. Yoav Shapira Millennium Research Informatics -Original Message-

  1   2   >