org.springframework.ws.client.WebServiceClientException Java Examples

The following examples show how to use org.springframework.ws.client.WebServiceClientException. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: LogHttpHeaderClientInterceptor.java    From spring-ws with MIT License 4 votes vote down vote up
@Override
public void afterCompletion(MessageContext arg0, Exception arg1)
    throws WebServiceClientException {
  // No-op
}
 
Example #2
Source File: LogHttpHeaderClientInterceptor.java    From spring-ws with MIT License 4 votes vote down vote up
@Override
public boolean handleFault(MessageContext messageContext) throws WebServiceClientException {
  // No-op
  return true;
}
 
Example #3
Source File: LogHttpHeaderClientInterceptor.java    From spring-ws with MIT License 4 votes vote down vote up
@Override
public boolean handleRequest(MessageContext messageContext) throws WebServiceClientException {
  HttpLoggingUtils.logMessage("Client Request Message", messageContext.getRequest());

  return true;
}
 
Example #4
Source File: LogHttpHeaderClientInterceptor.java    From spring-ws with MIT License 4 votes vote down vote up
@Override
public boolean handleResponse(MessageContext messageContext) throws WebServiceClientException {
  HttpLoggingUtils.logMessage("Client Response Message", messageContext.getResponse());

  return true;
}
 
Example #5
Source File: WSConsumptionLoggingInterceptor.java    From j-road with Apache License 2.0 4 votes vote down vote up
/**
 * X-tee soap fault messages are different than ordinary SOAP fault messages.
 */
public boolean handleFault(MessageContext mc) throws WebServiceClientException {
  return logMessage(mc, MessageType.FAULT);
}
 
Example #6
Source File: WSConsumptionLoggingInterceptor.java    From j-road with Apache License 2.0 4 votes vote down vote up
public boolean handleRequest(MessageContext mc) throws WebServiceClientException {
  return logMessage(mc, MessageType.REQUEST);
}
 
Example #7
Source File: WSConsumptionLoggingInterceptor.java    From j-road with Apache License 2.0 4 votes vote down vote up
public boolean handleResponse(MessageContext mc) throws WebServiceClientException {
  return logMessage(mc, MessageType.RESPONSE);
}
 
Example #8
Source File: TraceeClientInterceptor.java    From tracee with BSD 3-Clause "New" or "Revised" License 2 votes vote down vote up
@Override
public void afterCompletion(MessageContext messageContext, Exception ex) throws WebServiceClientException {

}
 
Example #9
Source File: WSConsumptionLoggingInterceptor.java    From j-road with Apache License 2.0 votes vote down vote up
public void afterCompletion(MessageContext arg0, Exception arg1) throws WebServiceClientException {}