AW: Using appelts with different clients

2005-06-08 Thread Heiner . Amthauer
Well, I discovered the following facts: - I've created a jsp-page with the following line: jsp:plugin type=applet code=applet.MyApplet codebase=. width=100 height=100/ - I've deployed all files to BEA weblogic. The page loades fine on IE and firefox. - I've deployed all files to tomcat. The

RE: Using appelts with different clients

2005-06-08 Thread Caldarale, Charles R
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Subject: AW: Using appelts with different clients - I've deployed all files to BEA weblogic. The page loades fine on IE and firefox. - I've deployed all files to tomcat. The page loads on IE, however, it doesn't on firefox. Therefore,

Re: AW: Using appelts with different clients

2005-06-08 Thread Jost Richstein
Tomcat 5.5.9 generates the following code snippet, requesting version 1.2.2 of the plugin: OBJECT classid=clsid:8AD9C840-044E-11D1-B3E9-00805F499D93 width=100 height=100 codebase=http://java.sun.com/products/plugin/1.2.2/jinstall-1_2_2-win.cab#Version=1,2,2,0; PARAM name=java_code

AW: AW: Using appelts with different clients

2005-06-08 Thread Heiner . Amthauer
u r right, of course. It's just that weblogic generates the page OK for both clients. This is the code generated for firefox: EMBED type=application/x-java-applet code=applet.MyApplet codebase=. align=top archive=applet.jar height=100 name=MyApplet width=100/EMBED This works perfectly well.

Tomcat CGI and HTTP status codes

2005-06-08 Thread Chris Picton
Hi all I am trying to get squivi2 running under tomcat cgi, but I am having a problem with redirects. Code I am testing generates a redirect as follows: - my $tempout = $q-header( -nph=1, -status=302 Moved Temporarily, -location=$dest, ); open F, /tmp/f; print F $tempout; close F;

Jserv to Tomcat migration

2005-06-08 Thread gaurav
Hi List, We thinking migrating some legacy code from Jserv 1.1.2 to tomcat 5. We some running a legacy application that runs entirely on servlet I am looking around some practical insightful tips/ guidance on this matter ...it there is any Jserv to Tomcat migration guide book or

percent in URL makes tomcat chocke

2005-06-08 Thread Holger Klawitter
Hi there, I would like to use my tomcat standalone (don't want to maintain more than one server :-) also as a server for debian packages. However as tomcat interprets percent characters in file names, apt-get is not capable to retrieve the deb files from the tomcat server. Example URL:

Re: percent in URL makes tomcat chocke

2005-06-08 Thread Omar Adobati
maybe u can try to replace the % symbol with the ASCII value, that is #37; found at http://www.lookuptables.com/ regards Omar On 6/8/05, Holger Klawitter [EMAIL PROTECTED] wrote: Hi there, I would like to use my tomcat standalone (don't want to maintain more than one server :-) also as a

Re: Why I got multiple/many instance of tomcat + jvm right after I've started tomcat? ( on Red Hat Linux E 3 )

2005-06-08 Thread Anto Paul
On 6/7/05, Mohd. Jeffry [EMAIL PROTECTED] wrote: Dear All, I got 6 servers running rhel3 and tomcat 4.1.27. One of this servers its tomcat is giving so many instance of tomcat and jvm but not for other server. They are running with the same configuration as far as tomcat and jvm is concern.

Re: Jserv to Tomcat migration

2005-06-08 Thread QM
On Wed, Jun 08, 2005 at 04:18:30PM +0530, gaurav wrote: :We thinking migrating some legacy code from Jserv 1.1.2 to : tomcat 5. : I am looking around some practical insightful tips/ guidance on this : matter ...it there is any Jserv to Tomcat migration guide book or any : other

Embedded Tomcat SSL

2005-06-08 Thread Diarmuid McDonald
Hi, Can anyone help me with regard to running Embedded Tomcat 5.5.9 with SSL. I found a mail archive before that has the same problem, however there is no resolution. http://www.mail-archive.com/tomcat-user@jakarta.apache.org/msg153661.html I have included my code and errors that I am

Re: percent in URL makes tomcat chocke

2005-06-08 Thread Holger Klawitter
Omar Adobati wrote: maybe u can try to replace the % symbol with the ASCII value, that is #37; found at http://www.lookuptables.com/ It's not about that *I* can't load that file. *apt-get* needs to be able to do it. I already tried to use urlrewrite, but the filter are already too late down

Re: Why I got multiple/many instance of tomcat + jvm right after I've started tomcat? ( on Red Hat Linux E 3 )

2005-06-08 Thread Mohd. Jeffry
All servers are using the same kernel :- [EMAIL PROTECTED] admin]$ uname -a Linux iedb1 2.4.21-9.0.1.ELsmp #1 SMP Mon Feb 9 22:26:51 EST 2004 i686 i686 i386 GNU/Linux On 6/8/05, Anto Paul [EMAIL PROTECTED] wrote: On 6/7/05, Mohd. Jeffry [EMAIL PROTECTED] wrote: Dear All, I got 6 servers

