Re: "webapps" on Network Drive?

2008-08-25 Thread Michael Jouravlev
I never tried changing value in the HOST tag, I use DOCBASE in the CONTEXT tag instead. On Mon, Aug 25, 2008 at 12:04 PM, David Shreffler <[EMAIL PROTECTED]> wrote: > I'm having difficulties with a Tomcat installation. I am a high school > teacher installing Tomcat in a computer lab. I want to h

Re: What is Tomcat 6 status?

2007-06-29 Thread Michael Jouravlev
On 6/29/07, Johnny Kewl <[EMAIL PROTECTED]> wrote: As for not including every concievable library and framework, thank goodness or else it would be huge. TC supports a huge array of frameworks. Many people dont use tags, some like Struts, others prefer a pure MVC model... etc etc. Struts is not

What is Tomcat 6 status?

2007-06-28 Thread Michael Jouravlev
Tomcat 6 status is not quite clear from Tomcat website. I want to use the latest possible release because we need to lock on; upgrading later down the road would incur administrative complications. Tomcat 6 docs page says that "Apache Tomcat version 6.0 implements the Servlet 2.5 and JavaServer P

Re: Problem using Tomcat in Win98

2007-02-13 Thread Michael Jouravlev
On 2/13/07, Rahul Choubey <[EMAIL PROTECTED]> wrote: Dear Friends, I am having a problem using Tomcat in Windows 98.I am using Apache Tomcat 4.1.34 and I am getting the following error on starting Tomcat:- Syntax error The JAVA_HOME environment variable is not defined This environment v

Re: Restrict Session In One Browser!

2006-09-20 Thread Michael Jouravlev
On 9/20/06, Alexander Khoo <[EMAIL PROTECTED]> wrote: Dear users, Can anyone help on restricting 1 session per browser? what we are trying to archieve here is when the users sucessfully login to our server & establish a session, we want that session to lock in that current browser & when anoth

Re: Yet Another Threads & Servlets question but with a JSF twis

