Package org.apache.camel.component.spring.ws.jaxb

Examples of org.apache.camel.component.spring.ws.jaxb.QuoteRequest


        return registry;
    }

    @Test
    public void consumeWebserviceWithPojoRequest() throws Exception {
        QuoteRequest request = new QuoteRequest();
        request.setSymbol("GOOG");

        Object result = template.requestBody("direct:webservice-marshall", request);

        assertNotNull(result);
        assertTrue(result instanceof String);
View Full Code Here


        assertTrue(resultMessage.contains("Google Inc."));
    }

    @Test
    public void consumeWebserviceWithPojoRequestAndPojoResponse() throws Exception {
        QuoteRequest request = new QuoteRequest();
        request.setSymbol("GOOG");

        Object result = template.requestBody("direct:webservice-marshall-unmarshall", request);

        assertNotNull(result);
        assertTrue(result instanceof QuoteResponse);
View Full Code Here

TOP

Related Classes of org.apache.camel.component.spring.ws.jaxb.QuoteRequest

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.