Custom Realm: How to access the LoginConfig of the current context.

2003-07-09 Thread Krause Karin
Hi, we are running Tomcat 4.1.24 and I try to implement a custom realm. Inside the realm I need access to the current context of my web app in order to get some information from the LoginConfig object. Is there a possibility to access this. I have seen that I can access the context in the

Re: OT Unsubscribing

2003-07-09 Thread Bill Barker
Ignore Mike. You have to reply to the response for the unsubscribe message for it to take effect. Because I'm in a particularly good mood tonight, and to show you why you have to reply to the unsubscribe message, I've just sent an unsubscribe request for the address that you posted this on. You

Re: images not appearing

2003-07-09 Thread Yannick Monclin
is it a unix link for your images ? Mark Biciunas a écrit: I am deploying a test servlet on Tomcat 4.1.24. Everything works great, the servlet executes, I get results back at my browser, but none of the images show up. In conf/server.xml, I have added the following: Context path=

AW: problem: add in httpd.conf :mod_jk2.so

2003-07-09 Thread Gianni Martiradonna
Yes! It work now! Many thanks! gianni -Ursprungliche Nachricht- Von: Eric J. Pinnell [mailto:[EMAIL PROTECTED] Gesendet: Dienstag, 8. Juli 2003 18:57 An: Tomcat Users List Betreff: Re: problem: add in httpd.conf :mod_jk2.so Hi, in httpd.conf make sure you have LoadModule

Re: tomcat manager app

2003-07-09 Thread Martin Jacobson
Erik Weibust wrote: Well, I have no problem using the admin tool. Could there be anything else causing this? The manager app uses BASIC authentication, rather than FORM (per the admin app) - what happens if you close Netscape re-start it? FYI Netscape 7 does not show this behaviour (on Mac OS

Re: Logging in Tomcat

2003-07-09 Thread Norris Shelton
What you want to use is the Logger instance that is defined for this context via your server.xml From a servlet, getServletContext().log(theMessage); Thanks go to Yoav Shapira Millennium ChemInformatics The catalina_log file is the Logger element under the Catalina element.

RE: images not appearing

2003-07-09 Thread Collins, Jim
You need to add a welcome file entry in the web.xml. Look at using filters to do some pre processing on all requests. Regards Jim. -Original Message- From: Mark Biciunas [mailto:[EMAIL PROTECTED] Sent: 08 July 2003 22:49 To: Tomcat Users List Subject: Re: images not appearing Hi, I

RE: JDBC Realm Warning Message?

2003-07-09 Thread Collins, Jim
You don't have to specify a role. -Original Message- From: Rick Roberts [mailto:[EMAIL PROTECTED] Sent: 08 July 2003 19:18 To: Tomcat Users List Subject: Re: JDBC Realm Warning Message? Thanks for reply Mike. After thinkin about this message some more; I think that the reason I am

jikes1.18 problem

2003-07-09 Thread Shanta B
Hi I am getting following error when i am doing ant i am working on windows 2000 and my IDE is IntellijIDEA .i installed jikes1.18 ..i set its bin directory to path variable. Assertion failed:lit null argument to RegisterClass,file ../../jikes-1.18/src/bytecode.h do you have any

how to create servlet?

2003-07-09 Thread kitty winslet
Hi.. I used the JSP example in my newly setup Tomcat server to send mail. http://localhost:8080/examples/jsp/mail/sendmail.jsp and after I type in info, the mail sent successfully and it go to the following page. http://localhost:/examples/SendMailServlet I took a look on the JSP

cookies

2003-07-09 Thread Günter Kukies
Hi, i use a machine1 with tomcat as a portal to do userauthentification and there is an other machine2 without tomcat that is providing a service with its own userauthentification. Machine2 uses POST to receive user and password and stores the session in cookies at the client. Machine 1 and 2

Running Tomcat as Windows Service

2003-07-09 Thread Hamidene, Anis Ben
Hi, I want to install Tomcat 4.1.2 as windows service. My servlets should connect to another server over SSl-Connection. I did install tomcat as a service, but when my client connects to the servlet, tomcat hangs down,and I have to restart the service manually. If I start Tomcat using the batch

How do I setup Tomcat 5.*

2003-07-09 Thread JavaWriter2002
Hi, I have searched instructions and websites with no real luck on this. I've used Tomcat in production since some 3.* version but I've been lost since after 4.0 about where to put a simple servlet class or how to include the servlet.jar so jdk1.4 can see it. I've created war files as the

error in startup of embedded tomcat

2003-07-09 Thread markw
I get the following errors in syslog when I try and run tomcat as an embedded process. My question has to do with the NamingContextListener, I do not reference this in my server.xml, or application web.xml. Where would this be coming from and why would I need it? Thank you. Jul 8 22:32:38

Re: prompt for password at startup

2003-07-09 Thread markw
yes, that is what I want to do. I wonder what happened to the PasswordPrompter? Currently, I am working on using the embedded tomcat approach, and using the Invocation API. thanks for your help. I assume you mean for things like the keystore password. In TC3.3 you can use the optional

Log Rotation (4.1.24)

2003-07-09 Thread news.basebeans.com
I would like to limit the number of log files retained by Apache Tomcat/4.1.24. For example: server.xml Valve className=org.apache.catalina.valves.AccessLogValve directory=logs prefix=localhost_access_log. suffix=.txt pattern=common resolveHosts=false/ results (windowsXP)

authentication question

2003-07-09 Thread Dave Naden
I can set up Tomcat's authentication fine, either basic (or digest) or form-based. Everything I read seems to prefer form-based, because you can customize the screen. However, basic as least encrypts the userID/password, and digest does that even better. But form-based just sends these thing

Re: how to create servlet?

2003-07-09 Thread Tim Funk
To create/use servlets, you just need to folow Sun's Servlet Specification. http://java.sun.com/webservices/docs/1.1/tutorial/doc/ http://servlets.com/index.tea http://moreservlets.com/ -Tim kitty winslet wrote: Hi.. I used the JSP example in my newly setup Tomcat server to send mail.

RE: Relative URL problem

2003-07-09 Thread White, Joshua A (HTSC, CASD)
Bill, Is this a server.xml or web.xml option? Where should I be looking? If tomcat does a redirect to http://localhost:8080/myapp/, should I then see this in the browser? Joshua -Original Message- From: Bill Barker [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 08, 2003 11:48 PM To:

Re: Log Rotation (4.1.24)

2003-07-09 Thread Tim Funk
Nope - you need an external script. Here is a quick possible one in perl that might do the trick (just wrote, never tested - may be totally wrong due to type) === #!perl use strict; my @files; my $oldest; readdir(DIR, $TOMCAT_HOME/logs); @files = grep(/^localhost_access_log/, readdir(DIR));

Re: authentication question

2003-07-09 Thread Tim Funk
Basic authentication is so weak that it is the equivalent of cleartext. If security of a password is an issue, use SSL. -Tim Dave Naden wrote: I can set up Tomcat's authentication fine, either basic (or digest) or form-based. Everything I read seems to prefer form-based, because you can

Re: Log Rotation (4.1.24)

2003-07-09 Thread Kwok Peng Tuck
Why not use logrotate ? Tim Funk wrote: Nope - you need an external script. Here is a quick possible one in perl that might do the trick (just wrote, never tested - may be totally wrong due to type) === #!perl use strict; my @files; my $oldest; readdir(DIR, $TOMCAT_HOME/logs); @files =

Tomcat 5.0.3 on W2K Pro - need to use system classpath

2003-07-09 Thread Norris Shelton
I currently run TC 4.1.12. There are several files defined on a network share that we have to use. With 4.1.12, I edit the setclasspath file to append to the classpath instead of replacing. I also have to add servlet.jar to the classpath because looks like it does not get there automatically.

Solved - Tomcat 5.0.3, Windows Service, JSP, Unable to find a javaccompiler

2003-07-09 Thread John Neffenger
I should say Solved for me in the Subject line, since there may be multiple reasons why Tomcat with Ant can't find the Java compiler, but here's how I solved the problem. In any case, I think it's a bug in the Tomcat 5.0.3 Windows Service installation. I was hitting the rather common problem

Setting a RemoteHostValve for a context

2003-07-09 Thread Fruechtenicht, Torben
Hi, I want to protect the manager and the admin webapps in my Tomcat installation from requests originating outside my company - and setting a RemoteHostValve for the manager and the admin context seems the way to go. Therefore I've changed my server.xml file, changing the context entry for the

dbcp connection and database restart

2003-07-09 Thread meissa . Sakho
I've configured my jdbc datasource connection pool(using dbcp) in Tomcat 4.1.18 server.xml file. here is an extract of it. ResourceParams name=jdbc/intranetMail parameternameusername/namevalueXXX/value/parameter parameternamepassword/namevalueXXX/value/parameter

RE: Tomcat 5.0.3 on W2K Pro - need to use system classpath

2003-07-09 Thread Pitre, Russell
Does anyone know when the T5 will come out with a final release? -Original Message- From: Norris Shelton [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 09, 2003 8:29 AM To: Tomcat Users List Subject: Tomcat 5.0.3 on W2K Pro - need to use system classpath I currently run TC 4.1.12.

Re: performance

2003-07-09 Thread Mark F
I would love to but we have a third party vendor (documentum) who doesn't support anything higher than 4.0.6. I've just tried their code on 4.1.24 anyway and it seems to have some issues. -Mark Tim Funk [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED]... Easiest performance

Re: RMI on Tomcat

2003-07-09 Thread Sanjay
Anybody has any ideas on this, Thanks again, Sanjay --- Sanjay [EMAIL PROTECTED] wrote: I am trying to set a RMI-IIOP server on Tomcat. Getting some issues. MY RMI Server works fine if I start it standalone- without Tomcat. I think have been able to set security codebase etc correctly.

Re: Setting a RemoteHostValve for a context

2003-07-09 Thread Tim Funk
(Guessing) Try making your allow more regexp friendly: http://jakarta.apache.org/regexp/apidocs/org/apache/regexp/RE.html OLD: allow=*.ubis.local,*.ubis-ag.com NEW: allow=^.+\.ubis\.local$,^.+\.ubis\-ag\.com$ -Tim Fruechtenicht, Torben wrote: Hi, I want to protect the manager and the admin

RE: RMI on Tomcat

2003-07-09 Thread Bodycombe, Andrew
You may problems using RMI if tomcat is installed in a directory containing whitespace. (e.g. C:\Program Files\Apache Group\...). -Original Message- From: Sanjay [mailto:[EMAIL PROTECTED] Sent: 09 July 2003 14:02 To: Tomcat Users List Subject: Re: RMI on Tomcat Anybody has any ideas

Tomcat 5 release [was Re: Tomcat 5.0.3 on W2K Pro - need to use systemclasspath

2003-07-09 Thread Tim Funk
http://jakarta.apache.org/tomcat/faq/version.html#when Also Tomcat5 will not go final until 2.4 is official. -Tim Pitre, Russell wrote: Does anyone know when the T5 will come out with a final release? - To unsubscribe,

AW: Setting a RemoteHostValve for a context

2003-07-09 Thread Fruechtenicht, Torben
Yes, that worked. Thanks a lot. But who put those examples in the Tomcat documentation (http://jakarta.apache.org/tomcat/tomcat-4.1-doc/config/host.html) using the same syntax I used for my valve? Oh well, never trust the documentation... Torben --- Torben Fruechtenicht Developer IT Solutions

Re: mod_webapp or mod_jk2

2003-07-09 Thread John Turner
I use mod_jk in production for Tomcat 4. No problems here...haven't found an overriding reason here to switch to mod_jk2. If it ain't broke, don't fix it. :) John On Tue, 8 Jul 2003 21:23:57 -0500 (CDT), [EMAIL PROTECTED] wrote: I am getting ready to deploy Tomcat and Apache in a production

Re: prompt for password at startup

2003-07-09 Thread John Turner
Nice tip...I can see a number of uses for this. Thanks! John On Tue, 8 Jul 2003 20:35:02 -0700, Bill Barker [EMAIL PROTECTED] wrote: I assume you mean for things like the keystore password. In TC3.3 you can use the optional PasswordPrompter module. In TC 4.x and higher there is currently

Re: How do I setup Tomcat 5.*

2003-07-09 Thread John Turner
H...lots of overlap here. First, you shouldn't need to do ANYTHING to CLASSPATH for Tomcat 4.1.x and higher, especially messing around with servlet.jar. Second, as far as where to put your servlets, try the Application Developer's Guide here: http://jakarta.apache.org/tomcat/tomcat-4.1-

Valve for SQL injection

2003-07-09 Thread webmaster
Hi all, Where can I find a valve that filters bad input data ? I'm pretty sure I saw it some place, but I can't remember. Thanks - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: problem going from 4.0.4 - 4.1.24

2003-07-09 Thread John Turner
Hi - defaultHost should probably match the default (global) ServerName in Apache's httpd.conf, but I'm not sure that would fix anything. From my experience, the rule is that for every Apache VirtualHost, there should be a corresponding Host in server.xml. HTH John On Tue, 08 Jul 2003

Re: Apache Tomcat modjk2

2003-07-09 Thread Eric J. Pinnell
Hi, Sometimes you need to put JkSet config.file /full/path/to/workers2.properties To tell apache where the workeres2.properties file is. Sometimes it doesn't find it by itself. But all that other Jk stuff below you don't need. -e On Tue, 8 Jul 2003 [EMAIL PROTECTED] wrote: Hello- I have

Re: Valve for SQL injection

2003-07-09 Thread Tim Funk
I'm unsure how one could create such a valve. The better way is to NEVER use this style of coding: String sql = Select foo from bar where fred=' + request.getParameter(ick) + '; Always use prepared statements or helper methods to encode sql and then no valve is needed. -Tim webmaster wrote:

Re: mod_webapp or mod_jk2

2003-07-09 Thread Eric J. Pinnell
JK2 and mod_jk have load balancing and really cool stuff like that. It's more the direction things are going. It also loadbalances across different machines. mod_webapp was designed for a single machine using the WARP protocol. From the name you can tell is was designed to be fast. And it is.

Re: tomcat manager app

2003-07-09 Thread Erik Weibust
I've closed and restarted a number of times and still no luck. Odd that it works with two of my three browsers. I'd love to know if anybody else is having this problem with Mozilla Firebird 0.6. Thanks --- Martin Jacobson [EMAIL PROTECTED] wrote: Erik Weibust wrote: Well, I have no problem

RE: dbcp connection and database restart

2003-07-09 Thread Raible, Matt
Try adding a validation query, for example: parameter namevalidationQuery/name valueSELECT * FROM USER_TABLE/value /parameter -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 09, 2003 6:46 AM To: [EMAIL

How can I deactivate the access logging

2003-07-09 Thread Hamidene, Anis Ben
Hi, i have noticed that tomcat logs all calls to the file localhost_access_log. Is it possible to deactivate this feature ? Best regards anis

RE: RMI on Tomcat

2003-07-09 Thread Sanjay
I have it set in a simple directory called tomcat. Thanks Sanjay --- Bodycombe, Andrew [EMAIL PROTECTED] wrote: You may problems using RMI if tomcat is installed in a directory containing whitespace. (e.g. C:\Program Files\Apache Group\...). -Original Message- From: Sanjay

Bug ? Init is called twice in SingleThreadModel

2003-07-09 Thread Hal Lander
I modified my init method as suggested by Yoav. The new init() and its output are shown below. The addresses printed are different so it appears I have two instances of my servlet. Bill said that instance-pooling for STM Servlets is normal behaviour. I was expecting that, since I am the only

RE: performance

2003-07-09 Thread Collins, Jim
Mark, I use Documentum with 4.1.24. Why can't you use this version? Regards Jim. -Original Message- From: Mark F [mailto:[EMAIL PROTECTED] Sent: 09 July 2003 13:54 To: Tomcat Users List Subject: Re: performance I would love to but we have a third party vendor (documentum) who doesn't

Re: How can I deactivate the access logging

2003-07-09 Thread Tim Funk
Yeah - comment it out from server.xml -Tim Hamidene, Anis Ben wrote: Hi, i have noticed that tomcat logs all calls to the file localhost_access_log. Is it possible to deactivate this feature ? Best regards anis - To

Re: authentication question

2003-07-09 Thread Rick Roberts
Use SSL with Form Based AUTH. Then all traffic is SSL protected. Dave Naden wrote: I can set up Tomcat's authentication fine, either basic (or digest) or form-based. Everything I read seems to prefer form-based, because you can customize the screen. However, basic as least encrypts the

RE: OT Unsubscribing

2003-07-09 Thread Sandra Patricia Hunter
Thanks Bill. I have my email set up to send all tomcat messages to a folder and probably the response has been going there and ignored by me. See you all again soon, I hope! Sandra Patricia Hunter Systems Development and Web Design -Original Message- From: news [mailto:[EMAIL

Re: performance

2003-07-09 Thread Mark F
They have told us that WDK/Webtop is only supported on 4.0.6. I just tried it and our web application works but does not present correctly. Lots of NLSIDs are printing wrong or not at all and the format of the page is incorrect. All I did was move the web application directory to the new

RE: images not appearing

2003-07-09 Thread Stefan Radzom
I can now access the servlet successfully using the url http://192.168.1.3/test/hello;. The problem is, I need to be able to access it without supplying any path information (ie: http://192.168.1.3). So the question now is, how can server.xml and web.xml be configured to allow access

Réf. : RE: dbcp connection and database restart

2003-07-09 Thread meissa . Sakho
Matt, do you think the validation query wille re initialize my pool ? Raible, Matt [EMAIL PROTECTED] 09/07/2003 14:49 Veuillez répondre à Tomcat Users List Pour : 'Tomcat Users List' [EMAIL PROTECTED] cc : Objet : RE: dbcp connection and database restart Try

Running Tomcat as Windows Service

2003-07-09 Thread Hamidene, Anis Ben
Hi, I want to install Tomcat 4.1.2 as windows service. My servlets should connect to another server over SSl-Connection. I did install tomcat as a service, but when my client connects to the servlet, tomcat hangs down,and I have to restart the service manually. If I start Tomcat using the batch

RE: Running Tomcat as Windows Service

2003-07-09 Thread Pitre, Russell
I used this to create my nt service. %CATALINA_HOME%\bin\tomcat.exe -install Tomcat %JAVA_HOME%\jre\bin\server\jvm.dll -Djava.class.path=%CATALINA_HOME%\bin\bootstrap.jar;%JAVA_HOME%\lib\too ls.jar -Dcatalina.home=%CATALINA_HOME% -start org.apache.catalina.startup.BootstrapService -params

MSQL (Microsoft SQL Server 2000) and JNDI

2003-07-09 Thread Jeff Cummings
I am try to setup a JNDI datasource. This is the exerp from my context. I store app context in $CATALINA_HOME/webapp/myapp.xml file Context path=/jtest docBase=C:\myapp crossContext=false debug=9 reloadable=true

Re: How do I setup Tomcat 5.* (need windows classpath)

2003-07-09 Thread Norris Shelton
How do you get it access items that are not within the tomcat install. I have tomcat installed locally on c:. There is an additional library located on v: (loose classes and jars). We could not get Tomcat to access these classes. --- John Turner [EMAIL PROTECTED] wrote: H...lots of

[OFFTOPIC??] RE: dbcp connection and database restart

2003-07-09 Thread Angus Mezick
Is there a better way of doing this? Even if I 'select 1 from TABLE' I don't like the fact that there is an extra DB communication for every connection I get from the pool. I don't know if there are alternatives to this in DBCP but are there any other ways to ask if a connection in a pool is

Re: How do I setup Tomcat 5.* (need windows classpath)

2003-07-09 Thread John Turner
See the ClassLoader HOWTO: http://jakarta.apache.org/tomcat/tomcat-4.1-doc/class-loader-howto.html specifically: Shared - This class loader is the place to put classes and resources that you wish to share across ALL web applications (unless Tomcat internal classes also need access, in which

JAVA_HOME for TOMCAT as an NT Service

2003-07-09 Thread nrapagnani
Hello. I am trying to get TOMCAT 4.1 to run as an NT service. When I have the service running I get a 500 error for all jsp pages I've made a change to. I've set JAVA_HOME to the correct path as a System Variable in windows 2000. If I were to shut down the service and choose Start Tomcat from

RE: Retrieving a blob object?

2003-07-09 Thread Jay Garala
Hi Euclides, What blob type does a web form send? Do you mean HTML Form Types? Attachements? Jay Garala Senior Software Engineer Conclusive Technology, Inc. -Original Message- From: Jose Euclides da Silva Junior - DATAPREVRJ [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 08,

Re: How do I setup Tomcat 5.* (need windows classpath)

2003-07-09 Thread Norris Shelton
Ah, ha. Now you are getting somewhere. The Class Loader Definitions has the following under the System bullet: However, the standard Tomcat 4 startup scripts ($CATALINA_HOME/bin/catalina.sh or %CATALINA_HOME%\bin\catalina.bat) totally ignore the contents of the CLASSPATH environment variable

outof memory error

2003-07-09 Thread Shanta B
Hi Sorry for disturbing...i would like to whats the reason behind java.lang.outofmemory...because currently at one site we are getting these errors in mscore and locator...what may be the reason ..how should i debug the processes memoryif u have any idea or links u pl forward to me...in

RE: Réf. : RE: dbcp connection and database restart

2003-07-09 Thread Raible, Matt
Yes. http://www.mail-archive.com/[EMAIL PROTECTED]/msg91560.html -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 09, 2003 8:31 AM To: Tomcat Users List Cc: 'Tomcat Users List' Subject: Réf. : RE: dbcp connection and database restart Matt, do

Re: How do I setup Tomcat 5.* (need windows classpath)

2003-07-09 Thread John Turner
That was my point. JAR up your class files, and put them where Tomcat expects them to be. Problem solved. People typically use ant to do this, so that it is fairly automatic when deploy time comes around. John On Wed, 9 Jul 2003 08:07:58 -0700 (PDT), Norris Shelton [EMAIL PROTECTED] wrote:

RE: [OFFTOPIC??] RE: dbcp connection and database restart

2003-07-09 Thread Andy Eastham
Angus, You can call Conection.isClosed(), but the documentation suggests that this is not a reliable method of telling that it is _definitely_ closed. However, if it does return true, you know that you should reconnect before attempting a call with the connection. Andy -Original

Re: How do I setup Tomcat 5.* (need windows classpath)

2003-07-09 Thread Norris Shelton
I wish I could. This is the architecture that I am saddled with. I have to find a way to make TC5 work with what is given. --- John Turner [EMAIL PROTECTED] wrote: That was my point. JAR up your class files, and put them where Tomcat expects them to be. Problem solved. People

RE: outof memory error

2003-07-09 Thread Bodycombe, Andrew
Hi Shanta You get an OutOfMemoryError when the stack or heap space is exhausted. You can increase the heap size by setting the -Xmx option in the startserver script, but I think it already allocates 300Mb at startup. 300Mb should be plenty of memory for these applications, so I suspect there is a

RE: outof memory error

2003-07-09 Thread Shanta B
I hope increase the heap size does not suffice our problem because it will effect GC in java..but surprise thing is that these outofmemory occurs in OMIP side(this is intelligent people code ..)))because one sent log files ..out of all the processes ,outofmemory occurs in mscore and locator...

Re: How do I setup Tomcat 5.* (need windows classpath)

2003-07-09 Thread John Turner
Well, sounds like you have some re-education work to do. The whole point is to be portable. Putting things your web application requires onto a network share (I think you mentioned V:) that won't exist anywhere else is not the best practice for design, especially if you have to go in and

Re: I can no longer start TC from W2k Start Menu

2003-07-09 Thread ThePrahs
No, TC is not(or won't be) already running when I try to start it from W2k Start Menu. Might have to do with a package which either  not there or conflicting the TC's start-up process. What is missing or conflicting is what I can not figure out - the logs don't say say anything either.

Still need help with JDBCRealm

2003-07-09 Thread Rick Roberts
I have been working on this for a couple of days now. I think I am close, but still missing something basic. If you know how to set up a JDBCRealm, please look over my files and error logs and tell me where I have made my mistake. Thanks in advance for your help.

Re: how to create servlet?

2003-07-09 Thread Robert Wray
The SendMailServlet code should be located in tomcat_installation_directory\webapps\examples\WEB-INF\classes\SendMailServlet.java The web.xml file in the WEB-INF directory should have a tags: servlet servlet-nameSendMailServlet/servlet-name

RE: I can no longer start TC from W2k Start Menu

2003-07-09 Thread Mike Curwen
Is this an annoying aol thing? Or is it a (still annoying) attempt at soliciting more responses on this thread? If it's that 2nd thing, posting the exact same message 3 times in as many days is liable to get you the opposite of the response you want. -Original Message- From: [EMAIL

RE: Still need help with JDBCRealm

2003-07-09 Thread Mike Curwen
I always thought it was just a cut error (typo), but you need a at the start of your Realm Actually, if your file is *exactly* as shown, I'm surprised it doesn't complain loudly. -Original Message- From: Rick Roberts [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 09, 2003 11:32

Re: I can no longer start TC from W2k Start Menu

2003-07-09 Thread ThePrahs
Sorry, it was a mistake from me :-)

RE: Still need help with JDBCRealm

2003-07-09 Thread Mike Curwen
Also, -Original Message- From: Rick Roberts [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 09, 2003 11:32 AM To: Tomcat Users List Subject: Still need help with JDBCRealm Of the several applications running on this server, I am only trying to apply a JDBCRealm to the /hd

Re: How can I deactivate the access logging

2003-07-09 Thread Simon Pabst
Look for a xml entry with org.apache.catalina.valves.AccessLogValve then comment it out. (http://jakarta.apache.org/tomcat/tomcat-4.1-doc/config/valve.html) At 15:37 09.07.2003 +0200, you wrote: Hi, i have noticed that tomcat logs all calls to the file localhost_access_log. Is it possible to

Re: Still need help with JDBCRealm

2003-07-09 Thread Rick Roberts
If there is a DUNCE of the Week Award, can I apply now! Changing the Realm to Realm got rid of the error: No Realm has been configured to authenticate against But now I have progressed to this error: [EMAIL PROTECTED] tomcat4]# tail -300 catalina_log.2003-07-09.txt 2003-07-09 12:53:36

determining version of mod_jk.so

2003-07-09 Thread Maureen Barger
can someone remind me how to do this under unix? thanks. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Still need help with JDBCRealm

2003-07-09 Thread Mike Curwen
Someone else on this list had a similar problem with NPE's being thrown by Coyote. His developers insisted it wasn't their code, and that it had to be coyote causing the trouble. I sympathize with that position, because on that stack trace, and on yours, there is only org.apache classes throwing

Re: determining version of mod_jk.so

2003-07-09 Thread Eric J. Pinnell
Hi, I don't know if there is an official way but I did a 'strings mod_jk2.so' and found: mod_jk2/2.0.2 YMMV. -e On Wed, 9 Jul 2003, Maureen Barger wrote: can someone remind me how to do this under unix? thanks. - To

Error Msg The requested resource (/ABT/servlet/ChangeModel) is not available

2003-07-09 Thread TWesterman
Hello, I am getting the following error message: The requested resource (/ABT/servlet/ChangeModel) is not available when I try to run a servlet from my web application. I have my form's action property pointed to http://server_name/ABT/servlet/ChangeModel. My class file, ChangeModel, exists

Re: Error Msg The requested resource (/ABT/servlet/ChangeModel)is not available

2003-07-09 Thread Tim Funk
Probably: http://jakarta.apache.org/tomcat/faq/misc.html#invoker [EMAIL PROTECTED] wrote: Hello, I am getting the following error message: The requested resource (/ABT/servlet/ChangeModel) is not available when I try to run a servlet from my web application. I have my form's action property

RE: sharing objects betweeen different contexts (Long)

2003-07-09 Thread Cox, Charlie
put your shared class in /common/lib and each webapp will be able to see it. Charlie -Original Message- From: RANDAD,KAILASH (HP-PaloAlto,ex1) [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 08, 2003 3:17 PM To: 'Tomcat Users List' Subject: RE: sharing objects betweeen different

Re: Still need help with JDBCRealm

2003-07-09 Thread Rick Roberts
Mike Curwen wrote: Someone else on this list had a similar problem with NPE's being thrown by Coyote. His developers insisted it wasn't their code, and that it had to be coyote causing the trouble. I sympathize with that position, because on that stack trace, and on yours, there is only

Re: determining version of mod_jk.so

2003-07-09 Thread Rick Roberts
However; I did a 'strings mod_jk2-2.0.43.so' and found: mod_jk2/2.0.0 Check to see if your mod_jk2.so is a sym link. Mine is linked to mod_jk2-2.0.43.so -- *** * Rick Roberts* * Advanced Information Technologies, Inc. *

Re: determining version of mod_jk.so

2003-07-09 Thread Eric J. Pinnell
Ya... that makes sense. The latest release of JK2 is 2.0.2. You could possibly be running 2.0.0. I don't know where it's getting 2.0.43 from... sounds like an apache version. -e On Wed, 9 Jul 2003, Rick Roberts wrote: However; I did a 'strings mod_jk2-2.0.43.so' and found:

Re: determining version of mod_jk.so

2003-07-09 Thread Maureen Barger
You are correct -- you can do strings and scroll or start up apache in debug and it will appear in the error log file as it loads. At 01:41 PM 7/9/2003 -0400, Rick Roberts wrote: However; I did a 'strings mod_jk2-2.0.43.so' and found: mod_jk2/2.0.0 Check to see if your mod_jk2.so is a sym

installing new version of mod_jk.so

2003-07-09 Thread Maureen Barger
I am trying to download a previously compiled version of mod_jk.so for AIX from http://jakarta.apache.org/builds/jakarta-tomcat-connectors/jk/release/v1.2.0/bin/aix/ However it seems I can't unpack it into my libexec directory and go - starting apache gives me errors that it cannot load this

Where can I download latest mod_jk2.so?

2003-07-09 Thread Rick Roberts
Just realized that I don't have latest version. I can never remember where to find it. Thanks, -- *** * Rick Roberts* * Advanced Information Technologies, Inc. * ***

Re: Where can I download latest mod_jk2.so?

2003-07-09 Thread Maureen Barger
http://jakarta.apache.org/builds/jakarta-tomcat-connectors/jk/release/ At 02:00 PM 7/9/2003 -0400, you wrote: Just realized that I don't have latest version. I can never remember where to find it. Maureen Barger, CIT/ID, Cornell University

session replication using JavaGroups

2003-07-09 Thread YErkan
We're having some problems in our session replication using Javagroups. It seems that it works on our Win2000 Workstations however not on our Win2000 Servers. Do you have any ideas why? Cheers, - Yagiz - To unsubscribe,

Re: Where can I download latest mod_jk2.so?

2003-07-09 Thread Maureen Barger
oops I meant http://jakarta.apache.org/builds/jakarta-tomcat-connectors/jk2/ At 02:00 PM 7/9/2003 -0400, you wrote: Just realized that I don't have latest version. I can never remember where to find it. Maureen Barger, CIT/ID, Cornell

Re: Where can I download latest mod_jk2.so?

2003-07-09 Thread Eric J. Pinnell
Hi, That's mod_jk. JK2 is on the same server, different directory http://jakarta.apache.org/builds/jakarta-tomcat-connectors/jk2/release/ -e On Wed, 9 Jul 2003, Maureen Barger wrote: http://jakarta.apache.org/builds/jakarta-tomcat-connectors/jk/release/ At 02:00 PM 7/9/2003 -0400, you

[off-topic] - Where can i find Oreilly's package for uploading files?

2003-07-09 Thread Jose Euclides da Silva Junior - DATAPREVRJ
Hi, i have tried to search for , but i didnt find it. Can somebody help me? Thanks in advance, Euclides. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: images not appearing

2003-07-09 Thread Mark Biciunas
Hi, Your solution is exactly what was needed and it is the direction I ended up going in overnight with the tender assisstance Bill Barker. There are a couple of tricks to getting it working correctly so I am posting a seperate email to the group outlining what I have learned (it is definately

AJP13 error: No processor available

2003-07-09 Thread Benjamin Cox
Hello, Tomcat 4.1.24, J2SDK 1.4.0, Apache 1.3.27, mod_jk 1.2.0. I am trying to determine the cause of the following errors: Ajp13Connector[8009]: No processor available, rejecting this connection This seems to come up after a few days, causes the page to come back as an Internal Server Error,

Re: session replication using JavaGroups

2003-07-09 Thread YErkan
For the record :-) It seems to be a hardware hub problem. The machines on the same hub can communicate with each other but not with the other ones... Strange... - Yagiz |-+ | | [EMAIL PROTECTED] | | |

Re: [off-topic] - Where can i find Oreilly's package for uploadingfi les?

2003-07-09 Thread Rick Roberts
Not sure if this is what you are after but: There is a MultiPartRequest Class in the Java Servlet Programming Book. http://examples.oreilly.com/jservlet2/ HTH, Rick Jose Euclides da Silva Junior - DATAPREVRJ wrote: Hi, i have tried to search for , but i didnt find it. Can somebody help me?

  1   2   >