Closed
Description
Martin Koster opened SWS-149 and commented
The method "marshalSendAndReceive(String uri, final Object requestPayload)" in class "WebServiceTemplate" calls the wrong overloaded method. The parameter "uri" is not used in this call and will be replaced by the "defaultUri" in the called method.
Wrong:
public Object marshalSendAndReceive(String uri, final Object requestPayload) {
return marshalSendAndReceive(requestPayload, null);
}
Correct:
public Object marshalSendAndReceive(String uri, final Object requestPayload) {
return marshalSendAndReceive(uri, requestPayload, null);
}
Affects: 1.0 RC2