JOnAS Application Server

2001-11-03 Thread Ray Madigan
Has anyone attempted to connect the Tomcat 4.0 server to a JOnAS application server. If you have tired i could use some guidance. Any help would be appreciated. Thanks RayM -- To unsubscribe: For additional commands: Troubles with the li

tomcat archive location?

2001-11-03 Thread Eric Strain
I need to search the archives for information on TC, anyone here know the address? Thanks. _ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp -- To unsubscribe: For additional

NoClassDefFoundError ..?

2001-11-03 Thread Terje Torkelsen
I've just installed Tomcat 4.0.1 on a Linux system with Apache 1.3.20 running. But when Im trying to start Tomcat it wont work. When I run dtomcat4 debug I get this message: Using CLASSPATH: /var/tomcat4/bin/bootstrap.jar:/usr/local/j2sdk1.3.1/lib/tools.jar Using CATALINA_BASE: /var/tomcat4 Usin

RE: javascript access protection.

2001-11-03 Thread Deacon Marcus
Hi, > -Original Message- > From: Thierry RAIBAUT [mailto:[EMAIL PROTECTED]] > Sent: Saturday, November 03, 2001 12:08 PM > To: [EMAIL PROTECTED] > Subject: javascript access protection. > > > Hello, > > could somebody explain me how is it possible to protect some > ressources from direct

javax.servlet.ServletException

2001-11-03 Thread Hostmaster of the day
I'm still trying to remote access to our mySQL database in Baltimore. The following error occurs Cannot connect to MySQL server on www.domain.com:3306. Is there a MySQL server running on the machine/port you are trying to connect to? (java.security.AccessControlException) Yes of course it is.

Re: Newbie-Installation

2001-11-03 Thread Charles Webber
Check out the web for mod_jk. Here's a link to the jakarta site that may help. http://jakarta.apache.org/tomcat/tomcat-3.3-doc/mod_jk-howto.html It's easier than you think to integrate Tomcat with Apache. In your httpd.conf, include a line like: Include $TOMCAT_HOME/conf/mod_jk.conf-auto Make su

Re: javascript access protection.

2001-11-03 Thread Pier Fumagalli
Thierry RAIBAUT at [EMAIL PROTECTED] wrote: > Hello, > > could somebody explain me how is it possible to protect some ressources from > direct access. > > I think about a javascript directory. > This directory has to be accessed by some JSP pages, but I do not want the > user to access this dir

Newbie-Installation

2001-11-03 Thread Joel
Dear, I am trying to install Tomcat 3.3 in Linux. I have downloaded Tomcat 3.3 tar.gz Need I download "jakarta-servletapi.tar.gz" What is it meant for? Also I need to integrate Tomcat with Apache using mod_jk My processor is AMD K6 with the type i586. >From where I will get a mod_jk.so fo

javascript access protection.

2001-11-03 Thread Thierry RAIBAUT
Hello, could somebody explain me how is it possible to protect some ressources from direct access. I think about a javascript directory. This directory has to be accessed by some JSP pages, but I do not want the user to access this directory directly with the browser by setting the javascript

Re: Mod_webapp configuration

