Re: Simple APR install question...

2009-10-12 Thread Darryl Pentz
I note that the README says that 1.1.12 is the current stable version. Is there a compelling reason to go for 1.1.16? Hmm, that said the repository I looked at only had up to 1.1.14. - Darryl From: Caldarale, Charles R chuck.caldar...@unisys.com To: Tomcat

Re: Simple APR install question...

2009-10-12 Thread Darryl Pentz
I must confess to not having really paid much attention to the APR listener. Do you recommend always using this when running on Windows or are there only certain conditions under which to use APR? thanks, Darryl From: Caldarale, Charles R

Re: Tracking down OOM - PermGen using jmap and jhat

2009-03-10 Thread Darryl Pentz
to expose the likely culprit. Many thanks, Darryl Pentz - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org

Re: Tracking down OOM - PermGen using jmap and jhat

2009-03-10 Thread Darryl Pentz
: Tracking down OOM - PermGen using jmap and jhat From: Darryl Pentz [mailto:djpe...@yahoo.com] Subject: Re: Tracking down OOM - PermGen using jmap and jhat I tried using JConsole's GC button, but clearly this didn't do the trick. Did clicking the button run a major GC (aka PS MarkSweep

Tracking down OOM - PermGen using jmap and jhat

2009-03-09 Thread Darryl Pentz
I'm using this article: http://blogs.sun.com/fkieviet/entry/how_to_fix_the_dreaded to try and isolate an apparent memory leak in our web application. It has been functioning fine until a new release which we deployed over this last weekend. Now suddenly we're hitting PermGen OOM's within the

Re: Communicating between webapps

2008-10-09 Thread Darryl Pentz
- Original Message - From: Darryl Pentz [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Wednesday, October 08, 2008 10:02 PM Subject: Re: Communicating between webapps Bill, You would think so but it isn't that easy. Which is good to some degree, because that would

Re: Communicating between webapps

2008-10-09 Thread Darryl Pentz
It's my thread, but you're welcome to it now. I'm done. :-) - Original Message From: André Warnier [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Thursday, October 9, 2008 9:59:50 AM Subject: Re: Communicating between webapps Hi. This is not my thread, so if

Re: Communicating between webapps

2008-10-08 Thread Darryl Pentz
In my case, webapp A needs to let webapp B know that an event has occurred ... webapp B then does something based on that event, and the result of that action is relevant to webapp A. I did in fact use HttpURLConnection because the original HttpClient class (Commons I think) was a memory pig

Communicating between webapps

2008-10-08 Thread Darryl Pentz
anybody know of any tried and trusted ways of communicating between webapps in Tomcat? Thanks, Darryl Pentz - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: Communicating between webapps

2008-10-08 Thread Darryl Pentz
between webapps Darryl Pentz wrote: I have an issue where webapp A needs to let webapp B know about an event, and then return a response to webapp B's processing of that event to the browser. So basically I need to communicate between webapps in the same container. I have not found

Re: Interapp Communications

2008-09-16 Thread Darryl Pentz
solutions including RMI, HttpInvoker, JMS, etc. Eventually, the simple HttpURLConnection is nice and lightweight for my needs right now. And now that the beast that is the Commons HttpClient is out of the mix things are far more efficient. Many thanks, Darryl Pentz P.S. Nice to see Saffers helping

Re: Piggybacking HTTP with binary protocol

2008-09-09 Thread Darryl Pentz
to implement http. Raymond On Mon, Sep 8, 2008 at 06:50, Darryl Pentz [EMAIL PROTECTED] wrote: Last time I mailed the list, I was inquiring about implementing a custom connector or something along those lines to support a binary protocol along with HTTP. This approach proved flawed for various

Re: Piggybacking HTTP with binary protocol

2008-09-09 Thread Darryl Pentz
Hi Hassan, pardon my stupidity, but how exactly do you do what you're suggesting? - DP - Original Message From: Hassan Schroeder [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org; Darryl Pentz [EMAIL PROTECTED] Sent: Tuesday, September 9, 2008 9:25:07 PM Subject: Re

Piggybacking HTTP with binary protocol

2008-09-08 Thread Darryl Pentz
Last time I mailed the list, I was inquiring about implementing a custom connector or something along those lines to support a binary protocol along with HTTP. This approach proved flawed for various reasons, if not virtually impossible to do with the connector, processor, handler architecture