RE: Hi, Using Tomcat for the first time:

2001-02-13 Thread Vijayanand Sukumar
You can alter the server.xml portion under to look like something like this this might help cheers vijay -Original Message- From: Andrew Stewart [mailto:[EMAIL PROTECTED]] Sent: Tuesday, F

Re: HttpUtil

2001-02-13 Thread sun
yes, it is working. Thank you very much. rgds sun -Original Message- From: CPC Livelink Admin <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] <[EMAIL PROTECTED]> Date: Tuesday, February 13, 2001 9:43 PM Subject: RE: HttpUtil > >Well, I just changed the form from "get" to "post" in the sampl

Correct order for starting tomcat and apache

2001-02-13 Thread Peter B. West
What is the correct order for starting apache and tomcat, and why? I currently have a linux redhat 7.0 system, and the chkconfig values for /etc/rc.d/init.d/tomcat and /httpd are # chkconfig: 345 80 20 and # chkconfig: 345 85 15 respectively. I.e., tomcat starts first and finishes second.

RE: search display problem

2001-02-13 Thread Vikramjit Singh
thanx randy for ur ideas. what i am doing is that i am getting all the records from the database and storing in a vector. and that vector i am storing in a session. Now this session is being passed on to the next page where i get all the records. my next and previous links are working but wheneve

Custom made error page to replace Error 500 page??

2001-02-13 Thread John Tan
Hi guys, well i m currently developing this registration form with a backend processing file that will handle the procedures of updating datas that are typed in the registration page. But the thing is whenever there's a item in the registration page not filled in, tomcat "famous" error 500 wil

RE: HttpUtil

2001-02-13 Thread CPC Livelink Admin
Well, I just changed the form from "get" to "post" in the sample I posted (which is still below) and I got exactly the same results. I don't know what your problem is - are you doing anything special beyond what's in the example below. Regards, Paul -Original Message- From: sun [mailto

RE: Error on startup any ideas???

2001-02-13 Thread McDermid, Ian
These are the 2 offending lines" tcp0 0 *:webcache *:* LISTEN tcp0 0 *:www *:* LISTEN What they are saying is that both port 80(www) used by apache, and port 8080(webcache) used by tomcat are being u

Re: Error on startup any ideas???

2001-02-13 Thread aras
Thanks for the showing me netstat, although I have no idea what the output is telling me. I ran httpd stop and ran netstat Here's the output. By the way I'm on RH6.2 If you see the offending line let me know what it is. Also, I won't keep coming back to you. I always exhaust all options befor

Re: Error on startup any ideas???

2001-02-13 Thread Jan Labanowski
Do a netstat -a -n | more and see if something is using and port which you have given in server.xml (do grep port server.xml to find all port assignments in your server.xml) Looking at your log something us using port 397. Do not be confused... Tomcat is a server (i.e., opens ports for l

RE: Error on startup any ideas???

2001-02-13 Thread McDermid, Ian
Tomcat must be started first if you are importing "/$TOMCAT_HOME/conf/mod_jk.conf-auto" to setup your apache/tomcat environment. By default tocat uses 8080 (httpproxy) and 8007 executing "netstat-a" will tell you what ports are listening on your machine. If you see 80(http) or 8080(httpproxy) the

Re: Error on startup any ideas???

2001-02-13 Thread aras
Well I'm learning more and more. I stopped appache with *httpd stop* and tried to start TomCat and I still get the error. Am I correct that TomCat should be started first then apache? I'll have to do more research on the ports, but if you have any ideas I'd appreciated it. Jeff Lansing w

Using the /amin context in tomcat

2001-02-13 Thread McDermid, Ian
Hi, I have setup postgresql on my RH6.2 machine. Apache and mod_jk are working with all the jsp and servlet examples. I have set up a database called authority with the following attributes: Welcome to psql, the PostgreSQL interactive terminal. Type: \copyright for distribution terms \

RE: Stopping Tomcat

2001-02-13 Thread Jan Labanowski
I did not follow this thread from the beginning, but the first thing I would try is to see if ajp12 is enabled. Even if you use ajp13 for communication with apache you need ajp12 for shutting down the Tomcat. Never remove ajp12 from server.xml, only add ajp13. So, you have to have a

RE: Mod_jk and Apache

2001-02-13 Thread Andrew Stewart
It is in the user guide, try poking around a bit more you need to compile mod_jk from the Source of Tomcat and add it with apxs using Apache. What platform are you on and what trouble are you having ? -Original Message- From: Michael Welch [mailto:[EMAIL PROTECTED]] Sent: Tuesday, Febru

Mod_jk and Apache

2001-02-13 Thread Michael Welch
How do you get Tomcat, Mod_Jk, and Apache to talk to each to other? The user guide doesn't cover os-specific issues, please help? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]

Re: Error on startup any ideas???

2001-02-13 Thread Jeff Lansing
Hi, Yes, some other process is using port 80 (or whatever port you have Tomcat configured to listen on). Jeff aras wrote: > I think I have everything setup correctly (probably not). Here's the error: > FATAL:java.net.BindException: Address already in use > > Here's the complete output > > in t

Error on startup any ideas???

2001-02-13 Thread aras
I think I have everything setup correctly (probably not). Here's the error: FATAL:java.net.BindException: Address already in use Here's the complete output in tomcat.sh Using classpath: /usr/local/jakarta-tomcat-3.2.1/lib/ant.jar:/usr/local/jakarta-tomcat-3.2.1/lib/jasper.jar:/usr/local/jakarta

Re: Hi, Using Tomcat for the first time:

2001-02-13 Thread Geoff Lane
Yes, there are max_threads, min_spare_threads and max_spare_threads. See: http://jakarta.apache.org/tomcat/jakarta-tomcat/src/doc/uguide/tomcat_ug.html under 'Configuring thread pools' Example: Andrew Stewart wrote: > > and I have to say I am impressed so far > > I've tried three other

Re: HttpUtil

2001-02-13 Thread sun
yes, for get method, it is working, but I have to use post method. rgds sun -Original Message- From: CPC Livelink Admin <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] <[EMAIL PROTECTED]> Date: Tuesday, February 13, 2001 9:15 AM Subject: RE: HttpUtil > >It works for me as well. The only cav

Re: HttpUtil

2001-02-13 Thread sun
Randy: I am not sure what is problem, if because of HTML, what is possible issues? I tried on different server, different browser, all get same error: short read. rgds sun -Original Message- From: Randy Layman <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] <[EMAIL PROTECTED]> Date: Tuesday,