RE: Servlet Concurrency Issues

2005-06-08 Thread Michael Pasko
Thanks Chuck, that was exactly the problem. I was under the very poor assumption that a new thread and newly instantiated servlet object was created every time a request was made, instead of all threads working on only one instance of an object. To mimic the desired behavior I've fixed the

RE: Servlet Concurrency Issues

2005-06-08 Thread Raghupathy,Gurumoorthy
For thread safe programs 1. Declare all your variables within your method. 2. Do not declare static ( class level ) variables. 3. Pass Parameters from one method to another rather than accessing global variables. Regards Guru -Original Message- From: Michael Pasko

adding new virtual hosts without restart?

2005-06-08 Thread Thomas Corte
Hello, I understand that it is possible to (re-)deploy new contexts/web applications in Tomcat 5.5.9 without a complete server restart. I wonder whether the same might be possible for new virtual hosts, i.e. adding new virtual hosts/IP addresses to a running Tomcat server. From the

RE: Module jk2 and jk Connectormodules

2005-06-08 Thread luc_boudreau
Hi, Jk suse 9.1 binary? Yes, you need a binary module suitable for your OS. Or, you still can try tom compile it for your system, but it's not recommended since it's too long for not so many more advantages. Same: /, \ for suse? Of course, you have adapt the paths to match your OS logical

Re: adding new virtual hosts without restart?

2005-06-08 Thread delbd
If you add virtual hosts using the tomcat admin interface and hit the commit button on top after all changes, you do not have to issue a bin/shutdown.sh and a bin/startup.sh. However, the catalina engine is restarted and so are all webapps in it. Le Mercredi 8 Juin 2005 14:39, Thomas Corte a

RE: Servlet Concurrency Issues

