RE: log4j app logging

2018-12-18 Thread Lemke, Michael ST/HZA-ZIC2
ging system. >On Dec 18, 2018, at 9:42 AM, "Lemke, Michael ST/HZA-ZIC2" wrote: > >I have an old webapp that uses log4j 1.2 and which I am trying to deploy on >tomcat. For the heck of it I can't get tomcat to use the >log4.properties<http://log4.properties> fi

log4j app logging

2018-12-18 Thread Lemke, Michael ST/HZA-ZIC2
I have an old webapp that uses log4j 1.2 and which I am trying to deploy on tomcat. For the heck of it I can't get tomcat to use the log4.properties file. What am I doing wrong? tomcat 9.0.6 is installed as a Windows service and does serve my webapp, so the app is working fine. The project is m

Re: [SECURITY] CVE-2018-11784 Apache Tomcat - Open Redirect

2018-10-08 Thread Michael Yoder
On Wed, Oct 3, 2018 at 12:50 PM Mark Thomas wrote: > CVE-2018-11784 Apache Tomcat - Open Redirect Is it possible to get more information on the "specially crafted URL"? I'd like more information so that I can test if some of our apps are vulnerable. In addition, I'd like to verify that the valu

Re: Incorrect decoding of encoded HTTP headers

2018-10-03 Thread Michael Osipov
not defined and do not expect it to work properly. The best and morstreliable you can do is to encode your values with https://tools.ietf.org/html/rfc5987. This is the same approach done for Content-Disposition filename qualifier. You may want to evaluate mod_lua for that.

Re: Servlet Threads Changing Instance Data

2018-08-15 Thread Michael Osipov
  // < PRIVATE access!! Oh hell, this is so wrong. The servlet instance exists only once in the webapp classloader. No one is creating a new instace on each an every request. You *cannot* share a variable like that, it is not threadsafe. This is your problem. You have t

RE: Documentation for Catalina Base

2018-08-09 Thread Lemke, Michael ST/HZA-ZIC2
at would make it very clear that this is code you are not supposed to touch. But I have the feeling that tomcat isn't too strict about such a concept and might require you to do so anyway. Michael > >Cheers, > >On 07/30/2018 09:22 AM, Marek Czernek wrote: >> Hi there,

Re: Possible bug in HttpServletRequest#getRequestDispatcher()

2018-08-02 Thread Michael Osipov
Am 2018-08-02 um 16:30 schrieb Mark Thomas: On 02/08/18 11:15, Mark Thomas wrote: On 30/07/18 19:48, Michael Osipov wrote: Am 2018-07-25 um 22:13 schrieb Michael Osipov: Hi folks, I might have found a bug and looking for someone to confirm. (Tested in Tomcat 8.5.32). I agree that this is a

Re: Possible bug in HttpServletRequest#getRequestDispatcher()

