summaryrefslogtreecommitdiffstats
path: root/branches
diff options
context:
space:
mode:
authorvamsic007 <vamsic007@13f79535-47bb-0310-9956-ffa450edef68>2009-08-10 05:40:22 +0000
committervamsic007 <vamsic007@13f79535-47bb-0310-9956-ffa450edef68>2009-08-10 05:40:22 +0000
commitde4541fd654973cf0ccdce916e6b9a6b37b933c6 (patch)
treea7b4d02ca0f585b16ea5148541e6ce9fbda1be50 /branches
parentb62409051917899259a9931becfcdfeb61d50ad1 (diff)
TUSCANY-3199 WebImplementationProcessor should prefix web.componentType URI with WEB-INF
o Fixed the URI in resolve() method to include WEB-INF git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@802656 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'branches')
-rw-r--r--branches/sca-java-1.5.1/modules/implementation-web/src/main/java/org/apache/tuscany/sca/implementation/web/xml/WebImplementationProcessor.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/branches/sca-java-1.5.1/modules/implementation-web/src/main/java/org/apache/tuscany/sca/implementation/web/xml/WebImplementationProcessor.java b/branches/sca-java-1.5.1/modules/implementation-web/src/main/java/org/apache/tuscany/sca/implementation/web/xml/WebImplementationProcessor.java
index 29d7e33282..d79517f232 100644
--- a/branches/sca-java-1.5.1/modules/implementation-web/src/main/java/org/apache/tuscany/sca/implementation/web/xml/WebImplementationProcessor.java
+++ b/branches/sca-java-1.5.1/modules/implementation-web/src/main/java/org/apache/tuscany/sca/implementation/web/xml/WebImplementationProcessor.java
@@ -172,7 +172,7 @@ public class WebImplementationProcessor extends BaseStAXArtifactProcessor implem
// Process componentType side file
ComponentType componentType = assemblyFactory.createComponentType();
- componentType.setURI("web.componentType");
+ componentType.setURI("WEB-INF/web.componentType");
componentType = resolver.resolveModel(ComponentType.class, componentType);
if (!componentType.isUnresolved()) {