Package org.springframework.ws.test.support.creator

Examples of org.springframework.ws.test.support.creator.SoapEnvelopeMessageCreator


     * @return the response callback
     * @since 2.1.1
     */
    public static ResponseCreator withSoapEnvelope(Source soapEnvelope) {
        Assert.notNull(soapEnvelope, "'soapEnvelope' must not be null");
        return new WebServiceMessageCreatorAdapter(new SoapEnvelopeMessageCreator(soapEnvelope));
    }
View Full Code Here


     * @return the request creator
     * @since 2.1.1
     */
    public static RequestCreator withSoapEnvelope(Source soapEnvelope) {
        Assert.notNull(soapEnvelope, "'soapEnvelope' must not be null");
        return new WebServiceMessageCreatorAdapter(new SoapEnvelopeMessageCreator(soapEnvelope));
    }
View Full Code Here

TOP

Related Classes of org.springframework.ws.test.support.creator.SoapEnvelopeMessageCreator

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.