Re: tomcat starting problem on win98

2001-07-23 Thread Ramkumar Manoharan

Iam running tomcat.bat and when i run it i get that error.let me ssee the jboss archivs and see if i can get any info.Also pass on any info,if any of u guys come across it.
 
thanks
Ram

>From: Dmitri Colebatch <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED] 
>To: [EMAIL PROTECTED] 
>Subject: Re: tomcat starting problem on win98 
>Date: Sat, 21 Jul 2001 22:16:13 +1000 
> 
>Have you followed the howto on the JBoss site? Where do you get that 
>error? I'm assuming you're not running JspC from the command line 
>yourself? 
> 
>you're running the jboss-tomcat dist right? Which script are you using to 
>run it? From memory there's a run.sh and a run-tomcat.sh - make sure you 
>use the tomcat one (o: 
> 
>cheers 
>dim 
> 
>On Fri, 20 Jul 2001, Ramkumar Manoharan wrote: 
> 
> > 
> > Hi, 
> > 
> > I have searched the archive but couldn't find a relevant posting(please let me know if there is 
> > any) 
> > 
> > i have jboss+tomcat3.2.2 and when i try to start tomcat i get the following message.This happens 
> > after loading classpath and all the required jar files. 
> > 
> > D:\jdk1.3.1\bin\java -Dtomcat.home="D:\JBoss-2.2.2_Tomcat-3.2.2\tomcat" org.apa 
> > che.jasper.JspC ^ 
> > Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/jasper/Jsp 
> > C 
> > 
> > I don't know why this happens 
> > 
> > Thanks 
> > 
> > Ram 
> > 
> > 
> > ___ 
> > Get your FREE download of MSN Explorer at http://explorer.msn.com 
> > 
> > 
> 
Get your FREE download of MSN Explorer at http://explorer.msn.com


tomcat starting problem on win98

2001-07-20 Thread Ramkumar Manoharan

Hi,
I have searched the archive but couldn't find a relevant posting(please let me know if there is any)
i have jboss+tomcat3.2.2 and when i try to start tomcat i get the following message.This happens after loading classpath and all the required jar files.D:\jdk1.3.1\bin\java  -Dtomcat.home="D:\JBoss-2.2.2_Tomcat-3.2.2\tomcat" org.apache.jasper.JspC ^Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/jasper/JspC
I don't know why this happens
Thanks
Ram
Get your FREE download of MSN Explorer at http://explorer.msn.com


apache not able to access jsp files

2001-06-29 Thread Ramkumar Manoharan

Hi,

OS-red hat 7.0, apache 1.3, tomcat 3.2

I currently have Apache on port 80, Tomcat port 8080
with mod_jk adapter.  The servlets
and jsp examples work off of localhost:8080, but they
do not work off localhost:80.
I have the Tomcat User Guide, the Tomcat-Apache
HOWTO, and the Working with Mod-JK
Manual for reference.   I am using the auto generated
mod_jk.auto and basically just
want Apache to serve the static content and Tomcat the
dynamic jsp and servlets.
Unless, I'm missing something the static html pages and
the .jsp pages should
be off of port 80 and then the jk adapter should
transfer the .jsp request to Tomcat
via port 8007 using the apj12 protocol.


But i get the following message:


Forbidden

You don't have permission to access /examples/jsp/index.html on this server.

I have 755 access to the examples folder and also to the super folder
webapps.Any reason why this problem?

Thanks
Ram
_
Get your FREE download of MSN Explorer at http://explorer.msn.com




Re: JSP Information

2001-01-16 Thread Ramkumar Manoharan

Try java.sun.com.They have a good tutorial on servlets and jsp.

following are some good books(u can buy it online from store like amazon or 
fatbrain etc etc)
Professional JSP from Wrox publishers
Core Servlets and JavaServerPages by Marty Hall

ram



>From: "Lucero, Daniel Gerardo" <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]>
>Subject: JSP Information
>Date: Tue, 16 Jan 2001 17:59:17 -0600
>
>Do You know where can I get  JSP tutorials, books, etc?
>
>I tried to search JSP information, but I still haven't found what I'm
>looking for.
>
>Thanks a Lot
>
>Daniel Gerardo Lucero Baylon
>   [EMAIL PROTECTED]
>EDS Northern Mexico Solution Centre
>   Rafael Perez Serna y Hermanos Escobar 6755
>   32419, Cd. Juarez Chih, Mexico
>   (52 1) 629-0942, 629-0960 Ext 56008
>
>
>
>-
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, email: [EMAIL PROTECTED]
>

_
Get your FREE download of MSN Explorer at http://explorer.msn.com


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: getParameter() help

2001-01-16 Thread Ramkumar Manoharan

Matt,

Did you try what Elijah suggested.I think elijah is right in pointing out 
about the "home" word,probably the browser/server is substituting home with 
the value u r getting.

Ram


