Let's encrypt SSL config

2021-01-07 Thread ivan
seems tomcat cannot find the files I've specified in the server.xml. What do I miss? Best Regards, Ivan

Re: ApacheCon NA is in just under 3 weeks

2018-09-05 Thread Ivan Serdyuk
I know about some Apache commiters from Montreal - and they do not go to the conf, this time. Perhaps you should also consider afterparty options those. Ivan On Wed, Sep 5, 2018 at 1:40 PM Mark Thomas wrote: > All, > > ApacheCon North America starts in Montréal in just under th

Re: Tutorial - How to Set Up Lucee in Tomcat

2018-09-05 Thread Ivan Serdyuk
https://www.facebook.com/pg/Kyiv-Scala-Group-223492434893596/posts/?ref=page_internal - posted here. On Wed, Sep 5, 2018 at 1:16 PM Ivan Serdyuk wrote: > Awesome. I shall share that now > > On Wed, Sep 5, 2018 at 9:25 AM Igal @ Lucee.org wrote: > >> I published a blog post wi

Re: Tutorial - How to Set Up Lucee in Tomcat

2018-09-05 Thread Ivan Serdyuk
Awesome. I shall share that now On Wed, Sep 5, 2018 at 9:25 AM Igal @ Lucee.org wrote: > I published a blog post with an accompanying video tutorial about > setting up Lucee in Tomcat. While there are some Lucee-specific > elements in the tutorial, most of it is applicable to any servlet setup,

Re: Instances of org.apache.coyote.RequestInfo accumulate in RequestGroupInfo.processors and eventually result in OOME

2018-04-22 Thread Ivan Lar
Hello, Here is the path to GC roots for a single RequestInfo object. However, it does not tell me anything. At least I don't see that my application is holding up the resources. Could you see anything relevant here? Class Name | Shallow Heap | Retained Heap --

Change socket timeout in server side

2017-06-29 Thread Yin, Ivan
there anything way to change it in the server side? Any comment would be appreciated. Regards, Ivan Yin Product Support, GSC China BI Support Team SAP Beijing Software System Co., Lt 4/F, DLSP16, International Informat, 116023 Dalian, China, China T +86 411 8483-6392, M +86 18842622311, E i

答复: Information about incident ID 2205106170494020972

2016-04-04 Thread Yin, Ivan
972. May I know if there is a concept called "incident ID" in tomcat? Regards, Ivan -邮件原件- 发件人: Caldarale, Charles R [mailto:chuck.caldar...@unisys.com] 发送时间: 2016年4月5日 9:38 收件人: Tomcat Users List 主题: RE: Information about incident ID 2205106170494020972 > From: Yin, Iva

Information about incident ID 2205106170494020972

2016-04-04 Thread Yin, Ivan
nt ID and how I can solve this issue? Thanks in advance. Regards, Ivan

Re: problem with filters on Tomcat 7.0.16 and above

2012-08-27 Thread Ivan Polak
On 27 August 2012 22:13, Konstantin Kolinko wrote: > 2012/8/27 Ivan Polak : >> On 26 August 2012 23:05, Konstantin Kolinko wrote: >>> 2012/8/27 Ivan Polak : >>>> I have found, where is the problem. >>>> >>>> problem is in StandardContextV

Re: problem with filters on Tomcat 7.0.16 and above

2012-08-27 Thread Ivan Polak
Dne 27.8.2012 17:27 "Christopher Schultz" napsal(a): > > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Ivan, > > On 8/26/12 7:00 PM, Ivan Polak wrote: > > in Tomcat 7.0.14 (where everything is OK) is not null. > > Is there any reason you are usi

Re: problem with filters on Tomcat 7.0.16 and above

2012-08-26 Thread Ivan Polak
On 26 August 2012 23:05, Konstantin Kolinko wrote: > 2012/8/27 Ivan Polak : >> I have found, where is the problem. >> >> problem is in StandardContextValve.java in >> >> @Override >> public final void invoke(Request request, Response response) >>

Re: problem with filters on Tomcat 7.0.16 and above