2018-07-30 Thread Michael Osipov
Am 2018-07-25 um 22:13 schrieb Michael Osipov: Hi folks, I might have found a bug and looking for someone to confirm. (Tested in Tomcat 8.5.32). Consider the following servlet: @WebServlet("/request-dispatcher") public class TestServlet extends HttpServlet { private static

Re: Re: FW: HttpServletResponse.sendError - missing message in error page

2018-07-30 Thread Michael Osipov
eel of your application. The current valve shows you consicely status -- reason phrease, message, status description and the stacktrace if given. Michael - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org

Re: HttpServletResponse.sendError - missing message in error page

2018-07-26 Thread Michael Osipov
y how the report shall look like, it is at the discretion of the container, you should rely on that at all. Though, I'd be very greatful if you can isolate the case, I'd really want to fix this. Michael - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org

Possible bug in HttpServletRequest#getRequestDispatcher()

2018-07-25 Thread Michael Osipov
ava I consider this to be a bug, I know that Tomcat has its own URLEncoder, but it seems that we need a compliant URLDecoder or use UDecoder?. Can someone confirm? Michael - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org

Re: RE: mod_proxy_http and "Expect: 100-continue" don't play well

2018-07-06 Thread Michael Osipov
Just did the test. Zero changed, broken as before. Anyway, thanks for helping. I will try to continue with Yann on the Bugzilla issue. Michael > > Dear Michael, > > did you give it a try, also? To my knowledge the keyword "early" may hide > this header from the Apac

Re: mod_proxy_http and "Expect: 100-continue" don't play well

2018-07-05 Thread Michael Osipov
Am 2018-07-05 um 14:44 schrieb Jäkel, Guido: Dear Michael, I wasn't faced by this yes, but what's about adding something like RequestHeader unset Expect early at the Apache httpd? I know that tip, but it makes no sense at all. The client expected 10

Re: RE: mod_proxy_http and "Expect: 100-continue" don't play well

2018-07-05 Thread Michael Osipov
> Dear Michael, > > i don't know if this issue also take happen with it, but may be using mod_jk > an option for you, also? Hi Guido, just installed mod_jk through ports and configured it. No avail, I have the very same issue. I will raise this on the HTTPd maili

mod_proxy_http and "Expect: 100-continue" don't play well

2018-07-04 Thread Michael Osipov
morrow. If no solution is available, this will basically mean that I have to drop HTTPd proxying the requests and lose potential balancing features in the future for this service. Michael - To unsubscribe, e-mail: user

JASPIC question on AuthConfigFactory#registerConfigProvider() and appContext parameter

2018-06-28 Thread Michael Remijan
I'm using Tomcat 8.5.4.  I've got a JASPIC question When I call AuthConfigFactory#registerConfigProvider() if I pass null for the 3rd parameter (the appContext) there is no registration.  The registrationID returned by calling registerConfigProvider() is null.  And in testing I can verify the Au

RE: Tomcat Installation on Windows

2018-06-15 Thread Lemke, Michael ST/HZA-ZIC2
On Wednesday, June 13, 2018 10:20 PM Christopher Schultz wrote: >On 6/13/18 12:14 PM, Lemke, Michael ST/HZA-ZIC2 wrote: > >> What is a recommended setup on Windows? So far I am still at a loss >> and can't find anything anywhere. > >Regardless of platform, I always re

RE: Tomcat Installation on Windows

2018-06-13 Thread Lemke, Michael ST/HZA-ZIC2
On Wednesday, June 13, 2018 3:11 PM Igal Sapir wrote: >On 6/13/2018 3:58 AM, Lemke, Michael ST/HZA-ZIC2 wrote: >> I've been struggling to come to grips with Tomcat installation on Windows >> Server but I couldn't really find a clear answer. This is what I want to >

Tomcat Installation on Windows

2018-06-13 Thread Lemke, Michael ST/HZA-ZIC2
I've been struggling to come to grips with Tomcat installation on Windows Server but I couldn't really find a clear answer. This is what I want to achieve: * Have one directory tree with all my webapps * Have a tomcat installation somewhere different, like C:\Program Files * run tomc

RE: [EXTERNAL]Re: org.apache.tomcat.util.net.Nio2Endpoint$SocketProcessor.doRun Handshake failed

2018-01-05 Thread Michael Peng
Hi, Remy, Is the fix available for 8.5.16? if not, could you please share the code changes? Thanks, Michael -Original Message- From: Rémy Maucherat [mailto:r...@apache.org] Sent: Friday, January 5, 2018 5:58 AM To: Tomcat Users List Subject: [EXTERNAL]Re

org.apache.tomcat.util.net.Nio2Endpoint$SocketProcessor.doRun Handshake failed

2018-01-04 Thread Michael Peng
though) Do the changes make sense, and what would be the side effect ? In our case, the "netInBuffer" could be full, i.e., postion = limit for large data. Maybe the "netInBuffer" should not be cleared since "compact" would reset the "netInBuffer", should it? Please advise. Thanks, Michael

RE: ISAPI and IIS 10 Logging Issue

2017-11-22 Thread Thomas, Michael
-- On 17/11/17 15:47, jumiller wrote: > I finally managed to figure out what the issue is/was. The > c:\windows\system32\inetsrv\config\applicationHost.config file has a > definition for IsapiFilter in the overrideMode="Allow"> s

RE: ISAPI and IIS 10 Logging Issue

2017-10-10 Thread Thomas, Michael
- On 06/10/17 22:42, Mark Thomas wrote: > On 06/10/17 16:27, Mark Thomas wrote: >>> On 10.05.2017 8:54, Thomas, Michael wrote: >>> >>> Unfortunately I am not getting much traction with Microsoft. Fro

RE: ISAPI and IIS 10 Logging Issue

2017-10-05 Thread Thomas, Michael
XfUwBahUZvJn-qGmC8Rh9wHr8D0&m=DbQ305KuTM2F_E2iBepldzdcGBtdlaOltNKMsXQJiPY&s=dCzIxTcvs4S2BUcLmkC9Nk3iAk985CuVxROdGRwfI8E&e= There (for IIS 8) it says "are replaced". All of this without any guarantee though, I am not an MS expert in any way. --

RE: ISAPI and IIS 10 Logging Issue

2017-10-05 Thread Thomas, Michael
-- On 06.09.2017 22:07, Thomas, Michael wrote: > > -- >> On 01.09.2017 22:21, Thomas, Michael wrote: >>> All, >>> >>> When

Re: [SECURITY] CVE-2017-12617 Apache Tomcat Remote Code Execution via JSP upload