>From: Matt Becker <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: [EMAIL PROTECTED]
>Subject: Re: getParameter() help
>Date: Tue, 16 Jan 2001 14:45:22 -0800
>
>Here's a boiled down version of my code.
>
>public void doGet(HttpServletRequest request, HttpServletResponse response)
> throws ServletException, java.io.IOException
>{
> String cmd = request.getParameter("cmd");
>
> if (cmd == null || cmd.equals(""))
> {
> ExportHTML(request, response, filePath + "default.htm");
> }
> else if (cmd.equals("load"))
> {
> String pgName = request.getParameter("pg");
>
> if (pgName == null || pgName.equals(""))
> {
> System.out.println("page is missing or empty!!!");
> }
> else
> {
> System.out.println("Outputing page: " + pgName);
> ExportHTML(request, response, filePath + pgName +
>".htm");
> }
> }
> else if (cmd.equals("search"))
> {
> }
>}
>
>ExportHTML() is a function that reads in a html file and outputs it to the
>client.
>
>
>
>Matt
>
>At 02:19 PM 1/16/01, you wrote:
>
>>Matt,
>>
>>You are doing it right.Try restarting the server and close all browser
>>windows that are open(just to make sure that the browser is not dishing
>>out the cached page).Also please post your code so that we can take a look
>>at it.
>>
>>hope this solves your problem
>>Ram
>>
>>>From: Matt Becker <[EMAIL PROTECTED]>
>>>Reply-To: [EMAIL PROTECTED]
>>>To: [EMAIL PROTECTED]
>>>Subject: Re: getParameter() help
>>>Date: Tue, 16 Jan 2001 14:07:56 -0800
>>>
>>>Hi, Ram!
>>>
>>>I tried changing the name "page" to "pg" but that didn't change that
>>>getParameter() returns other part of the text that's not part of the "pg"
>>>variable. I thought maybe I was doing something wrong with the URL in how
>>>the parameters were being passed in the GET that's being executed when 
>>>the
>>>URL is clicked on. The first parameter "load" is always correct.
>>>
>>>The separation between values passed is the "&" symbol, right?
>>>
>>>I'm using Tomcat 3.2.1, JDK 1.3, and IE 5.5 on a Win98 machine.
>>>
>>>Thanks!
>>>
>>>Matt
>>>
>>>
>>>At 01:58 PM 1/16/01, you wrote:
It looks like the "page" could be a key-word and is pulling
"mainservlet?cmd=load",try changing page to something like "pg" and see 
if
u get the same error.

Ram


>From: Matt Becker <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: [EMAIL PROTECTED]
>Subject: getParameter() help
>Date: Tue, 16 Jan 2001 12:50:28 -0800
>
>Hi, I have a servlet which dispatches out various jsp's. Some of the 
>jsp's
>resulting html contain links back to the servlet to fire off another 
>page
>like this:
>HOME
>When I do a request.getParameter("cmd") the string I get is "cmd" which 
>is
>right.
>When I do request.getParameter("page") the string I get is
>"mainservlet?cmd=load" which is not right.
>Does anyone know if I'm doing something wrong with how I'm writing the 
>link
>back to the servlet?
>Thanks!
>
>Matt Becker
>
>
>
>
>Mythicwave Productions, Inc.
>21053 Devonshire, #201
>Chatsworth, Ca. 91311
>818-700-1998
>[EMAIL PROTECTED]
>
>
>-
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, email: [EMAIL PROTECTED]

_
Get your FREE download of MSN Explorer at http://explorer.msn.com


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]
>>>
>>>
>>>-
>>>To unsubscribe, e-mail: [EMAIL PROTECTED]
>>>For additional commands, email: [EMAIL PROTECTED]
>>
>>_
>>Get your FREE download of MSN Explorer at http://explorer.msn.com
>>
>>
>>-
>>To unsubscribe, e-mail: [EMAIL PROTECTED]
>>For additional commands, email: [EMAIL PROTECTED]
>
>
>-
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, email: [EMAIL PROTECTED]
>

_
Get your FREE download of MSN Explorer at http://explorer.msn.com


-

Re: getParameter() help

2001-01-16 Thread Ramkumar Manoharan


Matt,

You are doing it right.Try restarting the server and close all browser 
windows that are open(just to make sure that the browser is not dishing out 
the cached page).Also please post your code so that we can take a look at 
it.

hope this solves your problem
Ram

>From: Matt Becker <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: [EMAIL PROTECTED]
>Subject: Re: getParameter() help
>Date: Tue, 16 Jan 2001 14:07:56 -0800
>
>Hi, Ram!
>
>I tried changing the name "page" to "pg" but that didn't change that
>getParameter() returns other part of the text that's not part of the "pg"
>variable. I thought maybe I was doing something wrong with the URL in how
>the parameters were being passed in the GET that's being executed when the
>URL is clicked on. The first parameter "load" is always correct.
>
>The separation between values passed is the "&" symbol, right?
>
>I'm using Tomcat 3.2.1, JDK 1.3, and IE 5.5 on a Win98 machine.
>
>Thanks!
>
>Matt
>
>
>At 01:58 PM 1/16/01, you wrote:
>>It looks like the "page" could be a key-word and is pulling
>>"mainservlet?cmd=load",try changing page to something like "pg" and see if
>>u get the same error.
>>
>>Ram
>>
>>
>>>From: Matt Becker <[EMAIL PROTECTED]>
>>>Reply-To: [EMAIL PROTECTED]
>>>To: [EMAIL PROTECTED]
>>>Subject: getParameter() help
>>>Date: Tue, 16 Jan 2001 12:50:28 -0800
>>>
>>>Hi, I have a servlet which dispatches out various jsp's. Some of the 
>>>jsp's
>>>resulting html contain links back to the servlet to fire off another page
>>>like this:
>>>HOME
>>>When I do a request.getParameter("cmd") the string I get is "cmd" which 
>>>is
>>>right.
>>>When I do request.getParameter("page") the string I get is
>>>"mainservlet?cmd=load" which is not right.
>>>Does anyone know if I'm doing something wrong with how I'm writing the 
>>>link
>>>back to the servlet?
>>>Thanks!
>>>
>>>Matt Becker
>>>
>>>
>>>
>>>
>>>Mythicwave Productions, Inc.
>>>21053 Devonshire, #201
>>>Chatsworth, Ca. 91311
>>>818-700-1998
>>>[EMAIL PROTECTED]
>>>
>>>
>>>-
>>>To unsubscribe, e-mail: [EMAIL PROTECTED]
>>>For additional commands, email: [EMAIL PROTECTED]
>>
>>_
>>Get your FREE download of MSN Explorer at http://explorer.msn.com
>>
>>
>>-
>>To unsubscribe, e-mail: [EMAIL PROTECTED]
>>For additional commands, email: [EMAIL PROTECTED]
>
>
>-
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, email: [EMAIL PROTECTED]
>

