Re: [ANN] Apache Tomcat 4.1.29 Stable and Apache Tomcat 5.0.14 Beta released

2003-11-02 Thread Sriram N
Hi: HAve you looked at http://jakarta.apache.org/tomcat/tomcat-4.1-doc/BUILDING.txt ? This file contains information on building against different versions of Xerces. I have a dim recollection that the Xerces was changed recently, though I dont' remember if I read this for the 5.x series or the 4

Virtual host and app

2003-11-02 Thread Javier
Hi I'm new to Tomcat 5 and I trying to get my first virtual host working. Then I tried to make a test by simply make a HelloWorld servlet deployed in PruebaJavier directory (below webapps) and I configured Tomcat like this: host in server.xml

Problems launching Tomcat 4.1.29...

2003-11-02 Thread Sean Dockery
It appears that Tomcat 4.1.29 brings the MBeans architecture (from Tomcat 5.x) into its invocation process. I'm not sure if it was intentional to bring the MBeans architecture into Tomcat 4.1.x or not... I discovered this when I attempted to start Tomcat 4.1.29 using the Sysdeo Tomcat Launcher pl

Re: Virtual host and app

2003-11-02 Thread Sean Dockery
You need a Context node in your Host for the default context. "Javier" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > Hi > > I'm new to Tomcat 5 and I trying to get my first virtual host working. > > Then I tried to make a test by simply make a HelloWorld servlet deployed in > Pru

Problems launching Tomcat 4.1.29...

2003-11-02 Thread Sean Dockery
Sorry if this is a mailing list repost, I attempted to post this through gmane.org and received a message bounced error from the Jakarta list server. Sean Dockery Certified Java Web Component Developer [EMAIL PROTECTED] "Sean Dockery" wrote in message news:<[EMAIL PROTECTED]>... > It appears that

Re: [ANN] Apache Tomcat 4.1.29 Stable and Apache Tomcat 5.0.14 Beta released

2003-11-02 Thread Luigi Bai
Sriram, I have to admit I'm impressed by how politely you said RTFM. :-) You're right; I had gotten out of the habit of reading the BUILDING file, and I'd forgotten it was there. I'll make sure all my dependencies match up by version and will try again. My guess is that I won't need to rebuild

Re[2]: Virtual host and app

2003-11-02 Thread Javier
On 02/11/2003 at 13:34 Sean Dockery wrote: >You need a Context node in your Host for the default context. > Thanks for your reply. I've tried to get a Context setting in many ways but I give up... If I've my application in webapps +--PruebaJavier +--images +--WEB-INF +--classes

RE: Re[2]: Virtual host and app

2003-11-02 Thread Sean Dockery
The context path, or simply path, is the logical path under which your application is deployed. The context path is part of the URL that is passed to the web browser. For example: http://localhost:8080/path/ docBase is the physical path in the file system where your web application is located.

Re: Can use Ant to deploy to localhost

2003-11-02 Thread Sean Dockery
Or use 127.0.0.1 instead of localhost as the machine name. "Mike Klein" <[EMAIL PROTECTED]> wrote in message news:<[EMAIL PROTECTED]>... > Steven Woody wrote: > > >I'v not managed to deploy an application to Tomcat using Ant's task. It always reports a UnknownHostNameException. I'v checked the

Re: [ANN] Apache Tomcat 4.1.29 Stable and Apache Tomcat 5.0.14 Beta released

2003-11-02 Thread Sriram N
Luigi, Creating a Maven script would be a great idea. Since I've never used Maven before, this should give me something to start learning Maven with. -- Sriram --- Luigi Bai <[EMAIL PROTECTED]> wrote: > Sriram, > > I have to admit I'm impressed by how politely you said RTFM. :-) You're > right

Does anyone use Maven to build Tomcat ?

2003-11-02 Thread Sriram N
Hello: Does anyone in our group use Maven to build Tomcat with ? I'm trying to learn Maven, and would appreciate any kickstart that I get. Thanks, -- Sriram __ Do you Yahoo!? Exclusive Video Premiere - Britney Spears http://launch.yahoo.com/promos/britneyspears/

Servlet context in tomcat cluster.

2003-11-02 Thread Antony Paul
Hi, I need a quick answer. In Tomcat clustered environment(I dont know the configuration) is it possible to access the same servlet context on different machines from jsp and servlets. Is there any special coding required to do this. I wnat to put an object in the servlet context which is to be acc

Basic and Form authhentication in the same webapp (revisited). Request for opinions

2003-11-02 Thread Vincent Aumont
Hello, I need your opinion on a solution I found to allow a single webapp to support two authentication modes. The application Im working on has two types of clients: HTML and WML. The controller (Struts) can forward a request to the appropriate JSP, depending on the clients type. WML client

Design advice needed.

2003-11-02 Thread Antony Paul
Hi all, I need a replacement for row level locking in database. The requirement is if two users are updating the same row of a table only the user who updates first will be made to database second user must get a failed message. This can be done using row level locking. But it allows only one u

RE: Design advice needed.

2003-11-02 Thread Johan Kok
Anthony, Did you consider reading the record without locks, and when an updated are made, to take a write-lock, check that the original record are still the same and then apply, otherwise fail. Your intentions might not work unless all writes are passed through the container, as Oracle will not h

Re: Tomcat Problem

2003-11-02 Thread Sriram N
Hello: Please post queries related to Tomcat's usage to the Tomcat-user mailing list. You will have a bigger audience there to help you get started with Tomcat. 1. Have you read the application developer's guide ? http://jakarta.apache.org/tomcat/tomcat-4.1-doc/appdev/index.html It is also instal