Skip to content

marshallSendAndReceivce bug in WebServiceTemplate [SWS-149] #303

Closed
@gregturn

Description

@gregturn

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

Referenced from: commits 24766d2, 001818a

Metadata

Metadata

Assignees

Labels

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions