Re: SMTP-Auth problem

2003-01-05 Thread Randy Secrist
sage(msg, address); } catch (javax.mail.MessagingException mex) { mex.printStackTrace(); } } } -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> I played around with smtp_auth under tomcat 4.1.12 and got

Sealing Violation due to inclusion of LifeCycle?

2002-12-23 Thread Randy Secrist
I have been building classes inherited from the org.apache.catalina.realmbase package, and have been struggling with where to put them. One of the reason's I have been doing this is to expose TC's realm implementation within my web applications. The best solution I have found so far is to jus

Re: SSLPeerUnverifiedException?

2002-12-01 Thread Randy Secrist
gt; http://nagoya.apache.org/bugzilla/show_bug.cgi?id=14164 > > Upgrade to 4.1.14+ > > > -Original Message- > > From: Randy Secrist [mailto:[EMAIL PROTECTED]] > > Sent: Sonntag, 1. Dezember 2002 08:06 > > To: Tomcat Users List > > Subject: SSLPeer

SSLPeerUnverifiedException?

2002-11-30 Thread Randy Secrist
I am getting a whole lot of these warnings in my stderr.log each time a client connects via SSL. I have been using SSL since tomcat 3.x - and have never had any problems. Since I recently switched to 4.1.12 - I am assuming this is a coyote related Http11Processor bug? I have noticed that it d

Re: non Http connector

2002-11-14 Thread Randy Secrist
He could also implement the Remote interface and set up RMI communication on a different port than what the HTTP connector runs on - which gives you quite a bit of the protocol set up for free. Any HTTP servlet which implements this interface can also act as a RMI server. IMHO one of the biggest

Re: Tomcat SSL w/ Apache

2002-10-31 Thread Randy Secrist
I have seen this work before as well - using 4.0.4 under Linux using org.apache.ajp.tomcat4.Ajp13Connector. I didn't really think that it could be the Tomcat side that was causing the problem - (since my relative experience between the two favors Tomcat...) I am now using the org.apache.coyote.to

Re: Tomcat & Apache, not connected?

2002-10-30 Thread Randy Secrist
TC and apache don't need to know about each other unless you want tomcat and apache to run on the same port. (This includes SSL on 443...) - TC would have to use a different port than the standard https 443 for secure transmission - if you require such a thing. Other than that - they can both run

Re: Tomcat SSL w/ Apache

2002-10-30 Thread Randy Secrist
30, 2002 12:51 AM Subject: Re: Tomcat SSL w/ Apache > The configuration you describe for virtual hosts is correct except that > for SSL to work correctly in Apache you have to use IP based virtual > hosting. Name based virtual hosting will give you errors. See > http://www.modssl

Tomcat SSL w/ Apache

2002-10-29 Thread Randy Secrist
I have an interesting problem that I don't know much about. I am integrating Apache with Tomcat using mod_jk - and I have it mostly working. The only real problem I have left - is getting SSL - which appears to be working with Apache - to work with Tomcat. I have both HTTP connector's disabled

Tag Libraries under 4.1.12

2002-10-26 Thread Randy Secrist
I have noticed a change in 4.1.12 concerning tab libraries - and had prior to this had not read anything about such a change. Apparently, if you are using a body tag which has no body specified in the .jsp file, i.e. - then tomcat never calls doAfterBody(). Before (version 4.04) - it seemed

Re: TC 4.1.12 - JSP compilation problems?

2002-10-26 Thread Randy Secrist
Replying to myself here - On setup I set JAVA_HOME to jdk1.4.1/bin - instead of jdk1.4.1. That was the problem. Randy - Original Message - From: "Randy Secrist" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Saturday, October 26,

TC 4.1.12 - JSP compilation problems?

2002-10-26 Thread Randy Secrist
I just installed TC 4.1.12 - and can't even get a blank - .jsp to compile. As such, my web apps are down, and are not working at all... Please help... I am getting the following error messages: org.apache.jasper.JasperException: Unable to compile class for JSP An error occurred at line: -1 in

Re: Tomcat Manager APP: manage VIRTUALHOST'S apps all TOGHETHER?

2002-10-22 Thread Randy Secrist
- Original Message - From: "Craig R. McClanahan" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Tuesday, October 22, 2002 10:34 AM Subject: Re: Tomcat Manager APP: manage VIRTUALHOST'S apps all TOGHETHER? > It depends on how you've configured your Tomcat virtual hos