2017-10-04 Thread Michael Smith
Mark, Do you know if tomcat 5.x and 6.x are vulnerable to this issue? I know they are not supported, but are they exploitable by this vulnerability? Thx Mike On 3 October 2017 at 11:55, Mark Thomas wrote: > CVE-2017-12617 Apache Tomcat Remote Code Execution via JSP Upload > > Severity: Import

RE: ISAPI and IIS 10 Logging Issue

2017-09-06 Thread Thomas, Michael
-- > On 01.09.2017 22:21, Thomas, Michael wrote: >> All, >> >> When using the ISAPI Handler Mapping in IIS 10 on Windows 2016, the IIS logs >> are not identifying the URI Stem (cs-uri-stem) and URI

RE: ISAPI and IIS 10 Logging Issue

2017-09-05 Thread Thomas, Michael
-- On 01.09.2017 22:21, Thomas, Michael wrote: > All, > > When using the ISAPI Handler Mapping in IIS 10 on Windows 2016, the IIS logs > are not identifying the URI Stem (cs-uri-stem) and URI Query (cs-uri-query) &

ISAPI and IIS 10 Logging Issue

2017-09-01 Thread Thomas, Michael
All, When using the ISAPI Handler Mapping in IIS 10 on Windows 2016, the IIS logs are not identifying the URI Stem (cs-uri-stem) and URI Query (cs-uri-query) as expected. For EVERY request that the handler processes (e.g. .cfm), the cs-uri-stem records an entry as "/jakarta/isapi_redirect.dll"

IIS 10 Logging Issue

2017-07-06 Thread Thomas, Michael
All, I am having an issue with IIS Logs on Windows 2016. Specifically, the cs-uri-stem and cs-uri-query columns are not recording requests properly. For EVERY request that is handled by the connector, the cs-uri-stem records an entry as "/jakarta/isapi_redirect.dll" and the cs-uri-query is al

Re: Tomcat 8.5: wrong classloader used during context startup?

2017-05-19 Thread Michael Heinen
Am 18.05.2017 um 19:01 schrieb Mark Thomas: On 17/05/2017 14:32, Michael Heinen wrote: I am currently migrating a web app from Tomcat 7.0.73 to 8.5.15. An embedded Tomcat is used on development systems. The web-inf/lib folder of the application contains a jar with a SAXParserFactory

Tomcat 8.5: wrong classloader used during context startup?

2017-05-17 Thread Michael Heinen
ed? Should Tomcat use libraries of the web app for the startup of a context, here for web-xml parsing? Regards, Michael - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mai

Re: Embedded tomcat does not find web-fragment in jars outside web-inf\lib

2017-05-11 Thread Michael Heinen
Am 10.05.2017 um 19:59 schrieb Mark Thomas: On 10/05/17 12:40, Michael Heinen wrote: Am 10.05.2017 um 12:18 schrieb Mark Thomas: On 10/05/17 10:26, Michael Heinen wrote: Am 10.05.2017 um 00:40 schrieb Mark Thomas: On 09/05/17 15:25, Michael Heinen wrote: Hi all, I am currently mirgating an

Re: Embedded tomcat does not find web-fragment in jars outside web-inf\lib

2017-05-10 Thread Michael Heinen
Am 10.05.2017 um 12:18 schrieb Mark Thomas: On 10/05/17 10:26, Michael Heinen wrote: Am 10.05.2017 um 00:40 schrieb Mark Thomas: On 09/05/17 15:25, Michael Heinen wrote: Hi all, I am currently mirgating an application from Tomcat 7.0.73 to 8.0.43. On development platforms we use an embedded

Re: Embedded tomcat does not find web-fragment in jars outside web-inf\lib

2017-05-10 Thread Michael Heinen
Am 10.05.2017 um 00:40 schrieb Mark Thomas: On 09/05/17 15:25, Michael Heinen wrote: Hi all, I am currently mirgating an application from Tomcat 7.0.73 to 8.0.43. On development platforms we use an embedded tomcat. On of the jars on the classpath contains a web-fragment.xml in it's MET

Embedded tomcat does not find web-fragment in jars outside web-inf\lib

2017-05-09 Thread Michael Heinen
e web-fragement is processed when I move the jar to the web-inf\lib folder. Regards, Michael - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org

Problems with tomcat 9 http/2 configuration

2017-01-25 Thread Zigarelli, Michael
Hi, I am unable to configure tomcat 9.0.0.M17 for http/2 support. My connector for port 8443 has been uncommented and the necessary certificates were added to it. I am receiving this error when I start my tomcat: Jan 25, 2017 4:28:21 PM org.apache.catalina.util.LifecycleBase handleSubClassExce

Re: Ability to set cipher suites for websocket connections

