Re: Need Suggestion

2009-07-27 Thread alee amin
thanks andre. I will definitely do it on my own. I am just asking help - where to start from and what guidelines i should follow. Is there any other approach? ..alee http://techboard.wordpress.com On Mon, Jul 27, 2009 at 5:09 PM, André Warnier wrote: > alee amin wrote: > >>

Re: Need Suggestion

2009-07-27 Thread alee amin
lol .. i need the suggestion .. not looking for someone to do it on my behalf :p ..alee http://techboard.wordpress.com On Mon, Jul 27, 2009 at 5:01 PM, Martin Gainty wrote: > > at last count at least 100 folks on the list can easily accomplish this for > you ..myself included > what has your e

Need Suggestion

2009-07-27 Thread alee amin
I have been assigned task to create a mechanism for multiple url sign up pages against invite codes. the purpose is if user hit on http://www.mydomain.com/invite/circket he should be redirected to http://www.mydomain.com/signup?invite=cricket http://www.mydomain.com/invite/soccer he should be redi

Re: Editing startup.sh - help

2009-07-22 Thread alee amin
thanks guys. it worked like charm :) ..alee http://techboard.wordpress.com On Wed, Jul 22, 2009 at 6:53 PM, Konstantin Kolinko wrote: > org.apache.jasper.compiler.Parser.STRICT_QUOTE_ESCAPING=false >

Editing startup.sh - help

2009-07-22 Thread alee amin
I am trying to add the following option for tomcat startup in startup.sh file JAVA_OPTS=$JAVA_OPTS: -Dorg.apache.jasper.compiler.Parser.STRICT_QUOTE_ESCAPING=false It's added at line # 36 of startup.sh and then i run the tomcat from terminal by issuing ./startup.sh command. and it gives me error -

Re: Configuring Apache Web Server with Tomcat

2009-07-15 Thread alee amin
able on port 80, you have > two options: > > 1. Get rid of httpd and configure a connector of tomcat to listen on port > 80 > 2. Configure mod_jk for your apache httpd to connect to tomcat. > > --David > > alee amin wrote: > > I am using Tomcat6 but i could not find any

Re: Configuring Apache Web Server with Tomcat

2009-07-14 Thread alee amin
oblem). PLEASE tell me which properties should i fix so that i may get tomcat and apache working. ..alee http://techboard.wordpress.com On Tue, Jul 14, 2009 at 9:54 PM, Christopher Schultz < ch...@christopherschultz.net> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > >

Configuring Apache Web Server with Tomcat

2009-07-14 Thread alee amin
I am trying to configuring apache webserver with tomcat using AJP but i am not sure am i doing it right or not. Here are the steps that i followed - Enabled required module in httpd.conf file LoadModule proxy_module modules/mod_proxy.so LoadModule proxy_ajp_module modules/mod_proxy_ajp.so - Ad

Re: Tomcat Security Problem

2008-02-07 Thread alee amin
I have placed the following configuration in server.xml file after reading from tomcat site ... ... But it is not allowing me to log in. On Feb 8, 2008 11:26 AM, alee amin <[EMAIL PROTECTED]> wrote: > actually i am not able to

Re: Tomcat Security Problem

2008-02-07 Thread alee amin
actually i am not able to get what you mean by context? should i insert it in conf/server.xml or somewhere else. It is confusing me. On Feb 7, 2008 8:59 PM, Caldarale, Charles R <[EMAIL PROTECTED]> wrote: > > From: alee amin [mailto:[EMAIL PROTECTED] > > Subject: Re: Tomca

Re: Tomcat Security Problem

2008-02-07 Thread alee amin
7, 2008 8:08 PM, Caldarale, Charles R <[EMAIL PROTECTED]> wrote: > > From: alee amin [mailto:[EMAIL PROTECTED] > > Subject: Tomcat Security Problem > > > > Application 2 has form based security and for some > > enhanced security i have added the "realm"

Tomcat Security Problem

2008-02-07 Thread alee amin
I have 1 tomcat server (5.5) and i have deployed 2 independent applications on it. Application 1 has security, which is implemented using BASIC AUTHENTICATION mode of tomcat. defining the username and password in conf/tomcat-users.xmlfile. Application 2 has form based security and for some enhanc

Re: Default page for some path

2007-10-04 Thread alee amin
page. Do you mean that giving a page in welcome page list will open the page on this path? On 10/4/07, Mark Thomas <[EMAIL PROTECTED]> wrote: > > alee amin wrote: > > Hi, > > > > there is some path exist on my website say .. > > http://localhost:8080/project/

Default page for some path

2007-10-04 Thread alee amin
Hi, there is some path exist on my website say .. http://localhost:8080/project/admin/ .. i wan that when user enter this url a default page should open which is one th e following path .. http://localhost:8080/project/admin/admin-menu.do .. what web.xml entry should i have to make? my all pages

small-icon and large-icon issue

2007-09-25 Thread alee amin
Hi, I have following entry in my web.xml /images/bee_ico.jpg /images/bee_ico.jpg It displays the icon in address bar if i browse the web on MozillaFireFox. But if i browse the same web using IE it does not display any icon. Moreover, if i deploy it to to internet server, it shows "tomc

Re: Filter on j_security_check or Alternate way

2007-09-19 Thread alee amin
filter can check for the existence of a > request.getUserPrincipal() && > session.getAttribute("didInitializeSession") to see if you need to do > any special setup work. > > -Tim > > alee amin wrote: > > Hi, > > > > I have implemented form based security o

Filter on j_security_check or Alternate way

2007-09-19 Thread alee amin
Hi, I have implemented form based security on web app using JDBCRealm in server.xml file. It has been implemented. Now i want to use some pre-req before accessing any page in secure area say (faces/secure/main.xhtml). My index page redirect to faces/secure/main.xhtml where it ask for login and th

Tomcat Security - implementing custom security

2007-09-18 Thread alee amin
Hi, I was able to implement the form based tomcat security on my web app. It was good. But because of some restriction from client i need to modify it. The password is placed as in encryppted form in DB, so i can not rely on tomcat "authenticate" method which simple "select" the username/password