use of com.jboss.transaction.txinterop.webservices.atinterop.generated.ParticipantPortType in project narayana by jbosstm.
the class AsyncParticipantClient method sendCompletionCommit.
/**
* Send a completion commit request.
* @param map The addressing context initialised with to, message ID and relates to.
* @param coordinatorURI The coordinator URI.
* @throws SoapFault For any errors.
* @throws IOException for any transport errors.
*/
public void sendCompletionCommit(final MAP map, final String coordinatorURI) throws SoapFault, IOException {
map.setReplyTo(initiator);
ParticipantPortType port = ATInteropClient.getParticipantPort(map, completionCommitAction);
port.completionCommit(coordinatorURI);
}
Aggregations