Re: Embedding jasper (tomcat 5.5)

2007-06-06 Thread Dennis Thrysøe
Bill Barker wrote: "Dennis Thrysøe" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] Any ideas what tomcat is doing to seperate for instance it's own commons-logging with a commons-logging in a deployed webapp? Probably, the easiest is to jump to TC 6. That version no longer uses

Re: Encoding issue: + versus %20

2007-06-06 Thread Bill Barker
"hstang" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > Does that mean there's no way to load images with file names that contains > spaces then? I'm not understanding something here. Because if i include > a > link to a graphic image whose filename contains spaces, it uses +,

Re: re-used Response instances causing me grief?

2007-06-06 Thread Jeff Amiel
On 6/6/07, Bill Barker <[EMAIL PROTECTED]> wrote: It doesn't make sense. The Facade delegates to the actual response always, so getting a new instance (the security manager option) won't help. My first guess would be that somebody is doing a But how would that impact the AxisServlet?? those

Re: re-used Response instances causing me grief?

2007-06-06 Thread Bill Barker
"Jeff Amiel" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Have been battling a recent issue (outlined in some detail on the > struts mailing list) > > http://www.mail-archive.com/user%40struts.apache.org/msg61515.html > > In summary, unless their is some underlying bug that I can

Re: Tomcat URL decoding different from Java's URLDecoder?

2007-06-06 Thread Rashmi Rubdi
Shankar, Chris, With reference to your previous posts (From section 3.7.1 of the HTTP/1.1 spec). I tried a small example by not forcing the request's content type, and was able to see the Big5 characters without any problems even when the Request's characterEncoding was null. The code bel

Re: Cipher suites

2007-06-06 Thread Bill Barker
"Thiago Silva" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hello, > > I was wondering if is there any way to force the use of a specific cipher > suite. I need to do some analyses in many cipher suites, that is why I > need > to do that. > > I have tried to use the tag "ciphers

Re: Embedding jasper (tomcat 5.5)

2007-06-06 Thread Bill Barker
"Dennis Thrysøe" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi, > > I'm attempting to embed jasper into an application of mine. Actually I'm > upgrading it from 4.1 to 5.5. > > The new version of jasper uses commons-logging, which the old one didn't > seem to do. This causes

Re: Invalid Content-Length error for the size greater than 2147483647

2007-06-06 Thread Bill Barker
"Daniel Dang" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi All, > > I tried to send 3G size data to apache-tomcat-5.5.16 using ajp connector > and I got error below.. I think MessageByte.getInt() only allows > 2.1Gigabytes data as an Integer only 32 bits because of I send more

re-used Response instances causing me grief?

2007-06-06 Thread Jeff Amiel
Have been battling a recent issue (outlined in some detail on the struts mailing list) http://www.mail-archive.com/user%40struts.apache.org/msg61515.html In summary, unless their is some underlying bug that I cannot pinpoint (always possible), my AxisServlet is being handed off a response that i

Tomcat Deployer Problem

2007-06-06 Thread Skijor
Does anyone use the tomcat deployer? Will someone show me an example deployer.properties with the following properties defined and where they map to on your filesystem? The manual lacks an example and I can't figure it out from the build.xml file. build:C:\webapps\ixania\build webapp:ixania pat

Tomcat keepalive mysql connection.

2007-06-06 Thread Jacob Rhoden
Hi, Under tomcat 5.5, I would prevent the database connections from timing out by having a Cron job that accesses the website every 10 minute. (Because I couldn't work out a better way). This no longer works under tomcat 6. Are there any better ways than I am not aware of.? I don't think incr

Re: Encoding issue: + versus %20

2007-06-06 Thread hstang
Does that mean there's no way to load images with file names that contains spaces then? I'm not understanding something here. Because if i include a link to a graphic image whose filename contains spaces, it uses +, and tomcat refuses to the load image; however if I replace it with %20, then it

Re: [OT] Re: axis2 vs xfire

2007-06-06 Thread Anoop kumar V
Here are some links which do a comparison: http://myarch.com/choosing-between-axis2-and-xfire http://xfire.codehaus.org/Stack+Comparison http://stuffthathappens.com/blog/2006/05/08/xfire-or-axis2-10/ http://www.infoq.com/news/2007/02/axis2-xfire-benchmark Anoop On 6/6/07, Pid <[EMAIL PROTECTED

RE: Tomcat doesn't start

2007-06-06 Thread Propes, Barry L
ok, good. And I ntoiced that the users list also parsed out my angle signs with a slash that I had included! "<" followed by a "/" and an opposite angle bracket. -Original Message- From: Felipe Martins [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 06, 2007 1:54 PM To: Tomcat Users List

RE: Multiple Realms in a Context?

2007-06-06 Thread Caldarale, Charles R
> From: Tim Alberts [mailto:[EMAIL PROTECTED] > Subject: Multiple Realms in a Context? > > Does this mean conversely that the web application can only use this > Realm for authentication? Yes. > Also, can I configure multiple realms inside a ? No. But there's nothing stopping you from writ

Re: Encoding issue: + versus %20

2007-06-06 Thread Lucas Galfaso
Short answer: An URL has many part, one part that is called "path" (in this case "upload/a b.jpg") and another part is called "query" (that is usually what is after the "?" in a URL) These two parts use slightly different reserved characters that may, should, or must be escaped under different ru

Multiple Realms in a Context?

2007-06-06 Thread Tim Alberts
I'm in the process of teaching myself the Realms configuration for Tomcat and have a couple questions that after hours of reading and testing I could determine, but this list can hopefully save me some research time. Reading the documentation at: http://tomcat.apache.org/tomcat-5.5-doc/realm-

Re: passing user variable from apache2.2 via mod_proxy_ajp to tomcat5.5? -- SOLVED

2007-06-06 Thread Bill Doster
Another google ("mod_proxy_ajp REMOTE_USER tomcat") resulted in pointers to: http://mailman1.u.washington.edu/pipermail/pubcookie-users/2006-July/ 001527.html which in turn mentioned that adding: tomcatAuthentication="false" to the AJP13 connector statement below (from %CATALINA_H

Re: Tomcat Administration HTTP Status 500 -

2007-06-06 Thread Elton Kong
Martin, Here is the log pasted. There is a little more at the end I believe but this should outline the picture, thanks! Elton - 2007-06-06 17:02:41 StandardWrapperValve[jsp]: Servlet.service() for servlet jsp threw exception javax.servlet.ServletException: Canno

Re: passing user variable from apache2.2 via mod_proxy_ajp to tomcat5.5?

2007-06-06 Thread Bill Doster
Yep. I actually *do" have the ajp request getting handled by using: ProxyPass /HelloWorld ajp://locahost:8009/HelloWorld (note "ajp//:" not "http://";) as well as enabling the AJP13 connector in server.xml via: protocol="AJP/1.3" /> The *problem* that I'm havi

Re: Tomcat Administration HTTP Status 500 -

2007-06-06 Thread Martin Gainty
Hi Elton what does the log say at $CATALINA_HOME/logs/admin.-MM-DD.log Thanks/ M-- This email message and any files transmitted with it contain confidential information intended only for the person(s) to whom this email message is addressed. If you have received this email message in error, p

Tomcat Administration HTTP Status 500 -

2007-06-06 Thread Elton Kong
Hi, I've been trying to troubleshoot this problem and could not figure out a solution to it. Basically I have installed an instance of tomcat 4.1.31. I have configured the tomcat-user.xml for an admin login and manager login. The manager login works fine, but when I click the administration,

Re: passing user variable from apache2.2 via mod_proxy_ajp to tomcat5.5?

2007-06-06 Thread Martin Gainty
Hi Bill- following http://httpd.apache.org/docs/2.2/mod/mod_proxy.html#proxypass I *thought* ProxyPass was ProxyPass /mirror/foo/ http://foo.com/ cause a local request for the to be internally converted into a proxy request to . so.. Pro

[OT] Re: axis2 vs xfire

2007-06-06 Thread Pid
Daniel Dang wrote: Hi All, What's differences between axis2 and xfire? why should I pick axis 2 instead of xfire? Can xfire incorporated with other web services for example c++ OR c#...etc? I think you may be confusing programming languages (C++, C#) with web services (which are applications,

passing user variable from apache2.2 via mod_proxy_ajp to tomcat5.5?

2007-06-06 Thread Bill Doster
On FC6 (intel), I need to have tomcat servlets know the user associated with each ajp request. After authenticating (I'm using mod_cosign), when I load https://host/ cgi-bin/hi (a shell script which outputs html-ized "Hello $REMOTE_USER" the web-page returned is "Hello " for whatever user

Re: Tomcat URL decoding different from Java's URLDecoder?

2007-06-06 Thread Shankar Unni
Christopher Schultz wrote: Shouldn't you use the content-type of the request instead of just forcing your own content-type? If the browser does not send a MIME type with the request, then the default is defined to be ISO-8859-1: Well, for a form post, that just means that the text of the body

Re: Tomcat doesn't start

2007-06-06 Thread Martin Gainty
check Missing env vars for JAVA_HOME and CATALINA_HOME also ..context.xml may have missing end tags or maybe the parser you are using is out of sync with version of JDK? Did you parse and validate context.xml? http://www.w3schools.com/dom/dom_validate.asp M-- This email message and any files

RE: Tomcat doesn't start

2007-06-06 Thread Felipe Martins
Hi, Unhappily, I didn´t do that. I found I way to solve the problem, but it's still quite strange. I had firstly added a folder with a lot of ".dtd", for struts, and then, Tomcat stopped to work. For solving the problem, what I did was simply removing that folder, and Tomcat started norma

axis2 vs xfire

2007-06-06 Thread Daniel Dang
Hi All, What's differences between axis2 and xfire? why should I pick axis 2 instead of xfire? Can xfire incorporated with other web services for example c++ OR c#...etc? many thanks in advance! --Daniel - To start a ne

Tomcat, Jini, & NullPointerException

2007-06-06 Thread Potato Head
Hello, In a system-of-systems integration, everything for me runs fine at the command line. When I deploy one particular system under axis2 under tomcat, I get the following error java.lang.NullPointerException at com.gd.openwings.component.jini.JiniComponent.(JiniComponent.java:175)

RE: Tomcat doesn't start

2007-06-06 Thread Propes, Barry L
I think you answered your own question. Look again at your context definition. Probably an invalid tag there causing it to break. Without looking at your code, perhaps a missing ? -Original Message- From: Felipe Martins [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 06, 2007 12:01 PM To

RE: was anyone able to change his/her email address in this list

2007-06-06 Thread Caldarale, Charles R
> From: Pid [mailto:[EMAIL PROTECTED] > Subject: Re: was anyone able to change his/her email address > in this list > > To unsubscribe, e-mail: [EMAIL PROTECTED] Note that the above can only be done from the registered e-mail address. - Chuck THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/

Re: was anyone able to change his/her email address in this list

2007-06-06 Thread Pid
What did you try? To unsubscribe, e-mail: [EMAIL PROTECTED] You'll probably receive a confirmation message that you need to action. p Abdelmonaam Kallali wrote: I've tried that but didn't work Abdelmonaam KALLALI Test Specialist DragonWave Inc 411 Legget Dr Phone :613-599 9991 ext 275

Invalid Content-Length error for the size greater than 2147483647

2007-06-06 Thread Daniel Dang
Hi All, I tried to send 3G size data to apache-tomcat-5.5.16 using ajp connector and I got error below.. I think MessageByte.getInt() only allows 2.1Gigabytes data as an Integer only 32 bits because of I send more than 3G data that why Tomcat could not handle this large size. [TP-Processor3] ERRO

Encoding issue: + versus %20

2007-06-06 Thread hstang
I am currently having problems loading an image in Tomcat 6.13. I have a file "a b.jpg" in upload folder and I want to have a link to go to it. (1) upload/a+b.jpg Here (2) upload/a%20b.jpg Here Why does (2) work and not (1)? Both '+' and "%20" represents spaces so there's no reason why the

Tomcat doesn't start

2007-06-06 Thread Felipe Martins
Hi everybody, I'm developping an application using struts and hibernate. It was working fine, but, suddenly, with no apparent reason, it stopped to work. Tomcat stops at line "INFO: XML validation disabled". And, if I remove the context definition of my application, it starts norma

Cipher suites

2007-06-06 Thread Thiago Silva
Hello, I was wondering if is there any way to force the use of a specific cipher suite. I need to do some analyses in many cipher suites, that is why I need to do that. I have tried to use the tag "ciphers" in the following part of the Server.xml, but it did not used the specific cipher suite th

Re: was anyone able to change his/her email address in this list

2007-06-06 Thread Gregor Schneider
Besides: Why don't you use a filter in your mail-program? if sender == users@tomcat.apache.org move mail to folder tomcat_user-lst Works great for me, although I'm using GoogleMail to read & post Cheers Gregor -- what's puzzlin' you, is the nature of my game gpgp-fp: 79A84FA52680702679

RE: was anyone able to change his/her email address in this list

2007-06-06 Thread Abdelmonaam Kallali
I've tried that but didn't work Abdelmonaam KALLALI Test Specialist DragonWave Inc 411 Legget Dr Phone :613-599 9991 ext 275 -Original Message- From: Gregor Schneider [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 06, 2007 12:09 PM To: Tomcat Users List Subject: Re: was anyone able to c

Re: was anyone able to change his/her email address in this list

2007-06-06 Thread Gregor Schneider
1. unsubscribe with your old email-address 2. subscribe with your new email-address Gregor -- what's puzzlin' you, is the nature of my game gpgp-fp: 79A84FA526807026795E4209D3B3FE028B3170B2 gpgp-key available @ http://pgpkeys.pca.dfn.de:11371 -

was anyone able to change his/her email address in this list

2007-06-06 Thread Abdelmonaam Kallali
Hi All Was anyone able to change his/her email address in this list? I'm having hard time sorting Tomcat users list from my work emails and it is taking a bit of my work time can anyone help? Thanks Abdelmonaam KALLALI Test Specialist DragonWave Inc 411 Legget Dr Phone :613-599 9991 ext 275 --

RE: webappclassloader won't get garbage colelcte, need suggestions (outof memory)

2007-06-06 Thread Caldarale, Charles R
> From: David Delbecq [mailto:[EMAIL PROTECTED] > Subject: webappclassloader won't get garbage colelcte, need > suggestions (outof memory) > > Shouldn't tomcat clean the ThreadGroup when a webapp > is undeployed? It's certainly not the container's job to keep track of threads that it has no kno

webappclassloader won't get garbage colelcte, need suggestions (out of memory)

2007-06-06 Thread David Delbecq
Hello, Trying to locate memory leak issues (not garbage collected classes & classloader) i noticed this huge problem: My webapp uses libraries that spawn helper Threads, using the default ThreadGroup. Those Helper Thread are subclasses of java.lang.Thread that override the run(). After stopping p

Embedding jasper (tomcat 5.5)

2007-06-06 Thread Dennis Thrysøe
Hi, I'm attempting to embed jasper into an application of mine. Actually I'm upgrading it from 4.1 to 5.5. The new version of jasper uses commons-logging, which the old one didn't seem to do. This causes problems for me when using jasper in webapplications that contain their own copy of comm

RE: error in catalina.out log

2007-06-06 Thread Caldarale, Charles R
> From: Jean-Pierre Astier [mailto:[EMAIL PROTECTED] > Subject: error in catalina.out log > > 6 juin 2007 15:01:08 org.apache.catalina.core.StandardWrapper unload > INFO: Waiting for 6 instance(s) to be deallocated The above message appears during Tomcat shutdown or application redeployment whil

Getting nuts with Tomcat 5.5 and log4j

2007-06-06 Thread Gregor Schneider
Hi guys, I've setup Tomcat on my Debian Box so that all loging goes to $CATALINA_HOME/logs/tomcat.log I've placed the files log4j.(xml,dtd) int $CATALINA_HOME/common/classes, and it runs like charm. Now, I've added another logger which is supposed to log the output of our apps only. That logger

RE: Perm Size

2007-06-06 Thread Caldarale, Charles R
> From: Milanez, Marcus [mailto:[EMAIL PROTECTED] > Subject: RES: Perm Size > > -D-XX:-UseSerialGC > -D-XX:MaxPermSize=256m > -D-XX:PermSize=128m The -D prefix is not used for any of the above options. -D is used only to set Java system properties, which heap-related options are not. > Throug

error in catalina.out log

2007-06-06 Thread Jean-Pierre Astier
Hi all, I use tomcat 5.5.20. I've got this message in my catalina.out log. --- 6 juin 2007 15:01:08 org.apache.catalina.core.StandardWrapper unload INFO: Waiting for 6 instance(s) to be deallocated

Re: Tomcat URL decoding different from Java's URLDecoder?

2007-06-06 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Rashmi, Rashmi Rubdi wrote: > On 6/5/07, Shankar Unni <[EMAIL PROTECTED]> wrote: >> (the page was already set to character >> encoding Big5), the encoded value sent in the URL was rather screwy: >> >> The original character is (Big5) 0xAE 0x78. >> >>

RES: Perm Size

2007-06-06 Thread Milanez, Marcus
Just to keep you guys informed, the parameters above prevented my service from start under Windows 2003 using Tomcat 6.0.10. I had to remove the -Xmx512m and -Xms1024m parameters to get it done... I simply put them (the same valus) in "Initial Memory Pool" and "Maximum Memory Pool" fields and i

RES: Perm Size

2007-06-06 Thread Milanez, Marcus
Hi, I could get it done! I just cleared the "Initial Memory Pool" and "Maximum Memory Pool" values and entered the following parameters whithout "-D" just like this: -Dcatalina.base=c:\jakarta-tomcat-6 -Dcatalina.home=c:\jakarta-tomcat-6 -Djava.endorsed.dirs=c:\jakarta-tomcat-6\endorsed -Djava.

RES: Perm Size

2007-06-06 Thread Milanez, Marcus
Hi, Thanks for your response Martin, and no, JAVA_OPTS has no effect when I use tomcat6w to register options. To monitor tgese parameters I'm using Lambda Probe. Chuck, I swear I've tried almost everything to get done, but using Lambda Probe I can see that I must have missed something. Followi

Re: [OT] Avoiding spam

2007-06-06 Thread Roger Roger
Jacob, Take a gmail address as I did. You can fetch all mail using pop and send using gmail-smtp, and spam filtering is excellent. If it becomes too much to handle, you can always delete this account and create a new one. Another option would be to create a special popbox for this purpose, and s

RE: [OT] Avoiding spam

2007-06-06 Thread Peter Crowther
> From: Jacob Rhoden [mailto:[EMAIL PROTECTED] > Slightly off topic, I notice when I post, my email address ends up on > hundreds of websites on google. How do people get around this? Fake > email addresses? Good spam filtering. "Security by obscurity" of not publishing my real email address c

[OT] Avoiding spam

2007-06-06 Thread Jacob Rhoden
Hi Guys, Slightly off topic, I notice when I post, my email address ends up on hundreds of websites on google. How do people get around this? Fake email addresses? Best Regards, Jacob _ Jacobs Blog -- http://www.jacobrhoden.com/ -