2017-01-17 Thread Michael Orr
On 17 January 2017 at 13:39, Mark Thomas wrote: > On 17/01/2017 11:23, Michael Orr wrote: >> Hi, >> >> There is a user property "org.apache.tomcat.websocket.SSL_PROTOCOLS" >> that you can use to provide the list of permitted SSL protocols w

Ability to set cipher suites for websocket connections

2017-01-17 Thread Michael Orr
ason why there is no "org.apache.tomcat.websocket.SSL_CIPHER_SUITES" property, or is it simply an oversight? Thanks, and keep up the great work! Michael - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additi

Re: Mounting WebDAV in Tomcat 7.0.45

2016-11-29 Thread Michael Osipov
HTTPS and SPNEGO authentication. Both works with Tomcat and HTTPd's mod_dav. Everything else is a rollercoaster ride. Michael - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: us

Re: Validating HTTP status code

2016-11-29 Thread Michael Osipov
Am 2016-11-29 um 16:07 schrieb Mark Thomas: On 29/11/2016 14:40, Christopher Schultz wrote: Michael, On 11/29/16 8:14 AM, Michael Osipov wrote: Hi folks, while investigating another possible patch for the RewriteValve, I have noticed that Tomcat 8.5 does not validate the set status code

Re: Validating HTTP status code

2016-11-29 Thread Michael Osipov
Am 2016-11-29 um 15:40 schrieb Christopher Schultz: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Michael, On 11/29/16 8:14 AM, Michael Osipov wrote: Hi folks, while investigating another possible patch for the RewriteValve, I have noticed that Tomcat 8.5 does not validate the set status

Validating HTTP status code

2016-11-29 Thread Michael Osipov
ttp11.Http11OutputBuffer.sendStatus(). RFC 7230, section 3.1.2 defines the EBNF the status-code is defined as 3DIGIT. My question: is that an implementation error? Not having checked Apache 2.4 yet, I know that mod_rewrite.c will return an error if the status code is not between 100 and 900 [1]. Michae

RE: Clarification on roles "*" and "**" in Tomcat 8.5.x

2016-11-21 Thread Osipov, Michael
> On 21/11/2016 10:45, Osipov, Michael wrote: > > Hi folks, > > > > I am currently porting our custom Tomcat components from 6.0 to 8.5.8+ > and need > > to clarify some possible inconsistencies for new/changed roles "*" and > "**" > &

Clarification on roles "*" and "**" in Tomcat 8.5.x

2016-11-21 Thread Osipov, Michael
breaking the specs? It is currently a mere copy and paste from GenericPrincipal#hasRole() and RealmBase#hasRole() in our code. Best regards, Michael - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org

tomcat under aix has SSL certificate with a weak hash algorithm

2016-09-27 Thread Michael Mattes
service. Note that this plugin reports all SSL certificate chains signed with SHA-1 that expire after January 1, 2017 as vulnerable. This is in accordance with Google's gradual sunsetting of the SHA-1 cryptographic hash algorithm. Michael Mattes DevIT Boeblingen Phone: +49-(0)70

Re: mod-jk (1.2.37) crashes Apache 2 (2.4.7) occasionally with a buffer overflow on Ubuntu 14.04 x64

2016-07-25 Thread Michael Diener
FYI, the bug is submitted: https://bz.apache.org/bugzilla/show_bug.cgi?id=59897 Chris and Rainer, thanks for pointing me in the right direction! Michael On 19 July 2016 at 11:42, Michael Diener wrote: > Chris, > > thanks a lot for explaining what could be overflowing the FD_SETSIZE

Re: mod-jk (1.2.37) crashes Apache 2 (2.4.7) occasionally with a buffer overflow on Ubuntu 14.04 x64

2016-07-19 Thread Michael Diener
places already, just not at the spot that matters in my case. Anyhow, I will submit a bug report later this week with all the information and will post a link over here as well. Thank you, Michael On 18 July 2016 at 16:56, Christopher Schultz wrote: > -BEGIN PGP SIGNED MESSAGE- >

Re: mod-jk (1.2.37) crashes Apache 2 (2.4.7) occasionally with a buffer overflow on Ubuntu 14.04 x64

2016-07-18 Thread Michael Diener
nk something on my Linux machine is not right. What would you guys suggest? Should I file a bug report? My system runs stable now after the change to poll() and I don't hit that problem anymore. Thanks, Michael

Re: mod-jk (1.2.37) crashes Apache 2 (2.4.7) occasionally with a buffer overflow on Ubuntu 14.04 x64

2016-07-05 Thread Michael Diener
luate the IF in line 284 to TRUE? I wonder if this might be the real cause for my problems in the first place. 2. In line 305 of the original jk_connect.c there is a FD_ISSET inside an IF. Is there an equivalent operation for poll or is the whole IF unnecessary then? Thanks, Michael On 30

Re: mod-jk (1.2.37) crashes Apache 2 (2.4.7) occasionally with a buffer overflow on Ubuntu 14.04 x64