Re: HttpUtil

2001-02-13 Thread sun
Title: RE: HttpUtil yes, I can get String[] paranames, five values, 1,2,3,4,5, but I only checked 1,2,4, how can I get these three values? if use HttpUtil, I can get directly checkboxname=1,2,4 -Original Message-From: Cox, Charlie <[EMAIL PROTECTED]>To: '[EMAIL PROTECTED]'

Re: Setting up server.xml

2001-02-13 Thread Craig R. McClanahan
janis wrote: > "Ignacio J. Ortega" wrote: > > > > > > > You need to read those ugly specs ( in > > http://java.sun.com/products/servlets ) to get your webapp security to > > work, JDBCRealm has nothing to do with web.xml, it's only a way to store > > usernames & passwords for a webapp, you need t

Hi, Using Tomcat for the first time:

2001-02-13 Thread Andrew Stewart
and I have to say I am impressed so far I've tried three other Java VM's and have had very dissapointing experiences with them (Caucho's Resin, NA's ServletExec, and Allaire's JRun). Anyway, one of the few questions I'd like to ask is if there's anyway to control the number of threads (or worker

RE: Admin User Name and Password????

2001-02-13 Thread Nael Mohammad
One more thing might help you: Simple, using the tomcat admin feature, you can specify the context to be whatever you like. To access the admin feature, you need to set it first using the tomcat-user.xml file located in your conf directory. An example that I have below works just fine for me. Af

RE: How do I connect JNDI in Tomcat 4.0 to JNDI in JBoss?

2001-02-13 Thread Nael Mohammad
Simple, using the tomcat admin feature, you can specify the context to be whatever you like. To access the admin feature, you need to set it first using the tomcat-user.xml file located in your conf directory. An example that I have below works just fine for me. After that then you should be able

Can't get the faq

2001-02-13 Thread Clifford Lang
I am trying to get the faq at: [EMAIL PROTECTED] but it won't return. Has anything changed? Cliff Trying to avoid those stupid questions! Try Ematic.com Where everyone can buy, or sell, new or used, products online in safe and secure manner. Accept credit cards on your web site (no merchan

Re: Syntax of web.xml

2001-02-13 Thread John Clark L. Naldoza
> Jefferson Oliveira Andrade wrote: > > Where can I find a reference of the web.xml file for Tomcat 3.2.1? > > Thanks, > Jefferson. Try to check out the web.dtd which should be found under your $TOMCAT_HOME/conf -- /) John Clark Naldoza y Lopez (\ / )

RE: Automatic reloading of modified .jar/.class files

2001-02-13 Thread Jeff Crawford
I received this from a collegue: -- 6.4 Automatic Servlet Reloading Tomcat 3.2 includes a feature whereby you can ask it to automatically reload servlet classes (loaded from either the WEB-INF/classes directory or a JAR file in the WEB-INF/lib directory) that have been changed.

RE: Admin User Name and Password????

2001-02-13 Thread Nael Mohammad
According to the documentation, it indicates that you have to change one of the values to "admin". For example, you would want to change the values for tomcat to say admin instead of default user tomcat. Change anything that says tomcat to admin and then set the password to what ever you want it t

IIS 5 won't play nice

2001-02-13 Thread Conrad Gustafson
Hi all, I have everything working fine as described in the Tomcat-IIS howto. When I start things up and try to hit http://localhost/examples/jsp/index.html, I get the standard HTTP 404 error message. The last line in the IIS logfile is : 00:08:03 127.0.0.1 GET /jakarta/isapi_redirect.dll+ 404.

Admin User Name and Password????

2001-02-13 Thread Vijayanand Sukumar
Hi All, I tried to login under the context http://localhost://8080/admin. The values given in the tomcat-users.xml did not work Can Anyone Help !!! Thanks in Advance. Vijay - To unsubscribe, e-mail: [EMAIL PROTECTED] For ad

Client authentication with Tomcat + SSL

2001-02-13 Thread Jeff Lansing
Hi, I am trying to set up client authentication for IE5 https client to Tomcat. I followed the steps in the documentation and arrived at the situation where IE5 shows an empty list of certs in its Client Authentication dialog. Since then I have set up OpenSSL and have tried their test for this:

Urgent Problem with servler

2001-02-13 Thread Carlos López M.
Hi im using Tomcat 3.2.2 Apache and mod_jk. Everithing works fine but when i call a file I get this error Method Not Allowed The requested method POST is not allowed for the URL /administracion/mail/UploadTest.java. -

Re: ajp12 vs ajp13 & mod_jk.conf-auto

2001-02-13 Thread Filip Hanik
> Now, if I could just get someone to tell me why apache > Alias and Rewrites are not working with tomcat... tell us what you are trying to do and send us some sample config files and how your environment is setup. is becomes much easier than to answer the question above, because alias works very

RE: mod_jk.so

2001-02-13 Thread GOMEZ Henri
>With the following command. >/usr/local/sbin/apxs -c -I/usr/local/jdk1.1.8/include >-I/usr/local/jdk1. >1.8/include/freebsd -DFREEBSD -I/usr/local/include/apache -I../jk >mod_jk.c ../jk/*.c > >and > >gcc -shared -o mod_jk.so *.o > >jk_ajp12_worker.o jk_jni_worker.o jk_nwmain.o >jk_

Re: ajp12 vs ajp13 & mod_jk.conf-auto

2001-02-13 Thread Mel Martinez
Thanks, Filip. I'll try the changes you suggested. Now, if I could just get someone to tell me why apache Alias and Rewrites are not working with tomcat... Mel --- Filip Hanik <[EMAIL PROTECTED]> wrote: > yes, > the JkMount command looks like this > > JkMount context workername > > so the

Re: ajp12 vs ajp13 & mod_jk.conf-auto

2001-02-13 Thread Filip Hanik
yes, the JkMount command looks like this JkMount context workername so the autogenerated ajp12 is just the worker name "ajp12" in the workers.properties file you can change the protocol that the worker is using. the property file has the following format worker..= worker.ajp12.port=8007 worker

Re: address incorrect error

2001-02-13 Thread Warner Onstine
Might want to take a look at the generated logs, that might give a better clue. -warner - Original Message - From: "Matt Shostak" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, February 13, 2001 2:45 PM Subject: address incorrect error > Hi all, > > I am trying to run a new

address incorrect error

2001-02-13 Thread Matt Shostak
Hi all, I am trying to run a new servlet that I wrote today. I have it in the same area as all my other servlets, yet when I run it I get this error message: The page you are looking for cannot be displayed because the address is incorrect. I simply don't understand how the address could be i

How do I connect JNDI in Tomcat 4.0 to JNDI in JBoss?

2001-02-13 Thread Tye, Timothy
I am trying to run Tomcat 4.0 and JBoss on separate virtual machines. How do I get the JNDI context in Tomcat to look in JBoss JNDI context for the Remote object ? Tim Tye Computer Associates Senior Software Developer tel: +1 972 801-6436 fax: none pager: none mobile: +1 214 924-6396 [EMAIL PR

ajp12 vs ajp13 & mod_jk.conf-auto

2001-02-13 Thread Mel Martinez
Question: what determines whether ajp12 or ajp13 will be specified for a jkmount statement in the auto-generated mod_jk.conf-auto file? I.E., it always generates statements like: JkMount /myapp/servlet/* ajp12 JkMount /myapp/*.jsp ajp12 I've even tried disabling all reference to ajp12 from ser

RE: EARGENT!

2001-02-13 Thread John Golubenko
Well, the Jserv and Tomcat and Apache is all different things. The Jserv was the first project (I believe) of Apache Group to handle the Servlets. While Tomcat is completely different project, which handles Servlets, and JSP's. You probably can't start the tomcat by apache, since the tomcat has

Re: JDK support....

2001-02-13 Thread Rick Roberts
I just converted several applications from Netscape (ahem, iPlanet) and Oracle to Apache/Tomcat and PostgreSQL. The first of these are running fine, although they have not been running for very long. I still have a coupe to go. Basically, everything is working pretty good. Using JSP, Serv

RE: Stopping Tomcat

2001-02-13 Thread Randy Layman
What system are you using? I'm wondering if your might be using Kaffe as your JVM or on HP-UX? I believe that boht of these have problems with shuting down. After looking at the code, it seems that you are right, -f is used for both. I am assuming that you have one server.xml

Re: JSPs only reload sometimes - Help ! Tomcat 3.2.1

2001-02-13 Thread Rick Roberts
Some times you are going to need to clear out the cache directory. A simple script will come in handy for that. Rick - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]

RE: EARGENT!

2001-02-13 Thread Lifeng Xu
Thanks John, for your help. Yes, the configuration I have was working before -- actually, it's still working, for most of our jsp & ejbs, except the bean that causing the problem. It's just recently we changed our ejb container, so we need to modified the configuration to work with the new pieces.

important note about tomcat.

2001-02-13 Thread John Golubenko
Now go read manual. NOTICE: This communication may contain confidential or other privileged information. If you are not the intended recipient, or believe that you have received this communication in error, please do not print, copy, retransmit, disseminate, or otherwise use the information.

RE: Stopping Tomcat

2001-02-13 Thread Randy Layman
We've been there and done that. The problem is that using the two server.xml files, the second server does not shutdown when using the -f option as it seems it should from the source. I think we've narrowed the problem down to three options: (see my other email for details about

apache Alias&Rewrites vs tomcat?

2001-02-13 Thread Mel Martinez
I'm trying to assertain just how Apache and Tomcat interact regarding aliases and rewrites. I'm using Apache 1.3.14 and tomcat 3.2.1 with mod_jk.c. I don't know if the latter is the 'latest' version. If I have apache configured to apply an alias or a rewrite rule to a reqest, I can tell from th

RE: Stopping Tomcat

2001-02-13 Thread John Golubenko
It's true. The MANUAL is essential. >> Original Message << On 2/13/01, 10:46:10 AM, "Randy Layman" <[EMAIL PROTECTED]> wrote regarding RE: Stopping Tomcat: > The problem probably stems from the fact that you have two different > server.xml files to star

RE: Stopping Tomcat

2001-02-13 Thread John Golubenko
Title: RE: Stopping Tomcat Well, the /org/apache/tomcat/startup/Tomcat.java (org.apache.tomcat.startup.Tomcat -start | -stop)should do the job. Just run it from command line. (look in sourses) Original Message dated 2/13/01, 1:00:24 PM Author: "Nortje, Andrew" <[EMAIL PROTECTED]> Re: RE: Stop

RE: Stopping Tomcat

2001-02-13 Thread Nortje, Andrew
Title: RE: Stopping Tomcat Thanks Randy I dug through the code and it looks like Tomcat uses -f for starting AND stopping. I added the -f for stopping, still no joy. O well there is always kill. > -Original Message- > From: Randy Layman [mailto:[EMAIL PROTECTED]] > Sent: Tuesday,

Re: JSPs only reload sometimes - Help ! Tomcat 3.2.1

2001-02-13 Thread Phillip Kuzma
JSP files are recompiled depending on the time STAMP on the jsp file.   "Craig R. McClanahan" wrote: Steve Quail wrote: >  We've got reloadable set true in server.xml and it recompiles the >  changed JSP *sometimes* but not all the time, generally after the >  first change then never

Tomcat 4.0-beta 1 problems

2001-02-13 Thread janis
Maybe this is more appropriate to post to the developers list? I have made some attempts on tomcat users list without a luck. I would like to use Tomcat 4.0 and WARP more permanently but I have experienced some fundamental problems with Tomcat 4.0-beta configured together with Apache web server

Re: xsl java extensions won't work in tomcat

2001-02-13 Thread William Brogden
[EMAIL PROTECTED] wrote: > > hi all, > > i have an xsl stylesheet that includes calls to a java class of my own > devising. when i call this stylesheet via the command line (bypassing > tomcat), everything works just swell. However, when the same thing is > called from within a jsp page, i g

RE: WinNT file name too long - JSP File naming algorithm

2001-02-13 Thread Marc Saegesser
It most likely isn't going to get fixed in Tomcat 3.2.2. The jsp file naming scheme has been cleaned up somewhat in Tomcat 3.3 but the path size limitation may still be reached. Recent changes to Jasper in Tomcat 4.0 should resolve this completely. > -Original Message- > From: [EMAIL PR

Re: JSPs only reload sometimes - Help ! Tomcat 3.2.1

2001-02-13 Thread Craig R. McClanahan
Steve Quail wrote: > We've got reloadable set true in server.xml and it recompiles the > changed JSP *sometimes* but not all the time, generally after the > first change then never again. > The "reloadable" flag has nothing to do with whether JSP pages are recompiled or not -- the

RE: Stopping Tomcat

2001-02-13 Thread Randy Layman
Probably so. Looking at the batch file on NT (which should be very similar to the sh on UNIX) both start and stop are handled by the same class. I would guess that it processes the arguments the same. If not, I would suggest looking at the source for org.apache.tomcat.startup.Tomcat (m

Re: jsp:getProperty parse error

2001-02-13 Thread Craig R. McClanahan
[EMAIL PROTECTED] wrote: > [line 22:] > Change this to The "id" attribute is used when you are *creating* a bean reference, but "name" is used everywhere else. Craig McClanahan - To unsubscribe, e-mail: [EMAIL PROTE

RE: mod_jk.so (apxs, fdatasync, snprintf)

2001-02-13 Thread mikhail malamud
1) apxs didn't work and it took me hours to find the fix in the PHP FAQ. http://www.php.net/FAQ.php#6.11 What was wrong with apxs, maybe there is something wrong with mine? This included upgrading apache to 1.3.17 in the hope that apxs was fixed (it wasn't). I also messed around a fair

Re: Problem with Tomcat version 4.0-m5

2001-02-13 Thread Craig R. McClanahan
Aqeel Ahmad wrote: > I'm using Tomcat Version 3.0 for some time and had no > problem. But with Version 4.0-m5 the attached .jsp > file doesn't respond as with previos versions or with > jswdk. > In order to make sure that this issue gets attention, could you please submit a bug report?

RE: EARGENT!

2001-02-13 Thread Lifeng Xu
Can I have apache starts Tomcat while not having JServ running? How do I turn JServ off then? You are right, the only thing I care about is Tomcat, but I also need it be started automaticly by Apache. I thought what I do was the only way to get that happen. Thanks. Lifeng -Original Message-

Re: SSL

2001-02-13 Thread Craig R. McClanahan
Julie Ruiz wrote: > I have installed Tomcat+SSL. I need that my aplications be acceded only through a >secure URL. > How can I configure the context where are going to be the aplications that accede >through a secure URL, but can´t be accede by a non secure URL?? > For Tomcat+SSL stand-alone,

RE: Stopping Tomcat

2001-02-13 Thread Nortje, Andrew
Title: RE: Stopping Tomcat Thanks Randy I understand, I don't mind people telling me to read the manual, a little help on which would be great, I have done plenty searching, else I wouldn't have tried the list... let me not dwell on that. OK your are correct I have two server.xml's. I start

default copy rule not working with jsp

2001-02-13 Thread David . Schneider
hi all, inside a stylesheet i am using a default copy rule to copy tags with no templates as-is. when i call this stylesheet from the command line, it works as it should. however, when it is called from within a jsp, it fails (nothing at all is copied). t

RE: Setting up server.xml

2001-02-13 Thread Ignacio J. Ortega
Hola Janis: > Thank you for recommendations! I'll read them. > > When I make a request to the url mentioned above I get an > authenication > form. > When I provide the username tomcat and password tomcat (role tomcat is > defined in tomcat-users.xml) I get an login error. > File a bug with th

xsl java extensions won't work in tomcat

2001-02-13 Thread David . Schneider
hi all, i have an xsl stylesheet that includes calls to a java class of my own devising. when i call this stylesheet via the command line (bypassing tomcat), everything works just swell. However, when the same thing is called from within a jsp page, i get the following error: Call to extension

RE: EARGENT!

2001-02-13 Thread John Golubenko
Ok, I've looked at configs (a bit), first question comes in mind: Why do you run Jserv and Tomcat? The Tomcat is the one you should run, and disable Jserv. Jserv is only needed (if you need Tomcat+Apache as all have) to get mod_jserv.o library, to use ajp12 protocol. If you look at server.xml, a

Re: Setting up server.xml

2001-02-13 Thread janis
"Ignacio J. Ortega" wrote: > > > You need to read those ugly specs ( in > http://java.sun.com/products/servlets ) to get your webapp security to > work, JDBCRealm has nothing to do with web.xml, it's only a way to store > usernames & passwords for a webapp, you need to configure your web.xml > to

RE: Stopping Tomcat

2001-02-13 Thread Randy Layman
The problem probably stems from the fact that you have two different server.xml files to start Tomcat with, but you are only calling one of them to stop it. By the way, if you're on this list for very long, you will discover that probably 90% of people's problems are due to a lac

linux-jdk1.3.0 on FreeBSD4.2

2001-02-13 Thread Michael Dewhirst
Trying to install linux-jdk1.3.0 on FreeBSD4.2... Could someone PLEASE tell me how to install a patch? I have these files, but don't know what to do with them... signal.h linux_signal.c linux.h linux_dummy.c linux_genassym.c linux_locore.s linux_machdep.c linux_proto.h linux_syscall.h linux_syse

RE: mod_jk.so

2001-02-13 Thread John P. Dodge
This is a link problem, the compiled object was not linked with the library file that contains the definition on the symbol "map_name_at". You need to find the lib file and add it to the linker directive (i.e. -L -l). I don't know about FreeBSD but on Solaris you can use the nm command to dump the

RE: EARGENT!

2001-02-13 Thread Lifeng Xu
John, Thank you again for your help! My Tomcat can start. I can run some of my jsps through Tomcat, but not all of them. Attached is all of my configuration files. The httpd.com is located in /usr/local/apache/conf directory, the mod_jserv.log is in .../apache/logs, and the rest of them are locat

Re: mod_jk.so (apxs, fdatasync, snprintf)

2001-02-13 Thread J Austin
Great! That means that I still have more trials ahead of me when I finish installing an updated gcc. mikhail malamud wrote: > Everything compiles and looks good. but httpd simply wont start with > mod_jk enabled and configtest runs fine. > ^^ I am up to th

RE: Stopping Tomcat

2001-02-13 Thread Nortje, Andrew
Title: Stopping Tomcat Hell now this is a good start to the mailing list!!! :-(   So allow me...   :-)   Have you read the the documentation? Yes I have. Which docs? - The user guide that comes with Tomcat - the FAQ's on the Tomcat web site   So... which docs should I read? -Orig

RE: EARGENT!

2001-02-13 Thread John Golubenko
But isn't this: > > ...(EMERGENCY) ajp12: can not connect to host 127.0.0.1 > > ...(EMERGENCY) ajp12: function connection fail. Has nothing to do with RMI? Or J2EE? I'm pretty sure the lost ajp12 connection, which is works exclusively(?) with Apache, has failed. Thus JSP couldn't be handled co

RE: EARGENT!

2001-02-13 Thread Duncan Irvine
Frankly, this sounds to me more like a problem with your EJB code. If you can get some of your JSPs/servlets to work, but some fail, then the problem probably isn't with Apache, nor the Apache->Tomcat bridge. Although it might be a subtle configuration problem. Check to see if there's a correla

WinNT file name too long - JSP File naming algorithm

2001-02-13 Thread BBueckers
I am trying to bypass the problem Tomcat 3.2.1 has when it attempts to create file names under the 'work' directory that contain too many characters on a WinNT machine (>255). Has anyone created a work-around for this? New algorithm? Is this going to be fixed in the next release? Thanks in advanc

RE: Stopping Tomcat

2001-02-13 Thread Nael Mohammad
Title: Stopping Tomcat READ the documentation -Original Message-From: Nortje, Andrew [mailto:[EMAIL PROTECTED]]Sent: Tuesday, February 13, 2001 10:43 AMTo: '[EMAIL PROTECTED]'Subject: Stopping Tomcat Folks I'm have new to Tomcat so bear with me please. I have set up

Re: install instructions

2001-02-13 Thread John Golubenko
http://jakarta.apache.org/tomcat/jakarta-tomcat/src/doc/ >> Original Message << On 2/13/01, 10:42:50 AM, "Galon, Mary-Jay" <[EMAIL PROTECTED]> wrote regarding install instructions: > hi: > im trying to find the tomcat installation instructions but could not f

Stopping Tomcat

2001-02-13 Thread Nortje, Andrew
Title: Stopping Tomcat Folks I'm have new to Tomcat so bear with me please. I have set up Apache and Tomcat to use 2 virtual server and to use two instance of Tomcat running on two different port. Questions: 1. How do I shutdown both instances of tomcat, the regular shutdown only shuts d

install instructions

2001-02-13 Thread Galon, Mary-Jay
hi: im trying to find the tomcat installation instructions but could not find it on the site. i know one exists because i used it some months back for another project. can someone give me the path. mj - To unsubscribe, e-mai

RE: search display problem

2001-02-13 Thread Kevin Sangeelee
On Tue, 13 Feb 2001, Randy Layman wrote: > You could suck in all of the resultset into some data holding object > (List of basically C-style structs) and store this in the session. Then use > a current page variable to select the correct rows. This would probably > waste lots of memory bu

RE: EARGENT!

2001-02-13 Thread John Golubenko
Probably not. It's clear that you got problems between two of those. The AJP12 protocol tomcat uses to communicate with Apache (that's why you load mod_jser.o in Apache), First thing to do, is try to load the pages using the Tomcat's default port 8080, like localhost:8080/path/to/jsp , /example

RE: Here you have, ;o) DO NO OPEN

2001-02-13 Thread John Golubenko
David got screwed... so does he's M$ driven company :)) Send me source code please! As plain text... it's ok. >> Original Message << On 2/13/01, 9:53:41 AM, "shlomi sarfati" <[EMAIL PROTECTED]> wrote regarding RE: Here you have, ;o) DO NO OPEN: > for whom who d

Re: Can Tomcat Run as Apache In-Process workers?

2001-02-13 Thread Brett Neumeier
[EMAIL PROTECTED] wrote: > > The document describes how it can run in Netscape or IIS, but not in > Apache. Apache 1.3.x is multiprocess, not multithreaded, so you can't use the in-process worker. Apache 2.x is multithreaded, so you can ... but it's not in stable release as yet. Cheers, Brett

Re: Here you have, ;o)

2001-02-13 Thread John Golubenko
Does anyone have source code for that virus? I wanna see it... I'm sorry for Anna btw... >> Original Message << On 2/13/01, 9:54:04 AM, "Joe Laffey" <[EMAIL PROTECTED]> wrote regarding Re: Here you have, ;o): > Hehe... > I love it when people send worms to mai

Re: Here you have, ;o)

2001-02-13 Thread John Golubenko
He he... nothing can touch me... im on Linux :) >> Original Message << On 2/13/01, 9:54:04 AM, "Joe Laffey" <[EMAIL PROTECTED]> wrote regarding Re: Here you have, ;o): > Hehe... > I love it when people send worms to mailing lists. I feel sorry for all > the O

RE: EARGENT!

2001-02-13 Thread Lifeng Xu
Thanks for your response! I configured to start Tomcat when apache starts. Seems to me that they starts ok... Lifeng -Original Message- From: John Golubenko [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 13, 2001 11:51 AM To: [EMAIL PROTECTED] Subject: Re: EARGENT! Do you have Apa

RE: Here you have, ;o) DO NO OPEN

2001-02-13 Thread shlomi sarfati
for whom who don't know do not open this one its a virus -Original Message- From: David Kadlecek [mailto:[EMAIL PROTECTED]] Sent: Tue, February 13, 2001 2:50 PM To: '[EMAIL PROTECTED]' Subject: Here you have, ;o) Hi: Check This! ---

mod_jk does not work

2001-02-13 Thread Eugenio Ascoli-Bartoli
Hi, I just installed Tomcat 3.2 (tomcat-3.2.1-1.noarch.rpm from Falsehope) on a linux box (mandrake 7.2 - kernel 2.4.0-12mdk) It works fine on port 8080. I tried to configure it to work with Apache (Apache-AdvancedExtranetServer/1.3.14 (Linux-Mandrake/2mdk), the one that comes with Mandrake) , fo

ALERT:Message from David Kadlecekwastruncated;File AnnaKournikova.jpg.vbsinfected with VBS/VBSWG.S@mm.Worm virus

2001-02-13 Thread UPRRSMTP1/INTERNET
INCIDENT Scan Time:02/13/2001 11:55:56 AM Detection:File AnnaKournikova.jpg.vbs infected with [EMAIL PROTECTED] virus Disposition: Note has been truncated Quara

Antigen found VBS/SST virus

2001-02-13 Thread ANTIGEN_SCOOBY
Antigen for Exchange found AnnaKournikova.jpg.vbs infected with VBS/SST virus. The file is currently Deleted. The message, "Here you have, ;o)", was sent from David Kadlecek and was discovered in IMC Queues\Inbound located at Brightspark/BSPARK-MAIN/SCOOBY. -

InterScan NT Alert

2001-02-13 Thread Virencheck
Receiver, InterScan has detected virus(es) in the e-mail attachment. Date: Tue, 13 Feb 2001 18:54:05 +0100 (W. Europe Standard Time) Method: Mail From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> File: AnnaKournikova.jpg.vbs Action: clean failed - deleted Virus: VBS_KALAMAR.A ---

InterScan NT Alert

2001-02-13 Thread Virencheck
Sender, InterScan has detected virus(es) in your e-mail attachment. Date: Tue, 13 Feb 2001 18:54:05 +0100 (W. Europe Standard Time) Method: Mail From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> File: AnnaKournikova.jpg.vbs Action: clean failed - deleted Virus: VBS_KALAMAR.A

Re: Here you have, ;o)

2001-02-13 Thread Joe Laffey
Hehe... I love it when people send worms to mailing lists. I feel sorry for all the Outlook users... Joe Laffey LAFFEY Computer Imaging St. Louis, MO - - To unsubscribe, e-mail: [EMAIL PROTECTED] For a

Antigen found VBS/SST virus

2001-02-13 Thread ANTIGEN_KINGLEAR
Title: Antigen found VBS/SST virus Antigen for Exchange found AnnaKournikova.jpg.vbs infected with VBS/SST virus. The file is currently Deleted.  The message, "Here you have, ;o)", was sent from David Kadlecek  and was discovered in IMC Queues\Inbound located at Stratford Internet Technology I

Virus Alert

2001-02-13 Thread virusmaster
ISVW:[EMAIL PROTECTED]$B$+$i$"$J$?$X$N%a!<%k$K%&%$%k%9(B(VBS_KALAMAR.A)$B$rH/8+$7$^$7$?!#(B - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]

InterScan NT Alert

2001-02-13 Thread testns
Sender, InterScan has detected virus(es) in your e-mail attachment. Date: Tue, 13 Feb 2001 18:58:12 +0100 (Romance Standard Time) Method: Mail From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> File: AnnaKournikova.jpg.vbs Action: deleted Virus: VBS_KALAMAR.A -

InterScan NT Alert

2001-02-13 Thread testns
Receiver, InterScan has detected virus(es) in the e-mail attachment. Date: Tue, 13 Feb 2001 18:58:12 +0100 (Romance Standard Time) Method: Mail From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> File: AnnaKournikova.jpg.vbs Action: deleted Virus: VBS_KALAMAR.A

  1   2   >