summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/trunk/modules/core
diff options
context:
space:
mode:
authorslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2011-10-17 16:53:45 +0000
committerslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2011-10-17 16:53:45 +0000
commitb5e16c817218949d7f9d4bbbe1b08a14c57c504e (patch)
tree4ab16074a943ecec914f04edf1ea1bec3e66cfc5 /sca-java-2.x/trunk/modules/core
parent04ba0404fe327a0932f88e8b803bda3add2786b6 (diff)
TUSCANY-3959 - Disable the mayProvides intent temporarily as it's causing POL4031 to fail. Looks like a WSDL processing issue.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1185279 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/trunk/modules/core')
-rw-r--r--sca-java-2.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/runtime/impl/EndpointReferenceBinderImpl.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/sca-java-2.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/runtime/impl/EndpointReferenceBinderImpl.java b/sca-java-2.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/runtime/impl/EndpointReferenceBinderImpl.java
index d5695f1cc4..ea8d7aba9c 100644
--- a/sca-java-2.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/runtime/impl/EndpointReferenceBinderImpl.java
+++ b/sca-java-2.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/runtime/impl/EndpointReferenceBinderImpl.java
@@ -838,7 +838,8 @@ public class EndpointReferenceBinderImpl implements EndpointReferenceBinder {
if (!match){
matchAudit.append("No match because the reference has a mayProvide intent that the service doesn't have " + eprIntent.getName());
matchAudit.appendSeperator();
- return false;
+ // Causing POL 4031 to fail
+ //return false;
}
}
}