How to set the session pool size?

2006-02-08 Thread Vincent
Hi, I met a strange problem , that it seems that when the session pool size reaches 25 , exception will throw and my application have to restart then it can be work again.

Re: Reading Data Form MS -execel 2003- in java

2006-02-22 Thread Vincent
yeah , definally POI On 2/23/06, Bill Barker <[EMAIL PROTECTED]> wrote: > > <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] > > > > Hi Forum, > > Did anyone used java program to read data from microsoft excel ? > > Can any one give me pointers where to look for this ?? > > http://jak

tomcat-users.xml

2016-09-26 Thread vincent
Hello all and all, I can not reach a "host-manager webapp" where is the mistake my tomcat-users.xml file : < > vincent

What does the number preceding the catalina.org.apache.juli.AsyncFileHandler in Tomcat's conf/logging.properties mean?

2024-03-14 Thread Vincent Daniel
Hi, community When I configured Tomcat logs, I found the following configuration in logging.properties 1catalina.org.apache.juli.AsyncFileHandler 2localhost.org.apache.juli.AsyncFileHandler 3manager.org.apache.juli.AsyncFileHandler 4host-manager.org.apache.juli.AsyncFileHandler I am not sure wha

Re: What does the number preceding the catalina.org.apache.juli.AsyncFileHandler in Tomcat's conf/logging.properties mean?

2024-03-14 Thread Vincent Daniel
Thank you so much. I am ashamed that I did not read the documentation carefully. On Thu, Mar 14, 2024 at 7:46 PM Mark Thomas wrote: > > On 14/03/2024 11:36, Vincent Daniel wrote: > > Hi, community > > > > When I configured Tomcat logs, I found the fo

Re: What does the number preceding the catalina.org.apache.juli.AsyncFileHandler in Tomcat's conf/logging.properties mean?

2024-03-14 Thread Vincent Daniel
:) On Thu, Mar 14, 2024 at 7:53 PM Mark Thomas wrote: > > On 14/03/2024 11:51, Vincent Daniel wrote: > > Thank you so much. > > I am ashamed that I did not read the documentation carefully. > > No problem. It is only a single line in the docs and it helps a lot if > yo

Tomcat / Oracle JDBC OracleTimeoutPollingThread memory leak?

2023-02-13 Thread Ragosta, Vincent
as illustrated in the Tomcat documentation, here -- https://tomcat.apache.org/tomcat-9.0-doc/config/listeners.html#JreMemoryLeakPreventionListener_Examples? Thank you, Vincent

Tomcat Native 1.2.30 -- Windows 2016 TLSv1.3 support?

2023-04-24 Thread Ragosta, Vincent
://learn.microsoft.com/en-us/windows/win32/secauthn/protocols-in-tls-ssl--schannel-ssp- Do Tomcat Native or OpenSSL depend upon support for TLSv1.3 in the underlying OS? Thank you, Vincent

RE: [External] Re: Tomcat Native 1.2.30 -- Windows 2016 TLSv1.3 support?

2023-04-25 Thread Ragosta, Vincent
Ok -- makes sense. Thank you, Vincent -Original Message- From: Christopher Schultz Sent: Tuesday, April 25, 2023 10:28 AM To: users@tomcat.apache.org Subject: [External] Re: Tomcat Native 1.2.30 -- Windows 2016 TLSv1.3 support? WARNING: This message has originated from an External

LoginModule JAAS and Tomcat (initialize method is not called)

2006-02-15 Thread Vincent Delhommois
Hello, I developped my own LoginModule which is very simple for the moment. I wanted to know if I have to create the JAAS configuration file ? If yes where you I locate it ? When I start Tomcat, the constructor of the LoginModule is well called but Tomcat failed before the initialize method. Tom

Re: LoginModule JAAS and Tomcat (initialize method is not called)

2006-02-15 Thread Vincent Delhommois
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Un known Source) at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source) > Message du 15/02/06 à 17h51 > De : "Vincent Delhommois" > A : users@tomcat.apache.org > Copie à : > Objet : LoginModule JAAS and Tomcat

RE: LoginModule JAAS and Tomcat (initialize method is not called)