2012-08-26 Thread Ivan Polak
request is : http://localhost:8080/app/invitations/ (served by UrlRewrite filter), object wrapper is NULL! in CoyoteAdapter.java on line 649: request.setWrapper((Wrapper) request.getMappingData().wrapper); is set NULL. Ivan On 26 August 2012 22:25, Konstantin Kolinko wrote: > 2012/8/26 I

Re: problem with filters on Tomcat 7.0.16 and above

2012-08-26 Thread Ivan Polak
/settings.html, which is 'direct' link to Spring MVC controller, createFilterChain method was called. thanks Ivan Dne 26.8.2012 17:00 "Konstantin Kolinko" napsal(a): > > 2012/8/26 Ivan Polak : > > thank you for your answer. > > > > "invitations&qu

Re: problem with filters on Tomcat 7.0.16 and above

2012-08-25 Thread Ivan Polak
default *.js pluploadServlet /upload 30 . thanks Ivan On 25 August 2012 16:34, Konstantin Kolinko wrote: > 2012/8/25 Ivan Polak : >> Hi! >> >> Recently, we have migrated my web app from Tomcat 6.0.16 to Tomcat >> 7.0

problem with filters on Tomcat 7.0.16 and above

2012-08-25 Thread Ivan Polak
) throws IOException, ServletException { in filter is called on welcome-screen (http://localhost:8080/app/index.html), but when I click on link http://localhost:8080/app/invitations/, method doFilter is not called. the same situation is with others filters defined in web.xml. thanks. Ivan

Re: Correct behavior while checking the thread binding in DirContextURLStreamHandler ?

2012-02-01 Thread Ivan
context binding on the classloader tree of the current context classloader, if does return it. d. Throw an IllegalStateException. 2012/2/1 Christopher Schultz > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Ivan, > > On 1/27/12 11:40 PM, Ivan wrote: > > if (resul

Re: Correct behavior while checking the thread binding in DirContextURLStreamHandler ?

2012-01-28 Thread Ivan
So is the current behavior by design, or it is a defect ? 2012/1/28 Ivan > Yes, but guess that getParent() will not be null in most scenarios :-) And > if the thread binding value is expected to be returned while no classloader > binding, think the codes should be in the end of t

Re: Correct behavior while checking the thread binding in DirContextURLStreamHandler ?

2012-01-27 Thread Ivan
Yes, but guess that getParent() will not be null in most scenarios :-) And if the thread binding value is expected to be returned while no classloader binding, think the codes should be in the end of the method. 2012/1/28 Caldarale, Charles R > > From: Ivan [mailto:xhh...@gmail.com] >

Correct behavior while checking the thread binding in DirContextURLStreamHandler ?

2012-01-27 Thread Ivan
return result; currentCL = currentCL.getParent(); } if (result == null) throw new IllegalStateException("Illegal class loader binding"); return result; } -- Ivan

Re: Tomcat 7, JAX-WS 2.2.5

2011-11-18 Thread Ivan Larionov
Hi Konstantin, Thank you for your reply. Please see inline below. On 17.11.2011 11:57, Konstantin Kolinko wrote: 2011/11/14 Ivan: Dear All, We are running JAX-WS web-services using JAX-WS RI under tomcat. First we upgraded from Tomcat 5.5 to Tomcat 7 and everything was fine. Eventually, we

Tomcat 7, JAX-WS 2.2.5

2011-11-14 Thread Ivan
ioProtocol' and everything started working. As I understand, both BIO and NIO connectors should be working well with servet 3.0 async. Could you comment on this? I am really looking forward to your reply. Best regards, Ivan - To

Re: Make the bindThread/unbindThread method proected ?

2011-01-21 Thread Ivan
Thanks, an entry in bugzilla is created, https://issues.apache.org/bugzilla/show_bug.cgi?id=50629 2011/1/21 Mark Thomas > On 21/01/2011 01:37, Ivan wrote: > > Hi, > > In the latest Tomcat codes, I saw that a new thread is created for > listener > > start, filter start an

