Author: darran.lofthouse(a)jboss.com
Date: 2011-02-09 11:54:35 -0500 (Wed, 09 Feb 2011)
New Revision: 13712
Modified:
framework/branches/jbossws-framework-3.1.2/src/main/java/org/jboss/wsf/framework/deployment/EndpointAddressDeploymentAspect.java
Log:
[JBPAPP-4406] Incomplete CONFIDENTIAL transport-guarantee detection for POJO endpoint.
Modified:
framework/branches/jbossws-framework-3.1.2/src/main/java/org/jboss/wsf/framework/deployment/EndpointAddressDeploymentAspect.java
===================================================================
---
framework/branches/jbossws-framework-3.1.2/src/main/java/org/jboss/wsf/framework/deployment/EndpointAddressDeploymentAspect.java 2011-02-09
15:50:11 UTC (rev 13711)
+++
framework/branches/jbossws-framework-3.1.2/src/main/java/org/jboss/wsf/framework/deployment/EndpointAddressDeploymentAspect.java 2011-02-09
16:54:35 UTC (rev 13712)
@@ -101,7 +101,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