_
Get your FREE download of MSN Explorer at http://explorer.msn.com


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: getParameter() help

2001-01-16 Thread Ramkumar Manoharan

It looks like the "page" could be a key-word and is pulling 
"mainservlet?cmd=load",try changing page to something like "pg" and see if u 
get the same error.

Ram


>From: Matt Becker <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: [EMAIL PROTECTED]
>Subject: getParameter() help
>Date: Tue, 16 Jan 2001 12:50:28 -0800
>
>Hi, I have a servlet which dispatches out various jsp's. Some of the jsp's
>resulting html contain links back to the servlet to fire off another page
>like this:
>HOME
>When I do a request.getParameter("cmd") the string I get is "cmd" which is
>right.
>When I do request.getParameter("page") the string I get is
>"mainservlet?cmd=load" which is not right.
>Does anyone know if I'm doing something wrong with how I'm writing the link
>back to the servlet?
>Thanks!
>
>Matt Becker
>
>
>
>
>Mythicwave Productions, Inc.
>21053 Devonshire, #201
>Chatsworth, Ca. 91311
>818-700-1998
>[EMAIL PROTECTED]
>
>
>-
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, email: [EMAIL PROTECTED]
>

_
Get your FREE download of MSN Explorer at http://explorer.msn.com


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: Help Installing with Win32

2001-01-15 Thread Ramkumar Manoharan


Did you set your JAVAHOME?

Ram

>From: Eric Weiss <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: [EMAIL PROTECTED]
>Subject: Help Installing with Win32
>Date: Mon, 15 Jan 2001 19:16:01 -0500
>
>I must be missing something obvious, but I cannot get Tomcat to work on
>Win 2000 Professional.
>
>I downloaded the binaries (dlls) and installed the dll's into
>%TOMCAT_HOME%bin.
>
>I added TOMCAT_HOME (c:\progra~1\apache~1\tomcat) to my environment.
>
>I installed servlet.jar into %TOMCAT_HOME%\lib.
>
>I downloaded jakarta-servletapi-3.2.zip and installed it into
>%TOMCAT_HOME% (actually %TOMCAT_HOME%\jakarta-servletapi-3.2\)
>
>I did the same with jakarta-tomecat-3.2.1.zip
>(%TOMCAT_HOME%\jakarta-tomcat-3.2.1)
>
>I changed "start" to "run" in startup.bat
>
>When I execute startup.bat I get the error message:
>
>Exception in thread "main" java.lang.NoClassDefFoundError:
>org/apache/tomcat/startup/Tomcat
>
>So I guess I'm missing a jar file that contains Tomcat.class, but I am
>not sure where that should be.
>
>Any help will be appreciated.
>
>Eric
>
>
>-
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, email: [EMAIL PROTECTED]
>

_
Get your FREE download of MSN Explorer at http://explorer.msn.com


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: upgrade from Tomcat 3.1.1 to 3.2.1 with IIS not working

2001-01-15 Thread Ramkumar Manoharan

The 3.2 version has web.xml file for each webapp instead of using the 
web.xml in the conf directory.see if that is causing the problem.Iam not 
sure if that will help,but my guess it could be because of this change

Ram


