Re: Tomcat Experts - Need help with Cookie support in 6.0.18

2008-08-14 Thread Tim Funk
A cookie is composed of many parts such as: name, value, path, expiration, secure Cookie.setValue is only meant to set the value of the cookie. Your code had the lucky side effect of setting the path and the HttpOnly flag. If you wish to set a cookie with the HttpOnly flasg set - you need to

Re: Tomcat Experts - Need help with Cookie support in 6.0.18

2008-08-14 Thread KalChitown
ie cookie = new Cookie("sessionId", cookieValue); >> cookie.setVersion(1); >> response.addCookie(cookie); >> >> > > - > To start a new topic, e-mail: users@tomcat.apache.org > To unsubscribe, e-mail: [EM

Re: Tomcat Experts - Need help with Cookie support in 6.0.18

2008-08-14 Thread Tim Funk
With 6.0.18 : "; Path=/; HttpOnly" [literally] becomes part of the cookie value. [That it worked before was sheer luck.] -Tim KalChitown wrote: We recently upgraded from 6.0.14 to 6.0.18 due to an XSS security alert we received. The following code was working in 6.0.14 version but not in 6.0

Tomcat Experts - Need help with Cookie support in 6.0.18

2008-08-14 Thread KalChitown
pOnly "; Cookie cookie = new Cookie("sessionId", cookieValue); cookie.setVersion(1); response.addCookie(cookie); Thanks, Kal -- View this message in context: http://www.nabble.com/Tomcat-Experts---Need-help-with-Cookie-support-in-6.0.18-tp18980912p1898

RE: Configuring OpenJPA, need help

2008-07-08 Thread ericp56
rsistenceUnit(unitName = "CallScheduler") private @Resource(name="bean/OpenJPAEMF")OpenJPAEntityManagerFactory emf; private OpenJPAEntityManager em; In my functions, emf is still null. -- View this message in context: http://www.nabble.com

RE: Configuring OpenJPA, need help

2008-07-08 Thread Caldarale, Charles R
> From: ericp56 [mailto:[EMAIL PROTECTED] > Subject: RE: Configuring OpenJPA, need help > > initCtx.lookup("java:comp/env/OpenJPAEMF"); Try "java:/comp/env/OpenJPAEMF". Note the additional slash. - Chuck THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTH

RE: Configuring OpenJPA, need help

2008-07-08 Thread ericp56
ookup("java:comp/env/OpenJPAEMF"); Causes: javax.naming.NameNotFoundException: Name OpenJPAEMF is not bound in this Context What am I doing wrong now? -- View this message in context: http://www.nabble.com/Configuring-OpenJPA%2C-need-help-tp18341039p18343113.html Sent from th

RE: Configuring OpenJPA, need help

2008-07-08 Thread Caldarale, Charles R
> From: ericp56 [mailto:[EMAIL PROTECTED] > Subject: Configuring OpenJPA, need help > > I am not deploying a WAR, but individual files, so I can't use > META-INF/context.xml (I'm led to believe). Not true. Simply create the META-INF directory under your webapp deployment

Configuring OpenJPA, need help

2008-07-08 Thread ericp56
latively "green" at this. Can someone point me in the right direction? If that direction is through a 300 page manual, can you provide an example instead?:blush: Thanks, Eric -- View this message in context: http://www.nabble.com/Configuring-OpenJPA%2C-need-help-tp18341039p18341039.html

Re: ! Tomcat 500 error NEED HELP!

2008-05-09 Thread samk
See Thread at: http://www.techienuggets.com/Detail?tx=9415 Posted on behalf of a User type Exception report message description The server encountered an internal error () that prevented it from fulfilling this request. exception javax.servlet.ServletException at com.enigma.sdk.web

Re: need help with "connectionTimeout" and "connection_pool_timeout"

2008-04-25 Thread Rainer Jung
Hello Pavel, Pavel Pragin wrote: 1)I am having an issue withTomcat running out of threads it seems: OS? Versions? ps -dfm | grep tomc tomcat 16983 1 0 Apr23 ?00:01:39 /usr/java/bin/java -Xmx2000m -Djava.awt.headless=true -Djava.util.logging.manager=org.apache.juli.ClassLoader

need help with "connectionTimeout" and "connection_pool_timeout"

2008-04-24 Thread Pavel Pragin
Hello, 1)I am having an issue withTomcat running out of threads it seems: ps -dfm | grep tomc tomcat 16983 1 0 Apr23 ?00:01:39 /usr/java/bin/java -Xmx2000m -Djava.awt.headless=true -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager -Djava.util.logging.config.file

