[GitHub] [tomcat] michael-o commented on issue #195: BZ 63684: Wrapper never passed to RealmBase#hasRole() for given secur…

2019-08-26 Thread GitBox
michael-o commented on issue #195: BZ 63684: Wrapper never passed to 
RealmBase#hasRole() for given secur…
URL: https://github.com/apache/tomcat/pull/195#issuecomment-524982814
 
 
   @markt-asf, any opinion? I'd like to merge by tomorrow.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[Bug 63625] Unable to start Tomcat 7.0.96 (stop by 0xc0000005)

2019-08-26 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=63625

laurence.labo...@xmedius.com changed:

   What|Removed |Added

 CC||laurence.labo...@xmedius.co
   ||m

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[Bug 63696] uriworkermap does not work properly if it has /* pattern

2019-08-26 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=63696

Rainer Jung  changed:

   What|Removed |Added

 Resolution|--- |INVALID
 Status|NEW |RESOLVED
 OS||All

--- Comment #1 from Rainer Jung  ---
As far as I remember, the isapi redirector support some kind of virtual hosting
in IIS by first prefixing the URL with the local server name before mapping the
request using uriworkermap.properties. Only if it can't map that URI, it will
next try the raw URI without prefixed vhost.

So the log tells us, that it first tries to map

/localhost:48080/tomcat/test.jsp

and that URI matches the root map, not the tomcat map.

I guess port 48080 is something you configured. If that is stable, you could
try the follwoing rules instead in uriworkermap.properties:

/localhost:48080/tomcat*=tomcat
/localhost:48080/*=root

Any non-root context mapping would not require the vhost prefix in the rules,
because it would never match a /HOST:PORT/ prefixed URI. Only /* unfortunately
matches it.

Alternatively you can stay with your config but add another first rule
(exclusion rule starting with an exclamation mark):

!/localhost:48080/tomcat*=root

You can read a bit about the IIS vhost feature and maps under:

http://tomcat.apache.org/connectors-doc/reference/uriworkermap.html#Virtual_host_integration

Regards,

Rainer

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[GitHub] [tomcat] peteruhnak opened a new pull request #196: fix JSSE_OPTS quoting

2019-08-26 Thread GitBox
peteruhnak opened a new pull request #196: fix JSSE_OPTS quoting
URL: https://github.com/apache/tomcat/pull/196
 
 
   Otherwise if JSSE_OPTS is set with the same value, the quotation will cancel 
itself in the if condition.
   
   ```
   if not ""-Djdk.tls.ephemeralDHKeySize=2048""
   ```
   
   resulting in the following error
   
   ```
   =2048"" was unexpected at this time.
   ```


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[Bug 63695] session_cookie attribute does not work?

2019-08-26 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=63695

Christopher Schultz  changed:

   What|Removed |Added

 OS||All

--- Comment #1 from Christopher Schultz  ---
Did you change the JSESSIONID cookie name in Tomcat, or just in mod_jk? Those
two configurations must agree with each other.

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[Bug 63695] session_cookie attribute does not work?

2019-08-26 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=63695

--- Comment #2 from kimc@gmail.com ---
(In reply to Christopher Schultz from comment #1)
> Did you change the JSESSIONID cookie name in Tomcat, or just in mod_jk?
> Those two configurations must agree with each other.

Of course, I did, that's why I had the logs below

[Tue Aug 13 16:40:07.270 2019] [6532:18068] [debug]
init_ws_service::jk_isapi_plugin.c (3267): Forwarding request header Cookie :
TESTSESSIONID=ASfXUomeuKIAUYQKlGfFPk81z4ZCFVW32wVdAmmJqDBLaV7iy7SU8hXlXs3OLSg0.engine1

* my context.xml


My point is that once session_cookie is changed from its default, It never look
for session id from request headers.

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org