>From: Kevin Badinger <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: [EMAIL PROTECTED]
>Subject: upgrade from Tomcat 3.1.1 to 3.2.1 with IIS not working
>Date: Mon, 15 Jan 2001 18:11:31 -0600
>
>I setup Tomcat 3.1.1 to run with Windows 2000 Server & IIS.  I am running
>JDK 1.3.  All worked fine with IIS and tomcat with 3.1.1.  I have attempted
>to upgrade to Tomcat 3.2.1.  Now, I get 404's when i try to display the
>http://localhost/examples/jsp/index.html page.  When I run it directly to
>port 8080, it works just fine.  Any ideas would be greatly appreciated.
>Attached are the IIS, isapi, and tomcat logs.
>
>Thanks,
>Kevin Badinger
>
>
>IIS logs
>---
>#Software: Microsoft Internet Information Services 5.0
>#Version: 1.0
>#Date: 2001-01-14 22:30:00
>#Fields: date time c-ip cs-username s-ip s-port cs-method cs-uri-stem
>cs-uri-query sc-status cs(User-Agent)
>2001-01-14 22:30:00 10.30.1.207 - 10.30.30.40 80 GET
>/jakarta/isapi_redirect.dll - 200
>Mozilla/4.0+(compatible;+MSIE+5.5;+Windows+NT+4.0)
>
>---
>isapi.log
>---
>
>[jk_uri_worker_map.c (155)]: Into jk_uri_worker_map_t::uri_worker_map_alloc
>[jk_uri_worker_map.c (195)]: Into jk_uri_worker_map_t::uri_worker_map_open
>[jk_uri_worker_map.c (210)]: jk_uri_worker_map_t::uri_worker_map_open, rule
>map size is 2
>[jk_uri_worker_map.c (266)]: Into jk_uri_worker_map_t::uri_worker_map_open,
>match rule /servlet/=ajp12 was added
>[jk_uri_worker_map.c (266)]: Into jk_uri_worker_map_t::uri_worker_map_open,
>match rule /examples/=ajp12 was added
>[jk_uri_worker_map.c (295)]: Into jk_uri_worker_map_t::uri_worker_map_open,
>there are 2 rules
>[jk_uri_worker_map.c (316)]: jk_uri_worker_map_t::uri_worker_map_open, done
>[jk_worker.c (82)]: Into wc_open
>[jk_worker.c (207)]: Into build_worker_map, creating 1 workers
>[jk_worker.c (213)]: build_worker_map, creating worker ajp12
>[jk_worker.c (138)]: Into wc_create_worker
>[jk_worker.c (152)]: wc_create_worker, about to create instance ajp12 of
>ajp12
>[jk_ajp12_worker.c (264)]: Into ajp12_worker_factory
>[jk_worker.c (161)]: wc_create_worker, about to validate and init ajp12
>[jk_ajp12_worker.c (182)]: Into jk_worker_t::validate
>[jk_ajp12_worker.c (194)]: In jk_worker_t::validate for worker ajp12 
>contact
>is localhost:8007
>[jk_worker.c (177)]: wc_create_worker, done
>[jk_worker.c (223)]: build_worker_map, removing old ajp12 worker
>[jk_worker.c (235)]: build_worker_map, done
>[jk_worker.c (102)]: wc_open, done
>[jk_isapi_plugin.c (408)]: HttpFilterProc started
>[jk_isapi_plugin.c (429)]: In HttpFilterProc test redirection of
>/examples/jsp/index.html
>[jk_uri_worker_map.c (344)]: Into jk_uri_worker_map_t::map_uri_to_worker
>[jk_uri_worker_map.c (406)]: jk_uri_worker_map_t::map_uri_to_worker, Found 
>a
>match ajp12
>[jk_isapi_plugin.c (439)]: HttpFilterProc [/examples/jsp/index.html] is a
>servlet url - should redirect to ajp12
>[jk_isapi_plugin.c (461)]: HttpFilterProc check if
>[/examples/jsp/index.html] is points to the web-inf directory
>[jk_isapi_plugin.c (408)]: HttpFilterProc started
>[jk_isapi_plugin.c (429)]: In HttpFilterProc test redirection of
>/jakarta/isapi_redirect.dll
>[jk_uri_worker_map.c (344)]: Into jk_uri_worker_map_t::map_uri_to_worker
>[jk_uri_worker_map.c (434)]: jk_uri_worker_map_t::map_uri_to_worker, done
>without a match
>[jk_isapi_plugin.c (452)]: HttpFilterProc [/jakarta/isapi_redirect.dll] is
>not a servlet url
>[jk_isapi_plugin.c (461)]: HttpFilterProc check if
>[/jakarta/isapi_redirect.dll] is points to the web-inf directory
>[jk_isapi_plugin.c (517)]: HttpExtensionProc started
>[jk_worker.c (123)]: Into wc_get_worker_for_name ajp12
>[jk_worker.c (127)]: wc_get_worker_for_name, done  found a worker
>[jk_isapi_plugin.c (539)]: HttpExtensionProc got a worker for name ajp12
>[jk_ajp12_worker.c (223)]: Into jk_worker_t::get_endpoint
>[jk_ajp12_worker.c (121)]: Into jk_endpoint_t::service
>[jk_connect.c (108)]: Into jk_open_socket
>[jk_connect.c (115)]: jk_open_socket, try to connect socket = 3096
>[jk_connect.c (124)]: jk_open_socket, after connect ret = 0
>[jk_connect.c (132)]: jk_open_socket, set TCP_NODELAY to on
>[jk_connect.c (140)]: jk_open_socket, return, sd = 3096
>[jk_ajp12_worker.c (134)]: In jk_endpoint_t::service, sd = 3096
>[jk_ajp12_worker.c (357)]: Into ajpv12_handle_request
>[jk_ajp12_worker.c (361)]: ajpv12_handle_request, sending the ajp12 start
>sequence
>[jk_ajp12_worker.c (413)]: ajpv12_handle_request, sending the headers
>[jk_ajp12_worker.c (432)]: ajpv12_handle_request, sending the terminating
>mark
>[jk_ajp12_worker.c (472)]: ajpv12_handle_request done
>[jk_ajp12_worker.c (148)]: In jk_endpoint_t::service, sent request
>[jk_ajp12_worker.c (488)]: Into ajpv12_handle_response
>[jk_ajp12_worker.c (502)]: ajpv12_handle_response, read Status: 404 

Re: How to disable the port in Tomcat with IIS

2001-01-15 Thread Ramkumar Manoharan

In the server.xml file comment out the following lines:







Please correct me if iam wrong.
Ram


>From: [EMAIL PROTECTED]
>Reply-To: [EMAIL PROTECTED]
>To: [EMAIL PROTECTED]
>Subject: How to disable the port in Tomcat with IIS
>Date: Mon, 15 Jan 2001 18:50:48 -0500
>
>I successfully configured the Tomcat 3.2 with IIS, by using port:80, I can
>access servlets through IIS. The problem is how I can disable the port:8080
>which directly go to Tomcat, then every access must go through IIS. Please
>help!
>
>
>-
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, email: [EMAIL PROTECTED]
>

_
Get your FREE download of MSN Explorer at http://explorer.msn.com


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: Calling the same servlet regardless of the URL

2001-01-12 Thread Ramkumar Manoharan

Maybe you can try doing this in the web.xml:



ServletX


ServletX



pathinfo
/home/jim/testFile




You can get this value by using the getInitParameter("paramname") within 
your servlet code

Ram

