You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by va...@apache.org on 2009/08/10 07:40:22 UTC

svn commit: r802656 - /tuscany/branches/sca-java-1.5.1/modules/implementation-web/src/main/java/org/apache/tuscany/sca/implementation/web/xml/WebImplementationProcessor.java

Author: vamsic007
Date: Mon Aug 10 05:40:22 2009
New Revision: 802656

URL: http://svn.apache.org/viewvc?rev=802656&view=rev
Log:
TUSCANY-3199 WebImplementationProcessor should prefix web.componentType URI with WEB-INF
 o Fixed the URI in resolve() method to include WEB-INF

Modified:
    tuscany/branches/sca-java-1.5.1/modules/implementation-web/src/main/java/org/apache/tuscany/sca/implementation/web/xml/WebImplementationProcessor.java

Modified: tuscany/branches/sca-java-1.5.1/modules/implementation-web/src/main/java/org/apache/tuscany/sca/implementation/web/xml/WebImplementationProcessor.java
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.5.1/modules/implementation-web/src/main/java/org/apache/tuscany/sca/implementation/web/xml/WebImplementationProcessor.java?rev=802656&r1=802655&r2=802656&view=diff
==============================================================================
--- tuscany/branches/sca-java-1.5.1/modules/implementation-web/src/main/java/org/apache/tuscany/sca/implementation/web/xml/WebImplementationProcessor.java (original)
+++ tuscany/branches/sca-java-1.5.1/modules/implementation-web/src/main/java/org/apache/tuscany/sca/implementation/web/xml/WebImplementationProcessor.java Mon Aug 10 05:40:22 2009
@@ -172,7 +172,7 @@
             
             // 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()) {