Author: darran.lofthouse(a)jboss.com
Date: 2011-02-09 10:50:11 -0500 (Wed, 09 Feb 2011)
New Revision: 13711
Modified:
common/trunk/src/main/java/org/jboss/wsf/framework/deployment/EndpointAddressDeploymentAspect.java
Log:
[JBWS-3212] Incomplete CONFIDENTIAL transport-guarantee detection for POJO endpoint.
Modified:
common/trunk/src/main/java/org/jboss/wsf/framework/deployment/EndpointAddressDeploymentAspect.java
===================================================================
---
common/trunk/src/main/java/org/jboss/wsf/framework/deployment/EndpointAddressDeploymentAspect.java 2011-02-09
14:06:52 UTC (rev 13710)
+++
common/trunk/src/main/java/org/jboss/wsf/framework/deployment/EndpointAddressDeploymentAspect.java 2011-02-09
15:50:11 UTC (rev 13711)
@@ -136,7 +136,7 @@
{
for (String currentUrlPattern : currentCollection.getUrlPatterns())
{
- if (urlPattern.equals(currentUrlPattern) ||
"/*".equals(currentUrlPattern))
+ if (urlPattern.equals(currentUrlPattern) || (urlPattern +
"/*").equals(currentUrlPattern) || "/*".equals(currentUrlPattern))
{
transportGuarantee = currentSecurity.getTransportGuarantee();
}
Show replies by date