Re: Not Autoloading servlets?

2002-10-06 Thread Randy Secrist
n to true in the context element of the > server.xml? > > > -----Original Message- > > From: Randy Secrist [mailto:[EMAIL PROTECTED]] > > Sent: Sunday, October 06, 2002 10:19 AM > > To: Tomcat Users List > > Subject: Not Autoloading servlets? > > > >

Re: Not Autoloading servlets?

2002-10-06 Thread Randy Secrist
bally? Randy - Original Message - From: "Randy Secrist" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Sunday, October 06, 2002 10:19 AM Subject: Not Autoloading servlets? I recently moved from 4.04 to 4.1.12. Tomcat is no longer au

Not Autoloading servlets?

2002-10-06 Thread Randy Secrist
I recently moved from 4.04 to 4.1.12. Tomcat is no longer autoloading my servlets from my web.xml file. Nothing in that file has changed since I moved to 4.1.12. Nothing shows up in the logs that suggests it even attempted to auto load them. What is going on? Randy

mx4j - JMX - Realm - Help

2002-10-04 Thread Randy Secrist
I have written a modified version of a UserDatabase realm and have been able to get it to work without JMX support under TC 4.1.12. Anything that doesn't use JMX can still authenticate like it would under pre 4.1.x codebase. Next, I would like to get customizations to work with the 4.1.x codebas

Re: MBeans?

2002-10-01 Thread Randy Secrist
change in the future. JBoss supports a nice dynamic MBean model. It may be more suitable for your task. Which goes back to the original question, what exactly are you trying to do? Yoav Shapira Millennium ChemInformatics >-Original Message- >From: Randy Secrist [mailto:[EMAIL

MBeans?

2002-09-30 Thread Randy Secrist
developer's group? Randy Secrist

MBean XML Descriptor

2002-09-28 Thread Randy Secrist
Is there a way to append to the information kept in the MBean descriptor without having to modify the file in catalina.jar? i.e. - is there a way to dynamically add MBeans so that TC knows about them at run time? Randy Secrist

UserDatabase interface

2002-09-25 Thread Randy Secrist
I am getting my first look at TC 4.1.12 - and have a question about global resources. If I implement org.apache.catalina.UserDatabase, I should be able to use that as a factor for a GlobalNamingResource in the server config correct? If that is true, is it also true that I could use this for my

Re: TC 4.1.10 - Administration App

2002-09-22 Thread Randy Secrist
ministration App > How are you accessing the administration app? From tomcat stand alone > page at 8080? It works for me. > > rls > > > > > > "Randy Secrist" <[EMAIL PROTECTED]> > 09/16/2002 07:58 PM > Please respond to "Tomcat Users List&quo

Re: Tomcat standalone Versus Apache

2002-09-06 Thread Randy Secrist
here are no silver bullet issues (other than > posibly this roon daemon thing) which suggests running Tomcat standalone in > production is foolish, right? > > Thanks. > Neal > > > > -Original Message- > From: Randy Secrist [mailto:[EMAIL PROTECTED]] > Sent: Fri

Re: Tomcat standalone Versus Apache

2002-09-06 Thread Randy Secrist
I have heard reports, (although never seen actual numbers or data) that suggest that if you have a lot of static pages for a large site, standalone Tomcat decreases in performace pretty quickly. That said - Apache has also been tested and proven with static pages, and has a great system for addin

Apache & Tomcat Howto

2002-09-04 Thread Randy Secrist
Hello, I hate to beat a dead horse - but I have been using tomcat standalone for a few years now. I have a friend comming over tomorrow who knows apache in and out, but nothing about Tomcat. I would like to know if anyone has a reference to an online HOWTO so that together we can figure out wha

Re: Can't find resource for bundle java.util.PropertyResourceBundle exception

2002-09-03 Thread Randy Secrist
Your property resource bundle needs to: 1) Have a .properties extention. 2) Be in either the WEB-INF/classes, or WEB-INF/lib directories. 3) Can optionally be in the common/classes, or common/lib directories 4) If you place it in a lib directory, it must be included in a .jar file. Good luck

Re: Tomcat and Crystal Reports (Urgent)

2002-08-29 Thread Randy Secrist
new version 9.0 is fully supporting java. > > Didn't MicroSoft pay their last bill ? > > Dom > - Original Message - > From: "Randy Secrist" <[EMAIL PROTECTED]> > To: "Tomcat Users List" <[EMAIL PROTECTED]> > Sent: Thursday, August 2