2016-06-30 Thread Michael Diener
nd would be an interesting check to see, whether it is just an > old already fixed problem. You are right, I will test and get back. Viele Grüße, Michael --

mod-jk (1.2.37) crashes Apache 2 (2.4.7) occasionally with a buffer overflow on Ubuntu 14.04 x64

2016-06-29 Thread Michael Diener
I get occasional Apache 2 crashes being caused by mod_jk and I'm running out of ideas about the cause of the problem. I hope somebody here can point me in the right direction. -Michael tomcat6 6.0.39-1 libapache2-mod-jk 1:1.2.37-3 apache2 2.4.7-1ubuntu4 java version "1.6.0_45&qu

RE: diAdmin/launch/logon.do missing

2016-05-31 Thread Michael Hargis
help you can give me. Michael J. Hargis EDI Specialist Wockhardt/Morton Grove Pharmaceuticals 6451 Main St. Morton Grove, IL Phone: 847-410-6705 Cell: 847-975-4872 -Original Message- From: André Warnier (tomcat) [mailto:a...@ice-sa.com] Sent: Monday, May 30, 2016 7:52 AM To: users

diAdmin/launch/logon.do missing

2016-05-30 Thread Michael Hargis
Hello, When I try to log on to Data Integrator Management Console I get the HTTP Status 404 message: The requested resource (diAdmin/launch/logon.do) is not available. Anybody give me an idea how I might fix this problem? Michael J. Hargis EDI Specialist Wockhardt/Morton Grove Pharmaceuticals

RE: Tomcat connector settings

2016-05-10 Thread Michael Fox
SSAGE- Hash: SHA1 Michael, On 5/5/16 3:28 PM, Michael Fox wrote: > Please confirm that to configure the passthrough with an external > HTTPS and an internal HTTP, I would set Apache to listen to SSL on > port 8443 and Tomcat on port 8080, with a line inside the Virtual Host

RE: Tomcat connector settings

2016-05-05 Thread Michael Fox
connector settings -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Michael, On 5/2/16 10:20 AM, Michael Fox wrote: > I ultimately want to have a Tomcat application protected by our > university's system for authentication, which is SiteMinder. They > have told me that they can&#x

RE: Tomcat connector settings

2016-05-02 Thread Michael Fox
al Message- From: Christopher Schultz [mailto:ch...@christopherschultz.net] Sent: Friday, April 29, 2016 9:14 PM To: Tomcat Users List Subject: Re: Tomcat connector settings -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Michael, On 4/29/16 4:25 PM, Michael Fox wrote: > I have an Apac

Tomcat connector settings

2016-04-29 Thread Michael Fox
I have an Apache web server(2.4.6) which is accessible at http or https at DNS_hostname, and a Tomcat server (9.0.0.M1)with an application available at DNS_hostname:8080/app_name. I then disabled the non-SSL HTTP/1.1 connector on port 8080 and enabled HTTP/2 in the Tomcat server.xml, using the c

RE: SSL_CTX_set_alpn_select_cb undefined

2016-04-15 Thread Michael Fox
Thanks! I'll look into the latest OpenSSL. Best, Mike -Original Message- From: Rainer Jung [mailto:rainer.j...@kippdata.de] Sent: Friday, April 15, 2016 2:57 PM To: Tomcat Users List Subject: Re: SSL_CTX_set_alpn_select_cb undefined Am 15.04.2016 um 20:24 schrieb Michael Fox:

RE: SSL_CTX_set_alpn_select_cb undefined

2016-04-15 Thread Michael Fox
e end of my original post (below). Thanks, Mike -Original Message- From: Rainer Jung [mailto:rainer.j...@kippdata.de] Sent: Friday, April 15, 2016 1:57 PM To: Tomcat Users List Subject: Re: SSL_CTX_set_alpn_select_cb undefined Am 15.04.2016 um 19:37 schrieb Michael Fox: > I am runnin

SSL_CTX_set_alpn_select_cb undefined

2016-04-15 Thread Michael Fox
I am running Red Hat Linux version 7.2, Apache version 2.4.6, Java JDK 1.8.0_65, Tomcat version 9.0.0.M1, Tomcat connector version 1.2.5, and have uncommented the HTTP/2 Connector lines in the Tomcat server.xml file. When I run the configure command for the Tomcat connector, I get the message:

Tomcat mod_jk confirmation

2016-03-10 Thread Michael Fox
calls are being handled by the Apache server? Thanks, Mike Michael Fox Database/System Administrator Sidney Kimmel Comprehensive Cancer Center Johns Hopkins University fo...@jhmi.edu

Close_wait state

