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
/*
 * Copyright 2002-2009 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.soap.demo;

import org.springframework.integration.annotation.ServiceActivator;

/**
 * @author Anand
 * @email  anandindnr@gmail.com
 * 
 * Actual Service 
 */
public class Service {

	@ServiceActivator
	public String add(Data input) throws Exception {
		return String.valueOf("Result: " + (input.getNumber1() + input.getNumber2()));
	}

}

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
Web04 | 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