Make the bindThread/unbindThread method proected ?

2011-01-20 Thread Ivan
initialization works. Thanks. -- Ivan

Re: destory method is called twice while the child is destoryed directly

2010-10-27 Thread Ivan
Yes, I am using 7.0.4. Will create a entry in the bugzila system Thanks. 2010/10/28 Mark Thomas > On 28/10/2010 02:20, Ivan wrote: > > Thanks for clarifying it, so do the devs have plan for it ? > > Yes. What? Fix it. When? TBD. > > Creating a bugzilla entry will ensure it

Re: destory method is called twice while the child is destoryed directly

2010-10-27 Thread Ivan
Thanks for clarifying it, so do the devs have plan for it ? Hope it could be fixed soon. 2010/10/27 Mark Thomas > On 27/10/2010 06:43, Ivan wrote: > > Hi, > > While calling the method destory() on the StandardContext directly, > it > > seems that the method destoryIn

Re: destory method is called twice while the child is destoryed directly

2010-10-27 Thread Ivan
Thanks for clarifying it, does the devs have plan for it ? Hope it could be fixed soon. 2010/10/27 Mark Thomas > On 27/10/2010 06:43, Ivan wrote: > > Hi, > > While calling the method destory() on the StandardContext directly, > it > > seems that the method destoryIn

destory method is called twice while the child is destoryed directly

2010-10-26 Thread Ivan
LifecycleBase.destroy() line: 271 ... So is it by desgin or some code changes might be needed ? Thanks. -- Ivan

Re: Recursive dependency between the tomcat-catalina-ha and tomcat-catalina

2010-10-21 Thread Ivan
2010/10/21 Mark Thomas > On 20/10/2010 21:39, Ivan wrote: > > Hi, > > From the pom file of tomcat-catalina-ha, it depends on the > > tomcat-catalina. But one class HTMLManagerServlet in the tomcat-catalina > has > > a reference to a class BackupManager in the

Recursive dependency between the tomcat-catalina-ha and tomcat-catalina

2010-10-20 Thread Ivan
new Integer( ((BackupManager)manager).getActiveSessionsFull()); } else if (ctxt.getManager() != null){ args[5] = new Integer(manager.getActiveSessions()); } else { args[5] = new Integer(0); } <--- thanks. -- Ivan

Re: Question about undeploying application

2010-08-17 Thread Ivan Mladenović
Hello, Problem solved by changing Quartz scheduler version to 1.8.3. Thanks for the help. On Fri, Aug 13, 2010 at 9:24 PM, Christopher Schultz < ch...@christopherschultz.net> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Ivan, > > On 8/13/2010 6:45 A

Re: Question about undeploying application

2010-08-13 Thread Ivan Mladenović
This is confusing for me because this is shown in log file when I try to deploy application. Could you give me some advice of how I can solve this? Thanks in advance. 2010/8/12 Caldarale, Charles R > > From: Ivan Mladenović [mailto:pif...@gmail.com] > > Subject: Question about u

Question about undeploying application

2010-08-12 Thread Ivan Mladenović
listener: ** And I also try to add following parameters in context.xml: * * Can I configure Tomcat to kill all treads when application is undeployed? Thanks in advance. Ivan

Re: use of default-content-type

2010-08-01 Thread Ivan
Any comment ? Thanks ! 2010/7/30 Ivan > Tomcat 7 > > 2010/7/30 Mark Thomas > > On 30/07/2010 09:32, Ivan wrote: >> > Hi, if default-content-type is configured in the web.xml, and in the jsp >> > file, a differernt content-type is configured, then an exception b

Re: use of default-content-type

2010-07-30 Thread Ivan
Tomcat 7 2010/7/30 Mark Thomas > On 30/07/2010 09:32, Ivan wrote: > > Hi, if default-content-type is configured in the web.xml, and in the jsp > > file, a differernt content-type is configured, then an exception below is > > thrown. > > From the description of t

Re: use of default-content-type

