Package org.springframework.ws.test.integration

Examples of org.springframework.ws.test.integration.CustomerCountRequest



public class CustomerClient extends WebServiceGatewaySupport {

    public int getCustomerCount() {
        CustomerCountRequest request = new CustomerCountRequest();
        request.setCustomerName("John Doe");

        CustomerCountResponse response = (CustomerCountResponse) getWebServiceTemplate().marshalSendAndReceive(request);
        return response.getCustomerCount();
    }
View Full Code Here

TOP

Related Classes of org.springframework.ws.test.integration.CustomerCountRequest

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.