RE: jndi.properties

2006-05-03 Thread abdurrahman sahin
? = InitialContext jndiContext = new InitialContext(); = On 5/3/06, abdurrahman sahin <[EMAIL PROTECTED]> wrote: > > i think , it is actully related to where you are looking for. > i think you can put it anyware as long as the diretory you put it is > ac

RE: jndi.properties

2006-05-03 Thread abdurrahman sahin
i think , it is actully related to where you are looking for. i think you can put it anyware as long as the diretory you put it is accessible. http://asahin.net private static final String CONFIG_FILE="resources/jndi.properties"; FileInputStream fis = new FileInputStream(CONFIG_FILE);

RE: Preload of servlet does not work with Tomcat 5.5.15

2006-04-24 Thread abdurrahman sahin
hi; i have a servlet with tag and no mapping is defined and it is working with tomcat 5.0.28 http://asahin.net -Original Message- From: Markus Schönhaber [mailto:[EMAIL PROTECTED] Sent: Monday, April 24, 2006 9:57 AM To: Tomcat Users List Subject: Re: Preload of servlet does not work w

RE: iis 6.0 + apache-tomcat 5.0.28

2006-04-17 Thread abdurrahman sahin
hi; it looks like you have different application versions, please ensure that you have the same java version all around the whole system. http://asahin.net -Original Message- From: Sergio Gonzalez Ramos [mailto:[EMAIL PROTECTED] Sent: Monday, April 17, 2006 3:46 PM To: Tomcat Users List

RE: Remote User with request.getRemoteUser()

2006-04-10 Thread abdurrahman sahin
hi; why dont you try to print all http-headers, so that you can see each header and its corresspoing value. http://asahin.net -Original Message- From: Sergio Stateri Jr [mailto:[EMAIL PROTECTED] Sent: Monday, April 10, 2006 6:11 PM To: users@tomcat.apache.org Subject: Remote User with re

RE: Using Tomcat over NFS over multiple hosts, want to separate locations of directories

2006-02-09 Thread abdurrahman sahin
you may try to manually run tomcat via a script, that may help you to assign tomcat variables seperately i run tomcat via a script (guistart.sh) containing that CATALINA_HOME=$ARGELA_RUN_HOME/SANE_GUI_WEB/tomcat export CATALINA_HOME cd $CATALINA_HOME/bin java -Dcatalina.base=$CATALINA_HOME -Dcatal

RE: percent sign in URI

2006-02-01 Thread abdurrahman sahin
or /* which will create a new HttpServletRequest Object with parameters you parse in your way from the getQueryString() above 3) You can open tomcat source, patch the url decoder, and use it What ever solution is choosen, customer will be bound to a side effect of error handling in server. abdurra

RE: percent sign in URI

2006-02-01 Thread abdurrahman sahin
etails in RFC on how to handle badly shaped urls (like % not followed by 2 hex digits) and thus your urls should not rely upon this. Regards. abdurrahman sahin a écrit : >I realized apache2 web server properyl handles % sign in URIs, i need = >exact functionality on tomcat 5 too. >Wh

RE: percent sign in URI

2006-02-01 Thread abdurrahman sahin
hi; my friend tried it, reported that it didn't work. abdurrahman -Original Message- From: Aurélien DEHAY [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 01, 2006 11:29 AM To: Tomcat Users List Subject: Re: percent sign in URI Hello. abdurrahman sahin wrote: > I realized

percent sign in URI

2006-02-01 Thread abdurrahman sahin
I realized apache2 web server properyl handles % sign in URIs, i need = exact functionality on tomcat 5 too. When I try to pass a parameter containing % sign, the parameter value on = the server seems null. like http://localhost:8080/aSite/aPage?query=hi%everybody Tomcat 5 cannot handle that, Is th