2010-07-30 Thread Ivan
> > Just a guess, does page1.jsp include another page2.jsp and page2.jsp does > not > specify content-type(which will be default-content-type)? > > > Ivan Xu wrote: > > > > Hi, if default-content-type is configured in the web.xml, and in the jsp > > file, a differe

use of default-content-type

2010-07-30 Thread Ivan
314) org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:320) org.apache.jasper.servlet.JspServlet.service(JspServlet.java:265) javax.servlet.http.HttpServlet.service(HttpServlet.java:722) -- Ivan

Re: FileDirContext returns the path directly without checking whether the target file really exists

2010-07-29 Thread Ivan
ade, and in this case MUST return the unpacked location. <--- 2010/7/29 Mark Thomas > On 29/07/2010 09:08, Ivan wrote: > > Thanks, Mark. > > So in other words, those descriptions in the spec for META-INF/resources > > make no sense. right ? > > Not sure what you mean

Re: FileDirContext returns the path directly without checking whether the target file really exists

2010-07-29 Thread Ivan
Thanks, Mark. So in other words, those descriptions in the spec for META-INF/resources make no sense. right ? 2010/7/29 Mark Thomas > On 29/07/2010 01:45, Ivan wrote: > > Thanks, Mark, if you mean the method getRealPath in BaseDirContext, I > have > > checked it. > > &g

A typo error in WebRuleSet

2010-07-29 Thread Ivan
Hi, It seems that there is one typo error on the line 523 of WebRuleSet file, it should be configureInjectionRules(digester, "web-app/ejb-local-ref/"); ---> configureInjectionRules(digester, "web-app/resource-env-ref/"); -- Ivan

Re: FileDirContext returns the path directly without checking whether the target file really exists

2010-07-28 Thread Ivan
Mark Thomas > On 28/07/2010 14:11, Ivan wrote: > > Thanks, if possible, could you please show me where it is ? I am really > > interested in those details :-) > > BaseDirContext > > Mark > > > >

Re: FileDirContext returns the path directly without checking whether the target file really exists

2010-07-28 Thread Ivan
Thanks, if possible, could you please show me where it is ? I am really interested in those details :-) 2010/7/28 Mark Thomas > On 28/07/2010 03:12, Ivan wrote: > > Yes, Caldarale, I do agree that in the spec, there is no word about > whether > > the file should exist (o

Re: FileDirContext returns the path directly without checking whether the target file really exists

2010-07-27 Thread Ivan
the resources in the META-INF/resources folder. 2010/7/28 Caldarale, Charles R > > From: Ivan [mailto:xhh...@gmail.com] > > Subject: Re: FileDirContext returns the path directly without checking > > whether the target file really exists > > > > I copied some words

Re: FileDirContext returns the path directly without checking whether the target file really exists

2010-07-27 Thread Ivan
ner has unpacked them from their containing JAR file when a call to getRealPath() is made, and in this case MUST return the unpacked location. <--- 2010/7/28 Mark Thomas > On 26/07/2010 03:20, Ivan wrote: > > Hi, > > Seems that the doGetRealPath method in the FileDirContext

FileDirContext returns the path directly without checking whether the target file really exists

2010-07-25 Thread Ivan
ile(getDocBase(), path); return file.getAbsolutePath(); } <--- -- Ivan

Re: How can I increase maximum upload size?

2010-06-03 Thread Ivan Mladenović
Hi, I solve the problem by defining following bean: If -1 is set for maximum upload size, then size of file will not be checked. Best Regards, Ivan Mladenovic 2010/6/3 Ivan Mladenović > Hi, > > > > I am using the Tomcat 6.0.26 and I try to upload file that is larg

How can I increase maximum upload size?

2010-06-03 Thread Ivan Mladenović
advance. Best Regards, Ivan

Re: Can I deploy war file to the running Tomcat, by using my web application?

2010-06-02 Thread Ivan Mladenović
Hi, Thank you for the replay. I solve the problem by using HTTP client. Best Regards, Ivan Mladenovic On Wed, Jun 2, 2010 at 1:06 PM, Pid wrote: > On 02/06/2010 09:30, Ivan Mladenović wrote: > > Hi, > > > > I am using Tomcat 6.0.26. Manager user is enabled in my tomc

