Click here to Skip to main content
Click here to Skip to main content
Articles » Languages » Java » EJB » Downloads
 

Spring Integration with ActiveMQ for POJO Based Service

By , 25 Aug 2010
 
SpringIntegrationWithSOAP.zip
SpringIntegrationSOAP
.classpath
.project
src
main
java
org
soap
demo
resources
org
soap
demo
payload.xsl
package org.soap.demo;

import java.io.BufferedReader;
import java.io.InputStreamReader;

import org.springframework.context.support.ClassPathXmlApplicationContext;

/**
 * @author Anand
 * @email  anandindnr@gmail.com
 * 
 * Just to demonstrate the usage of Spring Message Gateway and Interaction with Message Queue
 */

public class Demo {

	/**
	 * @param args
	 * @throws Exception 
	 */
	public static void main(String[] args) throws Exception {
		
		ClassPathXmlApplicationContext cc = new ClassPathXmlApplicationContext("context.xml", Demo.class);
		
		SampleGateway s = cc.getBean("gateway1", SampleGateway.class);
		
		String str = s.serve(readFile("request.xml"));
		
		System.out.println("Reply is: " + str);
		
		cc.close();
		
	
	}

	static String readFile(String file) throws Exception{
		BufferedReader br = new BufferedReader(new InputStreamReader(new Demo().getClass().getResourceAsStream(file)));
		String str = null;
		StringBuffer sb = new StringBuffer();
		while((str= br.readLine())!=null) {
			sb.append(str);
		}
		return sb.toString();
	}
}

By viewing downloads associated with this article you agree to the Terms of use and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)

About the Author

anand kr
Software Developer (Senior)
India India
Member
Specialization in Java/J2EE/JSF/Richfaces/Spring/Spring Integration
Area of interest: Refactoring with design patterns.
Currently working on Spring Integration and ActiveMQ.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130523.1 | Last Updated 25 Aug 2010
Article Copyright 2010 by anand kr
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid