RE: JAXMServlet + SOAP

2002-03-18 Thread Dahnke, Eric
I recently did this by parsing the SOAP Message (via JAXM) with SAX. My parser class happily takes an XML file or any kind of input stream, so I just wrote the SOAP message out to a OS (did a OS - IS conversion as follows). // write the SOAPMessage to an OutputStream, convert that to // a

JNDIRealm with bind as user functionality

2002-03-15 Thread Jonathan Eric Miller
Does anyone know if JNDIRealm is going to be fixed up anytime soon so that the bind as user functionality is in there? I know someone had a patch for this. I'm wondering if that patch is going to be integrated into the main distribution. Jon -- To unsubscribe: mailto:[EMAIL PROTECTED] For

Re: jndi versus database connection pooling

2002-03-14 Thread Eric . Wang
Hi, here is an example. Server.xml Context path=/creditel docBase=creditel debug=0 reloadable=true crossContext=true Resource name=jdbc/creditel auth=Container type =javax.sql.DataSource/ ResourceParams name=jdbc/creditel parameternamedriverClassName/name

Re: jndi versus database connection pooling

2002-03-14 Thread Eric . Wang
Hi Soefara, Your res-ref-name in web.xml should have same name with Resource name= jdbc/creditel auth=Container type=javax.sql.DataSource/ in server.xml. Good luck, Soefara Redzuan [EMAIL PROTECTED] on 03/14/2002 10:47:51 AM Please respond to Tomcat Users List [EMAIL

Global JNDI Resources

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

JDBC mSQL

2002-03-11 Thread Dahnke, Eric
Is anyone using mini-sql (mSQL) w/ jdbc. If so could you send me your driver .jar file and an example of how you're calling it. I've installed msql-jdbc-1-0.jar, but no matter how I call it, I get a Connection failed. java.sql.SQLException: Connection failed. at

RE: NEED HELP TO DEFINE ENTRY POINT FOR MY APPLICATION

2002-03-06 Thread Dahnke, Eric
Take a look at MVC architectures. -Original Message- From: Barney Hamish [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 06, 2002 9:41 AM To: 'Tomcat Users List' Subject: RE: NEED HELP TO DEFINE ENTRY POINT FOR MY APPLICATION Rather than writing your own, maybe you should think

RE: how to set env varible

2002-03-06 Thread Dahnke, Eric
This has always been a question of mine too. You've got to get the modified environment variables (JAVA_HOME, CATALINA, etc) to the user session starting Tomcat. Often times I've had to reboot as all users get the env variables read to them from /etc/profile at startup. Hope that answers your

Re: Warp Connector still broken in 4.0.3 on Win platforms...sigh

2002-03-04 Thread Jonathan Eric Miller
According to the announcement, 4.0.3 is really just 4.0.2 with a security patch applied. So, I'm pretty sure any other post 4.0.2 fixes won't be in there. Jon - Original Message - From: Andrzej Jan Taramina [EMAIL PROTECTED] To: tomcat Users List [EMAIL PROTECTED] Sent: Sunday, March

Re: SSL_CLIENT_CERT in tomcat

2002-03-04 Thread Eric Gilbertson
Lauire: You can get the client cert info from the the HttpServletRequest argument that is passed into your doGet/Post method. See chapter 8 of More Servlets and Server Pages for an example. HTH, Eric Gilbertson [EMAIL PROTECTED] At 05:19 PM 3/4/2002 +, Laurie Young wrote: Hi I am running

RE: runaway process in java while using tomcat

2002-03-04 Thread Dahnke, Eric
Does the process go away or release back CPU eventually? On what system? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, March 04, 2002 6:41 PM To: '[EMAIL PROTECTED]' Subject: runaway process in java while using tomcat Hello, I am hoping someone

Problem starting Tomcat4 (starts then stops)

2002-02-27 Thread Dahnke, Eric
Hello, Does anyone know why upon running ./startup.sh my RH7.1 box briefly shows some java activity, but then quits. Here is the output of ps ax. These processes live for a few seconds then... nothing. 2836 pts/1R 0:01 /usr/java/jdk1.3.1_01/bin/i386/native_threads/java

Bug in the Bug Database?

2002-02-22 Thread Jonathan Eric Miller
There seems to be a bug in the Bug Database as it appears to be down right now. http://nagoya.apache.org/bugzilla/ Jon -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto:[EMAIL PROTECTED]

Re: Re: Using JNDIRealm with password digesting and Netscape Directory Structure

2002-02-22 Thread Jonathan Eric Miller
been implemented?? has anyone tried it?? How does it work? I mean when I authenticate using bind style why is the password ignored? I will seach on the web but would appreciate if someone gives me a pointer. ThanksRegards jay On Sat, 16 Feb 2002 Jonathan Eric Miller wrote : How about bind

uriworkermap properties

2002-02-20 Thread Eric Johnson
Edit uriworkermap.properties file Add any web sites that IIS needs to serve to Tomcat: # # Default worker to be used through our mappings # default.worker=ajp13 # # Sites to be redirected to Tomcat # /examples=$(default.worker) /examples/*=$(default.worker) I am new at this and just installed

Jakarta Tomcat Error Message Information Disclosure Vulnerability?

2002-02-20 Thread Jonathan Eric Miller
Does anyone know if this vulnerability still exists? It says that 4.0.1 suffers from this vulnerability, but, I don't see anything out of the ordinary when I try it on mine. http://online.securityfocus.com/cgi-bin/vulns-item.pl?section=infoid=3199 Jon -- To unsubscribe: mailto:[EMAIL

Re: Jakarta Tomcat Error Message Information Disclosure Vulnerability?

2002-02-20 Thread Jonathan Eric Miller
- From: Jonathan Eric Miller [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 20, 2002 4:34 PM To: Tomcat User List Subject: Jakarta Tomcat Error Message Information Disclosure Vulnerability? Does anyone know if this vulnerability still exists? It says that 4.0.1 suffers from

How to enable browser caching for servlet protected by security-constraint?

2002-02-19 Thread Jonathan Eric Miller
I found that in Tomcat 4.0.2 that Web browser caching is turned off for resources that are protected by a security-constraint. Tomcat 4.0.2 does the following. sresponse.setHeader(Pragma, No-cache); sresponse.setHeader(Cache-Control, no-cache); sresponse.setDateHeader(Expires, 1); For example,

Re: Did the default HTTP expires header change in Tomcat?

2002-02-15 Thread Jonathan Eric Miller
now, and what was the original value? Jon - Original Message - From: Remy Maucherat [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED]; Jonathan Eric Miller [EMAIL PROTECTED] Sent: Thursday, February 14, 2002 6:26 PM Subject: Re: Did the default HTTP expires header change in Tomcat

Re: Did the default HTTP expires header change in Tomcat?

2002-02-15 Thread Jonathan Eric Miller
memory). Jon - Original Message - From: Jonathan Eric Miller [EMAIL PROTECTED] To: Remy Maucherat [EMAIL PROTECTED]; Tomcat Users List [EMAIL PROTECTED] Sent: Friday, February 15, 2002 11:35 AM Subject: Re: Did the default HTTP expires header change in Tomcat? Thanks. Is there a way

RE: changing a user's password on linux using jsp exec.

2002-02-14 Thread Dahnke, Eric
The only password you could ever change is the one for the user Tomcat is running as (nobody i believe). I've been down the road you're going down. Your options are: -1- (compiling apache/tomcat to run as user root (unreasonable on anything other than a intranet environment). big security

RE: changing a user's password on linux using jsp exec.

2002-02-14 Thread Dahnke, Eric
a user's password on linux using jsp exec. Hi Dahnke, The cron idea seems interesting. Do you have something working? Or even an example for me to follow. Thanks. --- Dahnke, Eric [EMAIL PROTECTED] wrote: The only password you could ever change is the one for the user Tomcat is running

Did the default HTTP expires header change in Tomcat?

2002-02-14 Thread Jonathan Eric Miller
In the applications that I'm developing, I used to be able to click on the Web browser back button to return to a page that contained form data that was generated by a HTTP post. I noticed that it now gives me an error message like Page has Expired when I try to do it. It does this in both IE and

Re: Did the default HTTP expires header change in Tomcat?

2002-02-14 Thread Jonathan Eric Miller
Yeah, I just tried my application in 4.0.1 and it doesn't expire. Something seems to have changed in 4.0.2. Jon - Original Message - From: Jonathan Eric Miller [EMAIL PROTECTED] To: Tomcat User List [EMAIL PROTECTED] Sent: Thursday, February 14, 2002 6:14 PM Subject: Did the default

RE: How can I tell who is connecting to the database?

2002-02-13 Thread Dahnke, Eric
You can turn on logging with MySQL with the -l flag. I'll assume you're running on a unix* system. Where MySQL starts up add a -l flag to it. Below is how it is on my machine (linux RPM install) $bindir/safe_mysqld -l --datadir=$datadir --pid-file=$pid_file then your log file will be created

JDOM parsing.

2002-02-13 Thread Eric Ace
I have an XHTML doc. I load it into a JDOM Document object and then just display it using the following code: SAXBuilder builder = new SAXBuilder(); Document doc = builder.build(new File(test-xhtml.html)); fmt.output(doc, System.out); The output has

Re: I can't stand the UnsatisfiedLinkErrors anymore withTomcat 4.0.1!

2002-02-12 Thread Jonathan Eric Miller
Yeah, you have to put classes that use JNI in a lib directory such as common/lib rather than WEB-INF/lib, otherwise you will get errors when your servlet gets reloaded. There is a note about it in the release notes. Also, you can set CATALINA_OPTS=-Djava.library.path=path containing your native

Cannot get SSI to work on Tomcat 4.0.2

2002-02-12 Thread Eric Ace
I justdownloaded and installed Tomcat 4.0.2. I am trying to have an html page do an SSI of a separate shtml. I am running Win2K, Java Standard Edition 1.3.1_01. I have scanned the list and can't see why this shouldn't be working... Here's what I'm doing: File main.html contains the

Re: Inserting DATE into SQL server

2002-02-11 Thread Jonathan Eric Miller
Unless your table only has one column, you need to specify which column you are setting the value for in your INSERT statement. You should also use the JDBC escape sequence for a date as well that way it is DBMS independent. INSERT INTO table1 (column1) VALUES ({d '-mm-dd'}) Jon -

Sharing a bean between servlet and jsp. Arrggghhhhh

2002-02-11 Thread Dahnke, Eric
Now I'm going crazy. This can't be so hard. Please help... I can't figure this out. I'm trying to share a bean between a jsp page and servlet. Arggh... Please I help on other lists... and donate time to charity. I've been to Barnes and Noble and looked at a heap of texts. I've done no

Using a JavaBean from within a servlet

2002-02-10 Thread Dahnke, Eric
Hello, This is killing me. I've got a form that posts to a servlet. I simply want to get the form variables into a bean's properties. I can find only one reference to what I'm trying to do here. it is a formToBean() method from a FormUtils package, that some company sells. Reading form

RE: Using a JavaBean from within a servlet

2002-02-10 Thread Dahnke, Eric
on. Regads, eric -Original Message- From: Charles Baker [mailto:[EMAIL PROTECTED]] Sent: Sunday, February 10, 2002 7:28 PM To: Tomcat Users List Subject: Re: Using a JavaBean from within a servlet --- Dahnke, Eric [EMAIL PROTECTED] wrote: Hello, This is killing me. I've got a form

Charset problem

2002-02-04 Thread Eric LOEW
caracter (such as accent éèçà...) I become on a group of symbols instead. Is there a parameter (in tomcat or java) to specify in wich charset we are ? Eric -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto:[EMAIL PROTECTED]

Waiting for instance to be deallocated

2002-02-04 Thread Chaber, Eric
in 4.0.2-b2 but i install it with no success. Anyone encountered this error before ? Do you have guys productions applications where you can change classes without restarting ? Help very much appreciated. Thx Eric CHABER -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto

Re: Charset problem

2002-02-04 Thread Eric LOEW
is this configured (I'm very poor in Tomcat technologie :( ). Eric -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto:[EMAIL PROTECTED]

Re: Apache/Tomcat memory leak not recovered after shutdown

2002-02-04 Thread Eric LOEW
-ug.html). Hope this help Eric -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto:[EMAIL PROTECTED]

Re: Ajp handler and URI rewriting

2002-01-27 Thread Eric Fesler
or in the SessionInterceptor --Eric -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto:[EMAIL PROTECTED]

Ajp handler and URI rewriting

2002-01-26 Thread Eric Fesler
, I did something wrong with the configuration but I don't know what. Does anybody have an idea? thanks, --Eric -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto:[EMAIL PROTECTED]

Re: Ajp handler and URI rewriting

2002-01-26 Thread Eric Fesler
the session When accessing the same page through Apache with mod_jk and Ajp13 connector, I've got the following message: ContextManager: ProcessRequest: R( /test.jsp%3bjsessionid=ipt44x1ye1) and the SessionInterceptor CANNOT retrieve the session. Is it something wrong with the Ajp13Connector? --Eric

Re: multiple java processes

2002-01-18 Thread Jonathan Eric Miller
I'm guessing that you're using Linux? I was wondering the same thing recently and what I found is that on Linux, the ps command as well as top list threads not processes. So, actually, there's just one process for Tomcat, but, multiple threads. Someone else posted about a command called pstree.

Re: No startup.sh in RPM Distribution of Tomcat 4.0.1 for Linux

2002-01-11 Thread Jonathan Eric Miller
IMHO, I don't think it's a good idea to make customizations like this. IMHO, all the distributions should contain the same files. Jon - Original Message - From: GOMEZ Henri [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Friday, November 09, 2001 7:13 AM Subject: RE: No

Accent and cookie problem

2002-01-07 Thread Eric LOEW
the test (with the same code) on a RedHat Box 6.2 and Tomcat 3.2.3 and that work. My question : Is there a special configuration in Tomcat or apache or in the system ? I don't really know where to search ? Can someone help me ? Eric. -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional

3.3 classpath omissions?

2002-01-04 Thread Eric Hansen
be doing wrong? Thanks, Eric Hansen

RE: 3.3 classpath omissions?

2002-01-04 Thread Eric Hansen
classloaders) are not being added to the classpath. Is there some setting that indicates whether or not to load those classes.. or is it supposed to do all the classloaders by default. Thanks, Eric Hansen -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: Friday

'Vector' class not available in jsp page

2002-01-04 Thread Eric Hansen
declaration, it works fine... but I really don't want to go back and add that declaration to all my jsp pages if there is a way to avoid it. I don't remember having to make any specific entries in the Tomcat 3.2.3 setup to enable certain Java packages. Any ideas? Thanks Eric Hansen

Way to alias/redirect index.html to a servlet with Tomcat 4 in standalone mode?

2001-12-18 Thread Jonathan Eric Miller
This is probably a newbie question, but, it's something that I've been meaning to find the answer to for awhile. I'm using Tomcat 4.0.1 in standalone mode. What I want to do is be able to assign an alias to a servlet so that a user can just enter the name of an HTML file to access the servlet

Possible to have multiple SSL enabled virtual hosts with Tomcat 4 in standalone mode?

2001-12-18 Thread Jonathan Eric Miller
I'm wondering if anyone knows if it is possible to have multiple virtual hosts in Tomcat 4 standalone mode, each with a SSL enabled? If so, do I need to somehow put more than one host name into the SSL certificate? Or, is there a way to install multiple SSL certificates? So, for example, say I

Re: Way to alias/redirect index.html to a servlet with Tomcat 4 in standalone mode?

2001-12-18 Thread Jonathan Eric Miller
That worked, thanks. Jon - Original Message - From: [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Tuesday, December 18, 2001 2:42 PM Subject: Re: Way to alias/redirect index.html to a servlet with Tomcat 4 in standalone mode? Jonathan Eric Miller [EMAIL

RE: benchmarking Tomcat4?

2001-11-29 Thread J. Eric Smith
programmer? When I went through college C and Pascal were big thing. I don't know beans about Java (no pun intended). Now, will someone please point me to something that isn't documented in what amounts to hieroglyphics to non-programmers? J. Eric Smith [EMAIL PROTECTED] mailto:[EMAIL PROTECTED

RE: mod_webapp/Tomcat4 ready for production level stuff?

2001-11-28 Thread J. Eric Smith
with TC4/mod_webapp at the core. I was hoping someone in this forum could convince me otherwise, but I haven't seen anything encouraging thus far, mostly folks saying wait a bit and it'll be great. I've got a project NOW and I can't afford to wait. J. Eric Smith [EMAIL PROTECTED] mailto:[EMAIL

RE: mod_webapp/Tomcat4 ready for production level stuff?

2001-11-28 Thread J. Eric Smith
costs (I think) $2500 per license so it's much cheaper than Weblogic. We've had relatively good luck with Websphere and IBM's pricing (if you get their DB2 bundle) is very good. We didn't particularly like DB2, however, as we generally have used Oracle. No probs with DB2, just different. J. Eric

RE: mod_webapp/Tomcat4 ready for production level stuff?

2001-11-28 Thread J. Eric Smith
as production ready in its current state. It's my opinion, and it may be wrong, but if someone is using TC4 and mod_webapp in a mission critical situation, I'd love to hear from them, because thus far I've heard nothing to convince me otherwise. J. Eric Smith [EMAIL PROTECTED] mailto:[EMAIL

RE: mod_webapp/Tomcat4 ready for production level stuff?

2001-11-28 Thread J. Eric Smith
agree with the practice, but I have to work within the framework given to me. J. Eric Smith [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] -Original Message- From: DONNIE HALE [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 28, 2001 10:55 AM To: [EMAIL PROTECTED] Subject: RE

RE: mod_webapp/Tomcat4 ready for production level stuff?

2001-11-28 Thread J. Eric Smith
someone to react who's used to Weblogic-levels of documentation and finish? And don't hand me the old you get what you pay for. Apache webserver has proven that you don't have to pay a lot to get a lot. Why they abandoned that for TC4 is beyond me. J. Eric Smith [EMAIL PROTECTED] mailto:[EMAIL

mod_webapp/Tomcat4 ready for production level stuff?

2001-11-27 Thread J. Eric Smith
guys simply don't care what engine I use, so somebody out there speak up: is Tomcat4 ready for prime time production? If not, how soon? And if not soon, what about alternatives that are either free or available for under $2000 per node? Many thanks to all. J. Eric Smith [EMAIL PROTECTED]

benchmarking Tomcat4?

2001-11-27 Thread J. Eric Smith
to this point in informal testing of Weblogic and such and it's been quite good on Weblogic, but the results it gives using Tomcat4 are not repeatable and are very ambiguous. Anything out there better that's free? J. Eric Smith [EMAIL PROTECTED]

Re: Newbie - Tomcat 3.3 + Apache + NT

2001-11-26 Thread Eric Dutilleul
I have actually a Apache / Tomcat Environnement in production for our Intranet and it works well. For your problem you need to include the file mod_jk.conf-auto at the end of your Apache configuration (this file is updated by your tomcat server at the start of the tomcat service). It is this file

Re: Newbie - Tomcat 3.3 + Apache + NT

2001-11-26 Thread Eric Dutilleul
' command. Is your Apache/Tomcat running on a NT? Jeffrey - Original Message - From: Eric Dutilleul [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Monday, November 26, 2001 10:35 AM Subject: Re: Newbie - Tomcat 3.3 + Apache + NT I have actually a Apache / Tomcat

Re: Integrating Tomcat with Apache on NT

2001-11-26 Thread Eric Dutilleul
My experience on installing couple Apache (1.3.2) / Tomcat (3.2) : Install on jdk 1.3.1 in d:\jdk1.3.1 Install of Apache with install process on d:\program files\ apache group\apache install of tomcat files in d:\tomcat configuring wrappers.properties, workers.properties correctly installing

Re: NoClassDefFoundError: sun/tools/javac/Main

2001-11-16 Thread Eric Strain
Hi James- first, my disclaimer: I'm a C++, Visual C++, ATL, COM, DCOM guy, so I'm by no means a TC Guru, in fact considering the problems I've had with TC and Java, I hate the entire Java scene, but aside from that here's what I did: I downloaded and extracted the JDK 1.1.8 program to my root

Re: cannot execute binary file

2001-11-13 Thread Eric Strain
Hi: I hate to be simplistic, but, is your classes12.zip file still compressed? If so just unzip it to a safe location and alter your classpath From: Noble Long [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: cannot execute binary file Date: Tue,

tomcat archive location?

2001-11-03 Thread Eric Strain
I need to search the archives for information on TC, anyone here know the address? Thanks. _ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional

initial construction of tomcat

2001-11-02 Thread Eric Strain
Hi All: (new to TC) please forgive my ignorance of this topic :) I have downloaded the tomcat binaries, configured my environment and run startup.bat from my tomcat directory. Now I have a tomcat.java file listed. How do I build TC into an executable servlet container? I usually use the

RE: new tomcat user

2001-11-02 Thread Eric Strain
into whatever project you want. When you compile with JCreator those .jar files are automatically included in your CLASSPATH. This keeps you away from cluttering your CLASSPATH. Its free also. check it out www.jcreator.com Regards, Pritpal Dhaliwal -Original Message- From: Eric Strain [mailto

Does -d64 option for JDK 1.4.0b3 speed up Tomcat at all on Solaris?

2001-11-01 Thread Jonathan Eric Miller
I just installed the latest JDK 1.4 beta and noticed that there is now 64-bit support for Solaris. I noticed that there is a -d64 option in the java command. Does anyone know if this will speed up the performance of Tomcat at all, or what advantages it offers in that type of environment if any?

new tomcat user

2001-10-31 Thread Eric Strain
Hi: I'm new to tomcat, does anyone here know where tomcat looks for the javax.servlet package when building the servlets? I run TC from the command line as C:\jdk11.8.3javac.exe MyProgram.java and TC can't find the javax.servlet packages from import javax.servlet.*; and import

RE: new tomcat user

2001-10-31 Thread Eric Strain
. Its free also. check it out www.jcreator.com Regards, Pritpal Dhaliwal -Original Message- From: Eric Strain [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 31, 2001 2:33 PM To: [EMAIL PROTECTED] Subject: new tomcat user Hi: I'm new to tomcat, does anyone here know where tomcat

Link on Jakarta Web site to Tomcat 4.0 not 4.0.1?

2001-10-27 Thread Jonathan Eric Miller
I just noticed that the link to the release version of Tomcat on the Jakarta Web site is pointing to 4.0 and not 4.0.1? I thought that it pointed to 4.0.1 previously, but, I don't remember for sure. Is this an indication that there is a problem with 4.0.1? I'm currently running 4.0, but, I was

How to call code in catalina.jar from a servlet?

2001-10-22 Thread Jonathan Eric Miller
I'm wondering if it is possible to call code that is located in catalina.jar from a normal servlet? Specifically, I want to call the following method in order to create a hash that is in the format the JDBCRealm expects so that I can have a form which allows users of my application to change

RE: Where do I place files?

2001-10-17 Thread Eric Bessette
Here's a tutorial for deployment using Tomcat. It helped me out. http://www.onjava.com/pub/ct/33 Thanks, Eric -Original Message- From: Sean Alphonse [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 17, 2001 11:08 PM To: 'Tomcat-User Subject: Where do I place files? Hello

Re: Will tomcat sessions work with IE6?

2001-10-04 Thread Jonathan Eric Miller
- Original Message - From: Reynir Hübner [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, October 02, 2001 4:29 PM Subject: RE: Will tomcat sessions work with IE6? I´ve also made few tests on this, sessions are being created both when user is logged on and not. the only thing

Re: Will tomcat sessions work with IE6?

2001-10-04 Thread Jonathan Eric Miller
If you use the default privacy settings for IE6, it should work fine. As you noted, third party cookies are blocked by default. However, the cookie that Tomcat uses for session IDs isn't a third party cookie. Jon - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent:

RE: web-inf/classes not found ?

2001-09-27 Thread Chaber, Eric
/classes reference in my server.xml, I guess I should place this information in the context for my application but I have no idea where, but I will see if I can find anything about it in the documentation. Mikael - Original Message - From: Chaber, Eric [EMAIL PROTECTED] To: [EMAIL PROTECTED

RE: tomcat logs files

2001-09-26 Thread Chaber, Eric
I know that in tomcat 3.2 you can change debug level in server.xml and also precise in whihch file you want to log errors example : Logger name=tc_log verbosityLevel = DEBUG path=logs/tomcat.log / -Original Message- From: catalin [mailto:[EMAIL

How to give timeouts to threads ?

2001-09-26 Thread Chaber, Eric
somewhere we can specify tomcat to give timeout to these everlasting threads. Any ideas ? Regards Eric CHABER Technical Support Engineer

RE: How to give timeouts to threads ?

2001-09-26 Thread Chaber, Eric
For me a timeout you can put in server.xml would be enough :-) -Original Message- From: David Frankson [mailto:[EMAIL PROTECTED]] Sent: September 26 2001 16:49 To: [EMAIL PROTECTED] Subject: Re: How to give timeouts to threads ? A ctrl-break thread dump will show you which threads

RE: Tomcat spawning multiple processes under Linux

2001-09-25 Thread Chaber, Eric
same as me, seems to be a normal behaviour... -Original Message- From: Tor Arne Benjaminsen [mailto:[EMAIL PROTECTED]] Sent: September 25 2001 12:28 To: [EMAIL PROTECTED] Subject: Tomcat spawning multiple processes under Linux I've tried both 3.2.3 and 4.0, and both spawn a varying

Re: Catalina SSL failure

2001-09-25 Thread Jonathan Eric Miller
You need to use https://localhost:8443. Note, the s after http. I've done that on accident a few times myself. What's up with those 5 little squares anyways? I would have expected it to print an error instead. A bug in IE? I get an error message when I try it with Netscape, which is what I would

Re: Tomcat: can I use .htaccess files to protect html files

2001-09-25 Thread Jonathan Eric Miller
If you are using Tomcat in standalone mode, you can put something similar to the following in your web.xml file to do that. For more information, check out the Servlet 2.3 spec which you can get at the following URL. http://jcp.org/aboutJava/communityprocess/first/jsr053/index.html ?xml

Re: How to know which ajp in tomcat 4

2001-09-25 Thread Jonathan Eric Miller
I'm not really an expert on this, so, I could be wrong, but, I'm not sure if Tomcat 4 actually uses AJP. It uses something referred to as a WarpConnector. It's located at the bottom of the default server.xml file. Not sure if that uses AJP or not... Jon - Original Message - From: tom

Re: Tomcat 4.0 in Win2000 as service

2001-09-25 Thread Jonathan Eric Miller
I haven't tried this, but, I think you are right, it could be a permissions problem. Note, by default it uses .keystore in your home directory to store the certificate. You may want to copy the .keystore file under your Tomcat directory. Then, in server.xml for the HttpConnector, add a

Re: Limits of Web

2001-09-25 Thread Jonathan Eric Miller
I think it depends on the requirements of the application. If all you need is data entry forms that contain elements such as text boxes, drop-down list, radio buttons, etc., then, you can do it no problem. In the end, you may find that it's actually a hell of a lot easier making them Web based.

Re: Limits of Web

2001-09-25 Thread Jonathan Eric Miller
Unless, Web forms are inadequate, I wouldn't use applets at all, I'd just make it completely server-side and use servlets. Jon - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, September 24, 2001 10:43 AM Subject: Re: Limits of Web When we started with

Re: Where to get mod_webapp

2001-09-25 Thread Jonathan Eric Miller
Why not just run Tomcat in standalone mode? Jon - Original Message - From: Jim Urban [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, September 25, 2001 1:26 PM Subject: RE: Where to get mod_webapp That's fine for the Unix shops, but what about us Win32 shops? For starters,

Re: How to start/stop tomcat from a remote machine???

2001-09-25 Thread Jonathan Eric Miller
How about just SSHing into the box and restarting it using the startup.sh and shutdown.sh scripts? Jon - Original Message - From: Siomara Pantarotto [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, September 25, 2001 1:13 AM Subject: Re: How to start/stop tomcat from a remote

Re: load-on-startup and Tomcat v4.0

2001-09-24 Thread Jonathan Eric Miller
Yeah, I'm pretty sure that I had the same problem. I'm pretty sure it's just the ordering. Jon - Original Message - From: Graham Leggett [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, September 21, 2001 12:59 PM Subject: Re: load-on-startup and Tomcat v4.0 Craig R. McClanahan

Everlasting tomcat processes

2001-09-24 Thread Chaber, Eric
10.4 10:28 java I there a parameter to set to prevent from these everlasting tomcat process ? Can i say somewhere kill these process if they last more than 4mn for example ? Best regards, Eric

Re: JDBC Connection Pool Theory ??

2001-09-24 Thread Jonathan Eric Miller
What I want to know is how much of a difference connection pooling really makes? My application isn't taking a lot of hits, so, maybe if it was, I would notice the difference, but, right now, I see no need to use connection pooling. Jon - Original Message - From: Gustavo Saramago [EMAIL

Re: JDBC Connection Pool Theory ??

2001-09-24 Thread Jonathan Eric Miller
You could also probably just store the database connection in a session variable. That way, the connection is only setup after the user first authenticates instead of at each page request. Jon - Original Message - From: Mihai Gheorghiu [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent:

Re: How to set servlet reloadable in Tomcat 4.0 ?

2001-09-24 Thread Jonathan Eric Miller
I only know how to do it in Tomcat 4.0. You need to add a reloadable=true into your server.xml for the Context that your servlet resides in. The following link has some information on it. http://jakarta.apache.org/tomcat/tomcat-4.0-doc/config/context.html Jon - Original Message - From:

RE: Everlasting tomcat processes

2001-09-24 Thread Chaber, Eric
: Everlasting tomcat processes It's probable these 'ever-lasting' process are tomcat running normally. Do you know these threads to started by a JSP or Servlet in reponse to a connection? Does the number and PIDs remain stable? - Original Message - From: Chaber, Eric [EMAIL PROTECTED] To: [EMAIL

Re: SSL Connection problem through jsp

2001-09-23 Thread Jonathan Eric Miller
I think I've seen this problem when trying to use ldaps with JNDI. I found that you still have to use ldap, not, ldaps. Then, you tell it to use the SSL port. In the case of LDAPS, it's 636. For HTTPS, it's 443. I think if you leave the s off the end it will probably work. At least that's the way

Session timeout in Tomcat 4.0 off by 10 seconds?

2001-09-23 Thread Jonathan Eric Miller
I did some testing to make sure that my sessions were getting timed out correctly. It appears that it's working. However, it appears to be off by 10 seconds. Not a big deal at all, but, it's not what I expected. You can use the following application to test it. First you need to add the

Re: Tomcat Spontaneously Restarting System

2001-09-23 Thread Jonathan Eric Miller
win2k at least once a day. I agree that sounds like a hardware or other problem. What motherboard and chipset are you using? - Original Message - From: Jonathan Eric Miller [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, September 20, 2001 10:25 AM Subject: Re: Tomcat

Re: importing an existing certificate

2001-09-23 Thread Jonathan Eric Miller
It's not that simple because you need to import the private key as well. I'm in the same situation, except that I'm importing from Apache Web Server to Tomcat in standalone mode. I posted this question a few days ago and someone told me about the following link which has a program that is

Re: importing an existing certificate

2001-09-23 Thread Jonathan Eric Miller
- Original Message - From: Jonathan Eric Miller [EMAIL PROTECTED] To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Sunday, September 23, 2001 12:22 PM Subject: Re: importing an existing certificate It's not that simple because you need to import the private key as well. I'm in the same situation

Re: Tomcat 4 and session persistance ...

2001-09-23 Thread Jonathan Eric Miller
Dunno. I just noticed the same thing. The howto document is in b7, but not in rc1, or the release version of 4.0. Jon - Original Message - From: David Cassidy [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, September 20, 2001 8:57 AM Subject: Tomcat 4 and session persistance ...

Re: 4.0 RPMs: when

2001-09-23 Thread Jonathan Eric Miller
What's wrong with the .zip file? Jon - Original Message - From: Sergey V. Udaltsov [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, September 22, 2001 12:05 PM Subject: Re: 4.0 RPMs: when Hi We still have problems with related jars, like jdbc2.0ext, jta, jmx, ldap which

Re: Get Friggin Verisign Working on Tomcat 4.0 Standalone How To - The Official Thread

2001-09-23 Thread Jonathan Eric Miller
If you haven't already done this, you might want to check out the keytool documentation that comes with the JDK. The Examples section pretty much explains how to do it. The next thing you need to do is a -import when you get back the signed certificate from Verisign.

Re: i´m in a muddle

2001-09-23 Thread Jonathan Eric Miller
I think you're supposed to use mod_webapp with Tomcat 4. I think that's the Tomcat 4 equivalent of mod_jk. I think the source for it was just recently released. It came out a little later than the release version of Tomcat 4.0 itself. Jon - Original Message - From: Jaime Garcia [EMAIL

<    3   4   5   6   7   8   9   10   11   >