2005-06-08 Thread Peter Crowther
From: Michael Pasko [mailto:[EMAIL PROTECTED] To mimic the desired behavior I've fixed the problem by adding this (implements SingleThreadModel)... public class ServletName implements SingleThreadModel Note that SingleThreadModel isn't supported in more recent versions of Tomcat. This may

Re: Servlet Concurrency Issues

2005-06-08 Thread Remy Maucherat
On 6/8/05, Peter Crowther [EMAIL PROTECTED] wrote: Note that SingleThreadModel isn't supported in more recent versions of Tomcat. This may or may not worry you depending on whether you want to move to a more recent version :-). I've posted already about that: if you don't know about

RE: Tomcat, SSL, IE, and .pdf downloads

2005-06-08 Thread Panichi, Mary-Beth
I think that I'll be leaving the moral decisions to my network admins. They can decide what they feel is the right answer with regard to network security. But it's good to know that there is a way to fix the problem. Thanks again to everyone for all the input! -Mary Beth -Original

RE: Servlet Concurrency Issues

2005-06-08 Thread Peter Crowther
From: Remy Maucherat [mailto:[EMAIL PROTECTED] Your statement is completely wrong, STM is fully supported in Tomcat 5.5, with instance pooling for good performance. Sorry, Remy - I should have checked rather than relying on memory. - Peter

Re: Servlet Concurrency Issues

2005-06-08 Thread Remy Maucherat
On 6/8/05, Peter Crowther [EMAIL PROTECTED] wrote: From: Remy Maucherat [mailto:[EMAIL PROTECTED] Your statement is completely wrong, STM is fully supported in Tomcat 5.5, with instance pooling for good performance. Sorry, Remy - I should have checked rather than relying on memory. No

Re: Servlet Concurrency Issues

2005-06-08 Thread Dakota Jack
Your best bet for understanding multithreading issues is to get a good understanding of the JVM. On 6/8/05, Michael Pasko [EMAIL PROTECTED] wrote: Thanks Chuck, that was exactly the problem. I was under the very poor assumption that a new thread and newly instantiated servlet object was

Re: Servlet Concurrency Issues

2005-06-08 Thread Anto Paul
On 6/8/05, Dakota Jack [EMAIL PROTECTED] wrote: Your best bet for understanding multithreading issues is to get a good understanding of the JVM. Can you recommend one ? -- rgds Anto Paul - To unsubscribe, e-mail: [EMAIL

default IP address connector binding?

2005-06-08 Thread Paul Singleton
My Linux server's eth0 supports ten IP addresses. What happens (in 5.5.9) if my HTTP Connector doesn't specify an address = 216.119.217.240 attribute? Does it use the first one? all of them? (it's working but I need to know exactly what it's doing) Paul Singleton -- No virus found in

Re: default IP address connector binding?

2005-06-08 Thread Tim Funk
All of them -Tim Paul Singleton wrote: My Linux server's eth0 supports ten IP addresses. What happens (in 5.5.9) if my HTTP Connector doesn't specify an address = 216.119.217.240 attribute? Does it use the first one? all of them? (it's working but I need to know exactly what it's

Re: default IP address connector binding?

2005-06-08 Thread Markus Schönhaber
Am Mittwoch, 8. Juni 2005 16:04 schrieb Paul Singleton: My Linux server's eth0 supports ten IP addresses. What happens (in 5.5.9) if my HTTP Connector doesn't specify an address = 216.119.217.240 attribute? Does it use the first one? all of them? (it's working but I need to know

Re: percent in URL makes tomcat chocke

2005-06-08 Thread Tim Diggins
I think tomcat is behaving correctly... You may have missed out an important fact about URLs... check out http://www.w3.org/Addressing/rfc1630.txt Universal Resource Identifiers in WWW THE PERCENT SIGN The percent sign (%, ASCII 25 hex) is used as the escape character in the

Re: Servlet Concurrency Issues

2005-06-08 Thread Woodchuck
hihi all, does Tomcat 5.5.x handle this instance pooling transparently for objects implementing STM? do i need to configure Tomcat to turn on this feature? tia, woodchuck --- Remy Maucherat [EMAIL PROTECTED] wrote: Your statement is completely wrong, STM is fully supported in Tomcat 5.5,

tomcat causes servlet malfunction???

2005-06-08 Thread Michael Echavez
Hi Everyone! There is a servlet i found from a book that utilizes the parameters from servlets but whenever i run it the browser doesnt seem to open the class properly and instead it only downloads the .class file. I think the problem here has something to do with the new Tomcat version. Can

Re: tomcat causes servlet malfunction???

2005-06-08 Thread Jason Bainbridge
On 6/8/05, Michael Echavez [EMAIL PROTECTED] wrote: Hi Everyone! There is a servlet i found from a book that utilizes the parameters from servlets but whenever i run it the browser doesnt seem to open the class properly and instead it only downloads the .class file. I think the problem here

Re: Set Connector to secure but DON'T use TLS/keystore/etc.?

2005-06-08 Thread John G. Norman
My suggested solution (2) below works ok as a temporary stopgap. So, if you ever find yourself in this scenario -- Tomcat behind a hardware ssl accelerator but you need to redirect for confidential matrials), a stopgap solution is the code below. My question is still open as to whether or not a

Re: Embedded Tomcat SSL

2005-06-08 Thread Mark
I do not think that you need an SSL connector. I have an embedded tomcat working using mutual authenticated SSL and the connector is not SSL enabled. On 6/8/05, Diarmuid McDonald [EMAIL PROTECTED] wrote: Hi, Can anyone help me with regard to running Embedded Tomcat 5.5.9 with SSL. I found

Re: Embedded Tomcat SSL

2005-06-08 Thread Atul
Hi Mark, On a similar note, would you be able to point me on how to get CRL validator invoked by tomcat 5.x for ssl/mutual. thnks On 6/8/05, Mark [EMAIL PROTECTED] wrote: I do not think that you need an SSL connector. I have an embedded tomcat working using mutual authenticated SSL and the

RE: Embedded Tomcat SSL

2005-06-08 Thread Diarmuid McDonald
Hi Mark, Im not sure I understand what you mean by mutual authenticated SSL. I set to not be SSL enabled and it made no difference when tring to connect to https://localhost:9012/axis/ . i.e. Connector sshConnector = embedded.createConnector( (java.net.InetAddress)

tomcat windows / mysql linux

2005-06-08 Thread daniel steel
hi all, i have an interesting problem. our app server(tomcat 5.5) on windows 2003 communicates with mySQl database on linux box. our client application is very slow each time we log in. when we moved the database to windows box, the application is super fast. does anybody have thoughts on

Re: tomcat causes servlet malfunction???

2005-06-08 Thread Ben Souther
Where is the servlet's class file? On Wed, 2005-06-08 at 11:35, Michael Echavez wrote: i didnt use the invoker here. ive explicitly mapped my servlet with that url. below is a part of my web.xml servlet servlet-nameParameterServlet/servlet-name description This

Question on Configuring Virtual Hosts on different ports

2005-06-08 Thread Colby . Meyer
We are attempting to configure tomcat with virtual hosts so that different ports represent different regions For example port 80 may represent a QA region port 90 may represent a dev region We are using apache as the front end for Tomcat in httpd.conf we have the following defined : #

Re: AW: AW: Using appelts with different clients

2005-06-08 Thread Mark Thomas
The JSP spec specifies a default JRE version of 1.2. What happens in FireFox if you specify jreversion=1.3 ? Mark [EMAIL PROTECTED] wrote: u r right, of course. It's just that weblogic generates the page OK for both clients. This is the code generated for firefox: EMBED

Re: Tomcat CGI and HTTP status codes

2005-06-08 Thread Mark Thomas
Chris, Sorry, but this isn't supported. See http://cvs.apache.org/viewcvs.cgi/jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/servlets/CGIServlet.java?rev=1.31view=markup and search for NPH for more info. Patches are always welcome ;) Mark Chris Picton wrote: Hi all I am

RE: tomcat windows / mysql linux

2005-06-08 Thread Robert Harper
What is the speed of your network? Local access will almost always be faster than a call across the network. Even if you specify your ODBC to use a network address, the OS's are smart enough to not send local access through the network card. There could also be issues with the network physical

RE: Tomcat, SSL, IE, and .pdf downloads

2005-06-08 Thread Panichi, Mary-Beth
Another newbie question -- how do I tell which authenticator we're using? Does tomcat use a default one? I was looking at the API, but there isn't enough explanation there. And I didn't see anything in the Tomcat doco. Thanks, -Mary Beth -Original Message- From: Mark Leone

Re: tomcat windows / mysql linux

2005-06-08 Thread Paul
daniel steel wrote: hi all, i have an interesting problem. our app server(tomcat 5.5) on windows 2003 communicates with mySQl database on linux box. our client application is very slow each time we log in. when we moved the database to windows box, the application is super fast. does anybody

Problem with mod_mpm / mod_jk / Tomcat Configuration

2005-06-08 Thread Andreas Oesterer
Under high load, the loadbalancing seems to forget session affinity and users have to log in again. Apache 2.0.54 with mod_mpm mod_jk 1.2.8 14 x Tomcat 4.1.31 instances The MaxClient setting seems to be causing most of these troubles. I don't exactly understand how the mpm and Tomcat settings

tomcat seems to close connection

2005-06-08 Thread bruno ramos
hi all, I'm using tomcat5 and a webapp I developed... I have a serlvet that is generating some html pages... the problem is that sometimes the servlet is not sending the complete html... it seems the connection is being closed before the serlvet finishes sending data. I've tried the

Re: Embedded Tomcat SSL

2005-06-08 Thread Mark
I followed very closely the Embedded.java found in the tomcat source code... Here is the createConnector method --START-- public Connector createConnector( String protocol) { Connector connector = null; try { connector = new Connector(org.apache.jk.server.JkCoyoteHandler);

google!!

2005-06-08 Thread Edoardo Panfili
bello edoardo - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: google!!

2005-06-08 Thread Edoardo Panfili
Edoardo Panfili wrote: bello excuse me!!! edoardo - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Tomcat CGI and HTTP status codes

2005-06-08 Thread Phillip Qin
You can hack the cgiervlet. I did it buy myself by adding 302 checking into one of the methods. -Original Message- From: Mark Thomas [mailto:[EMAIL PROTECTED] Sent: June 8, 2005 1:09 PM To: Tomcat Users List Subject: Re: Tomcat CGI and HTTP status codes Chris, Sorry, but this isn't

Tomcat admin webapp only available to localhost

2005-06-08 Thread John C Cartwright
Hello All, I've installed the admin webapp and it works fine as long as I access it as http://localhost:8080/admin, otherwise I get the Tomcat's administration web application is no longer installed by default. Download and install the admin package to use it. message. Can someone please

Re: Funny JAR file, WAS: Class.forName() gives NoClassDefFoundError

2005-06-08 Thread Torsten Römer
Just want to follow up on this. Originally, the classes under /WEB-INF/classes were in a JAR file, which I put in /WEB-INF/lib, but like this I always got NoClassDefFoundError. So I thought there may be something wrong with the JAR file. I then zipped the classes manually and replaced the

high cpu usage during xslt processing

2005-06-08 Thread kamal r
Recently we have migrated our application from jrun3.1 to tomcat 4.1.31 running on windows 2000 advanced server. It uses saxon 6.5.3 for xslt processing and the cpu usage is almost 100% even for 15 concurrent users. So in order to do a simple load test on the xslt part alone, I wrote a test jsp

Re: percent in URL makes tomcat chocke

2005-06-08 Thread Holger Klawitter
Tim Diggins wrote: The percent sign (%, ASCII 25 hex) is used as the escape character in the encoding scheme and is never allowed for anything else. Thanks for your pointer! This however means that you cannot store debian packages on a rfc1630 compliant server. (Most)

high cpu usage during xslt processing (resending)

2005-06-08 Thread kamal r
(Resending as earlier mail had bounced) Recently we have migrated our application from jrun3.1 to tomcat 4.1.31 running on windows 2000 advanced server. It uses saxon 6.5.3 for xslt processing and the cpu usage is almost 100% even for 15 concurrent users. So in order to do a simple load test on

Tomcat 5.5.9: NamingException cannot be resolved or is not a type - JNDI, MySQL

2005-06-08 Thread Greg Brownell
I get the error below when trying to compile/execute a jsp that wants to connect to a MySQL db named testdb. Here's the code snippet from testdb.jsp: InitialContext initCtx = null; DataSource ds = null; Connection conn = null; Statement stmt = null;

RE: Tomcat 5.5.9: NamingException cannot be resolved or is not a type - JNDI, MySQL

2005-06-08 Thread Arnaud HERITIER
You must import the classes you use in your JSP : %@ page import={package.class | package.*}, ... ... Arnaud -Message d'origine- De : Greg Brownell [mailto:[EMAIL PROTECTED] Envoyé : mercredi 8 juin 2005 21:34 À : tomcat-user@jakarta.apache.org Objet : Tomcat 5.5.9:

Re: Tomcat 5.5.9: NamingException cannot be resolved or is not a type - JNDI, MySQL

2005-06-08 Thread Greg Brownell
I have. Here is what I have at top of jsp: %@ page import=java.sql.* % %@ page import=javax.sql.DataSource % %@ page import=javax.naming.InitialContext % %@ page import=javax.naming.Context % %@ page import=java.io.File % Greg. Arnaud HERITIER wrote: You must import the classes you use in

Problem with mpm/mod_jk/Tomcat Configuration

2005-06-08 Thread Andreas Oesterer
Under high load, the loadbalancing seems to forget session affinity and users have to log in again. Apache 2.0.54 with mod_mpm mod_jk 1.2.8 14 Tomcat 4.1.31 instances The MaxClient setting seems to be causing most of these troubles. I don't exactly understand how the mpm and Tomcat settings are

Re: Funny JAR file, WAS: Class.forName() gives NoClassDefFoundError

2005-06-08 Thread Jason Bainbridge
On 6/8/05, Torsten Römer [EMAIL PROTECTED] wrote: Just want to follow up on this. Originally, the classes under /WEB-INF/classes were in a JAR file, which I put in /WEB-INF/lib, but like this I always got NoClassDefFoundError. So I thought there may be something wrong with the JAR file. I

War File Deployment Problem in Windows

2005-06-08 Thread Marquez, Omar
Hi, I'm using tomcat 5.5.9 in Linux and Windows . For some reason when I redeploy a war file to the Windows Tomcat instance I need to restart tomcat and then deploy again before being able to access the new version of the war file app. I don't have this problem with the Linux version, the server

Re: Tomcat 5.5.9: NamingException cannot be resolved or is not a type - JNDI, MySQL

2005-06-08 Thread Torsten Römer
Greg Brownell schrieb: I have. Here is what I have at top of jsp: %@ page import=java.sql.* % %@ page import=javax.sql.DataSource % %@ page import=javax.naming.InitialContext % %@ page import=javax.naming.Context % %@ page import=java.io.File % You are missing javax.naming.NamingException

Jasper introspectHelper Error

2005-06-08 Thread Scott Dudley
I'm attempting to migrate an application from Orion to Tomcat and have encountered my first error. It is as follows: An error occurred at line: 27 in the jsp file: /index.jsp Generated servlet error: The method introspecthelper(Object, String, String, ServletRequest) in the type

Re: War File Deployment Problem in Windows

2005-06-08 Thread Matt Tucker
Omar, Yeah, I had the same problem earlier this week when I upgraded. I got no response from this list because I'm sure the question has been posted a thousand times. But I will have mercy on you because I feel your pain. It's a problem with file locking on Windows. In my case, some of the

Running tomcat on Debian Sarge

2005-06-08 Thread blijblijblij
All, Anybody here who knows a foolproof site for setting up tomcat under debian?! I'm an newbie when it come to tomcat on linux, but I really would like this to work... Al I seem to be getting is an connection refused on my localhost... Some pointer could be handy, but I seem to be having

Re: Tomcat 5.5.9: NamingException cannot be resolved or is not a type - JNDI, MySQL

2005-06-08 Thread Greg Brownell
Great! Thanks Torsten. Added javax.naming Now new problem: NamingException: javax.naming.NamingException: Could not create resource factory, ClassNotFoundException:org.apache.commons.dbcp.BasicDataSourceFactory This exposed several other pitfalls. Tomcat distribution did not come with

Re: Funny JAR file, WAS: Class.forName() gives NoClassDefFoundError

2005-06-08 Thread Torsten Römer
Jason Bainbridge schrieb: On 6/8/05, Torsten Römer [EMAIL PROTECTED] wrote: Just want to follow up on this. Originally, the classes under /WEB-INF/classes were in a JAR file, which I put in /WEB-INF/lib, but like this I always got NoClassDefFoundError. So I thought there may be something

Is cancelled SSL connection bug fixed in Tomcat 4.1.31?

2005-06-08 Thread Mike Meehan
Hi, Does anyone out there know if the Cancelled SSL connection cause Tomcat to stumble bug is fixed for Tomcat 4.1.31? The bug can be found here: http://issues.apache.org/bugzilla/show_bug.cgi?id=17323 I can reproduce this issue with 4.1.18 but have yet to be able to reproduce it with

After a successful build of tomcat from build.xml, how do I insta ll it?

2005-06-08 Thread Clark, Benjamin
I am a Tomcat newbie, having been a Perl webguy for the past 5 years. Because I like to build that which I use from source, I am trying to get Tomcat running on my Linux laptop using a build.xml file from http://jakarta.apache.org/tomcat/tomcat-5.5-doc/build.xml

PayPal Account Security Measures

2005-06-08 Thread [EMAIL PROTECTED]
You have recieve this email because you or someone had tried to used your paypal account at http://www.springbok-computers.co.uk Below is the details about the transaction made: Transaction site : http://www.springbok-computers.co.uk Order ID : FMO17436466 Amount : $263 Date : Wednesday, Jun 08

PayPal Account Security Measures

2005-06-08 Thread [EMAIL PROTECTED]
You have recieve this email because you or someone had tried to used your paypal account at http://www.springbok-computers.co.uk Below is the details about the transaction made: Transaction site : http://www.springbok-computers.co.uk Order ID : FMO17436466 Amount : $263 Date : Wednesday, Jun 08

Re: tomcat causes servlet malfunction???

2005-06-08 Thread Michael Echavez
it is located in the \web\WEB-INF\classes\chapter2 directory. On 6/9/05, Ben Souther [EMAIL PROTECTED] wrote: Where is the servlet's class file? On Wed, 2005-06-08 at 11:35, Michael Echavez wrote: i didnt use the invoker here. ive explicitly mapped my servlet with that url. below is a

Re: Tomcat, SSL, IE, and .pdf downloads

2005-06-08 Thread Mark Leone
You may have the following element in your web app's web.xml: login-config auth-methodsome_authentication_method/auth-method realm-namesome_realm_name/realm-name /login-config (If you don't, then you're probably not serving the content from a protected context, and this issue doesn't

Re: SPAM-LOW: PayPal Account Security Measures

2005-06-08 Thread B Wiley
I DONT HAVE A PAY PAL ACCOUNT ! I DON'T USE PAYPAL !! I'M NOT CLICKING ANYTHING ! At 04:48 PM 6/8/2005, you wrote: You have recieve this email because you or someone had tried to used your paypal account at http://www.springbok-computers.co.uk Below

Re: SPAM-LOW: PayPal Account Security Measures

2005-06-08 Thread Woodchuck
LOL. i was fooled for a second or two when i got the e-mail, because i do use paypal.. but NOT WITH THIS E-MAIL!!! nevermind the fact that the URL looks awfully suspicious nice try internet scum!!! --- B Wiley [EMAIL PROTECTED] wrote: I DONT HAVE A PAY PAL ACCOUNT ! I

Re: After a successful build of tomcat from build.xml, how do I install it?

2005-06-08 Thread Bill Barker
Optionally copy your build.properties file to .../jakarta-tomcat-5. Then in your .../jakarta-tomcat-5/build.properties file add the property: tomcat.dist=/path/to/my/tomcat/install/dir Then from .../jakarta-tomcat-5 do 'ant dist'. This is the closest to 'ant install' that you can get. The