2006-08-30 Thread Michael Jouravlev
I suggest changing bgTask.run() to bgTask.start(). On 8/30/06, Geoff Davies <[EMAIL PROTECTED]> wrote: I have JSF managed bean running in a Tomcat 5.5 server on windows xp. The code in a nutshell is this: EndToEndThread etoE = new EndToEndThread(term,freq,year,month,period); bgTask = new Thread(

Re: [OT] RE: Internet Explorer different browser windows different session ID ????

2006-08-24 Thread Michael Jouravlev
http://support.microsoft.com/?kbid=240928 On 8/24/06, David Smith <[EMAIL PROTECTED]> wrote: Firefox on most environments I've seen search out a previously running instance and calls a new window on it when you attempt to open a new instance. IE just creates a new instance. Not sure what you w

Re: [ANNOUNCE] New article: The AjaxParts Taglib from Java Web Parts: AJAX for Java Developers the Easy (yet powerful) Way!

2006-07-26 Thread Michael Jouravlev
On 7/26/06, Frank W. Zammetti <[EMAIL PROTECTED]> wrote: Hi everyone, I've gotten a number of requests for an article on AjaxParts Taglib, and I finally got around to writing it :) You can check it out here: http://www.omnytex.com/articles If you have never heard of AjaxParts Taglib before, i

Re: Links to relative URL's from a JSP

2006-07-24 Thread Michael Jouravlev
On 7/24/06, David Smith <[EMAIL PROTECTED]> wrote: > My assumption is that JSP files are "rooted" in the WEB-INF directory and so must use the previous directory notation back up a directory to access the images contained the WebContent folder where everything else is. Nope. They are "rooted"

Re: BOOBIES!

2006-07-21 Thread Michael Jouravlev
Right, equality and stuff. Female audience, at least its non-lesbian part, apparently has not been catered for. This is easy to fix. Will "COCKS" be good enough? Thomas, have you explored CATALINA_HOME and CATALINA_BASE, they may point to different directories. I haven't tried your setup, but may

Re: Intermediate write in JSP

2006-07-18 Thread Michael Jouravlev
Try setting buffer size to (8x10^6/3x10^4)x500 == 135K. On 7/18/06, Abh N <[EMAIL PROTECTED]> wrote: Hi, I have requirement where in I have to fetch around 30k (size around 8MB) records from DB and render in xls. I am looping through the result set and then using response.getOutputStream

Re: problem with doPost method - executed twice

2006-06-30 Thread Michael Jouravlev
If you submit the form from form.onsubmit, return false to tell browser that the form has already been submitted. This is Javascript, not a Tomcat issue. On 6/30/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Hi all, I have not received any reply regarding the issue bellow. Please, any help i

Re: problem with doPost method - executed twice

2006-06-30 Thread Michael Jouravlev
Did the answer that posted four hours ago in your other thread with the same title not work for you? On 6/30/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Dear all, I have developed a web application that is running under tomcat 5.5.17 that is under windows XP. I have a servlet that retriev

Re: Application started/stopped notification

2006-05-11 Thread Michael Jouravlev
http://java.sun.com/j2ee/sdk_1.3/techdocs/api/javax/servlet/Servlet.html#init(javax.servlet.ServletConfig) http://java.sun.com/j2ee/sdk_1.3/techdocs/api/javax/servlet/Servlet.html#destroy() On 5/11/06, Asaf Lahav <[EMAIL PROTECTED]> wrote: A web service application I have which is running u

Re: Multiple browser windows sharing the same session - dirty hack solution

2006-05-11 Thread Michael Jouravlev
On 5/11/06, Peter Hubbard <[EMAIL PROTECTED]> wrote: how to allow individual browser windows and tabs to have individual session data. Is there a real solution for this, and if so could some kind soul please point me in the right direction? You can't on Firefox, but "one window -> one session"

Re: Relative Link Question

2006-04-17 Thread Michael Jouravlev
Unless you use special server-side tags, the path is resolved on client. The browser knows nothing about your context. It only knows the server name (myserver.com) and resource name (/images/pic.jpg). Leading slash means "starting from the root" and that how browser resolves the address. Not being

Re: Character Encoding : Unix vs Windows

2006-04-03 Thread Michael Jouravlev
On 4/3/06, Nigel Blake <[EMAIL PROTECTED]> wrote: > Problem : Creating a URL type with parameters that have a space > between them causes an IOException in a javabean when called from > Tomcat 5.0.0.27 on a Unix installation. Using the same bean and JSP > code causes no problem when invoked on the

Re: Can I generate JSP pages on the fly using this mechanism?

2006-03-31 Thread Michael Jouravlev
On 3/31/06, Gabriel Belingueres <[EMAIL PROTECTED]> wrote: > Hi, > > I'd like to write an application that, instead of deploying .JSP pages > into a context, I could deploy, let's say .xyz pages into a context > and add the necessary configuration to Tomcat that, when it receives a > request for an

Re: help please?

2006-03-27 Thread Michael Jouravlev
On 3/27/06, Asegid Debebe <[EMAIL PROTECTED]> wrote: > Dear all, I really need to complete a very "simple" web application which > demonstrate the MVC architecture fully. I would love to do it myself from > scratch but given the time I have, I can't!. I really appreciate if someone > can point me

Tomcat cluster and redirecting to the same address

2006-03-16 Thread Michael Jouravlev
Hello! How does redirect-after-post pattern work in clustered environment? In my case I need to redirect to exactly the same location, where the initial POST request was made from. How does this work in cluster, if at all? Afaik, the original address is load balancer's address. When requests reac

Tomcat 5-5-16, welcome page behaves strangely

2006-03-16 Thread Michael Jouravlev
I have a web app that runs perfectly under Tomcat4, but behaves a little strange under Tomcat5. Originally welcome page was defined as follows in web.xml: myStartPage.jsp Works as it supposed to in Tomcat4, the URL in address bar shows "/myStartPage.jsp" Same application in Tomcat5 shows p

Re: Error : Servlet is currently unavailable

2006-03-15 Thread Michael Jouravlev
On 3/15/06, Antonio Petrelli <[EMAIL PROTECTED]> wrote: > Anandi Vyagrapuri ha scritto: > > Hi , > > I have a servlet that i have placed in > > webapps/myapplication/WEB-INF/lib > > It is a .jar file. > > > > When i try to invoke the servlet, the jsp hangs. > > This is what i found in > > tomcat/lo

Re: How to upload war file

2006-03-13 Thread Michael Jouravlev
On 3/13/06, Nenad Bosanac <[EMAIL PROTECTED]> wrote: > Hi ! > I'd like to now how to upload war file in Tomcat. > I had one war file but i am not sure how to upload it. > Is there any way to upload it over Administartion tool? Easiest way: drop it into webapps directory, Tomcat5 will pick

Re: [OT] Question about licensing

2006-03-08 Thread Michael Jouravlev
The following post contains no value :-) On 3/8/06, Leon Rosenberg <[EMAIL PROTECTED]> wrote: > For process reasons the source code of > the libs will not be available > The jars would be free for copy, modification, usage, ^ How can you allow modific

[JSP 2.1] Deferred exressions in JSP tags

2006-03-07 Thread Michael Jouravlev
To what extent deferred EL expressions will be supported in JSP 2.1 and in Tomcat 6 in particular? After reading couple of introductory articles and the JSP2.1 spec I have understood that deferred expressions are possible in JSP tags. But I cannot make much from the following paragraph from the s