2001-11-03 Thread Pier Fumagalli
Nikola Milutinovic at [EMAIL PROTECTED] wrote: > Parashar, Hitesh wrote: > >> What is the time-frame for this change to be in? >> >> >>> It will be supported in upcoming releases by mod_webapp, all static content >>> (so the one not associated with a filter, with a servlet, or with security >>

Re: MVC in Tomcat is hard

2001-11-03 Thread Micael Padraig Og mac Grene
Lo, Evil. You can look at Struts, as suggested, or take a look at David Geary's new book on taglibs, with it's sample app in the last (I think) chapter. He has everything you are asking for precoded. Micael -Original Message- From: Dr. Evil <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] <[

MySQL datasource configuration in server.xml

2001-11-03 Thread Andrius
Hello, I'm newbie and i need help. can anyone tell me how to configure JNDI resource in server.xml for database connection factory. DB: MySQL; TC: 4.0.1). This is an example of such config for Hypersonic: usersa password serverName

Re: Mod_webapp configuration

2001-11-03 Thread Nikola Milutinovic
Parashar, Hitesh wrote: > What is the time-frame for this change to be in? > > >>It will be supported in upcoming releases by mod_webapp, all static content >>(so the one not associated with a filter, with a servlet, or with security >>constraints) will be served automagically by Apache. Pier,

MySQL DataSource param in server.xml (TC 4.0.1)

2001-11-03 Thread Andrius
Hi, I'm using MySQL and i need to configure DataSource resource parameter in server.xml. I wonder what to input here: driverName ? .. thanx for any response. -- To unsubscribe: For additional commands: Troubles with the list:

Re: Tomcat 4.0/Apache 1.3.22/WebApp problem

2001-11-03 Thread Ilic Aleksandar
Hi, I found some solution that works for me. I make link in apache document dir that points to dir of some tomcat app and it works fantasticly:)) ln -s $TOMCAT_HOME/webapps/examples /var/www/html/examples Ilic Aleksandar > [org.apache.catalina.

Re: Tomcat 4.0/Apache 1.3.22/WebApp problem

2001-11-03 Thread Ilic Aleksandar
HI, I have posted several days ago the same question with same problem. I try today again to connect apache and tomcat and everything I got are errors in tomcat'log for Service Tocmat-Apache : 2001-11-03 15:22:46 [org.apache.catalina.connector.warp.WarpConnector] Connection from localho

Tomcat's not running Re: Strange problem in Tomcat 3.2.1

2001-11-03 Thread Sriram Narayanan
Loks like Tomcat's not processing the JSPs , and Apache's just lifting the JSP's and service them to you. A simple check to see it tomcat's been activated is to check the Tomcat logs. Also, there's no need to configure anything on the browser side when viewing JSPs. Jsps are processed on the s

Re: Additionnal classpath

2001-11-03 Thread Sriram Narayanan
Hi, This works under Windows for batch files, should work for unix shell scripts too. If you are using the batch file to load Tomcat, you might have to alter this file, as the batch file sets aside the system classpath and sets up it's own class path. When you use the shutdown batchfile, the T

Re: MVC in Tomcat is hard

2001-11-03 Thread Sriram Narayanan
Hi, I'd just visited the jakarta site, and they have something called "Struts". Looks like this project may have taken care of most of your requirements. Sriram 03/11/2001 3:25:22 PM, "Dr. Evil" <[EMAIL PROTECTED]> wrote: > >I'm trying to use the Model-View-Controler design approach in Tomcat

Re: MVC in Tomcat is hard

2001-11-03 Thread Mika Goeckel
Hi Dr.Evil, have you had a look on the jakarta-struts project? At a first glance it may look a little bit complicated, but it implements a MVC approach and could possibly deliver a bunch of already written code for your project. Getting started is very easy, it's sufficient to place (one of) the

Re: MVC in Tomcat is hard

2001-11-03 Thread Sriram Narayanan
I've not tried this yet, but here's another idea (Note : I'm absolutely new to Web related stuff, and have not idea on how to use taglibs...) -> Submit a request to the JSP with a parameter. Perhaps a hidden field. -> The JSP examines the request for this field, and then forwards to the servlet

Re: MVC in Tomcat is hard

2001-11-03 Thread Sriram Narayanan
Hi, Umm... What I do in such cases is contact a servlet, let it to all the state related stuff, and then it forwards the request to the JSP. The JSP then uses the Object placed into the session by the servlet, and renders it. I don't know if this is acceptable as MVC though. Sriram 03/11/2001

Re: Mod_webapp configuration

2001-11-03 Thread Adam Fowler
Hello, OK Pier - I'll take a look, but I'm not promising anything. I need to get more familiar with TC4 and its bits anyway. 8o) Cheers, Adam. On Sat, 2001-11-03 at 02:58, Pier Fumagalli wrote: > (Ok, today I _have_ to say this :) There is no time frame... Some of the > code is already there

MVC in Tomcat is hard

2001-11-03 Thread Dr. Evil
I'm trying to use the Model-View-Controler design approach in Tomcat. Here's what I'm trying to do: I'll put the Model stuff in a servlet. The View stuff will go into a jsp page (actually a custom tag lib). What I need to do is, when I view a page like foo.jsp, the servlet needs to get invoked

Strange problem in Tomcat 3.2.1

2001-11-03 Thread sudhir agrawal
Hi all, I am facing a very strange problem with tomcat 3.2.1 i have integrated it with Apache 1.3.12 whenever i made a request to load a jsp file from browser .browser open a popup window to download the file. What my be the problem.My browser Mime Type is configured to accept jsp file. I thin

servlet-mappings

2001-11-03 Thread Dr. Evil
I'm trying to do some fancy stuff with servlet mappings. This mechanism leaves a lot to be desired; specificly, it would be amazingly useful to be able to do a getRequestDispatcher in some way that bypasses the servlet mappings in the web.xml file. Alternatively it would be extremely useful to