Skip to content

Commit 7b1862a

Browse files
committed
SWS-699 - XomPayloadMethodProcessor is not added methodReturnValueHandlers in DefaultMethodEndpointAdapter
1 parent dfa6846 commit 7b1862a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

core/src/main/java/org/springframework/ws/server/endpoint/adapter/DefaultMethodEndpointAdapter.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/*
2-
* Copyright 2005-2010 the original author or authors.
2+
* Copyright 2005-2011 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
66
* You may obtain a copy of the License at
77
*
8-
* http://www.apache.org/licenses/LICENSE-2.0
8+
* http://www.apache.org/licenses/LICENSE-2.0
99
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
@@ -164,7 +164,7 @@ private void initMethodReturnValueHandlers() {
164164
methodReturnValueHandlers.add(new JDomPayloadMethodProcessor());
165165
}
166166
if (isPresent(XOM_CLASS_NAME)) {
167-
methodArgumentResolvers.add(new XomPayloadMethodProcessor());
167+
methodReturnValueHandlers.add(new XomPayloadMethodProcessor());
168168
}
169169
if (logger.isDebugEnabled()) {
170170
logger.debug("No MethodReturnValueHandlers set, using defaults: " + methodReturnValueHandlers);

0 commit comments

Comments
 (0)