Package org.switchyard.quickstarts.demos.library.types

Examples of org.switchyard.quickstarts.demos.library.types.LoanResponse


    private Loan attemptLoan(String isbn) throws Exception {
        LoanRequest loanRequest = new LoanRequest();
        loanRequest.setIsbn(isbn);
        String soapRequest = wrapRequest(_LoanRequest_QNAME, LoanRequest.class, loanRequest, null);
        String soapResponse = _httpMixIn.postString("http://localhost:" + _port + "/loan/LoanService", soapRequest);
        LoanResponse loanResponse = unwrapResponse(LoanResponse.class, soapResponse);
        return loanResponse.getLoan();
    }
View Full Code Here

TOP

Related Classes of org.switchyard.quickstarts.demos.library.types.LoanResponse

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.