>From: "Collins, Jim" <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]>
>Subject: Calling the same servlet regardless of the URL
>Date: Fri, 12 Jan 2001 18:57:50 -
>
>Hi,
>
>I have a servlet: servletLaunch which I want to be called regardless of the
>URL (the web app is in the servletLaunch subdirectory of webapps). For
>example if I entered the URL:
>http://myhost:8080/servletLaunch/servlet/servletLaunch/home/jim/testFile
>
>I want the servletLaunch servlet to be started with /home/jim/testFile
>passed to it as pathinfo. At the moment I am getting Not Found (404). I
>believe tomcat is trying to serve the file
>/servletLaunch/servlet/servletLaunch/home/jim/testFile which does not 
>exist.
>I have tried various different configurations for the url-pattern element 
>of
>servlet-mapping, none of which I have managed to get to work.
>
>Any help would be greatly appreciated.
>
>Thanks.
>
>Jim.
>
>
>PLEASE READ: The information contained in this e-mail is confidential
>and intended for the named recipient(s) only. If you are not an intended
>recipient of this email you must not copy, distribute or take any
>further action in reliance on it and you should delete it and notify the
>sender immediately. Email is not a secure method of communication and
>Nomura International plc cannot accept responsibility for the accuracy
>or completeness of this message or any attachment(s).  Please check this
>e-mail for virus infection, for which Nomura International plc accepts
>no responsibility. If verification of this email is sought then please
>request a hard copy. Unless otherwise stated any views or opinions
>presented are solely those of the author and do not represent those of
>Nomura International plc. This email is intended for informational
>purposes only and is not a solicitation or offer to buy or sell
>securities or related financial instruments. Nomura International plc is
>regulated by the Securities and Futures Authority Limited and is a
>member of the London Stock Exchange.
>
>
>-
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, email: [EMAIL PROTECTED]
>

_
Get your FREE download of MSN Explorer at http://explorer.msn.com


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: Help on Internal server Error 500??

2001-01-12 Thread Ramkumar Manoharan

In your JBuider environment, you will be having a project(xxx.jpr) and all 
the java files that use will be under this project(you may to create the 
project if you haven't done already).
Right click on the xxx.jpr and click properties.You will get a window.Under 
the source tab,u have got to specify the location of the *.java files.In 
most cases you will be having it all in the same folder,but some java files 
may be in a different folder.Make sure that you include all of them.
Now select your java file that you want to compile and compile it.JBuilder 
will now where to look for the source file when it does the compiling

Ram




>From: "Mary McCarthy" <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: [EMAIL PROTECTED]
>Subject: Help on Internal server Error 500??
>Date: Fri, 12 Jan 2001 19:31:44 -
>

_
Get your FREE download of MSN Explorer at http://explorer.msn.com


Hi Im writing my first little program that will welcome a user once she enters and submits her details into a web page.There is no problem Writing the JSP files but I cannot start a new .java file in Jbuilder, so I write it in Homesite, save it as .java and attempt to compile it to .class in Jbuilder.
Im having difficulty converting the .javafile to .class

I have tried compiling the .java file to a .class in JBuilder, but I keep getting the following warning:

"Warning #908: check sourcepath; source c:\jakarta-tomcat\webapps\mary\Web-inf\Classes\namehandler.java cannot be found on source pathby appending \mary\namehandler.java to each sourcepath entry."
(mary is the name of the package)


When I try to view the program in my browser at http:// localhost etc etc I get the following error 
 



 

Error: 500
Location: /Mary/hellouser.jsp
Internal Servlet Error:org.apache.jasper.JasperException: Bad file argument to include     at org.apache.jasper.compiler.JspParseEventListener.handleDirective(JspParseEventListener.java, Compiled Code)    at org.apache.jasper.compiler.DelegatingListener.handleDirective(DelegatingListener.java:116)    at org.apache.jasper.compiler.Parser$Directive.accept(Parser.java, Compiled Code)    at org.apache.jasper.compiler.Parser.parse(Parser.java, Compiled Code)    at org.apache.jasper.compiler.Parser.parse(Parser.java:1038)    at org.apache.jasper.compiler.Parser.parse(Parser.java:1034)    at org.apache.jasper.compiler.Compiler.compile(Compiler.java, Compiled Code)    at org.apache.jasper.runtime.JspServlet.loadJSP(JspServlet.java:413)    at org.apache.jasper.runtime.JspServlet$JspServletWrapper.loadIfNecessary(JspServlet.java:149)    at org.apache.jasper.runtime.JspServlet$JspServletWrapper.service(JspServlet.java:161)    at org.apache.jasper.runtime.JspServlet.serviceJspFile(JspServlet.java:261)    at org.apache.jasper.runtime.JspServlet.service(JspServlet.java, Compiled Code)    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)    at org.apache.tomcat.core.ServletWrapper.handleRequest(ServletWrapper.java, Compiled Code)    at org.apache.tomcat.core.ContextManager.service(ContextManager.java:559)    at org.apache.tomcat.service.http.HttpConnectionHandler.processConnection(HttpConnectionHandler.java:160)    at org.apache.tomcat.service.TcpConnectionThread.run(SimpleTcpEndpoint.java:338)    at java.lang.Thread.run(Thread.java:479)PLEASE PLEASE PLEASE, anyone with help? Get your FREE download of MSN Explorer at http://explorer.msn.com

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]


Re: FIRST JSP PRGRAM - PLEASE HELP!

2001-01-12 Thread Ramkumar Manoharan

