RE: **** How do I configure Tomcat for use with j2ee ****

2001-02-10 Thread Rizwan Ahmed
Title: RE: How do I configure Tomcat for use with j2ee unsubscribe

RE: **** How do I configure Tomcat for use with j2ee ****

2001-02-10 Thread James Leone
What have you tried? Tomcat relies on many of the libraries that come with SE. For instance when I start up Tomcat it loads /jdk1.3/lib/tool.jar but it looks like thats about if from the java directory. I would give it a shot by just swapping out the JAVA_HOME defined when you run bin/startup.

Re: Name of Apache "handler" for mod_jk

2001-02-10 Thread Ray Thomas
I have mod_jk working for standard mappings (*.jsp and /servlet/*) but as I mentioned on the tomcat-user group, I need to map URI's through from Apache that match (.*)Servlet$ regular expression. I could do that with ApacheModuleJserv using the directive for Apache but have not found the corr

RE: source build and mod_jk

2001-02-10 Thread mikhail malamud
Thanks a lot Jan. I already referred to your page and figured it out. Thanks once again. You do not say which OS you are using. Is you use Solaris or Linux, you may want to check: http://www.ccl.net/cca/software/UNIX/apache/ I give prescriptions how to compile mod_jk, and how to get it... On

Re: source build and mod_jk

2001-02-10 Thread Jan Labanowski
You do not say which OS you are using. Is you use Solaris or Linux, you may want to check: http://www.ccl.net/cca/software/UNIX/apache/ I give prescriptions how to compile mod_jk, and how to get it... On Sat, 10 Feb 2001, mikhail malamud wrote: > Hello - > I built tomcat from 3.2.1 source fi

Re: Name of Apache "handler" for mod_jk

2001-02-10 Thread Rick Roberts
I just got mod_jk up and running. It took a few tries but it tuns out that it's just like the docs say it should be. I am running on RedHat 6.2 with Apache 1.3.12 and Tomcat 3.2.1. It took me at least 3 times to go through the docs. E X A C T L Y !! But it works great now. I am also using ajp

source build and mod_jk

2001-02-10 Thread mikhail malamud
Hello - I built tomcat from 3.2.1 source files. Tomcat runs smoothly. Thanks guys. I cant find mod_jk. even though mod_jk how-to says that it should be "somewhere there." Perhaps I skipped something during the built. If anyone can tell me where is mod_jk or where are the sources to compile it, I

Help with response

2001-02-10 Thread Carlos Lףpez M.
Hi I keep on getting this error Response has already been comited Does anybody knows how I coul avoid it. Thanks - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]

One context in web.xml for a lot servlets

2001-02-10 Thread Wolle
Hello, i have some question about the Context of a Servlet. I've build a package with lot of servlets. Now i want to share the context in the web.xml File. Is it possible, and hoq could i make this. Perhaps when I only use the Packagename w/o the explizit class name ??? When I have to set the sa

**** How do I configure Tomcat for use with j2ee ****

2001-02-10 Thread jon
What do I need to do to getTomcat to work with enterprise architectures?  Can it be done at all or do I have to use a weblogic or something comparable?  Download j2ee and include jar files in classpath?  Or is there more?  How must I organize directory structures?

Re: Name of Apache "handler" for mod_jk

2001-02-10 Thread aras
Ray Thomas wrote: > I had Apache WebServer mapping requests for Servlets to > jakarta-tomcat based on a url ending in "Servlet" with a LocationMatch > directive in the Apache configuration containing SetHandler > jserv-servlet and matching (.*)Servlet$ (i.e. a reg/ex matching anything > ending in

RE: W2k not processing JSP

2001-02-10 Thread James Leone
I've played around further and made some progress. The jsp pages process when I connect directly to the tomcat server http://localhost:8080/examples/jsp/dates/date.jsp however they don't when I connect to IIS on port 80 http://localhost/examples/jsp/dates/date.jsp This confirms my suspicion that

SSL response

2001-02-10 Thread Dave Oxley
I am using Flash to make a https request to a servlet. Flash seems to send the request and it gets to the servlet, but it hangs when reading/getting the response. It works fine when getting a text file containing the same info over https. Therefore two questions: 1. This is how I create the re

RE: Name of Apache "handler" for mod_jk

2001-02-10 Thread Ray Thomas
The contents of workers.properties was of no help. I also looked through the workers.properties "HowTo" but it says nothing about the "handler" name registered with Apache by mod_jk. I saw in the mod_jk source code a string define for handler with the value "jakarta-servlet" but using that re

My appologies

2001-02-10 Thread Rick Roberts
OOPS! Sorry about all the repeat mail from me. I just relocated / reconfigured / upgraded my mail server. Didn't realize it had buffered up all the previous failed sends and was going to blast them out as soon as every thing was correctly re-configured. Sorry, Rick

RE: Recommendations for JSP development tools?

2001-02-10 Thread Jefferson Oliveira Andrade
I agree! It is the best one. Second is Emacs/JDE. Any other thing is very expensive and does not provide great time saving feature. Jefferson. -Original Message- From: Rick Roberts [mailto:[EMAIL PROTECTED]] Sent: Saturday, February 10, 2001 9:34 PM To: [EMAIL PROTECTED] Subject: Re: Rec

Re: Recommendations for JSP development tools?

2001-02-10 Thread Rick Roberts
I just got back on the list, so forgive me if someone has already mentioned Forte4Java. I love it. Hchhh phoey on FrontPage. Rick - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTE

Re: IE Caching

2001-02-10 Thread Rick Roberts
Try this: <% response.setHeader("Pragma", "no-cache"); if( request.getProtocol().equals("HTTP/1.1") ) {   response.setHeader("Cache-Control", "no-cache"); } %> I hope it helps. It worked for me. Rick - To unsubscribe, e-mail:

Re: IE Caching

2001-02-10 Thread Rick Roberts
Try this: <% response.setHeader("Pragma", "no-cache"); if( request.getProtocol().equals("HTTP/1.1") ) {   response.setHeader("Cache-Control", "no-cache"); } %> I hope it helps. It worked for me. Rick - To unsubscribe, e-mail

Re: IE Caching

2001-02-10 Thread Rick Roberts
Try this: <% response.setHeader("Pragma", "no-cache"); if( request.getProtocol().equals("HTTP/1.1") ) {   response.setHeader("Cache-Control", "no-cache"); } %> I hope it helps. It worked for me. Rick - To unsubscribe, e-mail

RE: Recommendations for JSP development tools?

2001-02-10 Thread Michael Wentzel
> So I'm surprised that no one has mentioned Macromedia > UltraDev. Have people > used this and had bad experiences? > > We've used it some and we've also built extensions that add > support for more > J2EE-based development. Info on the extensions can be found at > http://www.unifyewave.com.

Re: Name of Apache "handler" for mod_jk

2001-02-10 Thread Filip Hanik
take a look at workers.properties Filip ~ Namaste - I bow to the divine in you ~ Filip Hanik Software Architect [EMAIL PROTECTED] www.filip.net - Original Message - From: "Ray Thomas" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, February 10, 2001 12:28 PM Subject: Name of

Name of Apache "handler" for mod_jk

2001-02-10 Thread Ray Thomas
I had Apache WebServer mapping requests for Servlets to jakarta-tomcat based on a url ending in "Servlet" with a LocationMatch directive in the Apache configuration containing SetHandler jserv-servlet and matching (.*)Servlet$ (i.e. a reg/ex matching anything ending in Servlet). I am trying to sw

W2k not processing JSP

2001-02-10 Thread James Leone
Searched through the mail archives and was having no luck getting an answer. I'm tyring to get tomcat working on Win2000 with IIS using the isapi_redirect.dll. I setup the redirect, following the documents step by step, and it seems to be configured fine. For some reason the embedded jsp is not

JSP 404 Problem

2001-02-10 Thread Matt Campbell
Hi All, Just started with Tomcat and I'm having a bit of trouble with JSPs. I have a webapp up and going that I've been using to play around with servlets, its all working fine. As far as I knew all I had to do to run JSPs was place the JSP file in the same directory as my HTML files, in thi

tomcat.bat file

2001-02-10 Thread wkc
Can some please tell me how to configure the tomcat.bat file?...since I am getting a NoClassDefFound error when I try to access the JSP examples..   Some please help?.

RE: Configuration of Tomcat

2001-02-10 Thread CPC Livelink Admin
  This means that the tools.jar file was not put in your classpath.  Ensure that the JAVA_HOME environment variable is set or modify your batch files to specify it directly.  Tools.jar contains the javac compiler which Jasper uses to compile the code it generates from the JSP file.   Regards

Configuration of Tomcat

2001-02-10 Thread wkc
I've followed the instructions regarding updating the tomcat.bat file to accomodate for the jdk home directory. However when trying to access a JSP example whilst having the tomcat server running the following error message appears in the DOS prompt:   unhandled error! You might want to con

Re: IE Caching

2001-02-10 Thread Jim Rudnicki
> IE and Tomcat are both running on my machine, there certainly are no > proxies or firewalls involved. > > I know IE is caching because the back button works even after shutting > Tomcat down. Ah, the BACK button. Read RFC 2616 which describes HTTP/1.1 and caching and the BACK button. After d