Re: Please Need Help ...... :(

2008-03-24 Thread Andrew Miehs
On 24/03/2008, at 3:14 PM, karthikn wrote: >>How many users are we talking about here?! About 500+ users and increasing every month Total users online - ok - not a probelm >>How many authentications are you doing a second?! Since this is a WIFI / AAA application for Students locally on

Re: Please Need Help ...... :(

2008-03-24 Thread Andrew Miehs
On 24/03/2008, at 3:09 PM, karthikn wrote: Hi Thx for the reply We need to Configure TOMCAT 's ROOT to APCHE2.x for Load balancing. mod_proxy_ajp Problem Load on this single TOMCAT is building up the CPU for 100% ,as the subscribers are increasing. Read other mail from me. Solution We

Re: Please Need Help ...... :(

2008-03-24 Thread Hassan Schroeder
On Mon, Mar 24, 2008 at 6:30 AM, karthikn <[EMAIL PROTECTED]> wrote: > Solution > We need to bring in the Load Balancer with Multiple TOMCAT /APACHE2.x > server. > Is this possible ? Yes -- http://httpd.apache.org/docs/2.2/mod/mod_proxy_balancer.html HTH, -- Hassan Schroeder --

Re: Please Need Help ...... :(

2008-03-24 Thread karthikn
Hi Thx for the reply We need to Configure TOMCAT 's ROOT to APCHE2.x for Load balancing. Problem Load on this single TOMCAT is building up the CPU for 100% ,as the subscribers are increasing. Solution We need to bring in the Load Balancer with Multiple TOMCAT /APACHE2.x server. Hence

Re: Please Need Help ...... :(

2008-03-24 Thread Andrew Miehs
On Mon, 2008-03-24 at 19:00 +0530, karthikn wrote: Problem Load on this single TOMCAT is building up the CPU for 100% ,as the subscribers are increasing. How many users are we talking about here?! That is a a LOT of users for the 5 or 6 requests before they are authenticated? How many au

Re: Please Need Help ...... :(

2008-03-24 Thread Oscar Mechanic
Hi Sorry not going to answer the question you asked but have worked on this type of solution many times. The problem is your redirects if a virus gets on the network it will clobber the server as it tries to get outside. All the client MS updates is over HTTP that will clobber it. You need to l

Please Need Help ...... :(

2008-03-24 Thread karthikn
Hi Thnx for the initial Reply The Life Cycle for the WIFI custom web application for AAA is as follows. 1) User Types "www.xyz.com" 2) CISCO ROUTER Intercepts this requests and reroutes to a WEB container as http://: or http:// Only for AAA to be processed. [ Note: CISCO Router

Re: Need help with CGI in a directory OTHER than WEB-INF

2008-02-21 Thread Mark Thomas
JohnSka7 wrote: We've gone ahead and followed all of the instructions to get Tomcat to recognize cgi and execute it, but the problem is that our main application isn't within the Tomcat\webapp\ROOT directory...it's in a directory called PowerSchoolPremiere\Data\custom\webapp\. Can anyone give

Need help with CGI in a directory OTHER than WEB-INF

2008-02-21 Thread JohnSka7
e, it doesn't execute the file. I have also confirmed that perl is working by running my script from the command line without any problems. Thanks! -- View this message in context: http://www.nabble.com/Need-help-with-CGI-in-a-directory-OTHER-than-WEB-INF-tp15618539p15618539.html Sent f

Re: Need help with multiple sites in server.xml file, almost there but not quite!

2008-02-09 Thread Pid
bump what? your message starts here >>> charley wrote: bump? anyone? - 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: Need help with multiple sites in server.xml file, almost there but not quite!

2008-02-09 Thread charley
bump? anyone? - 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: Need help with multiple sites in server.xml file, almost there but not quite!

2008-02-09 Thread chazman113
bump -- View this message in context: http://www.nabble.com/Need-help-with-multiple-sites-in-server.xml-file%2C-almost-there-but-not-quite%21-tp15217741p15372039.html Sent from the Tomcat - User mailing list archive at Nabble.com

Need help with multiple sites in server.xml file, almost there but not quite!

2008-01-31 Thread chazman113
="/usr/java/tomcat-5.5/webapps/railo-2.0.0.026"+ +Context path="" docBase="."/+ +Alias+www.aquariumdb.com+/Alias+ +/Host+ -- View this message in context: http://www.nabble.com/Need-help-with-multiple-sites-in-server.xml-file%2C-almost-there-but-not-q

Re: Too many open files exception under heavy load - need help!

2008-01-25 Thread Rainer Jung
Tobias Schulz-Hess wrote: Hi Rainer, Rainer Jung schrieb: Hi, 1) How many fds does the process have, so is the question "why can't we use all those 4096 fds configured", or is it "Where do those 4096 fdsused by my process come from"? The latter. We can actually see the 4096 fds are used (by p

Re: Too many open files exception under heavy load - need help!

2008-01-25 Thread Tobias Schulz-Hess
Hi Rainer, Rainer Jung schrieb: > Hi, > > 1) How many fds does the process have, so is the question "why can't > we use all those 4096 fds configured", or is it "Where do those 4096 > fdsused by my process come from"? The latter. We can actually see the 4096 fds are used (by port 8080 in CLOSE_WAI

Re: Too many open files exception under heavy load - need help!

2008-01-25 Thread Rainer Jung
Hi, 1) How many fds does the process have, so is the question "why can't we use all those 4096 fds configured", or is it "Where do those 4096 fdsused by my process come from"? 2) CLOSE_WAIT means the remote side closed the connection and the local side didn't yet close it. What's you remote

Re: Too many open files exception under heavy load - need help!

2008-01-25 Thread Rainer Traut
Tobias Schulz-Hess schrieb: For Linux, this can be done dynamically by launching (fron the OS prompt): echo "16384" >/proc/sys/fs/file-max When I do ~# cat /proc/sys/fs/file-max 203065 This setting is a kernel limit. This tells me, that (at least this specific setting) is already suf

Re: Too many open files exception under heavy load - need help!

2008-01-24 Thread Tobias Schulz-Hess
Hi Bruno, thanks for your quick reply. Bruno Vilardo schrieb: > What Does "uname -a" say? :~# uname -a Linux bruder 2.6.18-5-amd64 #1 SMP Thu May 31 23:51:05 UTC 2007 x86_64 GNU/Linux You are probably more interested in: ~# cat /proc/version Linux version 2.6.18-5-amd64 (Debian 2.6.18.dfsg.1-13)

Re: Too many open files exception under heavy load - need help!

2008-01-24 Thread Bruno Vilardo
Tobias, You probably need to tune some kernel paramerters. I had some issues with our application get "stuck" at some point that we needed to restart everything. And since you said it is a brend new server, you might have the defalt values set in there. What Does "uname -a" say? The kernel param

Re: Too many open files exception under heavy load - need help!

2008-01-24 Thread David Brown
IMHO, try jakarta.apache.org JMeter. Take a close look at the very rigorous load/stress testing so-called Test Plan that is a distributed load test. HTH. Tobias Schulz-Hess wrote .. > Hi there, > > we use the current Tomcat 6.0 on 2 machines. The hardware is brand new and is > really > fast. We

Too many open files exception under heavy load - need help!

2008-01-24 Thread Tobias Schulz-Hess
Hi there, we use the current Tomcat 6.0 on 2 machines. The hardware is brand new and is really fast. We get lots of traffic which is usually handled well by the tomcats and the load on those machines is between 1 and 6 (when we have lots of traffic). The machines have debian 4.1/64 as OS. Howe

Re: Need help - Duplicated session ID problem

2008-01-23 Thread Mark Thomas
Yang Cao wrote: Please let me know if you have seen any similar problems before, and if so, what's the root cause and fix? Could be: - Most likely is application error - are you storing request objects anywhere? - Could be a Tomcat bug. Upgrade to 5.5.25. There is at least one issue in the cha

Need help - Duplicated session ID problem

2008-01-22 Thread Yang Cao
Hi, All, We are running the following set up: apache - 2.2.3 tomcat - 5.5.20 jboss - 4.0.5 We are running sticky session with no clustering We currently are running into some random problems, where apparently duplicated session IDs have been created from time to time, so that one user can

Re: need help with Tomcat-generated redirects

2008-01-03 Thread Julian Dunn
>>> On Wed, Jan 2, 2008 at 9:10 PM, "Bill Barker" <[EMAIL PROTECTED]> wrote: > "Rainer Jung" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] >> Hi Julian, >> >> Julian Dunn schrieb: How do you connect Apache to Tomcat? If you are using mod_jk, the module gets the port it

Re: need help with Tomcat-generated redirects

2008-01-02 Thread Bill Barker
"Rainer Jung" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi Julian, > > Julian Dunn schrieb: >>> How do you connect Apache to Tomcat? If you are using mod_jk, the >>> module gets the port it sends to Tomcat via ap_get_server_port(), >>> which in turn depends on UseCanonicalName

Re: need help with Tomcat-generated redirects

2008-01-02 Thread Rainer Jung
Hi Julian, Julian Dunn schrieb: >> How do you connect Apache to Tomcat? If you are using mod_jk, the >> module gets the port it sends to Tomcat via ap_get_server_port(), >> which in turn depends on UseCanonicalName. If this is set to On, >> the port is also determined from the port in ServerName.

Re: need help with Tomcat-generated redirects

2008-01-02 Thread Julian Dunn
>>> On Wed, Jan 2, 2008 at 4:48 PM, Rainer Jung <[EMAIL PROTECTED]> wrote: >> I have some applications running under a Tomcat installation set up >> in this way: >> >> [load balancer on port 80] ---> [Apache server on port 5001] --> >> [Tomcat server on port 7001] >> >> One of the Tomcat appli

Re: need help with Tomcat-generated redirects

2008-01-02 Thread Rainer Jung
Hi Julian, Julian Dunn schrieb: > Hi, > > I have some applications running under a Tomcat installation set up > in this way: > > [load balancer on port 80] ---> [Apache server on port 5001] --> > [Tomcat server on port 7001] > > One of the Tomcat applications sends a redirect to Apache because

Re: need help with Tomcat-generated redirects

2008-01-02 Thread David Smith
Connector attribute proxyPort should fix the inclusion of the port number in tomcat generated urls. --David Julian Dunn wrote: Hi, I have some applications running under a Tomcat installation set up in this way: [load balancer on port 80] ---> [Apache server on port 5001] --> [Tomcat server

need help with Tomcat-generated redirects

2008-01-02 Thread Julian Dunn
Hi, I have some applications running under a Tomcat installation set up in this way: [load balancer on port 80] ---> [Apache server on port 5001] --> [Tomcat server on port 7001] One of the Tomcat applications sends a redirect to Apache because there is a directive. However, the redirect that

回复: Re: need help for CVE-2007-1355

2007-12-17 Thread li.weijie
THANK YOU ALL - 天生购物狂,狂抢购物券,你还等什么!

Re: need help for CVE-2007-1355

2007-12-17 Thread Konstantin Kolinko
Please note that it is fixed in the sources (aka SVN) only, but not in any released version. The fix was committed on May 19th in revision http://svn.apache.org/viewvc?view=rev&revision=539759 4.1.36 released in April does not contain the fix. 2007/12/17, Mary Joseph <[EMAIL PROTECTED]>: > Looks

Re: need help for CVE-2007-1355

2007-12-17 Thread Mary Joseph
Looks like it is fixed. http://tomcat.apache.org/security-4.html Better confirm though.. Mary >>> "li.weijie" <[EMAIL PROTECTED]> 12/17/07 2:47 PM >>> HI, I'm a user of tomcat4.1.24. I knew that the version with the vulnerability problem of CVE-2007-1355 . But I don't know how to fix it.

need help for CVE-2007-1355

2007-12-17 Thread li.weijie
HI, I'm a user of tomcat4.1.24. I knew that the version with the vulnerability problem of CVE-2007-1355 . But I don't know how to fix it. I want to know whether the version of 4.1.36(stable) could be downloaded from http://tomcat.apache.org/download-41.cgi has already fixed the problem. If

Re: need help with Tomcat5.5.25 and Apache2.0.61 modJK configuration

2007-12-10 Thread Sangeeta Verma
o > modJk="E:\apache\2.0.61\Apache2\modules\mod_jk.dll" > > follow rainier's advice and read up on mod_jk > > Martin- > - Original Message - > From: "Rainer Jung" <[EMAIL PROTECTED]> > To: "Tomcat Users List" > Sent: Frida

Re: need help with Tomcat5.5.25 and Apache2.0.61 modJK configuration

2007-12-07 Thread Martin Gainty
List" Sent: Friday, December 07, 2007 5:51 PM Subject: Re: need help with Tomcat5.5.25 and Apache2.0.61 modJK configuration > Sangeeta Verma wrote: > > Hi, > > I have installed Apache 2.0.61 and Tomcat 5.5.25 on windows 2003 > > machine.Ifound mod_jk- > > apache-

Re: need help with Tomcat5.5.25 and Apache2.0.61 modJK configuration

2007-12-07 Thread Rainer Jung
Sangeeta Verma wrote: Hi, I have installed Apache 2.0.61 and Tomcat 5.5.25 on windows 2003 machine.Ifound mod_jk- apache-2.0.29.so and mod_jk_1.2.6_2.0.50.dll both on web and downloaded. The 1.2.6 version is *very* old, we are at version 1.2.25 of mod_jk. Use the 2.0.29 file, because that was

need help with Tomcat5.5.25 and Apache2.0.61 modJK configuration

2007-12-07 Thread Sangeeta Verma
Hi, I have installed Apache 2.0.61 and Tomcat 5.5.25 on windows 2003 machine.Ifound mod_jk- apache-2.0.29.so and mod_jk_1.2.6_2.0.50.dll both on web and downloaded. Copied the dll file to /module directory. When i edit the server.xml file for adding entry under the Tomcat just refuses to startup

RE: Tomcat 6 Configuration with Contexts - Need Help?

2007-11-21 Thread Caldarale, Charles R
> From: Dennis Harris [mailto:[EMAIL PROTECTED] > Subject: Tomcat 6 Configuration with Contexts - Need Help? > > However, in version 6 this is not working correctly. I've > read that for each environment I would need to have a > CONTEXT.XML file - so nothing would

Tomcat 6 Configuration with Contexts - Need Help?

2007-11-21 Thread Dennis Harris
I’m having some issues with configuring Tomcat 6. I’m moving from Tomcat 4.1 and in version 4 I had multiple contexts setup in the SERVER.XML file like so: However, in version 6 this is not working correctly. I’ve read that for each environment I would need to have a CONTEXT

Need help diagnosing 500 error in 5.0.28

2007-10-25 Thread Karr, David
I'm trying to deploy a simple SOAP service handler (written by someone else) to an ancient version of Tomcat (5.0.28). This app is also running on a production server with the same Tomcat version. I have a command-line tool that I use to send a test message to the server. When I send it, it says

Re: I need help as soon as possible..

2007-10-04 Thread Jaime Almeida
Ok. I'll follow your instructions and I'll see what I can get with it. Thank you very much. Best regards, Jaime Almeida. Caldarale, Charles R writes: From: Jaime Almeida [mailto:[EMAIL PROTECTED] Subject: Re: I need help as soon as possible.. I'm sorry, I didn't mean

RE: I need help as soon as possible..

2007-10-04 Thread Caldarale, Charles R
> From: Jaime Almeida [mailto:[EMAIL PROTECTED] > Subject: Re: I need help as soon as possible.. > > I'm sorry, I didn't mean to upset you. You didn't upset me (I'm too old for that), but it's a typical newbie mistake that will cause fewer people to be int

Re: I need help as soon as possible..

2007-10-04 Thread Mark Deneen
ta in my computer - can be that any problem? > Best regards, > Jaime Almeida. > > Caldarale, Charles R writes: > > >> From: Jaime Almeida [mailto:[EMAIL PROTECTED] > >> Subject: I need help as soon as possible.. > > > > To quote from "How To Ask Q

Re: I need help as soon as possible..

2007-10-04 Thread Jaime Almeida
stem? I have the Windows Vista in my computer - can be that any problem? Best regards, Jaime Almeida. Caldarale, Charles R writes: From: Jaime Almeida [mailto:[EMAIL PROTECTED] Subject: I need help as soon as possible.. To quote from "How To Ask Questions The Smart Way", as

RE: I need help as soon as possible..

2007-10-04 Thread Caldarale, Charles R
> From: Jaime Almeida [mailto:[EMAIL PROTECTED] > Subject: I need help as soon as possible.. To quote from "How To Ask Questions The Smart Way", as linked to from the Tomcat mailing lists page: http://tomcat.apache.org/lists.html "Use meaningful, specific subject heade

I need help as soon as possible..

2007-10-04 Thread Jaime Almeida
Hello. I'm Jaime Almeida, a portuguese student and I've a big problem with the tomcat6.0 server - it doesn't start. I've already reinstalled it and nothing, always the same error: 'The archive: C:/Program Files/Tomcat 6.0/bin/bootstrap.jar which is referenced by the classpath, does not exist.'

Re: Need help in the compatibility for Windows Vista.

2007-09-18 Thread PavanSingaraju
Chris, Thank you for the information. I did proposed for moving it to linux, and am waiting for management's response. The new machine had Vista, and to host it on that machine, i wanted to check if there are some issues with it. This mail did answered my question. Thanks once again. -- Pava

Re: Need help in the compatibility for Windows Vista.

2007-09-18 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Pavan, PavanSingaraju wrote: > I have an web application in Tomcat 5.0.18. I am running it on Windows XP > operating system. I am planning to upgrade the OS to Windows Vista. Just out of curiosity, why are you upgrading from XP to Vista? Is this a pr

Need help in the compatibility for Windows Vista.

2007-09-18 Thread PavanSingaraju
Hi, Thanks in advance. I have an web application in Tomcat 5.0.18. I am running it on Windows XP operating system. I am planning to upgrade the OS to Windows Vista. Are there any known compatibility issues for migrating the Tomcat to Vista?? Please help me in this regard. -- Pavan S. Kuma

RE: ! Tomcat 500 error NEED HELP!

2007-06-18 Thread Caldarale, Charles R
> From: David Smith [mailto:[EMAIL PROTECTED] > Subject: Re: ! Tomcat 500 error NEED HELP! > > Two bits of advice: And a third: > >CLASSPATH = d:\Servlets+JSP;d:\java\jdk1.5.0_12 Get rid of the CLASSPATH variable; the second part is certainly wrong, and the first part

Re: ! Tomcat 500 error NEED HELP!

2007-06-18 Thread David Smith
Two bits of advice: 1. Be very careful there is only one copy of a jar file in either the webapp's WEB-INF/lib folder or tomat's lib folder. You'll get all sorts of wonderfully horrible experiences if you have multiple copies laying around where tomcat can find them. Hopefully you aren't add

Re: ! Tomcat 500 error NEED HELP!

2007-06-18 Thread Johnny Kewl
ne 18, 2007 8:27 PM Subject: ! Tomcat 500 error NEED HELP! I've installed apache-tomcat-6.0.10 and jdk1.5.0_12 I've set the ENV variables: _RUNJAVA = %JAVA_HOME%\bin\java _RUNJAVAC = %JAVA_HOME%\bin\javac _RUNJAVAW = %JAVA_HOME%\bin\javaw _RUNJDB = %JAVA_HOME%\bin\jdb CATALINA_H

! Tomcat 500 error NEED HELP!

2007-06-18 Thread alundgren
ttp://www.nabble.com/%21-Tomcat-500-error-NEED-HELP%21-tf3942006.html#a11181309 Sent from the Tomcat - User mailing list archive at Nabble.com.

Re: Need Help Restoring a Seesion after session time-out

2007-05-24 Thread domenico di leo
I suppose you use a servlet to set the session, you can use session.setMaxInactiveInterval(time) where the variable time points out how many second you want to keep alive your session. e.g. time=60*60 =1h. However you should set a reasonable time interval, you can't keep alive your session for

Need Help Restoring a Seesion after session time-out

2007-05-24 Thread Jitendra Ch
Hi to allCan One of you help me how to make a session alive, because my session is getting expired after the time mentioned in the web.xmlWith regardsJitendra Ch _ The idiot box is no longer passe! http://content.m

Re: Need help getting application to work on Tomcat 5.x

2007-05-10 Thread Johnny Kewl
/TheServletName and yours is making Tomcat very unhappy... - Original Message - From: "Allison, Clemon " <[EMAIL PROTECTED]> To: Sent: Tuesday, May 08, 2007 7:42 PM Subject: Need help getting application to work on Tomcat 5.x Can someone assist me with getting a war

RE: Need help getting application to work on Tomcat 5.x

2007-05-08 Thread Allison, Clemon
Thanks. I'll give it a shot. -Original Message- From: Caldarale, Charles R [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 08, 2007 12:49 PM To: Tomcat Users List Subject: RE: Need help getting application to work on Tomcat 5.x > From: Allison, Clemon [mailto:[EMAIL PROTECTED] &

RE: Need help getting application to work on Tomcat 5.x

2007-05-08 Thread Caldarale, Charles R
> From: Allison, Clemon [mailto:[EMAIL PROTECTED] > Subject: Need help getting application to work on Tomcat 5.x > > SEVERE: Parse error in application web.xml > java.lang.IllegalArgumentException: Invalid > ConsolidatedInvoiceController in servlet mapping The above

Need help getting application to work on Tomcat 5.x

2007-05-08 Thread Allison, Clemon
Can someone assist me with getting a war file to start on Tomcat 5.x? I've followed the how-to docs for deploying a war file, but still get an error when attemptin gto start it. A snippet of the error file: May 8, 2007 12:19:58 PM org.apache.catalina.startup.ContextConfig applicationConfig SEVE

Re: badly need help on some issues with jakarta Tomcat Connector for IIS

2007-04-23 Thread Per Jonsson
Usually the SCORM functionality is hidden in a Servlet or something similar so the problem if the client can't get throu to that particular servlet or resource it needs. Ask the product support if there is any special path which the client have to have access to in the LMS. And make sure you ha

badly need help on some issues with jakarta Tomcat Connector for IIS

2007-04-23 Thread Swaroop George
Context: I am trying to setup a reverse proxy solution from a DMZ server to an internal server. The DMZ server is running Windows 2003(32 bit) with IIS 6.0. The internal server is another Windows 2003 box running a JBoss/Tomcat app server. Additional complexity: The product is Learning Management

Re: Need help with authentication

2007-04-04 Thread Kenneth Westelinck
Yes! It is working! Thank you all for your help. Sorry for being such a nag.

Re: Need help with authentication

2007-04-04 Thread Martin Gainty
Wednesday, April 04, 2007 11:19 AM Subject: RE: Need help with authentication IE is sending "Pragma: no-cache" when it requests the admin page ("Request 3" in your previous message). Firefox isn't, so I'm guessing Tomcat is assuming that FF has a copy.

RE: Need help with authentication

2007-04-04 Thread Nelson, Tracy M.
IE is sending "Pragma: no-cache" when it requests the admin page ("Request 3" in your previous message). Firefox isn't, so I'm guessing Tomcat is assuming that FF has a copy. This is just what I noticed, I'm not an HTTP or Tomcat expert. | -Original Message- | From: Kenneth Westelinck [m

Re: Need help with authentication

2007-04-04 Thread Kenneth Westelinck
Hi again, I did some further researching. I found this on the 304 returned by Tomcat when using firefox: -8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<-- You should never see this error in your Web browser. It

Re: Need help with authentication

2007-04-04 Thread Kenneth Westelinck
Ok, here is some headers I found with "fiddler": From firefox: - Request 1: GET /eai-admin/ HTTP/1.1 Host: localhost:8080 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.3) Gecko/20070309 Firefox/2.0.0.3 Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9

Re: Need help with authentication

2007-04-03 Thread Mark Thomas
Kenneth Westelinck wrote: > Any ideas why I only get redirected in firefox after doing a refresh and > why > this is working as it should in internet explorer? > Get ieHttpHeaders and Live Http Headers and check out the differences, if any, in what the browsers are seeing from / sending to Tomcat

Re: Need help with authentication

2007-04-03 Thread Kenneth Westelinck
Any ideas why I only get redirected in firefox after doing a refresh and why this is working as it should in internet explorer?

Re: Need help with authentication

2007-03-30 Thread Kenneth Westelinck
So, I upgraded to Tomcat 5.5.23 (I was running 5.5.15). Now at least the problem is consistent. For all users I get the login page again. If I refresh, I get redirected to http://localhost/somewhere/index.html. On 3/30/07, Kenneth Westelinck <[EMAIL PROTECTED]> wrote: Ok, thanks all for your re

Re: Need help with authentication

2007-03-30 Thread Kenneth Westelinck
Ok, thanks all for your replies. Another problem is the following: - I logon to http://localhost/somewhere using X's credentials. Logon succeeds and I get redirected to http://localhost/somewhere/index.html - I logon to http://localhost/somewhere using Y's credentials. I get the login page again.

Re: Need help with authentication

2007-03-30 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 David, David Delbecq wrote: > Workaround includes > Another workaround would be to use additional s that will allow access to favicon.ico and any other include files such as CSS, JS, or images without needing to be logged-in. This seems simpler tha

Re: Need help with authentication

2007-03-30 Thread David Delbecq
En l'instant précis du 30/03/07 11:20, Kenneth Westelinck s'exprimait en ces termes: > Hi all, > > I have the following setup: > - Tomcat 5.5 install on win32, webapps reside underneath webapps/ROOT. > http://localhost/ shows me index.jsp > - Next I have enabled JDBC realm authentication > (webapps

Need help with authentication

2007-03-30 Thread Kenneth Westelinck
Hi all, I have the following setup: - Tomcat 5.5 install on win32, webapps reside underneath webapps/ROOT. http://localhost/ shows me index.jsp - Next I have enabled JDBC realm authentication (webapps/ROOT/WEB-INF/web.xml). / pages which require login

Re: [OT] Need help finding a Java class

2007-02-06 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Steve, Steve Ingraham wrote: > I have to say that your recommended query was the advice that helped > more than anything else. I ultimately have been trying to figure out > how the NO ASSIGNMENT data was returning in hopes of figuring out how to > qu

RE: [OT] Need help finding a Java class

2007-02-06 Thread Nelson, Tracy M.
| From: Steve Ingraham [mailto:[EMAIL PROTECTED] | Sent: Tuesday, 06 February, 2007 15:18 | | To answer your question about my Java experience, I | do not know much at all. I have started a Java for beginners class this | January that I am taking online and I am attempting to work through the | O'

RE: [OT] Need help finding a Java class

2007-02-06 Thread Steve Ingraham
> Steve, > > This might be off-topic, but there's really not a good forum > for "general webapp what-the-heck-is-going-on discussion". > But hey, we're nice folks ;) > > Steve Ingraham wrote: > > If no person is assigned to the case the phrase "NO > ASSIGNMENT" shows > > up on the front page

Re: [OT] Need help finding a Java class

2007-02-06 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Steve, This might be off-topic, but there's really not a good forum for "general webapp what-the-heck-is-going-on discussion". But hey, we're nice folks ;) Steve Ingraham wrote: > If no person is assigned to the case the phrase "NO ASSIGNMENT" shows

Re: need help on mod-jk.conf

2007-01-31 Thread Rainer Jung
Hi Maulik, the mod-jk.conf contents you cite from the Wiki are for Apache only. Please have a look at http://tomcat.apache.org/connectors-doc/webserver_howto/nes.html for Netscape/Sun Web server settings. All JK web server plugins (Apache, IIS, Sun) share the same workers.properties format a

need help on mod-jk.conf

2007-01-30 Thread Maulik S
Hi, I am using sun one web server 6.1 and JBoss as App server. I have two doubts. (1) I want load balancing feature from http point of view. My workers.properties lookes like as below : worker.list=traveldev,jkstatus worker.node1.port=61097 worker.node1.host=192.122.220.31 worker.node1.type=a

Re: Need Help w. Database Servlet.

2007-01-28 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Steve, Mr. Steve Burrus wrote: > hi all. I find myself in need of help/assistance with a longtime problem > of mine and that is how do you get a servlet working with a backend > database server?? I can see several problems with your code, but you did

Re: Need Help w. Database Servlet.

2007-01-28 Thread Martin Gainty
ractère privé ou confidentiel. Si vous n'êtes pas le destinataire de ce document, nous vous signalons qu'il est strictement interdit de le diffuser, de le distribuer ou de le reproduire. - Original Message - From: "Mr. Steve Burrus" <[EMAIL PROTECTED]> To: Sent: Sunday,

Need Help w. Database Servlet.

2007-01-28 Thread Mr. Steve Burrus
hi all. I find myself in need of help/assistance with a longtime problem of mine and that is how do you get a servlet working with a backend database server?? Here is the basic SurveyServlet.java servlet and please notice that the database server in question is IBM's Cloudscape . after the serv

Re: web application - student need help Thank You's

2007-01-09 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Mike, Michael Ni wrote: > So during login, after a person enters his username and password, it > will check to see if the username exists in the person table. > > If it does exist, it will verify the password and return his > permission. That permi

Re: web application - student need help

2007-01-08 Thread Michael Ni
uot;Tomcat Users List" To: Tomcat Users List Subject: Re: web application - student need help Date: Sun, 7 Jan 2007 15:59:16 -0800 (PST) For configuring a connection pool, follow this URL: http://jakarta.apache.org/commons/dbcp/configuration.html 1. The JDBC driver JAR must go in the

RE: web application - student need help Thank You's

2007-01-08 Thread Narayanaswamy, Mohan
ubject: RE: web application - student need help Thank You's I just want to thank everyone who provided input to my question. I am going to try to set up the connection pool. By the way. I have another question about authentication to websites. For authentication, currently I bascially have a &

RE: web application - student need help Thank You's

2007-01-08 Thread Michael Ni
I just want to thank everyone who provided input to my question. I am going to try to set up the connection pool. By the way. I have another question about authentication to websites. For authentication, currently I bascially have a "Person" table, where one field is your permission. exampl

Re: web application - student need help

2007-01-08 Thread Andrew Miehs
| | i remember when websites like friendster.com came out, it was really | slow. | | now it is much faster, do you guys know where does a student learn | | about how to handle high traffic web applications? is there any | | classes? http://www.kegel.com/c10k.html is a good place to start

<    1   2   3   4   5   6   7   >