In your JBuider environment, you will be having a project(xxx.jpr) and all 
the java files that use will be under this project(you may to create the 
project if you haven't done already).
Right click on the xxx.jpr and click properties.You will get a window.Under 
the source tab,u have got to specify the location of the *.java files.In 
most cases you will be having it all in the same folder,but some java files 
may be in a different folder.Make sure that you include all of them.
Now select your java file that you want to compile and compile it.JBuilder 
will now where to look for the source file when it does the compiling

Ram


>From: "Mick Sullivan" <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: [EMAIL PROTECTED]
>Subject: FIRST JSP PRGRAM - PLEASE HELP!
>Date: Fri, 12 Jan 2001 18:48:15 -
>

_
Get your FREE download of MSN Explorer at http://explorer.msn.com


Hi I need help!!
I think this problem will be easy to solve as this is my first attempt at a JSP application.
I am copying a JSP program from the java.sun.com website and attempting to run it on tomcat. The program is a simple one, the user enters his name into a text box and presses submit. His name is then printed up on the screen, i.e. "Hello ".
 
I have created the two .jsp files (hellouser.jsp and response.jsp) and stored them in 
C:\jakarta-tomcat\webapps\Hello\
 
I have created the bean (namehandler.java) as a .java file and stored it in
C:\jakarta-tomcat\webapps\Hello\Web-inf\Classes\
Are these the right folders  to store those files in?
 
I have tried compiling the .java file to a .class in JBuilder, but I keep getting the following warning:
"Warning #908: check sourcepath; source c:\jakarta-tomcatzwebapps\Hello\Web-inf\Classes\namehandler.java cannot be found on source pathby appending  \hello\namehandler.java to each sourcepath entry."
( hello is the name of the package)
I think the problem may be because I cant generate the .class file. Anyone know why this might be?
 
When I try to view the Application while tomcat is running I get this error message:

Error: 500
Location: /Hello/hellouser.jspInternal Servlet Error:org.apache.jasper.JasperException: Bad file argument to include
	at org.apache.jasper.compiler.JspParseEventListener.handleDirective(JspParseEventListener.java, Compiled Code)
	at org.apache.jasper.compiler.DelegatingListener.handleDirective(DelegatingListener.java:116)
	at org.apache.jasper.compiler.Parser$Directive.accept(Parser.java, Compiled Code)
	at org.apache.jasper.compiler.Parser.parse(Parser.java, Compiled Code)
	at org.apache.jasper.compiler.Parser.parse(Parser.java:1038)
	at org.apache.jasper.compiler.Parser.parse(Parser.java:1034)
	at org.apache.jasper.compiler.Compiler.compile(Compiler.java, Compiled Code)
	at org.apache.jasper.runtime.JspServlet.loadJSP(JspServlet.java:413)
	at org.apache.jasper.runtime.JspServlet$JspServletWrapper.loadIfNecessary(JspServlet.java:149)
	at org.apache.jasper.runtime.JspServlet$JspServletWrapper.service(JspServlet.java:161)
	at org.apache.jasper.runtime.JspServlet.serviceJspFile(JspServlet.java:261)
	at org.apache.jasper.runtime.JspServlet.service(JspServlet.java, Compiled Code)
	at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
	at org.apache.tomcat.core.ServletWrapper.handleRequest(ServletWrapper.java, Compiled Code)
	at org.apache.tomcat.core.ContextManager.service(ContextManager.java:559)
	at org.apache.tomcat.service.http.HttpConnectionHandler.processConnection(HttpConnectionHandler.java:160)
	at org.apache.tomcat.service.TcpConnectionThread.run(SimpleTcpEndpoint.java:338)
	at java.lang.Thread.run(Thread.java:479)If anyone has any idea at all where the problem may lie please, please help me.Thanks in advance, Mick

 
 
 Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]


Re: Nested Servlet Zone

2001-01-11 Thread Ramkumar Manoharan

You may try it this way:

(1)In your servlet code add "package xxx" and compile it
(2)this should put the "class" file of this servlet under
   /examples/servlet/xxx/
(3)In the web.xml



   ServletX


xxx.ServletX

   



ServletX


/xxx/ServletX



Note:it will work even with the url-pattern "/ServletX" (without the 
url-pattern being "/xxx/ServletX"),but in your case you want with the 
/xxx/ServletX

Try modifying these two in anyway u want and see if u can get it working


>From: LUN <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: [EMAIL PROTECTED]
>Subject: Nested Servlet Zone
>Date: Thu, 11 Jan 2001 13:35:18 +0800 (HKT)
>
>Hi,
>   I have a problem with the servlet zone.
>I can run servlet /examples/servlet/ directory
>but
>cannot run servlet in /examples/servlet/xxx/
>where xxx is a sub-directory.
>
>I think it is a problem about servlet zone.
>Do anyone have an idea?
>
>Thank you very much.
>
>
>
>
>-
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, email: [EMAIL PROTECTED]
>

_
Get your FREE download of MSN Explorer at http://explorer.msn.com


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: How do I get query string?

2001-01-11 Thread Ramkumar Manoharan


request.getParameter("paramname")

>From: "Moonhyoung Lee" <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: <[EMAIL PROTECTED]>
>Subject: How do I get query string?
>Date: Thu, 11 Jan 2001 21:04:31 +0900
>
>Hi.
>How do I get query string when the request were POSTed 
>(application/x-www-form-urlencoded).
>request.getQueryString() seems to return null in this case.
>
>Thanks in advance. ;-)

_
Get your FREE download of MSN Explorer at http://explorer.msn.com


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: Logging customizing

2001-01-11 Thread Ramkumar Manoharan

Unfortunately 3.2 doesn't have anything like that.You need to write your 
code and log the info.Here's a piece of code that can do it:

String outputFileName = System.getProperty("user.dir")+File.separatorChar+ 
"logFile.txt";

FileWriter fw = new FileWriter(outputFileName,true);
Date myDate = new Date();
String myString = DateFormat.getDateTimeInstance().format(myDate)+ " ";

The above lines create a file (logfile.txt)in the append mode,gets the 
current syetem date/time.

In the "catch" block add the lines

catch (Exception e){
  fw.write(myString+e+System.getProperty("line.separator"));
   fw.close();
 }
These lines log the exception to the logfile using the file writer that we 
created above along with the date/time stamp

It works very well for me

Ram

>From: Carsten Elshoff <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: [EMAIL PROTECTED]
>Subject: Logging customizing
>Date: Thu, 11 Jan 2001 09:22:00 +0100
>
>Hi,
>
>has anybody had some success in customizing those log files produces by
>tomcat by default? As far as I know there three of them (tomcat.err,
>tomcat.out, tomcat.log). I found some sample config in the server.xml
>where there set something like path=  and customOutput=yes|no. One
>thing I have been missing so far is the point where one can tell tomcat
>what to customize? Specifically, I'd like to add at least a timestamp to
>the begining of each line that's being logged. Do I have to set this
>format somewhere else?
>
>Any help is greatly appreciated! Thanks!
>
>Carsten Elshoff
>
>
>-
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, email: [EMAIL PROTECTED]
>