Re: OOM vs. Out of CPU

2002-08-29 Thread Randy Secrist
No it would not generate an exception unless you were out of heap memory. CPU at 100% just means that the current JVM running keeps the CPU busy working on the one process / thread it is working on. Randy - Original Message - From: "Michael Nicholson" <[EMAIL PROTECTED]> To: "Tomcat Users

Re: SSL and Tomcat

2002-08-29 Thread Randy Secrist
There is such a thing in Tomcat, albiet a little different. Tomcat being a servlet container, organizes everything into web applications. (Similar to a virtual server.) You can specify for each web application which directories (resources) are considered integral, or confidential. When a resou

Re: Tomcat and Crystal Reports (Urgent)

2002-08-28 Thread Randy Secrist
but no documentation available on > this. > > amit > --- Randy Secrist <[EMAIL PROTECTED]> wrote: > > The last version of Crystal reports I used was > > version 7.0. I didn't think > > they had any java support at that time. Has this > > changed? > >

Re: Servlet Instances

2002-08-28 Thread Randy Secrist
You can't explicitly control how many instances a container may create of your servlet since you don't have control over the container code. (Unless you hack the container that is.) If you do hack, you might as well write your own servlet specification since you would have to change many of the

Re: Tomcat and Crystal Reports (Urgent)

2002-08-28 Thread Randy Secrist
The last version of Crystal reports I used was version 7.0. I didn't think they had any java support at that time. Has this changed? Randy - Original Message - From: "Amit Lonkar" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, August 28, 2002 9:32 PM Subject: Tomcat and Cr

Re: PropertyResourceBundle problems

2002-08-28 Thread Randy Secrist
> Sent: Tuesday, August 27, 2002 10:37 PM Subject: Re: PropertyResourceBundle problems > > > On Tue, 27 Aug 2002, Randy Secrist wrote: > > > Date: Tue, 27 Aug 2002 21:58:00 -0600 > > From: Randy Secrist <[EMAIL PROTECTED]> > > Reply-To: Tomcat User

SocketExcpetion in Servlet.service()

2002-08-28 Thread Randy Secrist
I am getting quite a few of these errors in my tomcat log files. I would like to know how to get rid of them? 2002-08-28 18:46:58 StandardWrapperValve[default]: Servlet.service() for servlet default threw exception java.net.SocketException: Connection reset by peer: socket write error Seems to

Re: PropertyResourceBundle problems

2002-08-27 Thread Randy Secrist
Still at it. getRepositories() won't help a bit since (like you said) that class loader doesn't keep track of the class path over the scope it presides over... My key question May I assume that if I can load a class from this JAR, and the ResourceBundle is in the same JAR - shouldn't I be able t

Re: PropertyResourceBundle problems

2002-08-27 Thread Randy Secrist
: "Randy Secrist" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Tuesday, August 27, 2002 9:21 PM Subject: Re: PropertyResourceBundle problems > I did copy the props file to the web-inf/classes - however TC still doesn't > know

Re: PropertyResourceBundle problems

2002-08-27 Thread Randy Secrist
place it on other repositories. > > this is my code in reading the property file: >ResourceBundle oRes = PropertyResourceBundle.getBundle("MyProperty"); > > Randy Secrist wrote: > > >Hello, > > > >This is probably a very simple question - but I want

PropertyResourceBundle problems

2002-08-27 Thread Randy Secrist
Hello, This is probably a very simple question - but I want to have a servlet load a PropertyResourceBundle and am having problems getting TC to find the resource... I want to do this: props = (PropertyResourceBundle) PropertyResourceBundle.getBundle("SystemConfig"); I have tried moving the pro

Re: JNDI Realm Help - (using iplanet)

2002-08-20 Thread Randy Secrist
e 4.1.X and bind as the user > 3) Use JNDIRealm from the 4.1.X tree and bind as the user > > -Tim > > Randy Secrist wrote: > > Hello, > > > > I am trying to get TC (4.0.4) to establish a working JNDI realm using > > iplanet's directory server. I am using

JNDI Realm Help - (using iplanet)

2002-08-20 Thread Randy Secrist
earched the web extensivly for help. Would someone please tell me what I need to do to get this working? If I can actually get this working, I will be most elated! Randy Secrist Below are my catalina.log, and server.xml... 2002-08-20 11:32:04 JNDIRealm[WarnerTruck]: Connecting to URL ldap://myserv