Author: jstrachan
Date: Fri Feb 20 15:30:36 2009
New Revision: 746279
URL: http://svn.apache.org/viewvc?rev=746279&view=rev
Log:
Initial cut of AMQ-2131 for using camel-web to interact with camel endpoints
and routes while inside the AMQ broker
Added:
activemq/trunk/assembly/src/release/webapps/camel/
activemq/trunk/assembly/src/release/webapps/camel/WEB-INF/
activemq/trunk/assembly/src/release/webapps/camel/WEB-INF/applicationContext.xml
(with props)
Modified:
activemq/trunk/assembly/src/main/descriptors/common-bin.xml
Modified: activemq/trunk/assembly/src/main/descriptors/common-bin.xml
URL:
http://svn.apache.org/viewvc/activemq/trunk/assembly/src/main/descriptors/common-bin.xml?rev=746279&r1=746278&r2=746279&view=diff
==============================================================================
--- activemq/trunk/assembly/src/main/descriptors/common-bin.xml (original)
+++ activemq/trunk/assembly/src/main/descriptors/common-bin.xml Fri Feb 20
15:30:36 2009
@@ -87,6 +87,30 @@
<dependencySet>
<outputDirectory>/webapps/camel</outputDirectory>
<unpack>true</unpack>
+ <unpackOptions>
+ <excludes>
+ <exclude>**/applicationContext.xml</exclude>
+
+ <!-- ignore jars already in distro -->
+ <exclude>**/act*.jar</exclude>
+ <exclude>**/aop*.jar</exclude>
+<!--
+ <exclude>**/asm*.jar</exclude>
+-->
+ <exclude>**/camel-*.jar</exclude>
+ <exclude>**/commons*.jar</exclude>
+ <exclude>**/jackson*.jar</exclude>
+ <exclude>**/jaxb*.jar</exclude>
+ <exclude>**/jdom*.jar</exclude>
+ <exclude>**/jstl*.jar</exclude>
+ <exclude>**/rome*.jar</exclude>
+ <exclude>**/sitemesh*.jar</exclude>
+ <exclude>**/slf4j-*.jar</exclude>
+ <exclude>**/spring-*.jar</exclude>
+ <exclude>**/standard*.jar</exclude>
+ <exclude>**/stax*.jar</exclude>
+ </excludes>
+ </unpackOptions>
<includes>
<include>org.apache.camel:camel-web:war</include>
</includes>
Added:
activemq/trunk/assembly/src/release/webapps/camel/WEB-INF/applicationContext.xml
URL:
http://svn.apache.org/viewvc/activemq/trunk/assembly/src/release/webapps/camel/WEB-INF/applicationContext.xml?rev=746279&view=auto
==============================================================================
---
activemq/trunk/assembly/src/release/webapps/camel/WEB-INF/applicationContext.xml
(added)
+++
activemq/trunk/assembly/src/release/webapps/camel/WEB-INF/applicationContext.xml
Fri Feb 20 15:30:36 2009
@@ -0,0 +1,47 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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.
+-->
+<beans xmlns="http://www.springframework.org/schema/beans"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:context="http://www.springframework.org/schema/context"
+ xsi:schemaLocation="
+ http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
+ http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-2.5.xsd
+ http://activemq.apache.org/schema/core
http://activemq.apache.org/schema/core/activemq-core.xsd
+ http://camel.apache.org/schema/spring
http://camel.apache.org/schema/spring/camel-spring.xsd
+ ">
+
+
+ <camelContext xmlns="http://camel.apache.org/schema/spring">
+ <route>
+ <from uri="activemq:example.A"/>
+ <to uri="activemq:example.B"/>
+ </route>
+ </camelContext>
+
+ <!-- configure the camel activemq component to use the current broker -->
+ <bean id="activemq"
class="org.apache.activemq.camel.component.ActiveMQComponent" >
+ <property name="exposeAllQueues" value="true"/>
+ <property name="connectionFactory">
+ <bean class="org.apache.activemq.ActiveMQConnectionFactory">
+ <property name="brokerURL"
value="vm://localhost?create=false&waitForStart=10000" />
+ <property name="userName" value="${activemq.username}"/>
+ <property name="password" value="${activemq.password}"/>
+ </bean>
+ </property>
+ </bean>
+</beans>
Propchange:
activemq/trunk/assembly/src/release/webapps/camel/WEB-INF/applicationContext.xml
------------------------------------------------------------------------------
svn:eol-style = native