Re: Out of Memory error - Tomcat 3.2.1

2001-07-31 Thread Somik Raha
Wondering if anyone has any idea about this issue. Would appreciate a reply.. Yours, Somik - Original Message - From: Somik Raha To: [EMAIL PROTECTED] Sent: Tuesday, July 31, 2001 11:17 AM Subject: Out of Memory error - Tomcat 3.2.1 Hi, I am using

RE: Out of Memory error - Tomcat 3.2.1

2001-07-31 Thread Emir Alikadic (ADNOC IST)
1. You're posting a message in non-plain text format, which is in violation of this list's rules (you did read the list's FAQ, didn't you?). Your message is thus likely being ignored. Post in plain text as required and someone will probably respond. 2. Your original message was posted 4 hours

error affecting all sessions

2001-07-31 Thread W. A. Sanchez
Whenever I get a certain error using one account, other accounts/sessions are also affected and I may need to restart the tomcat server. And sometimes when I do a restart, I still need to check if java threads still exist before starting it again. How do I fix this. thanks Get 250 color

Re: Out of Memory error - Tomcat 3.2.1

2001-07-31 Thread Somik Raha
1. You're posting a message in non-plain text format, which is in violation of this list's rules (you did read the list's FAQ, didn't you?). Your message is thus likely being ignored. Post in plain text as required and someone will probably respond. Oops! Very sorry about that. Regards,

Out of Memory error - Tomcat 3.2.1

2001-07-31 Thread Somik Raha
Hi, Sorry for posting earlier in Rich Text. I am using Tomcat 3.2.1 with Apache. I find a strange phenomenon - whenever an http request is made, a tomcat thread is created. But when the servlet finishes, the thread is not destroyed. This results in a big problem - after sometime, an

How to make a database connection in a servlet ?

2001-07-31 Thread Andreas Horchler
Hi, I am running Apache 1.3.20, Tomcat 3.2.3 and JDK 1.3.1 from Sun on Windows NT and everything is working fine. Because these are my first experiences with a web server, I had a look at several samples delivered with Tomcat. But how will I be able to connect from a sevlet to an Oracle 8.1.6

Re: Out of Memory error - Tomcat 3.2.1

2001-07-31 Thread Dmitri Colebatch
Somik, Are there really more than 1000 threads? When I start tomcat I get about 35 threads... are you running a standardish configuration or have you changed things? When you say you've checked your servlets and none of them have threads that dont end - are you sure? maybe post one of your

Error displaying multiple images on page

2001-07-31 Thread W. A. Sanchez
I have no problems when displaying one image generated by a servlet on a page but when I display two or more images, either some images are repeated or does not display. How do I fix this? Get 250 color business cards for FREE! http://businesscards.lycos.com/vp/fastpath/

RE: How to make a database connection in a servlet ?

