Author: dkulp
Date: Thu Jul 30 21:25:32 2009
New Revision: 799448
URL: http://svn.apache.org/viewvc?rev=799448&view=rev
Log:
Change the string to match the other things we use more closes (like
schema-valiation-enabled and mtom-enabled)
Modified:
cxf/trunk/rt/bindings/soap/src/main/java/org/apache/cxf/binding/soap/interceptor/MustUnderstandInterceptor.java
cxf/trunk/systests/src/test/java/org/apache/cxf/systest/outofband/header/Server.java
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=799448&r1=799447&r2=799448&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
Thu Jul 30 21:25:32 2009
@@ -87,7 +87,7 @@
SoapMessage soapMessage) {
soapMessage.getInterceptorChain()
.add(new
UltimateReceiverMustUnderstandInterceptor(mustUnderstandQNames));
- Object o =
soapMessage.getContextualProperty("endpoint.handles.headers");
+ Object o =
soapMessage.getContextualProperty("endpoint-processes-headers");
if (o == null) {
//The default here really should be to make o = "" and process
//so any mustUnderstands are kill immediately. That will break
Modified:
cxf/trunk/systests/src/test/java/org/apache/cxf/systest/outofband/header/Server.java
URL:
http://svn.apache.org/viewvc/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/outofband/header/Server.java?rev=799448&r1=799447&r2=799448&view=diff
==============================================================================
---
cxf/trunk/systests/src/test/java/org/apache/cxf/systest/outofband/header/Server.java
(original)
+++
cxf/trunk/systests/src/test/java/org/apache/cxf/systest/outofband/header/Server.java
Thu Jul 30 21:25:32 2009
@@ -62,7 +62,7 @@
props.put(Endpoint.WSDL_SERVICE, new
QName("http://apache.org/hello_world_doc_lit_bare",
"SOAPService"));
props.put(Endpoint.WSDL_PORT, new
QName("http://apache.org/hello_world_doc_lit_bare", "SoapPort"));
- props.put("endpoint.handles.headers", "");
+ props.put("endpoint-processes-headers", "");
ep.setProperties(props);
ep.publish("http://localhost:9107/SOAPDocLitBareService/SoapPortNoHeader");
@@ -71,7 +71,7 @@
props.put(Endpoint.WSDL_SERVICE, new
QName("http://apache.org/hello_world_doc_lit_bare",
"SOAPService"));
props.put(Endpoint.WSDL_PORT, new
QName("http://apache.org/hello_world_doc_lit_bare", "SoapPort"));
- props.put("endpoint.handles.headers",
"{http://cxf.apache.org/outofband/Header}outofbandHeader");
+ props.put("endpoint-processes-headers",
"{http://cxf.apache.org/outofband/Header}outofbandHeader");
ep.setProperties(props);
ep.publish("http://localhost:9107/SOAPDocLitBareService/SoapPortHeader");