Can I deploy war file to the running Tomcat, by using my web application?

2010-06-02 Thread Ivan Mladenović
Hi, I am using Tomcat 6.0.26. Manager user is enabled in my tomcat-users.xml file. Can I deploy war file to the running Tomcat, by using my web application? Could I get some examples about this? Thanks in advance. Best Regards, Ivan Mladenovic

Re: getPart()/getParts() invocation in the filter ?

2010-05-13 Thread Ivan
Thanks, Mark ! 2010/5/13 Mark Thomas > On 13/05/2010 15:43, Ivan wrote: > >> Thanks, Mark. >> OK, turn to the user mail list. >> From the text I quoted from servlet spec, does it mean that I must >> configured the target servlet with multipart (annotation or web

Re: getPart()/getParts() invocation in the filter ?

2010-05-13 Thread Ivan
ype? Actually, I tried in the latest Tomcat 7, it seems to work in this way. 2010/5/13 Mark Thomas > On 13/05/2010 03:00, Ivan wrote: > >> Hi, >> While using the new features of getPart()/getParts() in the Servlet >> 3.0, >> I found that those methods could not be in

Re: listing directory content outside tomcat root

2010-02-26 Thread Ivan Longhi
uot;path" and > "docBase" parameters are not allowed. ok, but since /path_to_some_dir/ is outside tomcat root ( $CATALINA_HOME ), how can I tell tomcat to look for /path_to_some_dir/META-INF/context.xml file? -- ciao, ivan --

Re: listing directory content outside tomcat root

2010-02-25 Thread Ivan Longhi
ops is useless On Thu, Feb 25, 2010 at 3:14 PM, Ivan Longhi wrote: >       >           >       -- ciao, ivan - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail

Re: listing directory content outside tomcat root

2010-02-25 Thread Ivan Longhi
/ is org.apache.catalina.servlets.DefaultServlet the right solution? thanks, ivan On Thu, Feb 25, 2010 at 1:19 PM, Tim Funk wrote: > Enable listings is "sort of"** a global setting. > > Since the default servlet is declared in conf/web.xml - its inherited in > *every* webapp.

listing directory content outside tomcat root

2010-02-25 Thread Ivan Longhi
. any idea? thanks ciao, ivan - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org

Re: Hand Authentication to Apache

2009-11-10 Thread Ivan Eulaers
From: Christopher Schultz > Subject: Re: Hand Authentication to Apache > To: "Tomcat Users List" > Date: Tuesday, November 10, 2009, 9:15 PM > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Ivan, > > On 11/10/2009 2:26 PM, Ivan Eulaers wrote: > > Today,

Hand Authentication to Apache

2009-11-10 Thread Ivan Eulaers
I have set up a basic "extranet" where clients can browse directories and view the files in those directories. Access is handled by basic authentication of Apache. In the directories that are open for a specific client I've created a .htaccess file (see example below). Today, Tomcat has been in

POST request hangs hup

2009-07-02 Thread Ivan Longhi
quot;-Xmx6048M") but the cpu usage is 100%. Is there a way to kill a single thread in tomcat whitout restarting it? Is there a way to limit the max execution time for a single thread/request? thanks, ivan -- ciao, ivan

tomcat and naming-common.jar problem.

2008-08-07 Thread Ivan Gonzalez
anyone know what's wrong? Is it a good idea to remove naming-common.jar and work without it? Hope somebody help me. Regards Ivan. - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [

custom JDBCRealm in Tomcat 5.5

2008-04-24 Thread Ivan Cheung
Hi, I have trying to do some custom authentication I have written myRealm to extend JDBCRealm modify server.xml

Re: How to detect the database for JDBC Realm is down

2008-04-20 Thread Ivan Cheung
reposting to see if I have better luck this time. On Fri, Apr 18, 2008 at 8:53 AM, Ivan Cheung <[EMAIL PROTECTED]> wrote: > Hi, > > I am building a web app and have setup digest authentication > > I am testing the app when I take the database that contains the username &g

How to detect the database for JDBC Realm is down

2008-04-18 Thread Ivan Cheung
again. I was wondering if someone can tell me what is the proper way to setup the custom error page when the database is down and authentication fail. Thanks, Ivan

Re: How to detect database for Tomcat JDBC Realm is down

2008-04-18 Thread Ivan Cheung
ver again. > > I was wondering if someone can tell me what is the proper way to setup the > custom error page when the database is down and authentication fail. > > Please reply to me direct since I am not on the alias. > > Thanks, > Ivan >

RE: CLASSPATH, .jar files, packages, and so forth

2007-11-01 Thread Mann, Ivan H
Oops. I mistyped one item. Everything is in webapps/. By now it doesn't matter, because it is working. Thanks to whomever it was that provided the example. Ivan Mann -Original Message- From: Christopher Schultz [mailto:[EMAIL PROTECTED] Sent: Thursday, November 01, 2007 12:

RE: CLASSPATH, .jar files, packages, and so forth

2007-11-01 Thread Mann, Ivan H
As we discovered earlier this morning, it is an applet question, not a servlet question. I looked in this spec and did not find any mention of applets, which is not surprising since it is the servlet spec. Is there an applet spec? Ivan Mann -Original Message- From: Caldarale

RE: CLASSPATH, .jar files, packages, and so forth

2007-11-01 Thread Mann, Ivan H
n the cod parameter is. The jar file is built from the same directory using this command: jar cvf schedule.jar applet/schedule/*.class The message is Exception in thread "AWT-EventQueue-7" java.lang.NoClassDefFoundError: applet/schedule/BuildSchedule

RE: CLASSPATH, .jar files, packages, and so forth

2007-11-01 Thread Mann, Ivan H
rk. How do I tell Tomcat when using applets to use a .jar file? Ivan Mann - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

CLASSPATH, .jar files, packages, and so forth

2007-10-31 Thread Mann, Ivan H
okbook document telling me how to > distribute an application in jar files to the web. I have Googled > many combinations of words and can't find one. If anybody has one of > those I would really appreciate it. I thing I am missing a step here, > possibly making the manifest, but I just don't know what that missing > step is. > > Thanks for the help. > > Ivan Mann > >

Tomcat seems not to send the complete response until it receives an ACK

2007-05-01 Thread Ivan Neto
y enabled, Tomcat still doesn't send the last part of the message before receiving the ACK. Is there any way to force Tomcat not to wait the ACK from the client to send the last part of a HTTP response? Thanks in advance, -- Ivan Neto

RE: How set a default context

2006-09-26 Thread Ivan Balashov
I think it should be configurable from somewhere. Moving directories or writing some custom apps for this IMHo is not quite right. -Ivan -Original Message- From: Mark Thomas [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 26, 2006 11:54 AM To: Tomcat Users List Subject: Re: How

RE: How set a default context

2006-09-26 Thread Ivan Balashov
But that means the context of application will change, as opposed to making it default. I'm not sure if this change is harmful to the application, but if it uses e.g. context name for some reason it might be failing. -Ivan -Original Message- From: Caldarale, Charles R [mailto:[

RE: How to disable PUT and DELETE methods in Tomcat 4.1.27?

2006-09-10 Thread Ivan Balashov
I guess those methods are left to be implemented e.g. by Webdav servlets, and while no implementation is present they simply return access error. -Original Message- From: Emre Ersoz [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 06, 2006 1:53 PM To: Tomcat Users List Subject: Re: H

Can Tomcat dump incoming/outgoing HTTP data?

2006-09-04 Thread Ivan Balashov
Hi all, I need to monitor HTTP traffic going to/from my web application. Normally I would use Ethereal, but unfortunately, it doesn't support localhost on windows. Could I setup tomcat so that (or maybe write my own filter) it would dump all incoming/outgoing HTTP data to a file? Thanks! smime