free servlet directory gateway w/ tomcat installation instructions

2003-03-01 Thread Jon Roberts
I am an independent software developer and consultant. Last fall I released a free and open source software product that I think some may be interested in. You can find out all about it at: http://www.mentata.com/ldaphttp/ My central offering is a framework for building efficient MVC web

Re: free servlet directory gateway w/ tomcat installation instructions

2003-03-01 Thread Jacob Kjome
Why do you recommend putting the two required jar files ( ldaphttp.jar and ldapjdk.jar ) in CATALINA_HOME/shared/lib? Why not just add a WEB-INF/lib directory to your .war archive and put the jars in there. It makes for much simpler deployment and fewer instructions. Also, why not have a

Re: free servlet directory gateway w/ tomcat installation instructions

2003-03-01 Thread Jon Roberts
Jacob Kjome wrote: Why do you recommend putting the two required jar files ( ldaphttp.jar and ldapjdk.jar ) in CATALINA_HOME/shared/lib? Why not just add a WEB-INF/lib directory to your .war archive and put the jars in there. It makes for much simpler deployment and fewer instructions. I want

setting the default servlet directory

2003-02-26 Thread Charles A Jordan
How do I change the ${catalina_home}/webapps to something like /usr/web/servlets Thanks Charles (Allen) Jordan [EMAIL PROTECTED] System Administrator(407)771-8919 Convergys 285 International Parkway, Lake Mary, FL 32746-5007

RE: setting the default servlet directory

2003-02-26 Thread Filip Hanik
: setting the default servlet directory How do I change the ${catalina_home}/webapps to something like /usr/web/servlets Thanks Charles (Allen) Jordan [EMAIL PROTECTED] System Administrator(407)771-8919 Convergys 285 International Parkway, Lake Mary, FL 32746-5007

Re: setting the default servlet directory

2003-02-26 Thread Steve Guo
map to the new folder in conf\servlet.xml. Context path=/test docBase=yourfolder debug=1 reloadable=true / Charles A Jordan [EMAIL PROTECTED] wrote:How do I change the ${catalina_home}/webapps to something like /usr/web/servlets Thanks Charles (Allen) Jordan System Administrator

Re: Servlet directory?

2002-10-18 Thread Kwok Peng Tuck
I'm trying to some software called ArcIMS. It asks for the webservers servlet directory and in the readme it gives some examples: === Cut === Installing ArcIMS Servlet Connector The ArcIMS Servlet Connector directory, \com, must be copied to your Web server's servlet directory in order to establish

Servlet directory?

2002-10-18 Thread Jørgen Ramskov
Hi I'm trying to some software called ArcIMS. It asks for the webservers servlet directory and in the readme it gives some examples: === Cut === Installing ArcIMS Servlet Connector The ArcIMS Servlet Connector directory, \com, must be copied to your Web server's servlet directory in order

Re: Servlet directory?

2002-10-18 Thread Robert L Sowders
] cc: Subject:Re: Servlet directory? Ahhh, another ArcIMS headache in the making. I've found that it's easier to just lie to the installer and then delete whatever it installs for the connector. Then go to the ArcIMS\connectors\servlet directory and copy

Re: Servlet directory?

2002-10-18 Thread Robert L Sowders
Ahhh, another ArcIMS headache in the making. I've found that it's easier to just lie to the installer and then delete whatever it installs for the connector. Then go to the ArcIMS\connectors\servlet directory and copy the arcimsServletConnector.war file to the TOMCAT_HOME/webapps directory

Servlet directory

2002-08-03 Thread Daliso Zuze
I have put some servlet classes in my web applications classes directory, however when I try to access it via the url http://localhost:8080/myapp/servlet/myservlet it does not work. It seems to only work when I put the classes in the default ROOT web app and access it via

Re: Servlet directory

2002-08-03 Thread Michael E. Locasto
And you've provided appropriate servelet and servlet-mapping entries in your web.xml? -Michael - Original Message - From: Daliso Zuze [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Saturday, August 03, 2002 4:51 AM Subject: Servlet directory I have put some servlet

Re: Servlet directory

2002-08-03 Thread Daliso Zuze
PM Subject: Re: Servlet directory And you've provided appropriate servelet and servlet-mapping entries in your web.xml? -Michael - Original Message - From: Daliso Zuze [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Saturday, August 03, 2002 4:51 AM Subject

Re: Servlet directory

2002-08-03 Thread Jacob Kjome
The way you are trying to access this servlet implies a couple of assumptions: 1. Your servlet is in the default package. That is to say that it exist in WEB-INF/classes and not some directory deeper inside of that. 2. Your class is all lower case myservlet since that is how it is written

Re: Servlet directory