_
Get your FREE download of MSN Explorer at http://explorer.msn.com


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: Tomcat on Windows 98..

2001-01-11 Thread Ramkumar Manoharan


There has been questions about "out of environment space" and u could 
probably search the archives before posting to the newsgroup.this holds true 
for any question.

To answer your question:
Click on the properties tab on the dos window that gives u the "out of.." 
message and increase the memory to the max.close the window and reopen it 
and run the batch file

Ram

>From: Santoshwt <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]>
>Subject: Tomcat on Windows 98..
>Date: Wed, 10 Jan 2001 22:34:55 -0800
>
>Hi,
>
>I'll describe the situation:
>I've installed tomcat on WidowsNT4.0
>the tomcat root is C:\Tomcat\jakarta-tomcat-3.2.1
>After that I had set the TOMCAT_HOME=C:\Tomcat\jakarta-tomcat-3.2.1 and
>JAVA_HOME to the proper place.
>The server works fine for all, JSPs, servlets etc..
>
>NOW THE PROBLEM:
>
>When I do the same on Window98 tomcat is not starting.
>
>Here I've installed Tomcat in C:\TechSofts\Tomcat\jakarta-tomcat-3.2.1 and
>set the TOMCAT_HOME accordingly.
>I've set the JAVA_HOME to the proper dir.
>
>But when from bin of tomcat I say startup, it shows me error saying:
>
>U can set TOMCAT_HOME to dos8.3 file format
>
>classpath cannot be set dynamically.
>
>setting the classpath statically..
>environment out of space
>environment out of space
>
>starting tomcat in new window
>
>but after that no window for tomcat is opened..
>
>Can anybody please tell me where I can correct at an earliest.
>
>warm regards,
>Santosh
>
>
>
>
>
>
>-
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, email: [EMAIL PROTECTED]
>

_
Get your FREE download of MSN Explorer at http://explorer.msn.com


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: Why my servlet files fail to compile

2001-01-05 Thread Ramkumar Manoharan

You need to have j2eesdk tocompile the java servlets.Download it and install 
them to compile your servlets.

Ram


>From: "RAHMAN,ABDUR (HP-Sunnyvale,ex1)" <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]>
>CC: "RAHMAN,ABDUR (HP-Sunnyvale,ex1)" <[EMAIL PROTECTED]>
>Subject: Why my servlet files fail to compile
>Date: Fri, 5 Jan 2001 17:09:10 -0800
>
>Hi All,
>
>I am running Tomcat 3.1 with JDK 1.3. I have setup TOMCAT_HOME and JDK_HOME
>and all that stuffs. I need to compile servlet files manually before 
>running
>under TOMCAT. When I compile using javac, my compilation fails. Even though
>I setup TOMCAT_HOME, why it has problem recognizing HTTPServlet and all 
>that
>god stuff. Can someone please help.
>
>Thx.
>
>A. Rahman
>
>Note: I'm not in the mailing list, please forward your replay to
>[EMAIL PROTECTED]
>
>-
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, email: [EMAIL PROTECTED]
>

_
Get your FREE download of MSN Explorer at http://explorer.msn.com


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: Help with Tomcat

2001-01-05 Thread Ramkumar Manoharan


Look at the visual age installation directory ,it should have a java folder 
wherein the jdk that comes bundled with visual age is installed.
set your JAVA HOME to this path and u should be good to go

Ram

>From: "vincent" <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: <[EMAIL PROTECTED]>
>Subject: Re: Help with Tomcat
>Date: Fri, 5 Jan 2001 11:15:22 +0900
>
>you may add to autoexec.bat-
>set TOMCAT_HOME=c:\Tomcat4
>set JAVA_HOME=c:\JDK1.3
>
>... replace the directories with your own path. =)
>
>
>- Original Message -
>From: "Edgar Deleon" <[EMAIL PROTECTED]>
>To: <[EMAIL PROTECTED]>
>Sent: Friday, January 05, 2001 10:58 AM
>Subject: Help with Tomcat
>
>
>I'm using Visual Age for Java to learn the language.  Visual Age already
>contains the Java classes and everything needed to write and run Java
>programs.
>
>I installed Tomcat and need to know how to set the JAVA_HOME environment
>variable.  Do I need to install the Java SKD 1.2 to be able to set this
>variable?
>
>Please help,  Edgar.
>
>
>
>-
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, email: [EMAIL PROTECTED]
>

_
Get your FREE download of MSN Explorer at http://explorer.msn.com


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: Pl clear this

2000-12-29 Thread Ramkumar Manoharan

Yeah it is a licensed version.It is a freeware developed under open source 
GNU/GPL.
It is most useful for development work and iam not sure how many users it 
can handle on the production environment but it is generally advised to use 
it along with apache or IIS to make it fully scalable.
Ram


>From: "Narayanan" <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: <[EMAIL PROTECTED]>
>Subject: Pl  clear  this
>Date: Fri, 29 Dec 2000 12:14:54 +0530
>
>
>
>  Hi  All
>
>  I  have downloaded the latest version of tomcat and using tha t.
>
> 1. Is this the licensed  Version .?
>
> 2. is there any Enterprise Vesion that has to be purchased . ?
>
> 3. How many Users this will support ?.
>
> Pl if i get the answers for this it will be very useful.
>
>Thanks in advanvce..New Year Wishes to all.
>
>
>
>
>
>
>

_
Get your FREE download of MSN Explorer at http://explorer.msn.com


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: Not Found(404) for virtual hosts

2000-12-28 Thread Ramkumar Manoharan