2006-02-15 Thread Vincent Delhommois
conf file... > Message du 15/02/06 à 19h29 > De : "Caldarale, Charles R" > A : "Tomcat Users List" , [EMAIL PROTECTED] > Copie à : > Objet : RE: LoginModule JAAS and Tomcat (initialize method is not called) > > > From: Vincent Delhommois [mailto:[E

JAAS /Tomcat : Which Realm should I use with my custom LoginModule ?

2006-02-16 Thread Vincent Delhommois
Hello, I had a problem implementing JAAS with Tomcat and I found my error, I was specifying my custum loginModule in the (I want to create a index.jsp page with 2 fields (login, pwd) and use the j_security_check). Thanks again

JAAS : HTTP 400 Invalid direct reference to form login ... (JAAS + Filter + j_security_check)

2006-02-23 Thread Vincent Delhommois
Hello, I implements a solution with JAAS and userfilter on Tomcat. the loginmodule return always 'true' eventhough the password is wrong. I do that to be able to return detail error messages to the login.jsp. (I use the role principal to display messages). The filter is used to dispatch to the

Re: JAAS : HTTP 400  Invalid direct reference to form login ... (JAAS + Filter + j_security_check)

2006-02-23 Thread Vincent Delhommois
AS : HTTP 400 Invalid direct reference to form login ... (JAAS > + Filter + j_security_check) > > Login module should return false if not authenticated. If you need to > store messages for the user, i'll suggest you pass them another way > (like by using a ThreadLocal pattern) >

2 sessions different instead of one wished !!!

2006-02-23 Thread Vincent Delhommois
Hello, I use JAAS and filter (security-filter) of Tomcat with the j_security_check. So here is the context : - the user try to access to the ActionServlet?action=welcome As the user is not authenticates, it loads the login.jsp page : - login.jsp submit the username and password through the j_secur

[JAAS] HTTP 400 : Référence directe à la f orm de connexion (form login page) invalide

2006-02-27 Thread Vincent Delhommois
Hello, I implements successfully a JAAS authentification but an error sometimes appends : The process is : First I logon the application ssuccessfully (JAAS OK => LoginModule return true) => My application JSP page is weel displayed Then I disconnect (session.invalidate()) Then I try to reconnect

j_security_check and JAAS => GOOD or BAD ?

2006-02-28 Thread Vincent Delhommois
Hello, When I look all the JAAS example, I see that you have to use the following code to use the LoginModule, etc... LoginContext lc = new LoginContext("MyExample"); try { lc.login(); } catch (LoginException) { // Authentication failed. } The "MyExample" is the name th

Web.xml - mime-type definition for file without extension

2006-11-16 Thread Vincent Peytavin
files without extension have a mime-type set to "audio/x-wav"? (If possible, I'd like to avoid using a servlet to set the mime-type for files without extension). Your adv

Comet in tomcat

2007-03-22 Thread Vincent Demay
f the Bayeux protocol? Cheers -- Vincent http://www.demay-fr.net/blog/ - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Tomcat 6 serious issues on AIX 5.3

2012-09-28 Thread vincent . soosai
be on Java 1.6 Would appreciate if anyone else had similar experience - what was resolution. Vincent If you are not the intended addressee, please inform us immediately that you have received this e-mail in error, and delete it. We thank you for your cooperation.

Re: Tomcat 6 serious issues on AIX 5.3

2012-09-28 Thread vincent . soosai
chultz.net 09/28/2012 10:21 AM Please respond to users@tomcat.apache.org To users@tomcat.apache.org cc Subject Re: Tomcat 6 serious issues on AIX 5.3 -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Vincent, On 9/28/12 12:47 PM, vincent.soo...@daimler.com wrote: > We ran our web app on T

RE: Tomcat 6 serious issues on AIX 5.3

2012-09-28 Thread vincent . soosai
No, It could be Tomcat 6 / AIX OS 5.3 / Java 1.5 We reverted to Tomcat 4 - identical code base identical DB config and the app works like a charm (has been working for 2 years) The reason to upgrade is 2 fold - to stay current and to use Tomcat's Realm LDAP authentication mechanism. chuck.

Tomcat 7 SSL Session ID

2012-11-28 Thread Vincent Goelen
fter alot of quick requests to the server since this gives a problem with my SSL Session tracking since the id changes then. I can provide a sample jsp project where the Invalidation occurs if wanted.. PS. I'm running Tomcat 7 on a mac osx Lion 10.7.4 server.xml settings: Thanks in advance, Vincent Goelen

Re: Tomcat 7 SSL Session ID

2012-12-04 Thread Vincent Goelen
... At this moment my session gets invalidates making the next SSL handshake a full one with new ID (pckt 40361, ...) 2012/11/29 Christopher Schultz > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Vincent, > > On 11/28/12 3:14 AM, Vincent Goelen wrote: > > When

Re: Tomcat 7 SSL Session ID

2012-12-04 Thread Vincent Goelen
pture_TomcatSSLFout) => here things go wrong at packet 40361 you can best filter on "tcp.port == 8443" to filter traffic between server and client - a screenshot of where things go wrong in case you can't open the wireshark capture (Schermafbeelding 2012-12-04 om 15.09.56) Again

Re: Tomcat 7 SSL Session ID

2012-12-06 Thread Vincent Goelen
the screenshot of my wireshark capture, the TCP rst there is not from the connection that's writing application data.. The session get's invalidates here because of an unexpected close of the connection which is completely normal regarding the SSL specs. grts, Vincent 2012/12/5 Esmond P

Re: Tomcat 7 SSL Session ID

2012-12-10 Thread Vincent Goelen
nection thats already > finished > > it's job causing problems for the active connection! At least that's > what I > > think is going on here.. > > As you can see in the screenshot of my wireshark capture, the TCP rst > there > > is not from the connection tha

Re: Tomcat 7 SSL Session ID

2012-12-17 Thread Vincent Goelen
, Vincent 2012/12/10 Christopher Schultz > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > Martin, > > On 12/10/12 10:22 AM, Martin Gainty wrote: > > we need to get your architect into this discussion > > > > Why is your code implementing 2 differen

Re: Tomcat 7 SSL Session ID

2012-12-17 Thread Vincent Goelen
apache.org > > > > Hey, > > > > http://users.telenet.be/goelenv/SSLTomcat.zip > > > > in this link you can find a netbeans project that will generate the > fault.. > > The index.html page will send requests to the index.jsp page, the thread >

Fwd: Error Message on Apache

2012-12-18 Thread Vincent Ogundu
Hi Good evening, My Application does not load from browser. I got the attached Apache error. Please kindly help with possible solutions. Thanks. -- Vincent Ogundu for:Easiglobe Messaging Ltd 85a Owukori Crescent, Alaka Estate, Surulere Lagos. Tel:234-1-7388983 /4. E-mail:vincentogu

Tomcat 6.0.26 64 bits = CPU 100%

2010-09-14 Thread Vincent DELHOMMOIS
o you have any idea ? Thanks Vincent - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org

Tomcat 6.0.26 64 bits = CPU 100%

2010-09-14 Thread Vincent DELHOMMOIS
o you have any idea ? Thanks Vincent - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org

Encoding issues with Tomcat 7.0.69+ and 8.0.33+

2016-07-08 Thread Vincent Massol
know the change in Tomcat that brought this difference from previous versions? * Who’s right? :) Thanks for any help -Vincent XWiki Committer - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional command

Re: Encoding issues with Tomcat 7.0.69+ and 8.0.33+

2016-07-10 Thread Vincent Massol
g/browse/XWIKI-13556). Could someone from the Tomcat dev team please comment on this? Thanks -Vincent > On 08 Jul 2016, at 22:00, Vincent Massol wrote: > > Hi guys, > > I work on the XWiki project (http://xwiki.org) and we’ve had several reports > of users telling us that XWiki i

Re: Encoding issues with Tomcat 7.0.69+ and 8.0.33+

2016-07-12 Thread Vincent Massol
Hi Mark, > On 11 Jul 2016, at 22:32, Mark Thomas wrote: > > On 10/07/2016 22:24, Vincent Massol wrote: >> Ok I’ve found the issue that is causing the problem: >> https://bz.apache.org/bugzilla/show_bug.cgi?id=59317 >> >> Specifically it says: >> >

Re: Encoding issues with Tomcat 7.0.69+ and 8.0.33+

2016-07-12 Thread Vincent Massol
an issue after all. Thanks -Vincent > On 12 Jul 2016, at 09:09, Vincent Massol wrote: > > Hi Mark, > >> On 11 Jul 2016, at 22:32, Mark Thomas wrote: >> >> On 10/07/2016 22:24, Vincent Massol wrote: >>> Ok I’ve found the issue that is causing the problem:

Re: tomcat-users.xml

2016-09-27 Thread Vincent Hardy
p in 95961 ms thank you for last time. regards, vincent 2016-09-27 9:14 GMT+02:00 André Warnier (tomcat) : > On 27.09.2016 03:36, vincent wrote: > >> Hello all and all, >> >> I can not reach a "host-manager webapp" >> where is the mistake >> >>

Re: tomcat-users.xml

2016-09-27 Thread Vincent Hardy
Thank you, it is works : regards vincent 2016-09-27 13:23 GMT+02:00 André Warnier (tomcat) : > Hi. > > It is difficult to be sure, with the extra quoting done by the email > clients, but it seems that you have an extra pair of < > inside the >

Filter Help!

2006-04-04 Thread Matthew J. Vincent
Hello everyone, If this is not the right place to post this could you please let me know where. I have searched the forums and Google and cannot find an answer. I have a Servlet filter that checks to see the content length of the request. long contentLength = request.getContentLength(); I

Setup Issue tomcat 6 SLES 11 SSL

2014-04-29 Thread Vincent T. DiScipio
Hi, I have setup tomcat 6 on SLES 11 and secured the instance with an external certificate if authority. The following is occurring from the same machine using both IE and Firefox: http://servername.wooster.edu:8080works for both IE11 and Firefox 29 and displays the index.html https://ser

RE: Setup Issue tomcat 6 SLES 11 SSL

2014-04-30 Thread Vincent T. DiScipio
-Original Message- From: Terence M. Bandoian [mailto:tere...@tmbsw.com] Sent: Wednesday, April 30, 2014 3:01 PM To: Tomcat Users List Subject: Re: Setup Issue tomcat 6 SLES 11 SSL On 4/30/2014 9:02 AM, Christopher Schultz wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > Vin

Xls mime problem

2006-10-16 Thread Maciejewski, Vincent \(GMI - NY Governments\)
cess an xls file using the browser with > the following url: > http:/localhost/filename.xls it works fine. > > When I use > http:/servname.com/filename.xls it doesn't. I just get the binary > contents of the file. > > Did anyone else have this