Package org.springframework.ws.soap.server.endpoint

Examples of org.springframework.ws.soap.server.endpoint.SimpleSoapExceptionResolver


   * {@linkplain Ordered#LOWEST_PRECEDENCE lowest precedence} for handling endpoint
   * exceptions.
   */
  @Bean
  public SimpleSoapExceptionResolver simpleSoapExceptionResolver() {
    SimpleSoapExceptionResolver exceptionResolver = new SimpleSoapExceptionResolver();
    exceptionResolver.setOrder(Ordered.LOWEST_PRECEDENCE);

    return exceptionResolver;
  }
View Full Code Here

TOP

Related Classes of org.springframework.ws.soap.server.endpoint.SimpleSoapExceptionResolver

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.