Re: Applets with IE - difference between Tomcat and plain HTML?

2009-03-20 Thread Andrei Tchijov
This is very very true. I spend eons mocking around with all kind of / combinations, but in the end is the only way to do it in cross-browser way. On Mar 20, 2009, at 10:15 , André Warnier wrote: Christopher Schultz wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 André, On 3/20/20

Re: versus <% include %>

2008-06-03 Thread Andrei Tchijov
they are identical. you will want to use if you care to have your JSP pages in form of valid XML. On Jun 3, 2008, at 12:52 , Jonathan Mast wrote: I'm wondering if the <%@ include file="somefile.jsp" %> method of including a file is more error prone (on Tomcat) than page="somefile.jsp" flus

Re: Open Source Process

2008-02-25 Thread Andrei Tchijov
On Feb 25, 2008, at 15:35 , Uzma Khawaja wrote: Hi, I am a student and doing a research on open source processes. I would be thankful if some one can answer few simple questions to help me in my research. 1. If someone wants to work on a feature or bug, is he/she required to get permiss

Re: tomcat not working with HTTPS

2008-01-11 Thread Andrei Tchijov
most likely u do not have keychain and/or there is no suitable certificate in the keychain read this http://techtracer.com/2007/09/12/setting-up-ssl-on-tomcat-in-3-easy-steps/ On Jan 11, 2008, at 14:51 , Neha Agrawal wrote: hi i am new user for tomcat. i have installed tomcat5.5 on debian

Re: Making singleton "visible" to valve and web-app <>

2007-11-14 Thread Andrei Tchijov
Please kindly ignore my e-mail. The second I have send it, I discovered that I have 2 copies of XYZFactory jar files (one in common/ lib and one in web-app/WEB-INF/lib). As soon as I nefed web-app version, things work they way they should On Nov 14, 2007, at 12:36 , Andrei Tchijov wrote

Making singleton "visible" to valve and web-app

2007-11-14 Thread Andrei Tchijov
I am trying to make singleton class (which is essentially factory) available to my valve and my web-app. I thought that all I need to do is to put jar file with this singleton class in common/lib. For some reason it does not work. It looks like my class gets loaded twice (once when servl

Re: Using JNDI. java:comp .... not defined?

2007-10-22 Thread Andrei Tchijov
I am using 5.5.20 On Oct 22, 2007, at 10:25 PM, foo shyn wrote: Hmm which Tomcat version you are using? For Tomcat 4.1 AFAIK you have to put a link in your application's web.xml to the global resources in order for your application to access it. HTH FooShyn Mark Thomas wrote: A

Using JNDI. java:comp .... not defined?

2007-10-22 Thread Andrei Tchijov
Hi, I guess I am missing something very very basic, but I can not see what it is. I am trying to make some resources available via JNDI. I have put appropriate "GlabalNamingResources/Resource" into my server.xml ( and I think I did it properly - at least tomcat is not complaining about

Re: Using RequestDispatcher.include() outside of Request/Response cycle.

2007-10-09 Thread Andrei Tchijov
ve there's nothing in the specs that prohibit such (ab)use, so it should work with any servlet container. Greetings, Lilianne E. Blaze Andrei Tchijov wrote: Hi, I have a valve which detects some events in life-cycle of a web application ( like successful login/failed login/logout ) and invokes

Re: Using RequestDispatcher.include() outside of Request/Response cycle.

2007-10-09 Thread Andrei Tchijov
quot; JSP application. Audit is the only spot which required some java coding, with this JSPAudit valve I can code it once and then delegate all actual audit business logic to JSP writer. On Oct 9, 2007, at 5:54 PM, Christopher Schultz wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA

Re: Using RequestDispatcher.include() outside of Request/Response cycle.

2007-10-09 Thread Andrei Tchijov
. And besides that one issue, this idea works just fine. On Oct 9, 2007, at 4:52 PM, Christopher Schultz wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Andrei, Andrei Tchijov wrote: I can (and do) add session listener, so it is not a problem to detect that session timed out. The problem

Using RequestDispatcher.include() outside of Request/Response cycle.

2007-10-09 Thread Andrei Tchijov
nformation from Request, so this Request/Response objects only need to be able to make RequestDispatcher.include() happy. Your thoughts will be highly appreciated, Andrei Tchijov - To start a new topic, e-mail: users@tomcat.apa

Re: .Net

2007-06-26 Thread Andrei Tchijov
Google for project MONO. This is open source version of .NET runtime On Jun 27, 2007, at 1:06 AM, Tolou Taherinia wrote: Hello all, Is it possible to run .Net application on Linux/appache server? Any help would be greatly appreciated. - All new Yahoo!

Re: Is it possible to introduce new authentication method without modifying tomcat?

2007-06-07 Thread Andrei Tchijov
een used)? Thanks, Andrei On Jun 7, 2007, at 9:51 PM, Bill Barker wrote: "Andrei Tchijov" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] I understand. My problem it twofold. In order to make an authentication decision ... - I need to have an access to some inf

Re: Is it possible to introduce new authentication method without modifying tomcat?

2007-06-07 Thread Andrei Tchijov
stated in my original post, I think that right place to put this kind of functionality is authenticator. My original question was, if it is possible to register new Authenticator without re-compiling Tomcat. On Jun 7, 2007, at 5:06 PM, Caldarale, Charles R wrote: From: Andrei Tchijov

Re: Is it possible to introduce new authentication method without modifying tomcat?

2007-06-07 Thread Andrei Tchijov
that I can not see how JAASRealm (or any Realm for that matter) can help me Andrei On Jun 7, 2007, at 4:47 PM, Caldarale, Charles R wrote: From: Andrei Tchijov [mailto:[EMAIL PROTECTED] Subject: Re: Is it possible to introduce new authentication method without modifying tomcat? Nowhere in

Re: Is it possible to introduce new authentication method without modifying tomcat?

2007-06-07 Thread Andrei Tchijov
Andrei Tchijov - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED

Re: Is it possible to introduce new authentication method without modifying tomcat?

2007-06-07 Thread Andrei Tchijov
t ever standard one is doing. Thnkx again, Andrei Tchijov On Jun 7, 2007, at 12:01 PM, Szabolcs Márton wrote: Hi! its an options, i use sometime. Create a filter. a class likes this. public class AuthenticationFilter implements Filter { private static Logger log = Logger.getLogger (

Is it possible to introduce new authentication method without modifying tomcat?

2007-06-07 Thread Andrei Tchijov
. It looks like this method: protected abstract boolean authenticate(Request request,Response response,LoginConfig config) throws IOException; or AuthenticatorBase class is the best place to be. Your comments will be highly appreciated, Andrei Tchijov

Correct (any?) way to use custom Context class

2007-05-17 Thread Andrei Tchijov
to Host node. Out of desperation and because there is setContextClass method in StandradHost class ). Neither of these works. Any comments/suggestions/critic will be highly appreciated, Andrei Tchijov - To start a new topic, e