Example usage for org.springframework.remoting.jaxws SimpleJaxWsServiceExporter SimpleJaxWsServiceExporter

List of usage examples for org.springframework.remoting.jaxws SimpleJaxWsServiceExporter SimpleJaxWsServiceExporter

Introduction

In this page you can find the example usage for org.springframework.remoting.jaxws SimpleJaxWsServiceExporter SimpleJaxWsServiceExporter.

Prototype

SimpleJaxWsServiceExporter

Source Link

Usage

From source file:name.marcelomorales.siqisiqi.examples.crud.CrudContext.java

@Bean
public SimpleJaxWsServiceExporter simpleJaxWsServiceExporter() {
    final SimpleJaxWsServiceExporter serviceExporter = new SimpleJaxWsServiceExporter();
    serviceExporter.setBaseAddress("http://0.0.0.0:8181");
    return serviceExporter;
}