2001-07-31 Thread Emir Alikadic (ADNOC IST)
-Original Message- From: Andreas Horchler [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 31, 2001 11:17 AM To: Tomcat-User Subject: How to make a database connection in a servlet ? Hi, I am running Apache 1.3.20, Tomcat 3.2.3 and JDK 1.3.1 from Sun on Windows NT and

Re: How to make a database connection in a servlet ?

2001-07-31 Thread dkalna
Here is code snipet for you: public class BaseServlet extends HttpServlet { static Connection con; public void init(ServletConfig config) throws ServletException { super.init(config); if (con == null) { String url = jdbc:odbc:odbc_name;

Re: How to make a database connection in a servlet ?

2001-07-31 Thread dkalna
I would suggest you make a standard jdbc connection in servlet which is loaded at startup and put this connection to HttpSession object for using by another servlet in your app. Be sure you have JDBC driver in your lib folder (within your web app). Another way is to use connection pooling (try

Best way to...

2001-07-31 Thread Loïc Lefèvre
Hi, I would like to know what is the best way to change tomcat package? Encoutering many problems with mod_rewrite + tomcat serlvet aliasing, I want to plug some code to enhance the way url-pattern are managed (by using jakarta oro). Have someone already work with this? Any idea? Loïc Lefèvre

Re: Out of Memory error - Tomcat 3.2.1

2001-07-31 Thread Somik Raha
Hi Dmitri, Thanks for writing. Are there really more than 1000 threads? When I start tomcat I get about 35 threads... are you running a standardish configuration or have you changed things? When I start tomcat, I get around the same threads as you. When the servlets get accessed, the

RE: How to make a database connection in a servlet ?

2001-07-31 Thread Emir Alikadic (ADNOC IST)
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 31, 2001 11:50 AM To: [EMAIL PROTECTED] Subject: Re: How to make a database connection in a servlet ? Here is code snipet for you: Don't forget to import: import java.sql.*; import

howto fast ssl

2001-07-31 Thread Bernhard Wraase
We are serving jsp + servlets always with ssl It seems to me that without ssl its much faster. So I ask myself... What is faster: tomcat standalone with ssl or apache with mod_ssl + connector(i.e. mod_jk) + tomcat Are there any experiences? Is it worth the effort to install apache? -- TIA

I am geeting no ocijdbc8 in shared Library path error

2001-07-31 Thread Mehul S Dave
Hello. Hi it was going all fine. I am using JDBC . oci8 for Oracle Driver it was working well very fine suddenly now whenever i invoke an servlet of any JDBC driver this error comes. Error

My Question is other than tomcat stuffs

2001-07-31 Thread Sunil Chandurkar
Hello All. Reason behind asking following question is users of this tomcat group are more and very much prompt I ever seen. So please if even I am doing anything wrong I believe you all pardon me. I, Sunil chandurkar, 25 yrs. old, looking for IT business opportunity in India. Actually my

Re: Out of Memory error - Tomcat 3.2.1

2001-07-31 Thread Dmitri Colebatch
Somik, On Tue, 31 Jul 2001, Somik Raha wrote: Any ideas (is there any way to get more info about the threads that Tomcat creates) ? From what you said it does indeed sound like a configuration problem. I had thought from your earlier email that you were creating threads yourself in the

displaying friendly error page

2001-07-31 Thread Michael Weissenbacher
i have the following problem: in some situatuations i need to shutdown tomcat to have something reloaded (it can have multiple reasons, but mostly i'm changing some library in the classpath). the problem that i now have is: while the server goes down and then up again (it can take several minutes

RE: My Question is other than tomcat stuffs

2001-07-31 Thread Emir Alikadic (ADNOC IST)
-Original Message- From: Sunil Chandurkar [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 31, 2001 1:07 PM To: [EMAIL PROTECTED] Subject: My Question is other than tomcat stuffs Hello All. Hello to you, too. Reason behind asking following question is users of this tomcat

understanding context and servlet

2001-07-31 Thread Thierry PROUTEAU
Hi, First of all, sorry if my question is not clear, coz i'm not a developper (i don't understand a thing in java, servlet,..) but i have to manage a computer running IIS 4.0 + Tomcat 3.2.3 and i don't know what to do. One of our programmer created a little html form page wich does this : form

How to ensure Tomcat to load multiple instances of a servlet, to handle simultaneously multiple request ?

2001-07-31 Thread grégoire nogier
How to ensure Tomcat to load multiple instances of a servlet, to handle simultaneously multiple request ? I'v developed a servlet application in tomcat/apache, on NT. I tried a very simple load test : - 1) from a first pc, I send a request which neeed a very long database access (3 minutes),

jk_nt_service doesn't work like in the description

2001-07-31 Thread Simone Bortolaso
I follow all the instructions but when i start the service the answer is: Impossible start the service write NET HELPMSG 3534toobtain most information. Simone

Re: How to ensure Tomcat to load multiple instances of a servlet, to handle simultaneously multiple request ?

2001-07-31 Thread Hariharasubramanian Ranganathan
- the Servlet implements SinglethreadModel, Donot implement SingleThreadedModel interface which synchronizes the servlet. Hari - Original Message - From: grégoire nogier [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, July 31, 2001 3:11 PM Subject: How to ensure Tomcat to load

Re: Best way to...

2001-07-31 Thread Pier P. Fumagalli
Loïc Lefèvre at [EMAIL PROTECTED] wrote: Hi, I would like to know what is the best way to change tomcat package? Encoutering many problems with mod_rewrite + tomcat serlvet aliasing, I want to plug some code to enhance the way url-pattern are managed (by using jakarta oro). Have

Re: Restarting TOMCAT

2001-07-31 Thread Hariharasubramanian Ranganathan
- Original Message - From: Dmitri Colebatch [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, July 24, 2001 10:49 AM Subject: Re: Restarting TOMCAT Your problem is that you are stopping tomcat, which shuts down the jvm, and then you are trying to start it again. Because the jvm

Re: VOTE: HTML in Messages and politeness (Was: Re: jdbc odbcbridge on linux)

2001-07-31 Thread Pier P. Fumagalli
Pier P. Fumagalli at [EMAIL PROTECTED] wrote: Pier P. Fumagalli at [EMAIL PROTECTED] wrote: [ ] +1 - Plain Text only. Strip HTML on the mailing list. [ ] 0 - I don't give a damn shit. [ ] -1 - You mad? I love HTML in messages and want to keep using it. We got more than 20 +1s, a couple

RE: VOTE: HTML in Messages and politeness (Was: Re: jdbc odbc bridge on linux)

2001-07-31 Thread Emir Alikadic (ADNOC IST)
[SNIP] This is going the last message with HTML enabled on the mailing list. :) Remember to modify your settings :) Those are the rejected stuff: - text/html - text/rtf - text/enriched - text/x-vcard Pier C'mon, Mary, our job here is done! [rides off into the sunset] On

RE: Best way to...

2001-07-31 Thread Loïc Lefèvre
Yes seems to be one response to my problems and perhaps your problems... ;) What you have to do is to: replace: RequestInterceptor className=org.apache.tomcat.request.SimpleMapper1 debug=1 / by RequestInterceptor className=My Mapper -- note

RE: VOTE: HTML in Messages and politeness (Was: Re: jdbc odbc bridge on linux)

2001-07-31 Thread Loïc Lefèvre
The next question could be: And for the attachments?!? ;) just kidding :) -Message d'origine- De : Emir Alikadic (ADNOC IST) [mailto:[EMAIL PROTECTED]] Envoyé : mardi 31 juillet 2001 12:32 À : [EMAIL PROTECTED] Objet : RE: VOTE: HTML in Messages and politeness (Was: Re: jdbc odbc bridge

Re: Tomcat 4.05b - recompile required for SSL?

2001-07-31 Thread Lloyd Llewellyn
Also, you should really download beta 6 instead -- a boatload of bugs have been fixed since beta 5. Thanks, I'll do that. Is it a drop-in replacement for b5 (just copy over class files)?

SV: installing Tomcat on Apache 1.3.20 /win2000

2001-07-31 Thread Niels Barlach
Hi I've installed Apache 1.3.20 on a win2000 pc and it works fine. Now i want Tomcat on it aswell. But the modules in Apache 1.3.20 (and 2.0) are *.so files and the mod_jk from Tomcat (win binaries)is a *.dll file ?!?! I can't find any howto's that describes installing Tomcat any

RE: VOTE: HTML in Messages and politeness (Was: Re: jdbc odbc bri dge on linux)

2001-07-31 Thread Jim Cheesman
At 12:32 PM 31/07/01, you wrote: - text/x-vcard What, no vcards??? I used to be able to waste hours tracking down and deleting the little buggers from my hard drive! Now what am I going to do on a Friday afternoon... after defrag, anti-virus, cleanup etc. --

RE: Changing error pages

2001-07-31 Thread Loïc Lefèvre
Ok, What I understand from the faq (http://www.jguru.com/faq/view.jsp?EID=318806): In your web.xml file (the one in your .war file). note: ensure that the directory WEB-INF once unzipped is spelled as this, I mean with the correct case (not Web-inf nor web-inf) If you are under

Re: howto fast ssl

2001-07-31 Thread Endre Stølsvik
On Tue, 31 Jul 2001, Bernhard Wraase wrote: | We are serving jsp + servlets always with ssl | It seems to me that without ssl its much faster. | | So I ask myself... | What is faster: | tomcat standalone with ssl or This would make tomcat do all the crypting, which is quite a job for Java. |

Re: The relationship between Tomcat security mechanism and JAAS?

2001-07-31 Thread Sumit Ranjan
hi Francis ! i too have a query regards security..in particular authentication. my intranet has LDAP where as one of my applications...i.e jetspeed maintains a databse for user-authentication so a user has to authenticate himself again if he comes to jetspeed from his INTRANET page...

Re: build mod_jk.so error on aix4.3

2001-07-31 Thread Wolfgang Schrimm
Hi, we had the same problem. the following worked for us: - create a file, lets call it mod_jk.exp, that contains only a single line: jk_module - add the parameter -bE:mod_jk.exp to the call to the linker hope that helps, Wolfgang On Sat, 28 Jul 2001 [EMAIL PROTECTED] wrote: problem

Re: VOTE: HTML in Messages and politeness (Was: Re: jdbc odbc bridge on linux)

2001-07-31 Thread Pier P. Fumagalli
Jim Cheesman at [EMAIL PROTECTED] wrote: At 12:32 PM 31/07/01, you wrote: - text/x-vcard What, no vcards??? I used to be able to waste hours tracking down and deleting the little buggers from my hard drive! Now what am I going to do on a Friday afternoon... after defrag, anti-virus,

just a test

2001-07-31 Thread Michael Weissenbacher
no offence, i just wanted to test what happens if i send a html message

Re: understanding context and servlet

2001-07-31 Thread Richard Draucker
Its really quite easy Thierry, In the ../tomcat/conf/server.xml file there are contexts that equate to what IIS calls a web. These handle the mappings between the physical disk location and the browser url (address box) location, e.g. http://computer:8080/upload; == C:\tomcat\webapps\upload.

Re: white space in JSP

2001-07-31 Thread Hariharasubramanian Ranganathan
Check for any null character (ascii 0) that might be placed in your JSP file accidently. - Hari. - Original Message - From: Rodney J. Lucas [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, July 31, 2001 5:57 PM Subject: white space in JSP using Tomcat 4.0b5, Java 1.3.1 on

jk_nt_service: New Version

2001-07-31 Thread Michael Weir (Transform Research)
I have made some modifications to the jk_nt_service program which hopefully make it easier to use. The usage is now nt_service -i service [ -a | -m | -d ] [ -y service display name ] [ -z w2k service description ] [ -u service account -p service

RE: Offer to sell Mini-vacuum cleaner

2001-07-31 Thread Curtis Dougherty
this is a USER EMAIL LIST - NOT A SALES FORUM. Get the FÖµµÃÐÅÀµµÄÈí¼þ off moron... -Original Message- From: @nil.nil [mailto:@nil.nil] Sent: Tuesday, July 31, 2001 12:10 AM To: [EMAIL PROTECTED] Subject: Offer to sell Mini-vacuum cleaner Our company specializes in dealing in

More info about security.policy

2001-07-31 Thread SIMONIN Alexandre
Hi, My apologies if this is not the proper place to post such request... I'm running Tomcat 3.2, mySQL 3.22.32 and mm.Driver 2.0.4 and I have problems getting connection (clarification: it is not a problem with understanding how theses should be used: I already have my application running fine

Re: displaying friendly error page

2001-07-31 Thread Dmitri Colebatch
yep - you would do this in apache. what is happening behind the scenes is that apache is unable to contact tomcat and hence has a bit of a dummy spit. open up httpd.conf and find the ErrorDocument 500 line (generally there but commented) and point it at your friendly page. cheesr dim On Tue,

Re: jk_nt_service: New Version

2001-07-31 Thread Hari
Thats good to hear. I'm searching mailling list for automatic start of service and you made it. These options are really useful and your code can be a part of Jakarta. I'm expecting your code for download. Hari. - Original Message - From: Michael Weir (Transform Research) [EMAIL

SAX 2.0, sealing, Tomcat 3.2.3

2001-07-31 Thread Andrew Cooke
Hi, I've spent most of the day reading through various mailing list entries and other pages on the net and am still confused. Is there a FAQ anywhere that clearly summarizes the issues involved and answers the questions below? If not, can someone please tell me: - Should Tomcat 3.2.3 work

Re: SAX 2.0, sealing, Tomcat 3.2.3

2001-07-31 Thread Andrew Cooke
At 02:42 PM 7/31/01 +0100, you wrote: [...] In particular, our code gives the usual sealed jar exception unless I unseal our copy of xalan.jar, at which point I get a NoSuchMethod call when executing SAXParserFactory factory = SAXParserFactory.newInstance() Grrr. Wrong line. The error comes

RE: displaying friendly error page

2001-07-31 Thread Michael Weissenbacher
thank you very much, it works just like i wanted it to! -Original Message- From: Dmitri Colebatch [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 31, 2001 3:34 PM To: [EMAIL PROTECTED] Subject: Re: displaying friendly error page yep - you would do this in apache. what is happening

RE: JSP pages cannot be viewed

2001-07-31 Thread Andrew Inggs
Utech - Han Lim wrote: I think I'm already set the classpath to point to the servlet.jar as you can see it obviously from my environment setting. Any else suggestion? I still cannot view the .jsp pages, and got stuck with it:( Does /usr/java/jdk1.3.1/lib/tools.jar exist? Are you sure your

RE: SAX 2.0, sealing, Tomcat 3.2.3

2001-07-31 Thread Loïc Lefèvre
div Locale=FRCool, on dirait qu'on peut écrire dans la langue qu'on veut.../div Please could you answer in english? Thanks -Message d'origine- De : BERNARDO ANTONIO BUFFA [mailto:[EMAIL PROTECTED]] Envoyé : mardi 31 juillet 2001 16:15 À : [EMAIL PROTECTED] Objet : Re: SAX 2.0, sealing,

Re: SAX 2.0, sealing, Tomcat 3.2.3

2001-07-31 Thread Andrew Cooke
At 11:14 AM 7/31/01 -0300, you wrote: At 02:42 PM 7/31/01 +0100, you wrote: [...] In particular, our code gives the usual sealed jar exception unless I unseal our copy of xalan.jar, at which point I get a NoSuchMethod call when executing SAXParserFactory factory =

IIS - HTTPS - Tomcat

2001-07-31 Thread zze-messager FTM balr002
Hello, I'm working with Tomcat and IIS using the redirector ispi_redirect.dll (worker used = ajp12). (Windows 2000 server) It's works very well for the requests in HTTP. Now, I need to securise the site with HTTPS. How can I do ? May I use the ajp13 worker ? In this case, how to declare it in

Re: SAX 2.0, sealing, Tomcat 3.2.3

2001-07-31 Thread BERNARDO ANTONIO BUFFA
At 02:42 PM 7/31/01 +0100, you wrote: [...] In particular, our code gives the usual sealed jar exception unless I unseal our copy of xalan.jar, at which point I get a NoSuchMethod call when executing SAXParserFactory factory = SAXParserFactory.newInstance() Grrr. Wrong line. The error

RE: SAX 2.0, sealing, Tomcat 3.2.3

2001-07-31 Thread Andrew Inggs
Andrew, I've had similar headaches over the past few days. In an ideal world you would just put the jars in WEB-INF/lib and everything would work fine, but it doesn't for Tomcat 3.2. I believe Tomcat 4.0 will solve the problem by separating those libraries that Tomcat needs itself from those

Servlet Mapping

2001-07-31 Thread Aaron Cooper
Hi Folks I am using tomcat 3.3 b1. I have the following in my web.xml file. servlet servlet-name tester2 /servlet-name servlet-class tester2 /servlet-class /servlet servlet-mapping servlet-name tester2 /servlet-name url-pattern /tester2 /url-pattern /servlet-mapping However, the

Where are the pgp public keys for Tomcat ?

2001-07-31 Thread Ludovic Maitre
Hello Tomcat users, I want to verify an archive of Tomcat and i type this command (Solaris 2.6, gpg (GnuPG) 1.0.6) : ubik-16% gpg --verify jakarta-tomcat-3.2.3-src.tar.gz.asc jakarta-tomcat-3.2.3-src.tar.gz gpg: Warning: using insecure memory! gpg: Signature made Tue Jul 17 19:38:39 2001 MET DST

RE: SAX 2.0, sealing, Tomcat 3.2.3

2001-07-31 Thread Andrew Cooke
Excellent - thanks! That URL even has the rename file to zparser.jar meme that my boss keeps swearing is the solution... :-) Cheers, Andrew At 03:41 PM 7/31/01 +0100, you wrote: Andrew, I've had similar headaches over the past few days. In an ideal world you would just put the jars in

install/start tomcat-mod_jk-apache

2001-07-31 Thread Sampath K Settipalli
Hi, I've installed Apache 1.3.20 (built with source) binary version of tomcat 3.2.3 on solaris. To build mod_jk I used source of tomcat 3.2.3 (src/native/jk library) and created mod_jk.so . It created with some warnings: I copied the mod_jk.so to apache/libexec and added a Include statement

image resize

2001-07-31 Thread Reynir Hübner
Hi, this is probably a bit of topic... What would be the best way to resize images with servlet ? I have .jpgs and .gifs in files (not kept in database) and I need to create new files in different sizes from those images. Is anyone willing to give me a hint (or more :) on how to do it. thanx

RE: image resize

2001-07-31 Thread Cory Powers
I'm not sure, but there is good info on working with images on the jguru site. Try http://www.jguru.com/faq/home.jsp?topic=Media -Original Message- From: Reynir Hübner [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 31, 2001 11:13 AM To: [EMAIL PROTECTED] Subject: image resize Hi,

RE: install/start tomcat-mod_jk-apache

2001-07-31 Thread Loïc Lefèvre
I think your directory could be the error: Syntax error on line 8 of /usr/home//tomcat/jakarta-tomcat-3.2.3/conf/mod_jk.conf-auto: Can't locate API module structure `jk_module' in file because of the 2 slashs /usr/home//tomcat/... -Message d'origine- De : Sampath K Settipalli

RE: Help!! Apache won't redirect to tomcat

2001-07-31 Thread Nance, Michael
Are you saying it does NOT use web.xml? Then what does it use? I did rename it and got the same error...so now I am very confused. Also in server.xml I have this Context path= docBase=../../../../src/public_html debug=0 reloadable=true /Context which points to the location of my

fault tolerance tomcat4

2001-07-31 Thread Matt Barre
I am hosting several sites on a Solaris 8 SPARC box. I would like to use tomcat4 b6+ to take care of all my serving. I've load tested it using JMeter and it performs more than admirably for my uses. My question is how to replicate the fault tolerance I used to have with apache + tomcat where I

Re: install/start tomcat-mod_jk-apache

2001-07-31 Thread Sampath K Settipalli
No. that was a error in typing in this mail. It points correctly. Thanks, Sampath Loïc Lefèvre wrote: I think your directory could be the error: Syntax error on line 8 of /usr/home//tomcat/jakarta-tomcat-3.2.3/conf/mod_jk.conf-auto: Can't locate API module structure `jk_module' in file

RE: How can I logoff

2001-07-31 Thread djhutchison
I'm using form authentication and used session.invalidate(). This works great but the browser may be cacheing your logoff page, in which case you may get some unexpected results if you logoff and back in more than once. You need to disable the page cacheing. I used the following in the head

Tomcat question!

2001-07-31 Thread Gustavo Mejia
Hello everyone, I need to evaluate Tomcat, but I can't find the characteristics of this, like, how manage the memory ?, max number of users connected, .. ? things like these, do you know wher I can find them ? Thanks a lot ! -- Gustavo Mejía Mora INFOTEC Tel: 5624 28 00 Ext: 253

RE: image resize

2001-07-31 Thread William Kaufman
There's also the possibility of letting the browser resize it for you, by setting the width and height attributes of the IMG tag. Browsers don't scale images well, but it's a whole lot easier than doing it yourself. (Also note that AWT can't run on Unix without an X server, nor can it run if

Re: image resize

2001-07-31 Thread Richard Draucker
Can you be more specific what you mean by resize? Html will allow you to set the displayable height/width of an image. If your servlet is outputting html, just add a height or width attribute. However, if you want to manipulate the image itself that's beyond the scope of tomcat or servlets in

RE: SAX 2.0, sealing, Tomcat 3.2.3

2001-07-31 Thread Ignacio J. Ortega
Another way ( easy way at least ) is to get Tomcat 3.3 Beta 1 and use it.. It implaments too a isolated classloader schema for webapps and internals.. Saludos , Ignacio J. Ortega -Mensaje original- De: Andrew Cooke [mailto:[EMAIL PROTECTED]] Enviado el: martes 31 de julio de 2001

Re: The relationship between Tomcat security mechanism and JAAS?

2001-07-31 Thread Francis Pallini
Hello, I had the same problem, but I never managed to get the LDAP login module at work. In theory, you can use this JAAS module to check user authentication and get user roles from the LDAP server with a very few code. JNDI login module is very poorly documented... By now, the following

RE: image resize

2001-07-31 Thread Pete Freitag
Resizing with the IMG tag does work for slight scaling. In the case where you are generating thumbnails, you would still be downloading the full sized image, and would defeat the purpose of having thumbnails. I've been working on a server side solution for this also, but have run into a couple

RE: SAX 2.0, sealing, Tomcat 3.2.3

2001-07-31 Thread Andrew Inggs
Andrew Cooke wrote: Excellent - thanks! That URL even has the rename file to zparser.jar meme that my boss keeps swearing is the solution... :-) :-) Please let us know what you do and whether it works. Also, I'm not sure what platform you're on, but on Windows, if the path to the

Re: Tomcat 4.05b - recompile required for SSL?

2001-07-31 Thread Craig R. McClanahan
On 31 Jul 2001, Lloyd Llewellyn wrote: Also, you should really download beta 6 instead -- a boatload of bugs have been fixed since beta 5. Thanks, I'll do that. Is it a drop-in replacement for b5 (just copy over class files)? It is drop-in in the sense that any app that works under

RE: image resize

2001-07-31 Thread Pete Freitag
I wouldn't say its Beyond the Scope of Servlets there are several usages for server side image manipulation in web applications, and many other web development languages have components for doing so. For instance - automatically resizing images when they are uploaded so that they are all

SV: APACHE NT 4

2001-07-31 Thread Niels Barlach
Carlos it's the same problem i wrote about earlier today. apache 1.3.20 uses modules with the extension *.so and won't accept a *.dll (i used mod_jk.dll). It then fails to load Apache a says something about not being EAPI. I gave up for now and installed an old Apache where it works. But i'm

Application Scope

2001-07-31 Thread crabcorn
Hi, If I declare a bean of scope=application can I use this bean again on another JSP? Basically I want to instantiate a class for the whole app and then from different pages access that class. Is this possible? Because you have to put the bean declaration in the JSP to be able to use it. And

Re: SAX 2.0, sealing, Tomcat 3.2.3

2001-07-31 Thread Pier P. Fumagalli
Andrew Cooke at [EMAIL PROTECTED] wrote: I don't want to use 4.0 as it's beta. Don't worry about being a beta... It's stable, _VERY_ stable. Pier

RE: SAX 2.0, sealing, Tomcat 3.2.3

2001-07-31 Thread Bryan Rood
Pier, I am interested in using a 4.0.something tomcat build. Are there official sources at apache that can confirm the VERY_stable declaration that you have made? My company won't let me use anything but a stable production release. Is the 4.0 the same as prod quality? thanks so much, Bryan

Java Beans and JSP Question.

2001-07-31 Thread Dan Hinojosa
I have a standard java bean. The different thing about it is that I usually have two overloaded set methods per attribute. For example, public class MyBean { private int a; public setA (int a) throws Exception { if (a 100) throw new Exception (Must be less than 100); }

RE: Help!! Apache won't redirect to tomcat

2001-07-31 Thread Andrew Inggs
Nance, Michael wrote: Are you saying it does NOT use web.xml? Then what does it use? Correct, it does *not* use TOMCAT_HOME/conf/web.xml. But, it *does* use PATH-TO-YOUR-WEB-APP/WEB-INF/web.xml. And, it *does* use TOMCAT_HOME/conf/server.xml. You seem to be missing the whole web app setup.

Tomcat 4.0 stability (Was: Re: SAX 2.0, sealing, Tomcat 3.2.3)

2001-07-31 Thread Pier P. Fumagalli
Bryan Rood at [EMAIL PROTECTED] wrote: Pier, I am interested in using a 4.0.something tomcat build. Good... Are there official sources at apache that can confirm the VERY_stable declaration that you have made? Never seen a complaint about 4.0b6 running in stand-alone mode. My company

Dumb question of the day

2001-07-31 Thread Richard Draucker
Does anyone know where I can get a little tomcat .xpm icon for my Linux desktop? -- Richard Draucker [EMAIL PROTECTED] Protected-Data.Com www.protected-data.com Remote Data Support For Web Developers

Re: Java Beans and JSP Question.

2001-07-31 Thread Pritchard
I spent some time chasing the same problem. It appeared to me that the Introspector was getting get/set methods in pairs based on the property name, parameter list, and return type. It seemed to expect that you adhered to the Java beans standard of void setA(int a){} int getA(){} where the

JEFF JOCKEL FROM RATIONAL SOFTWARE: TOMCAT SERVICE WILL NOT START ON NT

2001-07-31 Thread Jockel, Jeff
My name is Jeff Jockel and I am a tech rep with Rational Software. We have a product called Requsite Pro which uses TOMCAT 3.2.1 for its Web add in. I tried installing this application on a client's NT SP6 box and upon trying to start the Jakarta NT service (called RqTomcat) I received an NT

Re:subscribe to mail-list

2001-07-31 Thread Dwaipayan
please subscribe me. _ For Rs. 2,000,000 worth of Aptech scholarships click below http://events.rediff.com/aptechsch/scholarship.htm

RE: jk_nt_service: New Version

2001-07-31 Thread Ignacio J. Ortega
Anyway, if anyone wants a copy, just let me know. (I also modified the documentation.) Comments, suggestions, and bug reports are welcome. *** Also, could someone in the know give me a hand submitting this code back to the Jakarta project? I'll be glad to review and commit it..

Something wrong with nt service

2001-07-31 Thread Nigel H. Lin
Dear Sir: I try to set Jakarta for nt service. But, the service never starts. My system is win2000 server and tomcat version is 3.2.2. Please help me with that. Thank you for your greate help. Sincerely, Nigel ps. I have done everything

RE: Customize Url Rewriting + QUESTION

2001-07-31 Thread Ashish Bajpai
HI! I looked at the apache rewrite stuff, however that is not exactly what i was looking for. Let me explain it again so that the requirement is more clear, See when we are using the Url rewriting for session tracking in Tomcat, each url in the page has got jsessionId appended to it, my

How to get everyone to use one config

2001-07-31 Thread Brandon Cruz
I have a system set up on tomcat 3.2.1, linux, apache... I have several virtual hosts that are all using the same web application. This application consists of a bunch of class files that are stored in $tomcat_home$/classes and packages stored in $tomcat_home$/lib. I would like to be able to

How to alias out port 8080?

2001-07-31 Thread Ali Manji
Hi, I am trying out a Tomcat 4.0 beta and was wondering if there is a way to alias out the port. So for instance, I would like to enter: http://myorg.org/stuff instead of http://myorg.org:8080/stuff Is this possible? Thanks in advance for any help!

Re: How to ensure Tomcat to load multiple instances of a servlet, to handle simultaneously multiple request ?

2001-07-31 Thread Nils O. Selåsdal
On Tuesday 31 July 2001 10:41 am, you wrote: Here is a short description of the configuration used : - tomcat-v3.2.2, apache-v1.3 - the Servlet implements SinglethreadModel, Font implement the singlethread model, then you can take as many concurrent requests as the machine can handle.. Just

IIS ?

2001-07-31 Thread Vassallo, Carlos
I make all the steps described in the paper: Working with the Jakarta NT Service and I can´t stand up the Tomcat service. My NT reports error 2140 when I try to do that. Could you help me ? Thanks. Carlos Vassallo.-

RE: How to alias out port 8080?

2001-07-31 Thread Pete Freitag
If you change your config to run the server on port 80 instead of 8080 your web browser will assume http://myorg.org:80/ when you type http://myorg.org/ since port 80 is the default port for http. Pete Freitag ([EMAIL PROTECTED]) CFDEV.COM Web Developers

RE: How to alias out port 8080?

2001-07-31 Thread Barry Draper
Here's one way to do it. If you don't need to use port 80 (the default port for an HTTP server) for another HTTP (aka web) server, change the port number in the file TOMCAT_HOME/conf/server.xml from 8080 to 80. Here's the snippet of code where I changed this on my Tomcat 3.2.1 installation. Note

Re: How to alias out port 8080?

2001-07-31 Thread Tsinwah Lee
I have the similar question: What if we have Apache run on port 80 and don't want to config Apache to work with Tomcat? So can we have both Apache and Tomcat standalone run on port 80 so users don't need to type the port number? Thanks. T. Barry Draper wrote: Here's one way to do it. If you

Re: How to alias out port 8080?

2001-07-31 Thread Tim O'Neil
At 12:48 PM 7/31/2001, you wrote: I have the similar question: What if we have Apache run on port 80 and don't want to config Apache to work with Tomcat? So can we have both Apache and Tomcat standalone run on port 80 so users don't need to type the port number? Thanks. Can't do that. You can't

RE: How to alias out port 8080?

2001-07-31 Thread Randy Layman
No. You can think of it as having two butlers trying to answer the same door - it just doesn't work because they fight with each other to answer the door. (Its not quite that straight forward, but you probably get the idea) Randy -Original Message- From: Tsinwah Lee

RE: jk_nt_service doesn't work like in the description

2001-07-31 Thread Randy Layman
First, you probably want to send your message in text only format, sending in HTML or RTF will cause you message to appear very similar to jibberish on those people who use mail readers that can't read your message, thus limiting your audience which you probably don't want. Your

RE: How to ensure Tomcat to load multiple instances of a servlet, to handle simultaneously multiple request ?

2001-07-31 Thread Randy Layman
This is most definitely a problem with either your database or your database access architecture. Tomcat, using one servlet instance, can handles hundred and even thousands of concurrent requests - each request runs in a thread that executes the appropriate method of the servlet.

  1   2   >