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

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 mgai...@hotmail.com wrote: at last count at least 100 folks on the list can easily accomplish this for you ..myself included

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 a...@ice-sa.com wrote: alee amin wrote: I have

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: 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 knst.koli...@gmail.comwrote: org.apache.jasper.compiler.Parser.STRICT_QUOTE_ESCAPING=false

Re: Configuring Apache Web Server with Tomcat

2009-07-15 Thread alee amin
to be available 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 thing to put in Connector

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 -

Re: Configuring Apache Web Server with Tomcat

2009-07-14 Thread alee amin
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 Alee, On 7/14/2009 10:44 AM, alee amin wrote: I am

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 for the database in conf/server.xml file. Where

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: Tomcat Security Problem How

Re: Tomcat Security Problem

2008-02-07 Thread alee amin
=user_password userRoleTable=user_role roleNameCol=role_name digest=MD5/ /context /Host 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

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

Re: Default page for some path

2007-10-04 Thread alee amin
. 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/admin/ .. i wan that when user enter this url a default

small-icon and large-icon issue

2007-09-25 Thread alee amin
Hi, I have following entry in my web.xml icon small-icon/images/bee_ico.jpg/small-icon large-icon/images/bee_ico.jpg/large-icon /icon 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,

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

Re: Filter on j_security_check or Alternate way

2007-09-19 Thread alee amin
() 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 on web app using JDBCRealm in server.xml file. It has been implemented. Now i want to use some pre-req before accessing any

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