Did you try diting your web.xml file in your project diectory.See the 
examples folder in your tomcat installation and follow the same technique

Ram


>From: Shailaja Someshwar <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: [EMAIL PROTECTED]
>Subject: Not Found(404) for virtual hosts
>Date: Thu, 28 Dec 2000 00:07:06 -0800 (PST)
>
>
>Note: forwarded message attached.
>
>
>__
>Do You Yahoo!?
>Yahoo! Photos - Share your holiday photos online!
>http://photos.yahoo.com/
><< message3.txt >>

_
Get your FREE download of MSN Explorer at http://explorer.msn.com




RE: printing error messages to log files

2000-12-27 Thread Ramkumar Manoharan

Thanks again Tim.I looked at the javadoc and found the methods you were 
referring to,but how do you define the "servlet log".Iam puzzled.Is it the 
log file located on the tomcat server or can i define a log file on my own?

Ram


>From: Tim Cronin <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]>
>Subject: RE: printing error messages to log files
>Date: Wed, 27 Dec 2000 19:51:34 -0600
>
>see the javadoc for javax.servlet.ServletContext.log
>
>there are two flavors one takes a String the
>other takes a String and an Exception
>
>for the other hack
>(very sudo)
>
>import java.io.File;
>import java.io.FileOutputStream;
>import java.io.PrintStream;
>
>FileOutputStream fout = new FileOutputStream(new File("logFile.txt"));
>
>System.setOut(new PrintStream(fout));
>
>you could also do this the System.err as well this
>way you can isolate your audit statements from
>your error statements.
>
>-Original Message-
>From: Ramkumar Manoharan [mailto:[EMAIL PROTECTED]]
>Sent: Wednesday, December 27, 2000 7:38 PM
>To: [EMAIL PROTECTED]
>Subject: RE: printing error messages to log files
>
>
>Thanks tim for a quick reply.Can u show me a sample code or point me to 
>some
>
>reference/tutorials that illustrates both of your suggestions.
>If i can see how it's done,it would help me a lot.
>
>Thanks
>Ram
>
>
> >From: Tim Cronin <[EMAIL PROTECTED]>
> >Reply-To: [EMAIL PROTECTED]
> >To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]>
> >Subject: RE: printing error messages to log files
> >Date: Wed, 27 Dec 2000 19:26:59 -0600
> >
> >see javax.servlet.ServletContext.log
> >
> >or another simple hack if you got alot of system.out.prinln's in your 
>code
> >is to set system.out to a fileOutputStream.
> >
> >-Original Message-
> >From: Ramkumar Manoharan [mailto:[EMAIL PROTECTED]]
> >Sent: Wednesday, December 27, 2000 6:21 PM
> >To: [EMAIL PROTECTED]
> >Subject: printing error messages to log files
> >
> >
> >Hi,
> >
> >Can anybody help me out on this?I want the error messages to be 
>logged,but
> >i
> >
> >don't see anything given in the doc.when i try to print the error 
>messages
> >with system.out.print it gets printed onto the console window.Any help
> >would
> >
> >be appreciated.
> >
> >Thanks
> >Ram
> >_
> >Get your FREE download of MSN Explorer at http://explorer.msn.com
>
>_
>Get your FREE download of MSN Explorer at http://explorer.msn.com

_
Get your FREE download of MSN Explorer at http://explorer.msn.com




RE: printing error messages to log files

2000-12-27 Thread Ramkumar Manoharan

Thanks tim for a quick reply.Can u show me a sample code or point me to some 
reference/tutorials that illustrates both of your suggestions.
If i can see how it's done,it would help me a lot.

Thanks
Ram


>From: Tim Cronin <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]>
>Subject: RE: printing error messages to log files
>Date: Wed, 27 Dec 2000 19:26:59 -0600
>
>see javax.servlet.ServletContext.log
>
>or another simple hack if you got alot of system.out.prinln's in your code
>is to set system.out to a fileOutputStream.
>
>-Original Message-
>From: Ramkumar Manoharan [mailto:[EMAIL PROTECTED]]
>Sent: Wednesday, December 27, 2000 6:21 PM
>To: [EMAIL PROTECTED]
>Subject: printing error messages to log files
>
>
>Hi,
>
>Can anybody help me out on this?I want the error messages to be logged,but 
>i
>
>don't see anything given in the doc.when i try to print the error messages
>with system.out.print it gets printed onto the console window.Any help 
>would
>
>be appreciated.
>
>Thanks
>Ram
>_
>Get your FREE download of MSN Explorer at http://explorer.msn.com

_
Get your FREE download of MSN Explorer at http://explorer.msn.com




Re: Is the archive search down?

2000-12-27 Thread Ramkumar Manoharan


Neil,

It seems to be down.

Ram

>From: Neil Aggarwal <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: tomcat users list <[EMAIL PROTECTED]>
>Subject: Is the archive search down?
>Date: Wed, 27 Dec 2000 18:51:08 -0500
>
>Hello:
>
>I am trying to find a previous article on authentication
>in Tomcat, but it looks like the Tomcat User Archive search function
>is not responding.
>
>Is it working for anyone else?
>
>Thanks,
>   Neil.
>
>--
>Neil Aggarwal
>JAMM Consulting, Inc. -- (972) 612-6056, http://www.JAMMConsulting.com
>Custom Internet Development -- Java, JSP, servlets, databases

_
Get your FREE download of MSN Explorer at http://explorer.msn.com




printing error messages to log files

2000-12-27 Thread Ramkumar Manoharan

Hi,

Can anybody help me out on this?I want the error messages to be logged,but i 
don't see anything given in the doc.when i try to print the error messages 
with system.out.print it gets printed onto the console window.Any help would 
be appreciated.

Thanks
Ram
_
Get your FREE download of MSN Explorer at http://explorer.msn.com