public static void main(String[] args) {
ClassPathXmlApplicationContext ctx =
new ClassPathXmlApplicationContext("soap-client-applicationContext.xml", SoapTripTestClient.class);
WebServiceOperations webServiceOperations = (WebServiceOperations) ctx.getBean(WebServiceOperations.class);
LegQuoteCommand command = new LegQuoteCommand(builder.buildTestLeg());
Object result = webServiceOperations.marshalSendAndReceive(command);
System.out.println(result);
}