2016-02-18 Thread Elias, Michael
after the response, after 3 minutes, the WEB sends a FIN and tomcat ACK's. the connection goes into CLOSE_WAIT and stays in that state until restart of tomcat. Any help would be greatly appreciated. Thanks Michael

Close_wait state

2016-02-18 Thread Elias, Michael
after the response, after 3 minutes, the WEB sends a FIN and tomcat ACK's. the connection goes into CLOSE_WAIT and stays in that state until restart of tomcat. Any help would be greatly appreciated. Thanks Michael

RE: SAML SSO (Service Provider) Configurations on Tomcat Server

2016-01-27 Thread Mader, Michael
-Original Message- From: Mohammed Soukath Ali [mailto:mohammedsou...@vmware.com] Sent: Wednesday, January 27, 2016 2:50 AM To: users@tomcat.apache.org Subject: SAML SSO (Service Provider) Configurations on Tomcat Server Hi Team, We are planning to implement SAML in our Tomcat server. Ple

How to use org.apache.catalina.Catalina#findRoleMapping properly?

2015-12-14 Thread Michael Osipov
. Am I missing something? How can I make use of it without reinventing the wheel? [1] https://bz.apache.org/bugzilla/show_bug.cgi?id=55477 Thanks, Michael - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional c

Re: Rewriting entire request /body in Servlet Filter not working as expected

2015-10-05 Thread Michael Greco
On Mon, Oct 5, 2015 at 3:30 AM, Mark Thomas wrote: > On 04/10/2015 19:03, Michael Greco wrote: > > First time post here. > > > > Using : > > Tomcat 8.0.26 > > JDK1.8.0 update 51 > > Apache MyFaces 2.2.8. > > Maven build of webapp war file > >

Re: Rewriting entire request /body in Servlet Filter not working as expected

2015-10-04 Thread Michael Greco
On Sun, Oct 4, 2015 at 7:25 PM, Michael Greco wrote: > On Sun, Oct 4, 2015 at 2:03 PM, Michael Greco > wrote: > >> First time post here. >> >> Using : >> Tomcat 8.0.26 >> JDK1.8.0 update 51 >> Apache MyFaces 2.2.8. >> Maven build of webapp war

Re: Rewriting entire request /body in Servlet Filter not working as expected

2015-10-04 Thread Michael Greco
On Sun, Oct 4, 2015 at 2:03 PM, Michael Greco wrote: > First time post here. > > Using : > Tomcat 8.0.26 > JDK1.8.0 update 51 > Apache MyFaces 2.2.8. > Maven build of webapp war file > Chrome 45.0.2454.101 m 64 bit > Windows 7 64 bit > > Trying to rewrite th

Re: Rewriting entire request /body in Servlet Filter not working as expected

2015-10-04 Thread Michael Greco
thods beyond what I've done already. Is there another design pattern here that I can utilize to get around this issue? I would assume this issue probably varies from container to container depending on how the server implements the seeded request classes. On Sun, Oct 4, 2015 at 2:03 PM, Mic

Rewriting entire request /body in Servlet Filter not working as expected

2015-10-04 Thread Michael Greco
First time post here. Using : Tomcat 8.0.26 JDK1.8.0 update 51 Apache MyFaces 2.2.8. Maven build of webapp war file Chrome 45.0.2454.101 m 64 bit Windows 7 64 bit Trying to rewrite the entire request body in a filter using a http request wrapper. Not entirely sure if this is the right approach

RE: SSL configuration using PFX as keystore

2015-06-22 Thread Michael Salisbury
Thanks guys, I was wondering when I'd get a point where it's no longer practical to run the client through Windows, perhaps I'm getting close. I can connect fine over HTTP, but when I put in the SSL/certificate configuration no go - implementing the suggestions made by all. Mi

RE: SSL configuration using PFX as keystore

2015-06-21 Thread Michael Salisbury
to work, only on the client itself those registry changes as previously mentioned. I'll run a Wireshark trace and see what comes up, nothing in the Tomcat logs that I can see... Thanks Michael Salisbury Senior Systems Architect   |   P  07 960 7011  |   E  mich...@skypoint.co.nz   |   W

SSL configuration using PFX as keystore

2015-06-18 Thread Michael Salisbury
vices\WebClient\Parameters] "BasicAuthLevel"=dword:0001 "UseBasicAuth"=dword:0001 Server.xml I'm fairly new to this, but have done a fair bit of reading to get it working previously in Tomcat7...so any help would be greatly appreciated. Kind regards Michael Salisbu

Thank you! was Re: Dealing with an offensive post Was: Tomcat 7.0.57 - Deployment Issue

2015-05-08 Thread Michael Turner
That was fast! Regards, Michael Turner Executive Director Project Persephone K-1 bldg 3F 7-2-6 Nishishinjuku Shinjuku-ku Tokyo 160-0023 Tel: +81 (3) 6890-1140 Fax: +81 (3) 6890-1158 Mobile: +81 (90) 5203-8682 tur...@projectpersephone.org http://www.projectpersephone.org/ "Love does not co

