Need HELP !! Classloader issue in deserialization

2009-06-20 Thread dhruv patel
Hi Team, i am developing one application it uses *platonos plugin engine.* design is like : * server (intiates plugin engine) | | plugin 1 (dynamically deployed) | plugin 2* server accepts plugins, install them and manage their lifecycle. server maintain registry of

Re: Reading POSTed data

2009-06-20 Thread André Warnier
Caldarale, Charles R wrote: From: Alan Chaney [mailto:a...@compulsivecreative.com] Subject: Re: Reading POSTed data I don't want to appear picky, but that doesn't actually seem that problematic. If you don't set the content type as application/x-ww-form-urlencoded then you should be able to

Tomcat 6 not working with Apache 1.3.37 on Debian

2009-06-20 Thread zvince
Hi, I can't get Apache 1.3.37 to work with Tomcat 6.0.20, on Debian, Linux kernel 2.6.19. I successfully tested Tomcat 6 with Apache 2.2, jk connector 1.2.28 on Windows XP, Ubuntu 8.04. But on Debian, with Apache 1.3.37 it doesn't work. Tomcat is working : http://mydomain.com:8080 works fine, I

Re: Reading POSTed data

2009-06-20 Thread David Smith
André Warnier wrote: Caldarale, Charles R wrote: From: Alan Chaney [mailto:a...@compulsivecreative.com] Subject: Re: Reading POSTed data I don't want to appear picky, but that doesn't actually seem that problematic. If you don't set the content type as application/x-ww-form-urlencoded then

Re: How does Tomcat handle a slow HTTP DoS?

2009-06-20 Thread Mark Thomas
Brett wrote: It is described here: http://ha.ckers.org/slowloris/ For those that aren't aware this is a well know and understood issue that has been around for quite some time. This is just a re-hash that, for whatever reason, is getting more attention than it probably warrants. Basically

RE: [OT] Apache mod_jk HTTPS problem

2009-06-20 Thread attacus
Thank you, Chris. Customizing ServerName solved the problem. -Original Message- From: Christopher Schultz [mailto:ch...@christopherschultz.net] Sent: Wednesday, June 17, 2009 11:27 PM To: Tomcat Users List Subject: Re: [OT] Apache mod_jk HTTPS problem -BEGIN PGP SIGNED MESSAGE-

Re: Pointers on diagnosing session and thread hangs

2009-06-20 Thread Pete Helgren
It was helpful in at least getting us to the lines of code that needed some investigating. It appears to be a blocking issue in our JDBC connections although we don't know what is the cause and why it is so random. Spent quite a bit of time looking into issues with the Commons jars, DBCP and

Form-based authentication

2009-06-20 Thread Oliver Block
Hello everybody, If this is not the appropriate mailing list, please tell me which mailing list I should use. I have writte a first jaas login module and it does authenticate users by logging into an imap server. If the credentials establish a connection and the inbox can be opened, the login

RE: Pointers on diagnosing session and thread hangs

2009-06-20 Thread Caldarale, Charles R
From: Pete Helgren [mailto:p...@valadd.com] Subject: Re: Pointers on diagnosing session and thread hangs I am looking at the DB Manager code I wrote to see if I am doing something wrong in implementing the pooling. For curiosity's sake, why did you roll your own DB pooling, rather than

RE: Form-based authentication

2009-06-20 Thread Caldarale, Charles R
From: Oliver Block [mailto:li...@oliver-block.eu] Subject: Form-based authentication But now I do not see how to connect the authentication module to a security constraint. I mean, do I have to add every user that has an imap account to web.xml? No, each user would normally have a set of

Re: Form-based authentication

2009-06-20 Thread Oliver Block
Am Samstag, 20. Juni 2009 23:41:11 schrieb Caldarale, Charles R: From: Oliver Block [mailto:li...@oliver-block.eu] Subject: Form-based authentication But now I do not see how to connect the authentication module to a security constraint. I mean, do I have to add every user that has an

RE: Form-based authentication

2009-06-20 Thread Caldarale, Charles R
From: Oliver Block [mailto:li...@oliver-block.eu] Subject: Re: Form-based authentication Are the roles passed to the LoginModule? No, you hard-code the single role name in the LoginModule, using whatever value you have in web.xml (currently User). You must have a role class that