| Commit in servicemix/base/src on MAIN | |||
| test/java/org/servicemix/components/pxe/PxeTest.java | -40 | 1.1 removed | |
| main/release/examples/bpel/pxe/install/pxe-install.jar | [binary] | 1.1 removed | |
| /AsyncProcess-sa.jar | [binary] | 1.1 removed | |
| main/release/examples/bpel/pxe/conf/activemq.xml | -69 | 1.1 removed | |
| /jndi.properties | -1 | 1.1 removed | |
| /carol.properties | -1 | 1.1 removed | |
| /jndi.xml | -23 | 1.1 removed | |
| /servicemix.xml | -127 | 1.1 removed | |
| main/release/examples/bpel/pxe/bin/servicemix.bat | -104 | 1.1 removed | |
| /servicemix | -185 | 1.1 removed | |
| /lcp.bat | -16 | 1.1 removed | |
| test/resources/org/servicemix/components/pxe/example.xml | -29 | 1.1 removed | |
| -595 | |||
deleted pxe - now covered in bpel example
servicemix/base/src/test/java/org/servicemix/components/pxe
PxeTest.java removed after 1.1
diff -N PxeTest.java --- PxeTest.java 22 Jul 2005 15:31:09 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,40 +0,0 @@
-/**
- *
- * Copyright 2005 LogicBlaze, Inc. http://www.logicblaze.com
- *
- * 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.servicemix.components.pxe;
-
-import org.servicemix.TestSupport;
-import org.springframework.context.support.AbstractXmlApplicationContext;
-import org.springframework.context.support.ClassPathXmlApplicationContext;
-
-import javax.xml.namespace.QName;
-
-/**
- * @version $Revision: 1.1 $
- */
-public class PxeTest extends TestSupport {
-
- public void testSendMessagesToJmsThenOutofJmsToReceiver() throws Exception {
- QName service = new QName("http://servicemix.org/cheese/", "myJmsSender");
-
- assertSendAndReceiveMessages(service);
- }
-
- protected AbstractXmlApplicationContext createBeanFactory() {
- return new ClassPathXmlApplicationContext("org/servicemix/components/pxe/example.xml");
- }
-}
servicemix/base/src/main/release/examples/bpel/pxe/conf
activemq.xml removed after 1.1
diff -N activemq.xml --- activemq.xml 29 Jul 2005 00:21:51 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,69 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE beans PUBLIC "-//ACTIVEMQ//DTD//EN" "http://activemq.org/dtd/activemq.dtd"> -<beans> - - <!-- ==================================================================== --> - <!-- ActiveMQ Broker Configuration --> - <!-- ==================================================================== --> - <broker> - <connector> - <tcpServerTransport uri="tcp://localhost:61616" backlog="1000" useAsyncSend="true" maxOutstandingMessages="50"/> - </connector> - - <persistence> - <cachePersistence> - <journalPersistence directory="../var/journal"> - <jdbcPersistence dataSourceRef="derby-ds"/> - </journalPersistence> - </cachePersistence> - </persistence> - </broker> - - <!-- ==================================================================== --> - <!-- JDBC DataSource Configurations --> - <!-- ==================================================================== --> - - <!-- The Derby Datasource that will be used by the Broker --> - <bean id="derby-ds" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close"> - <property name="driverClassName"> - <value>org.apache.derby.jdbc.EmbeddedDriver</value> - </property> - <property name="url"> - <!-- Use a URL like 'jdbc:hsqldb:hsql://localhost:9001' if you want to connect to a remote hsqldb --> - <value>jdbc:derby:derbydb;create=true</value> - </property> - <property name="username"> - <value></value> - </property> - <property name="password"> - <value></value> - </property> - <property name="poolPreparedStatements"> - <value>true</value> - </property> - </bean> - - <!-- The MYSQL Datasource that will be used by the Broker --> - <bean id="mysql-ds" - class="org.apache.commons.dbcp.BasicDataSource" - destroy-method="close"> - <property name="driverClassName"> - <value>com.mysql.jdbc.Driver</value> - </property> - <property name="url"> - <value>jdbc:mysql://localhost/activemq</value> - </property> - <property name="username"> - <value>myname</value> - </property> - <property name="password"> - <value>mypassword</value> - </property> - <property name="poolPreparedStatements"> - <value>true</value> - </property> - </bean> - - -</beans> -
servicemix/base/src/main/release/examples/bpel/pxe/conf
jndi.properties removed after 1.1
diff -N jndi.properties --- jndi.properties 29 Jul 2005 00:21:51 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1 +0,0 @@
-java.naming.factory.initial = org.servicemix.jbi.jndi.SpringInitialContextFactory
servicemix/base/src/main/release/examples/bpel/pxe/conf
carol.properties removed after 1.1
diff -N carol.properties --- carol.properties 29 Jul 2005 00:21:51 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1 +0,0 @@
-carol.start.jndi=false
\ No newline at end of file
servicemix/base/src/main/release/examples/bpel/pxe/conf
jndi.xml removed after 1.1
diff -N jndi.xml --- jndi.xml 29 Jul 2005 00:21:51 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd"> -<!-- START SNIPPET: jndi --> -<beans> - <bean id="jndi" class="org.servicemix.jbi.jndi.DefaultContext" singleton="true"> - <property name="entries"> - <map> - <entry key="jdbc/pxe__pm"> - <bean class="org.hsqldb.jdbc.jdbcDataSource"> - <property name="database" value="jdbc:hsqldb:mem:pxe"/> - <property name="user" value = "sa"/> - <property name="password" value = ""/> - </bean> - </entry> - - <entry key="javax.transaction.TransactionManager"> - <bean class="org.springframework.transaction.jta.JotmFactoryBean"/> - </entry> - </map> - </property> - </bean> -</beans> -<!-- END SNIPPET: jndi -->
servicemix/base/src/main/release/examples/bpel/pxe/conf
servicemix.xml removed after 1.1
diff -N servicemix.xml --- servicemix.xml 29 Jul 2005 00:21:51 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,127 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?> -<beans xmlns:my="http://servicemix.org/demo/"> - - - <!-- the JBI container --> - <container id="jbi"> - <property name="rootDir" value="../wdir"/> - <property name="createMBeanServer" value="true"/> - <property name="installationDirPath" value="../install"/> - <property name="monitorInstallationDirectory" value="true"/> - <property name="dumpStats" value="true"/> - <property name="statsInterval" value="10"/> - <property name="transactionManager" ref="transactionManager"/> - - <components> - - <!-- lets kick off a timer to send messages on an input destination topic --> - <component id="timer" service="my:timer" class="org.servicemix.components.quartz.QuartzComponent" destinationService="my:inputSender"> - <property name="triggers"> - <map> - <entry> - <key> - <bean class="org.quartz.SimpleTrigger"> - <property name="repeatInterval" value="5000"/> - <property name="repeatCount" value="-1"/> - </bean> - </key> - <bean class="org.quartz.JobDetail"> - <property name="name" value="My Example Job"/> - <property name="group" value="ServiceMix"/> - </bean> - </entry> - </map> - </property> - </component> - <component id="inputSender" service="my:inputSender" class="org.servicemix.components.jms.JmsSenderComponent"> - <property name="template"> - <bean class="org.springframework.jms.core.JmsTemplate"> - <property name="connectionFactory"> - <ref local="jmsFactory"/> - </property> - <property name="defaultDestinationName" value="demo.org.servicemix.source"/> - <property name="pubSubDomain" value="true"/> - </bean> - </property> - </component> - - - <!-- lets subscribe and republish on a different JMS destination - i.e. make a JMS bridge --> - <component id="inputReceiver" service="my:inputReceiver" class="org.servicemix.components.jms.JmsInUsingJCABinding" destinationService="my:outputSender"> - <property name="jcaContainer" ref="activeJcaContainer"/> - <property name="activationSpec"> - <bean class="org.activemq.ra.ActiveMQActivationSpec"> - <property name="destination" value="demo.org.servicemix.source"/> - <property name="destinationType" value="javax.jms.Topic"/> - </bean> - </property> - </component> - - - <component id="outputSender" service="my:outputSender" class="org.servicemix.components.jms.JmsSenderComponent"> - <property name="template"> - <bean class="org.springframework.jms.core.JmsTemplate"> - <property name="connectionFactory"> - <ref local="jmsFactory"/> - </property> - <property name="defaultDestinationName" value="demo.org.servicemix.result"/> - <property name="pubSubDomain" value="true"/> - </bean> - </property> - </component> - - - <!-- just to demonstrate that we are sending messages, lets trace the messages we receive --> - <component id="jmsTrace" service="my:jmsTrace" class="org.servicemix.components.jms.JmsInUsingJCABinding" destinationService="my:trace"> - <property name="jcaContainer" ref="activeJcaContainer"/> - <property name="activationSpec"> - <bean class="org.activemq.ra.ActiveMQActivationSpec"> - <property name="destination" value="demo.org.servicemix.result"/> - <property name="destinationType" value="javax.jms.Topic"/> - </bean> - </property> - </component> - - <component id="trace" service="my:trace" class="org.servicemix.components.util.TraceComponent"/> - </components> - </container> - - - <!-- the JCA container --> - <bean id="activeJcaContainer" class="org.activemq.jca.JCAContainer" singleton="true"> - - <!-- the work manager (thread pool) for this container --> - <property name="workManager"> - <bean id="workManager" class="org.activemq.work.SpringWorkManager"> - <property name="startMaximumPoolSize" value="30"/> - <property name="syncMaximumPoolSize" value="30"/> - <property name="scheduledMaximumPoolSize" value="30"/> - </bean> - </property> - - <!-- the JCA Resource Adapter --> - <property name="resourceAdapter"> - <bean id="activeMQResourceAdapter" class="org.activemq.ra.ActiveMQResourceAdapter" singleton="true"> - <property name="serverUrl" value="tcp://localhost:61616"/> - </bean> - </property> - </bean> - - <!-- message broker --> - <bean id="broker" class="org.activemq.spring.BrokerFactoryBean"> - <property name="config" value="classpath:activemq.xml"/> - </bean> - - <bean id="transactionManager" class="org.springframework.transaction.jta.JotmFactoryBean"/> - - <bean id="jmsFactory" class="org.activemq.pool.PooledConnectionFactory"> - <property name="connectionFactory"> - <bean class="org.activemq.ActiveMQConnectionFactory"> - <property name="brokerURL"> - <value>tcp://localhost:61616</value> - </property> - </bean> - </property> - </bean> - -</beans>
servicemix/base/src/main/release/examples/bpel/pxe/bin
servicemix.bat removed after 1.1
diff -N servicemix.bat --- servicemix.bat 29 Jul 2005 00:10:16 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,104 +0,0 @@
[EMAIL PROTECTED] off
-
-REM ServiceMix shell script
-REM
-REM $Id: servicemix.bat,v 1.3 2005/07/21 16:55:19 jstrachan Exp $
-REM
-REM This script is heavily based on the Ant script
-REM
-REM Copyright (c) 2001-2003 The Apache Software Foundation. All rights
-REM reserved.
-
-if exist "%HOME%\servicemixrc_pre.bat" call "%HOME%\servicemixrc_pre.bat"
-
-if "%OS%"=="Windows_NT" @setlocal
-
-rem %~dp0 is expanded pathname of the current script under NT
-set DEFAULT_SERVICEMIX_HOME=%~dp0..
-
-if "%SERVICEMIX_HOME%"=="" set SERVICEMIX_HOME=%DEFAULT_SERVICEMIX_HOME%
-set DEFAULT_SERVICEMIX_HOME=
-
-rem Slurp the command line arguments. This loop allows for an unlimited number
-rem of arguments (up to the command line limit, anyway).
-set SERVICEMIX_CMD_LINE_ARGS=%1
-if ""%1""=="""" goto doneStart
-shift
-:setupArgs
-if ""%1""=="""" goto doneStart
-set SERVICEMIX_CMD_LINE_ARGS=%SERVICEMIX_CMD_LINE_ARGS% %1
-shift
-goto setupArgs
-rem This label provides a place for the argument list loop to break out
-rem and for NT handling to skip to.
-
-:doneStart
-rem find SERVICEMIX_HOME if it does not exist due to either an invalid value passed
-rem by the user or the %0 problem on Windows 9x
-if exist "%SERVICEMIX_HOME%\README.txt" goto checkJava
-
-rem check for servicemix in Program Files on system drive
-if not exist "%SystemDrive%\Program Files\servicemix" goto checkSystemDrive
-set SERVICEMIX_HOME=%SystemDrive%\Program Files\servicemix
-goto checkJava
-
-:checkSystemDrive
-rem check for servicemix in root directory of system drive
-if not exist %SystemDrive%\servicemix\README.txt goto checkCDrive
-set SERVICEMIX_HOME=%SystemDrive%\servicemix
-goto checkJava
-
-:checkCDrive
-rem check for servicemix in C:\servicemix for Win9X users
-if not exist C:\servicemix\README.txt goto noAntHome
-set SERVICEMIX_HOME=C:\servicemix
-goto checkJava
-
-:noAntHome
-echo SERVICEMIX_HOME is set incorrectly or servicemix could not be located. Please set SERVICEMIX_HOME.
-goto end
-
-:checkJava
-set _JAVACMD=%JAVACMD%
-set LOCALCLASSPATH=%CLASSPATH%
-for %%i in ("%SERVICEMIX_HOME%\*.jar") do call "%SERVICEMIX_HOME%\bin\lcp.bat" %%i
-for %%i in ("%SERVICEMIX_HOME%\lib\*.jar") do call "%SERVICEMIX_HOME%\bin\lcp.bat" %%i
-for %%i in ("%SERVICEMIX_HOME%\lib\optional\*.jar") do call "%SERVICEMIX_HOME%\bin\lcp.bat" %%i
-
-if "%JAVA_HOME%" == "" goto noJavaHome
-if not exist "%JAVA_HOME%\bin\java.exe" goto noJavaHome
-if "%_JAVACMD%" == "" set _JAVACMD=%JAVA_HOME%\bin\java.exe
-goto runAnt
-
-:noJavaHome
-if "%_JAVACMD%" == "" set _JAVACMD=java.exe
-echo.
-echo Warning: JAVA_HOME environment variable is not set.
-echo.
-
-:runAnt
-
-if "%SERVICEMIX_OPTS%" == "" set SERVICEMIX_OPTS=-Xmx512M -Dderby.system.home="..\var" -Dderby.storage.fileSyncTransactionLog=true -Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.SimpleLog
-
-REM Uncomment to enable YourKit profiling
-REM SET SERVICEMIX_DEBUG_OPTS="-Xrunyjpagent"
-
-REM Uncomment to enable remote debugging
-REM SET SERVICEMIX_DEBUG_OPTS=-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005
-
-set LOCALCLASSPATH=%SERVICEMIX_HOME%\conf;%LOCALCLASSPATH%
-
-"%_JAVACMD%" %SERVICEMIX_DEBUG_OPTS% %SERVICEMIX_OPTS% -classpath "%LOCALCLASSPATH%" -Dservicemix.home="%SERVICEMIX_HOME%" org.servicemix.Main %SERVICEMIX_ARGS% %SERVICEMIX_CMD_LINE_ARGS%
-goto end
-
-
-:end
-set LOCALCLASSPATH=
-set _JAVACMD=
-set SERVICEMIX_CMD_LINE_ARGS=
-
-if "%OS%"=="Windows_NT" @endlocal
-
-:mainEnd
-if exist "%HOME%\servicemixrc_post.bat" call "%HOME%\servicemixrc_post.bat"
-
servicemix/base/src/main/release/examples/bpel/pxe/bin
servicemix removed after 1.1
diff -N servicemix --- servicemix 29 Jul 2005 00:10:16 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,185 +0,0 @@
-#!/bin/sh
-
-# ServiceMix shell script
-#
-# $Id: servicemix,v 1.4 2005/07/26 11:19:11 jstrachan Exp $
-#
-# This script is heavily based on the Ant script
-#
-# Copyright (c) 2005 The Apache Software Foundation. All rights
-# reserved.
-
-# load system-wide servicemix configuration
-if [ -f "/etc/servicemix.conf" ] ; then
- . /etc/servicemix.conf
-fi
-
-# provide default values for people who don't use RPMs
-if [ -z "$usejikes" ] ; then
- usejikes=false;
-fi
-
-# load user servicemix configuration
-if [ -f "$HOME/.servicemixrc" ] ; then
- . "$HOME/.servicemixrc"
-fi
-
-# OS specific support. $var _must_ be set to either true or false.
-cygwin=false;
-darwin=false;
-case "`uname`" in
- CYGWIN*) cygwin=true ;;
- Darwin*) darwin=true
- if [ -z "$JAVA_HOME" ] ; then
- JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Home
- fi
- ;;
-esac
-
-if [ -z "$SERVICEMIX_HOME" ] ; then
- # try to find SERVICEMIX
- if [ -d /opt/servicemix ] ; then
- SERVICEMIX_HOME=/opt/servicemix
- fi
-
- if [ -d "${HOME}/opt/servicemix" ] ; then
- SERVICEMIX_HOME="${HOME}/opt/servicemix"
- fi
-
- ## resolve links - $0 may be a link to servicemix's home
- PRG="$0"
- progname=`basename "$0"`
- saveddir=`pwd`
-
- # need this for relative symlinks
- dirname_prg=`dirname "$PRG"`
- cd "$dirname_prg"
-
- while [ -h "$PRG" ] ; do
- ls=`ls -ld "$PRG"`
- link=`expr "$ls" : '.*-> \(.*\)$'`
- if expr "$link" : '.*/.*' > /dev/null; then
- PRG="$link"
- else
- PRG=`dirname "$PRG"`"/$link"
- fi
- done
-
- SERVICEMIX_HOME=`dirname "$PRG"`/..
-
- cd "$saveddir"
-
- # make it fully qualified
- SERVICEMIX_HOME=`cd "$SERVICEMIX_HOME" && pwd`
-fi
-
-# For Cygwin, ensure paths are in UNIX format before anything is touched
-if $cygwin ; then
- [ -n "$SERVICEMIX_HOME" ] &&
- SERVICEMIX_HOME=`cygpath --unix "$SERVICEMIX_HOME"`
- [ -n "$JAVA_HOME" ] &&
- JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
- [ -n "$CLASSPATH" ] &&
- CLASSPATH=`cygpath --path --unix "$CLASSPATH"`
-fi
-
-# set SERVICEMIX_LIB location
-SERVICEMIX_LIB="${SERVICEMIX_HOME}/lib"
-
-if [ -z "$JAVACMD" ] ; then
- if [ -n "$JAVA_HOME" ] ; then
- if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
- # IBM's JDK on AIX uses strange locations for the executables
- JAVACMD="$JAVA_HOME/jre/sh/java"
- else
- JAVACMD="$JAVA_HOME/bin/java"
- fi
- else
- JAVACMD=`which java 2> /dev/null `
- if [ -z "$JAVACMD" ] ; then
- JAVACMD=java
- fi
- fi
-fi
-
-if [ ! -x "$JAVACMD" ] ; then
- echo "Error: JAVA_HOME is not defined correctly."
- echo " We cannot execute $JAVACMD"
- exit 1
-fi
-
-if [ -n "$CLASSPATH" ] ; then
- LOCALCLASSPATH="$CLASSPATH"
-fi
-
-# add in the core .jar files
-for i in "${SERVICEMIX_HOME}"/*.jar
-do
- # if the directory is empty, then it will return the input string
- # this is stupid, so case for it
- if [ -f "$i" ] ; then
- if [ -z "$LOCALCLASSPATH" ] ; then
- LOCALCLASSPATH="$i"
- else
- LOCALCLASSPATH="$i":"$LOCALCLASSPATH"
- fi
- fi
-done
-
-# add in the required dependency .jar files
-for i in "${SERVICEMIX_LIB}"/*.jar
-do
- # if the directory is empty, then it will return the input string
- # this is stupid, so case for it
- if [ -f "$i" ] ; then
- if [ -z "$LOCALCLASSPATH" ] ; then
- LOCALCLASSPATH="$i"
- else
- LOCALCLASSPATH="$i":"$LOCALCLASSPATH"
- fi
- fi
-done
-
-# add in the optional dependency .jar files
-for i in "${SERVICEMIX_LIB}"/optional/*.jar
-do
- # if the directory is empty, then it will return the input string
- # this is stupid, so case for it
- if [ -f "$i" ] ; then
- if [ -z "$LOCALCLASSPATH" ] ; then
- LOCALCLASSPATH="$i"
- else
- LOCALCLASSPATH="$i":"$LOCALCLASSPATH"
- fi
- fi
-done
-
-LOCALCLASSPATH="${SERVICEMIX_HOME}/conf:$LOCALCLASSPATH"
-
-# For Cygwin, switch paths to Windows format before running java
-if $cygwin; then
- SERVICEMIX_HOME=`cygpath --windows "$SERVICEMIX_HOME"`
- JAVA_HOME=`cygpath --windows "$JAVA_HOME"`
- CLASSPATH=`cygpath --path --windows "$CLASSPATH"`
- LOCALCLASSPATH=`cygpath --path --windows "$LOCALCLASSPATH"`
- CYGHOME=`cygpath --windows "$HOME"`
-fi
-
-
-if [ -n "SERVICEMIX_OPTS" ] ; then
- SERVICEMIX_OPTS="-Xmx512M -Dderby.system.home=../var -Dderby.storage.fileSyncTransactionLog=true -Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.SimpleLog"
-# SERVICEMIX_OPTS="-Xmx512M -Dderby.system.home=../var -Dderby.storage.fileSyncTransactionLog=true"
-fi
-
-# Uncomment to enable YourKit profiling
-#SERVICEMIX_DEBUG_OPTS="-Xrunyjpagent"
-
-# Uncomment to enable remote debugging
-#SERVICEMIX_DEBUG_OPTS="-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005"
-
-if [ -n "$CYGHOME" ]; then
- exec "$JAVACMD" $SERVICEMIX_DEBUG_OPTS $SERVICEMIX_OPTS -classpath "$LOCALCLASSPATH" -Dservicemix.home="${SERVICEMIX_HOME}" -Dcygwin.user.home="$CYGHOME" org.servicemix.Main $SERVICEMIX_ARGS "$@"
-else
- exec "$JAVACMD" $SERVICEMIX_DEBUG_OPTS $SERVICEMIX_OPTS -classpath "$LOCALCLASSPATH" -Dservicemix.home="${SERVICEMIX_HOME}" org.servicemix.Main $SERVICEMIX_ARGS "$@"
-fi
-
servicemix/base/src/main/release/examples/bpel/pxe/bin
lcp.bat removed after 1.1
diff -N lcp.bat --- lcp.bat 29 Jul 2005 00:10:16 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,16 +0,0 @@
-REM Copyright (c) 2001-2003 The Apache Software Foundation. All rights -REM reserved. - -set _CLASSPATHCOMPONENT=%1 -if ""%1""=="""" goto gotAllArgs -shift - -:argCheck -if ""%1""=="""" goto gotAllArgs -set _CLASSPATHCOMPONENT=%_CLASSPATHCOMPONENT% %1 -shift -goto argCheck - -:gotAllArgs -set LOCALCLASSPATH=%_CLASSPATHCOMPONENT%;%LOCALCLASSPATH% -
servicemix/base/src/test/resources/org/servicemix/components/pxe
example.xml removed after 1.1
diff -N example.xml --- example.xml 22 Jul 2005 15:31:09 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,29 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?> -<beans xmlns:my="http://servicemix.org/demo/"> - - - <!-- the JBI container --> - - <!-- START SNIPPET: pxe --> - <container id="jbi"> - <property name="transactionManager" ref="transactionManager"/> - <property name="deployArchives"> - <values> - <values>http://pxe.fivesight.com/public/jbi-se-bpel.zip</values> - <values>http://pxe.fivesight.com/public/bpel.zip</values> - </values> - </property> - - <components> - <component id="receiver" service="foo:receiver" endpoint="receiver" class="org.servicemix.examples.ReceiverComponent"/> - </components> - </container> - <!-- END SNIPPET: pxe --> - - <bean id="transactionManager" class="org.springframework.transaction.jta.JotmFactoryBean"/> - - <bean id="client" class="org.servicemix.client.DefaultServiceMixClient"> - <constructor-arg ref="jbi"/> - </bean> - -</beans>