RE: embedded tomcat: Call ChatAnnotation.broadcast(String) from application?

2015-03-04 Thread Enke, Dr., Michael
a multiple class-loader environment like a Servlet container > (each webapp has its own class loader) you can have multiple classes > with the same name but different class loaders. > >Mark Many thanks Mark, for this fundamental insight. That did the trick! Michael WINCOR NIXDORF Int

embedded tomcat: Call ChatAnnotation.broadcast(String) from application?

2015-03-04 Thread Enke, Dr., Michael
ate static final Set connections), my application sees an empty Set. How this is possible for a static method / Set? There should be only one static function / static variable in the JVM!? What is the correct way to achieve the call of broadcast() method? Thank you, Michael WINCOR NIXDORF Internat

RE: Receiving HTTP 505 on Expect: 100-continue

2014-12-08 Thread Osipov, Michael
> On 08/12/2014 08:35, Osipov, Michael wrote: > > Hi Mark, > > > >> On 06/12/2014 18:48, Christopher Schultz wrote: > >>> Michael, > >>> > >>> On 12/4/14 4:27 AM, Osipov, Michael wrote: > >>>> Hi folks, > >>>

RE: Receiving HTTP 505 on Expect: 100-continue

2014-12-08 Thread Osipov, Michael
> 2014-12-06 21:53 GMT+03:00 Mark Thomas : > > On 06/12/2014 18:48, Christopher Schultz wrote: > >> Michael, > >> > >> On 12/4/14 4:27 AM, Osipov, Michael wrote: > >>> Hi folks, > >> > >>> we are experiencing a popular issue

RE: Receiving HTTP 505 on Expect: 100-continue

2014-12-08 Thread Osipov, Michael
Hi Mark, > On 06/12/2014 18:48, Christopher Schultz wrote: > > Michael, > > > > On 12/4/14 4:27 AM, Osipov, Michael wrote: > >> Hi folks, > > > >> we are experiencing a popular issue with MS .NET clients sending > >> "Expect: 100-con

Re: Re: Receiving HTTP 505 on Expect: 100-continue

2014-12-08 Thread Osipov, Michael
Hi Christopher, > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > Michael, > > On 12/4/14 4:27 AM, Osipov, Michael wrote: > > Hi folks, > > > > we are experiencing a popular issue with MS .NET clients sending > > "Expect: 100-continue"

Receiving HTTP 505 on Expect: 100-continue

2014-12-04 Thread Osipov, Michael
m/b/fiddler/archive/2011/11/05/http-expect-continue-delays-transmitting-post-bodies-by-up-to-350-milliseconds.aspx Regards, Michael [1] http://tools.ietf.org/html/rfc7231#section-5.1.1 PS: If someone of the project members is interested in the Wirshark pcap file, I'll be happy to send

JSP compilation error with custom classloader

2014-09-20 Thread Michael Trosin
Hi, again I have a question, could anyone have a look, please? That would be great! :) http://stackoverflow.com/questions/25944468/jsp-compilation-error-with-custom-classloader I have no idea, why it's working in eclipse and not in a normal environment. Thanks in advance, Michael

How do I set or access JspCompilationContext in Tomcat from a servlet?

2014-09-17 Thread Michael Trosin
Hi all, I've posted my question also on stackoverflow, with no answer until now. Maybe you have an idea? I would appreciate a short answer (even a "you're wrong here" :) ). http://stackoverflow.com/q/25818119/2084865 Thanks in advance, Michael

Problem with Dynamic .war Deployment

2014-09-10 Thread Stewart, Michael
eadPoolExecutor.java:1142) [na:1.8.0_20] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) [na:1.8.0_20] at java.lang.Thread.run(Thread.java:745) [na:1.8.0_20] Thank you, Michael This e-mail contains privileged and

RE: Help with symbolic links

2014-07-17 Thread Michael Bauers
I have been working on an installer that installs tomcat 8.0.9 and copies a custom railo installation into the tomcat directory. While working on this, I seem to have broken tomcat. I had a copy of what was a working install, and reverting to that did not help. I did not do anything to java in

Help with symbolic links