2002-08-03 Thread Daliso Zuze
Thanks, I got it working now, I had misplaced the classes directory. Daliso - Original Message - From: Jacob Kjome [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Saturday, August 03, 2002 7:18 PM Subject: Re: Servlet directory The way you are trying to access

Default servlet / directory listings: different settings per context

2002-01-24 Thread chris brown
Hello, I'm well aware how to globally enable or disable directory listings within Tomcat (by modifying the listings parameter of the default servlet). However, I don't know how to set this up correctly context-by-context. Here's what I've tried: - copying the servlet and servlet-mapping

Changing servlet directory

2001-10-01 Thread Firestar
Hi, for some reasons i would like to place my servlets and java classes in a separate directory instead of WEB-INF/classes or WEB-INF/lib. I tried to add the classpath of my classes in the catalina.bat script as suggested by some ppl here. However, tomcat throws the following error:

Re: Changing servlet directory

2001-10-01 Thread Manu KY
Hi, remove your classes from the classpath. follow these steps.: in web.xml add details about your web-app. in tomcat 3.2 it was known as context mapping. just add your context under context manager and set the docBase attribute to the dir where your web-app is installed. Manu Hi, for some

Tomcat Servlet Directory

2001-09-20 Thread Hoggatt Matt - mahogg
After I installed Tomcat 3.2.3, my servlet directory is C:\Program Files\Apache Group\jakarta-tomcat-3.2.3\webapps\examples\WEB-INF\classes. Now I want to change it to, or add the directory C:\public_html\myServlets. I've tried and tried and I cannot figure this out. How is this done? -Matt

RE: Tomcat Servlet Directory

2001-09-20 Thread Larry Isaacs
]] Sent: Thursday, September 20, 2001 9:34 AM To: '[EMAIL PROTECTED]' Subject: Tomcat Servlet Directory After I installed Tomcat 3.2.3, my servlet directory is C:\Program Files\Apache Group\jakarta-tomcat-3.2.3\webapps\examples\WEB-INF\classes. Now I want to change it to, or add the directory

RE: Tomcat Servlet Directory

2001-09-20 Thread Hoggatt Matt - mahogg
Are you saying that there is no way to change the preset servlet directory? -Original Message- From: Larry Isaacs [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 20, 2001 9:06 AM To: '[EMAIL PROTECTED]' Subject: RE: Tomcat Servlet Directory Handling for WEB-INF/classes and WEB-INF

RE: Tomcat Servlet Directory

2001-09-20 Thread Larry Isaacs
? Larry -Original Message- From: Hoggatt Matt - mahogg [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 20, 2001 10:14 AM To: '[EMAIL PROTECTED]' Subject: RE: Tomcat Servlet Directory Are you saying that there is no way to change the preset servlet directory

RE: Tomcat Servlet Directory

2001-09-20 Thread Hoggatt Matt - mahogg
Isaacs [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 20, 2001 9:37 AM To: '[EMAIL PROTECTED]' Subject: RE: Tomcat Servlet Directory The answer would be that is isn't configurable. The Servlet 2.2 spec introduced the concept of a web application, which is an archive with a predefined internal

IIS with Tomcat: Change default servlet directory

2001-09-12 Thread Albert
Hi All, I've installed Tomcat on Winnt4 with IIS4 and I've followed the instructions in Tomcat IIS HowTo to let IIS cooperate with Tomcat. It works if I set the home directory of my Web site in IIS to d:\tomcat (for my case, TOMCAT_HOME = d:\tomcat). I can run the servlet examples included in

RE: class path to the servlet Directory

2001-08-03 Thread Loc Lefvre
: [EMAIL PROTECTED] Objet : class path to the servlet Directory Hi, how do I set the classpath to the directory where I have my servlets.This has to be the directory other than the default webapps directory thanks Aditya

Servlet Directory

2001-03-02 Thread Richard Scales
Hi, I've just installed tomcat 3.2.1 and its working fine except that I am using the default webapps/examples directory to store my servlets which is a pain as I physically have to copy them over etc and I would like to keep them on a seperate folder somewhere else on my machine. I have been

Re: Servlet Directory

2001-03-02 Thread Anuj Agrawal
Adding a context path in server.xml is just one part to it (BTW, in docBase you might want to use a fully qualified path rather than a relative path). The 2nd file that you need to edit is uriworkermap.properties file, and add (in your case) /myservlets/*=ajp12 You may need to restart both

RE: Servlet Directory

2001-03-02 Thread Richard Scales
To: [EMAIL PROTECTED] Subject: Re: Servlet Directory Adding a context path in server.xml is just one part to it (BTW, in docBase you might want to use a fully qualified path rather than a relative path). The 2nd file that you need to edit is uriworkermap.properties file, and add (in your case

Re: Servlet Directory

2001-03-02 Thread Match Grun
I do this all the time. I assume that the /Work/MyServlets/bin contains a WEB-INF directory. docBase should be set to the directory which contains the WEB-INF directory. Tomcat looks in the WEB-INF/classes directory for any class files. Match Richard Scales wrote: Hi, I've just installed

Basic servlet directory question

2001-02-01 Thread Nibler Jeff R. (PDX1JRN)
First of all, I'm sorry for posting such a basic question, but I can't seem to find what I'm looking for anywhere. Some eight months ago, I configured Tomcat to work with IIS and serve the servlets. All I need to do now is add another servlet directory. Try as I might, I can't remember how I

RE: Servlet Directory

2000-10-24 Thread Kitching Simon
t: Tuesday, October 24, 2000 3:22 AM To: [EMAIL PROTECTED] Subject: RE: Servlet Directory The class file has to be in Tomcat's classpath. Where are you putting the servlet's class file? -Original Message- From: Corey A. Johnson [mailto:[EMAIL PROTECTED]] Sent: Monday, October