Author: dkulp
Date: Wed Jan 21 14:22:01 2009
New Revision: 736448
URL: http://svn.apache.org/viewvc?rev=736448&view=rev
Log:
Rename the archetype to something more appropriate, put in archetypes groupid
Added:
cxf/trunk/maven-plugins/archetypes/cxf-jaxws-javafirst/ (props changed)
- copied from r736363, cxf/trunk/maven-plugins/archetypes/cxf-http-basic/
Removed:
cxf/trunk/maven-plugins/archetypes/cxf-http-basic/
Modified:
cxf/trunk/maven-plugins/archetypes/cxf-jaxws-javafirst/pom.xml
cxf/trunk/maven-plugins/archetypes/pom.xml
cxf/trunk/rt/bindings/soap/src/main/java/org/apache/cxf/binding/soap/interceptor/MustUnderstandInterceptor.java
Propchange: cxf/trunk/maven-plugins/archetypes/cxf-jaxws-javafirst/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Wed Jan 21 14:22:01 2009
@@ -0,0 +1,9 @@
+.pmd
+.checkstyle
+.ruleset
+target
+eclipse-classes
+.settings
+.classpath
+.project
+.wtpmodules
Propchange: cxf/trunk/maven-plugins/archetypes/cxf-jaxws-javafirst/
------------------------------------------------------------------------------
svn:mergeinfo =
Modified: cxf/trunk/maven-plugins/archetypes/cxf-jaxws-javafirst/pom.xml
URL:
http://svn.apache.org/viewvc/cxf/trunk/maven-plugins/archetypes/cxf-jaxws-javafirst/pom.xml?rev=736448&r1=736363&r2=736448&view=diff
==============================================================================
--- cxf/trunk/maven-plugins/archetypes/cxf-jaxws-javafirst/pom.xml (original)
+++ cxf/trunk/maven-plugins/archetypes/cxf-jaxws-javafirst/pom.xml Wed Jan 21
14:22:01 2009
@@ -25,9 +25,9 @@
<relativePath>../../../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
- <groupId>org.apache.cxf</groupId>
- <artifactId>cxf-http-basic</artifactId>
- <name>Apache CXF Archetype - cxf-http-basic</name>
+ <groupId>org.apache.cxf.archetype</groupId>
+ <artifactId>cxf-jaxws-javafirst</artifactId>
+ <name>Apache CXF Archetype - Simple JAX-WS Java First</name>
<version>2.2-SNAPSHOT</version>
<url>http://cxf.apache.org</url>
<properties>
Modified: cxf/trunk/maven-plugins/archetypes/pom.xml
URL:
http://svn.apache.org/viewvc/cxf/trunk/maven-plugins/archetypes/pom.xml?rev=736448&r1=736447&r2=736448&view=diff
==============================================================================
--- cxf/trunk/maven-plugins/archetypes/pom.xml (original)
+++ cxf/trunk/maven-plugins/archetypes/pom.xml Wed Jan 21 14:22:01 2009
@@ -35,6 +35,6 @@
<modules>
- <module>cxf-http-basic</module>
+ <module>cxf-jaxws-javafirst</module>
</modules>
</project>
\ No newline at end of file
Modified:
cxf/trunk/rt/bindings/soap/src/main/java/org/apache/cxf/binding/soap/interceptor/MustUnderstandInterceptor.java
URL:
http://svn.apache.org/viewvc/cxf/trunk/rt/bindings/soap/src/main/java/org/apache/cxf/binding/soap/interceptor/MustUnderstandInterceptor.java?rev=736448&r1=736447&r2=736448&view=diff
==============================================================================
---
cxf/trunk/rt/bindings/soap/src/main/java/org/apache/cxf/binding/soap/interceptor/MustUnderstandInterceptor.java
(original)
+++
cxf/trunk/rt/bindings/soap/src/main/java/org/apache/cxf/binding/soap/interceptor/MustUnderstandInterceptor.java
Wed Jan 21 14:22:01 2009
@@ -73,7 +73,7 @@
throw new SoapFault(new Message("MUST_UNDERSTAND", BUNDLE,
notUnderstandHeaders),
soapVersion.getMustUnderstand());
}
- if (!ultimateReceiverHeaders.isEmpty()) {
+ if (!ultimateReceiverHeaders.isEmpty() && !isRequestor(soapMessage)) {
soapMessage.getInterceptorChain()
.add(new
UltimateReceiverMustUnderstandInterceptor(mustUnderstandQNames));
}