2014-07-15 Thread Michael Bauers
We had tomcat 7 installed and were using symbolic links. A developer had apparently allowed this via allowLinking set to true in a context.xml file I am trying to migrate to tomcat 8.0.9 and this no longer works. In fact, I get warnings in the log. 15-Jul-2014 15:14:05.484 WARNING [localhost-

Re: Query string parameters not included by RequestDispatcher on Tomcat 6.0.36

2014-06-19 Thread Michael van Rooyen
On 2014/06/19 05:35 PM, Christopher Schultz wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Michael, On 6/19/14, 10:54 AM, Michael van Rooyen wrote: On 2014/06/19 04:48 PM, Michael van Rooyen wrote: On 2014/06/19 04:20 PM, Christopher Schultz wrote: -BEGIN PGP SIGNED MESSAGE

Re: Query string parameters not included by RequestDispatcher on Tomcat 6.0.36

2014-06-19 Thread Michael van Rooyen
On 2014/06/19 04:48 PM, Michael van Rooyen wrote: On 2014/06/19 04:20 PM, Christopher Schultz wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Michael, On 6/19/14, 9:43 AM, Michael van Rooyen wrote: We've been running Tomcat 6.0.36 without issues for many months. Our pages have

Re: Query string parameters not included by RequestDispatcher on Tomcat 6.0.36

2014-06-19 Thread Michael van Rooyen
On 2014/06/19 04:20 PM, Christopher Schultz wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Michael, On 6/19/14, 9:43 AM, Michael van Rooyen wrote: We've been running Tomcat 6.0.36 without issues for many months. Our pages have many components and are constructed

Query string parameters not included by RequestDispatcher on Tomcat 6.0.36

2014-06-19 Thread Michael van Rooyen
hose from the main page. Has anyone experienced this before, or know what may cause it? Thanks, Michael. - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org

SV: Hosts and ROOT folder

2014-05-27 Thread Michael Salmon
e(s)876.824 bytes 8 Dir(s) 24.443.654.144 bytes free C:\Program Files\Canto\Cumulus Web Solutions\apache-tomcat-7.0.42\webapps\coop\R OOT> Venlig hilsen / Best regards Michael Salmon IT-Chef t: +45 87 95 55 43 m: +45 24 86 40 08 [datagraf]<http://www.datagraf.dk/> Jæ

Hosts and ROOT folder

2014-05-27 Thread Michael Salmon
in the documentation this is not recommended. All help would be appreciated. If you need more info please tell me. Thanks Venlig hilsen / Best regards Michael Salmon IT-Chef t: +45 87 95 55 43 m: +45 24 86 40 08 [datagraf]<http://www.datagraf.dk/> Jaegerg?rdsgade 122, DK-800

MBean register error in Tomcat 7

2014-03-06 Thread Michael L Apperson
I am running a Tomcat 7.0.27 web server on Redhat EL 2.6.32 X86-64 Linux OS with Java 1.7.0_45 and seeing a very unusual error in my web app. The web.xml for the web app defines a startup servlet with a property of "load on startup" and this servlet extends HttpServlet and implements the init(

AW: FarmWarDeployer ocassionally fails with "Application is being serviced"

2014-01-22 Thread Michael Gloegl
"Application is being serviced" On 22/01/2014 10:24, Michael Gloegl wrote: > Can somebody shed any light here on what the "serviced" status means and how > we can avoid this FarmWarDeployer Failure? It usually means that the manager application or the auto deployment code is

FarmWarDeployer ocassionally fails with "Application is being serviced"

2014-01-22 Thread Michael Gloegl
deployment error other than "try again". All the information I can find is that this method checks if an application is being serviced by another component. Can somebody shed any light here on what the "serviced" status means and how we can avoid

Open Source Survey - http://goo.gl/5bwR9t

2014-01-11 Thread Michael Kaserer
Hi everybody, We are two students currently working on a research project regarding motivation for contributing to Open Source projects. You can help us by filling out the following web-survey, it only takes max. 2 minutes! This is the link: http://goo.gl/5bwR9t Thanks! ---

Re: Please kindly give my wiki user access to edit wiki page

2013-10-16 Thread Michael-O
w.hyve.com/cloud-hosting/technologies/java-tomcat-hosting Jon, just checked your company page. Your services are outdated. 1. You offer Tomcat 5 hosting. Seriously? It's EOL. 2. You even support Java 6? It's EOL. 3. 128 MiB JVM memory? Memory is cheap

Updating a context.xml within a Cluster

2013-10-14 Thread Michael Martin
Hello, Hoping someone could help with this... I have a tomcat 7.0.32 cluster, which isn't used at all for session persistence or load balancing (there is no apache http), but instead just for auto-deployments using FarmWarDeployer. It currently works, so I add my applications .war file to one,

Re: SpnegoAuthenticator gives GSSException (Desired initLifetime) wih IBM JDK

2013-10-09 Thread Michael-O
r from IBM. What you could do is download my source [1], change the lifetime to GSSCredential.INDEFINITE_LIFETIME and see whether it fixes the problem. Michael [1] http://tomcatspnegoad.sourceforge.net/download.html Thanks Michael. It did solve the issue. Not sure, if it will be acceptable as a fi

<    1   2   3   4   5   6   7   8   9   10   >