[jboss-svn-commits] JBL Code SVN: r15693 - in labs/jbossesb/trunk/product/samples/quickstarts: transform_XML2POJO2 and 12 other directories.
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Tue Oct 9 16:02:05 EDT 2007
Author: burrsutter
Date: 2007-10-09 16:02:04 -0400 (Tue, 09 Oct 2007)
New Revision: 15693
Added:
labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/
labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/SampleOrder.xml
labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/SamplePetsOrder.xml
labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/build.xml
labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/deployment.xml
labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/jbm-queue-service.xml
labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/jbmq-queue-service.xml
labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/jboss-esb.xml
labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/jbossesb-properties.xml
labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/jndi.properties
labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/juddi.properties
labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/lib/
labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/log4j.xml
labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/readme.txt
labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/scripts/
labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/scripts/check-origin.groovy
labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/smooks-config.xml
labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/src/
labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/src/org/
labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/src/org/jboss/
labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/src/org/jboss/soa/
labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/src/org/jboss/soa/esb/
labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/src/org/jboss/soa/esb/samples/
labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/src/org/jboss/soa/esb/samples/quickstart/
labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/src/org/jboss/soa/esb/samples/quickstart/transformxml2pojo2/
labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/src/org/jboss/soa/esb/samples/quickstart/transformxml2pojo2/MyAction.java
labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/src/org/jboss/soa/esb/samples/quickstart/transformxml2pojo2/test/
labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/src/org/jboss/soa/esb/samples/quickstart/transformxml2pojo2/test/SendEsbMessage.java
labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/src/org/jboss/soa/esb/samples/quickstart/transformxml2pojo2/test/SendJMSMessage.java
labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/src/org/jboss/soa/esb/store/
labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/src/org/jboss/soa/esb/store/Customer.java
labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/src/org/jboss/soa/esb/store/OrderHeader.java
labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/src/org/jboss/soa/esb/store/OrderItem.java
labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/src/org/jboss/soa/esb/store/StoreAction.java
labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/transforms/
labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/transforms/from-dvdstore.xml
labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/transforms/from-petstore.xml
Log:
http://jira.jboss.com/jira/browse/JBESB-1148
Added: labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/SampleOrder.xml
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/SampleOrder.xml (rev 0)
+++ labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/SampleOrder.xml 2007-10-09 20:02:04 UTC (rev 15693)
@@ -0,0 +1,11 @@
+<Order orderId="1" orderDate="Wed Nov 15 13:45:28 EST 2006" statusCode="0" netAmount="59.97" totalAmount="64.92" tax="4.95">
+ <Customer userName="user1" firstName="Harry" lastName="Fletcher" state="SD"/>
+ <OrderLines>
+ <OrderLine position="1" quantity="1">
+ <Product productId="364" title="The 40-Year-Old Virgin " price="29.98"/>
+ </OrderLine>
+ <OrderLine position="2" quantity="1">
+ <Product productId="299" title="Pulp Fiction" price="29.99"/>
+ </OrderLine>
+ </OrderLines>
+</Order>
Added: labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/SamplePetsOrder.xml
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/SamplePetsOrder.xml (rev 0)
+++ labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/SamplePetsOrder.xml 2007-10-09 20:02:04 UTC (rev 15693)
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<Order orderId="1182" orderDate="Sat Oct 06 13:41:16 EDT 2007" status="P" totalPrice="188.29" username="j2ee" shipToFirstName="Sally" shipToLastName="Smith" shipState="CA">
+ <LineItems>
+ <LineItem lineNumber="1" quantity="2">
+ <Item itemId="EST-1" listPrice="16.5" name="Hamster Complete"/>
+ </LineItem>
+ <LineItem lineNumber="2" quantity="1">
+ <Item itemId="EST-27" listPrice="155.29" name="Super Puppy Breakfast" />
+ </LineItem>
+ </LineItems>
+</Order>
\ No newline at end of file
Added: labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/build.xml
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/build.xml (rev 0)
+++ labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/build.xml 2007-10-09 20:02:04 UTC (rev 15693)
@@ -0,0 +1,46 @@
+<project name="Quickstart_transform_XML2POJO2" default="deploy" basedir=".">
+
+ <description>
+ ${ant.project.name}
+ ${line.separator}
+ </description>
+
+ <!-- Additional files to be deployed in the sar. -->
+ <property name="additional.deploys" value="smooks-config.xml,scripts/**,transforms/**" />
+
+ <!-- Import the base Ant build script... -->
+ <import file="../conf/base-build.xml"/>
+
+
+ <target name="runtest" depends="compile" description="runs test JMS Sender">
+ <echo>Runs Test JMS Sender</echo>
+ <java fork="yes" classname="org.jboss.soa.esb.samples.quickstart.transformxml2pojo2.test.SendJMSMessage" failonerror="true">
+ <arg value="SampleOrder.xml"/>
+ <classpath refid="exec-classpath"/>
+ </java>
+ </target>
+
+ <target name="runtest2" depends="compile" description="runs test JMS Sender">
+ <echo>Runs Test JMS Sender</echo>
+ <java fork="yes" classname="org.jboss.soa.esb.samples.quickstart.transformxml2pojo2.test.SendJMSMessage" failonerror="true">
+ <arg value="SamplePetsOrder.xml"/>
+ <classpath refid="exec-classpath"/>
+ </java>
+ </target>
+
+ <target name="sendesb" depends="compile" description="runs test JMS Sender">
+ <echo>Runs Native Client</echo>
+ <java fork="yes" classname="org.jboss.soa.esb.samples.quickstart.transformxml2pojo2.test.SendEsbMessage" failonerror="true">
+ <arg value="SampleOrder.xml"/>
+ <classpath refid="exec-classpath"/>
+ </java>
+ </target>
+
+ <target name="sendesb2" depends="compile" description="runs test JMS Sender">
+ <echo>Runs Native Client</echo>
+ <java fork="yes" classname="org.jboss.soa.esb.samples.quickstart.transformxml2pojo2.test.SendEsbMessage" failonerror="true">
+ <arg value="SamplePetsOrder.xml"/>
+ <classpath refid="exec-classpath"/>
+ </java>
+ </target>
+</project>
Added: labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/deployment.xml
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/deployment.xml (rev 0)
+++ labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/deployment.xml 2007-10-09 20:02:04 UTC (rev 15693)
@@ -0,0 +1,6 @@
+<jbossesb-deployment>
+ <depends>jboss.esb:deployment=smooks.esb</depends>
+ <depends>jboss.esb.quickstart.destination:service=Queue,name=quickstart_transform_pojo2_gw</depends>
+ <depends>jboss.esb.quickstart.destination:service=Queue,name=quickstart_transform_pojo2_esb</depends>
+ <depends>jboss.esb.quickstart.destination:service=Queue,name=quickstart_transform_pojo2_esb_reply</depends>
+</jbossesb-deployment>
Added: labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/jbm-queue-service.xml
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/jbm-queue-service.xml (rev 0)
+++ labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/jbm-queue-service.xml 2007-10-09 20:02:04 UTC (rev 15693)
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<server>
+ <mbean code="org.jboss.jms.server.destination.QueueService"
+ name="jboss.esb.quickstart.destination:service=Queue,name=quickstart_transform_pojo2_gw"
+ xmbean-dd="xmdesc/Queue-xmbean.xml">
+ <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+ <depends>jboss.messaging:service=PostOffice</depends>
+ </mbean>
+ <mbean code="org.jboss.jms.server.destination.QueueService"
+ name="jboss.esb.quickstart.destination:service=Queue,name=quickstart_transform_pojo2_esb"
+ xmbean-dd="xmdesc/Queue-xmbean.xml">
+ <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+ <depends>jboss.messaging:service=PostOffice</depends>
+ </mbean>
+ <mbean code="org.jboss.jms.server.destination.QueueService"
+ name="jboss.esb.quickstart.destination:service=Queue,name=quickstart_transform_pojo2_esb_reply"
+ xmbean-dd="xmdesc/Queue-xmbean.xml">
+ <depends optional-attribute-name="ServerPeer">jboss.messaging:service=ServerPeer</depends>
+ <depends>jboss.messaging:service=PostOffice</depends>
+ </mbean>
+
+</server>
+
Added: labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/jbmq-queue-service.xml
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/jbmq-queue-service.xml (rev 0)
+++ labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/jbmq-queue-service.xml 2007-10-09 20:02:04 UTC (rev 15693)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<server>
+ <mbean code="org.jboss.mq.server.jmx.Queue"
+ name="jboss.esb.quickstart.destination:service=Queue,name=quickstart_transform_pojo2_gw">
+ <depends optional-attribute-name="DestinationManager">
+ jboss.mq:service=DestinationManager
+ </depends>
+ </mbean>
+ <mbean code="org.jboss.mq.server.jmx.Queue"
+ name="jboss.esb.quickstart.destination:service=Queue,name=quickstart_transform_pojo2_esb">
+ <depends optional-attribute-name="DestinationManager">
+ jboss.mq:service=DestinationManager
+ </depends>
+ </mbean>
+ <mbean code="org.jboss.mq.server.jmx.Queue"
+ name="jboss.esb.quickstart.destination:service=Queue,name=quickstart_transform_pojo2_esb_reply">
+ <depends optional-attribute-name="DestinationManager">
+ jboss.mq:service=DestinationManager
+ </depends>
+ </mbean>
+</server>
+
Added: labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/jboss-esb.xml
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/jboss-esb.xml (rev 0)
+++ labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/jboss-esb.xml 2007-10-09 20:02:04 UTC (rev 15693)
@@ -0,0 +1,61 @@
+<?xml version = "1.0" encoding = "UTF-8"?>
+<jbossesb xmlns="http://anonsvn.labs.jboss.com/labs/jbossesb/trunk/product/etc/schemas/xml/jbossesb-1.0.1.xsd" parameterReloadSecs="5">
+
+ <providers>
+ <jms-provider name="JBossMQ" connection-factory="ConnectionFactory"
+ jndi-context-factory="org.jnp.interfaces.NamingContextFactory"
+ jndi-URL="localhost" >
+
+ <jms-bus busid="quickstartGwChannel">
+ <jms-message-filter
+ dest-type="QUEUE"
+ dest-name="queue/quickstart_transform_pojo2_gw"
+ />
+ </jms-bus>
+ <jms-bus busid="quickstartEsbChannel">
+ <jms-message-filter
+ dest-type="QUEUE"
+ dest-name="queue/quickstart_transform_pojo2_esb"
+ />
+ </jms-bus>
+
+ </jms-provider>
+ </providers>
+
+ <services>
+ <service
+ category="MyTransformationServicesESB"
+ name="MyXML2POJO2TransformationService"
+ description="ESB: Takes XML in and produces a POJO">
+ <listeners>
+ <jms-listener name="JMS-Gateway"
+ busidref="quickstartGwChannel"
+ maxThreads="1"
+ is-gateway="true"
+ />
+ <jms-listener name="jmsTransformer"
+ busidref="quickstartEsbChannel"
+ maxThreads="1"
+ />
+ </listeners>
+ <actions>
+ <action name="displayBeforeTransformer"
+ class="org.jboss.soa.esb.samples.quickstart.transformxml2pojo2.MyAction"
+ process="displayMessage"
+ />
+
+ <action name="discover-message-origin" class="org.jboss.soa.esb.actions.scripting.GroovyActionProcessor">
+ <property name="script" value="/scripts/check-origin.groovy" />
+ </action>
+
+ <action name="transform" class="org.jboss.soa.esb.actions.converters.SmooksTransformer">
+ <property name="resource-config" value="/smooks-config.xml" />
+ </action>
+
+ <action name="convertPOJO2Message" class="org.jboss.soa.esb.store.StoreAction" />
+ <action name="displayAfterTransformer" class="org.jboss.soa.esb.samples.quickstart.transformxml2pojo2.MyAction" process="displayMessage" />
+ </actions>
+ </service>
+ </services>
+
+</jbossesb>
Added: labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/jbossesb-properties.xml
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/jbossesb-properties.xml (rev 0)
+++ labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/jbossesb-properties.xml 2007-10-09 20:02:04 UTC (rev 15693)
@@ -0,0 +1,88 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+ JBoss, Home of Professional Open Source
+ Copyright 2006, JBoss Inc., and others contributors as indicated
+ by the @authors tag. All rights reserved.
+ See the copyright.txt in the distribution for a
+ full listing of individual contributors.
+ This copyrighted material is made available to anyone wishing to use,
+ modify, copy, or redistribute it subject to the terms and conditions
+ of the GNU Lesser General Public License, v. 2.1.
+ This program is distributed in the hope that it will be useful, but WITHOUT A
+ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
+ You should have received a copy of the GNU Lesser General Public License,
+ v.2.1 along with this distribution; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ MA 02110-1301, USA.
+
+ (C) 2005-2006,
+ @author JBoss Inc.
+-->
+<!-- $Id: jbossesb-unittest-properties.xml $ -->
+<!--
+ These options are described in the JBossESB manual.
+ Defaults are provided here for convenience only.
+
+ Please read through this file prior to using the system, and consider
+ updating the specified entries.
+-->
+<esb
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:noNamespaceSchemaLocation="jbossesb-1_0.xsd">
+ <properties name="core">
+ <property name="org.jboss.soa.esb.jndi.server.type" value="jboss"/>
+ <property name="org.jboss.soa.esb.jndi.server.url" value="localhost"/>
+ <property name="org.jboss.soa.esb.persistence.connection.factory" value="org.jboss.internal.soa.esb.persistence.format.MessageStoreFactoryImpl"/>
+ </properties>
+ <properties name="registry">
+ <property name="org.jboss.soa.esb.registry.queryManagerURI"
+ value="jnp://localhost:1099/InquiryService?org.apache.juddi.registry.rmi.Inquiry#inquire"/>
+ <property name="org.jboss.soa.esb.registry.lifeCycleManagerURI"
+ value="jnp://localhost:1099/PublishService?org.apache.juddi.registry.rmi.Publish#publish" />
+ <property name="org.jboss.soa.esb.registry.implementationClass"
+ value="org.jboss.internal.soa.esb.services.registry.JAXRRegistryImpl"/>
+ <property name="org.jboss.soa.esb.registry.factoryClass"
+ value="org.apache.ws.scout.registry.ConnectionFactoryImpl"/>
+ <property name="org.jboss.soa.esb.registry.user"
+ value="jbossesb"/>
+ <property name="org.jboss.soa.esb.registry.password"
+ value="password"/>
+ <!-- the following parameter is scout specific to set the type of communication between scout and the UDDI (embedded, rmi, soap) -->
+ <property name="org.jboss.soa.esb.scout.proxy.transportClass"
+ value="org.apache.ws.scout.transport.RMITransport"/>
+ </properties>
+ <properties name="transports" depends="core">
+ <property name="org.jboss.soa.esb.mail.smtp.host" value="localhost"/>
+ <property name="org.jboss.soa.esb.mail.smtp.user" value="jbossesb"/>
+ <property name="org.jboss.soa.esb.mail.smtp.password" value=""/>
+ <property name="org.jboss.soa.esb.mail.smtp.port" value="25"/>
+ </properties>
+ <properties name="connection">
+ <property name="min-pool-size" value="5"/>
+ <property name="max-pool=size" value="10"/>
+ <property name="blocking-timeout-millis" value="5000"/>
+ <property name="abandoned-connection-timeout" value="10000"/>
+ <property name="abandoned-connection-time-interval" value="30000"/>
+ </properties>
+ <properties name="dbstore">
+ <property name="org.jboss.soa.esb.persistence.db.connection.url" value="jdbc:hsqldb:hsql://localhost:9001/"/>
+ <property name="org.jboss.soa.esb.persistence.db.jdbc.driver" value="org.hsqldb.jdbcDriver"/>
+ <property name="org.jboss.soa.esb.persistence.db.user" value="sa"/>
+ <property name="org.jboss.soa.esb.persistence.db.pwd" value=""/>
+ <property name="org.jboss.soa.esb.persistence.db.pool.initial.size" value="2"/>
+ <property name="org.jboss.soa.esb.persistence.db.pool.min.size" value="2"/>
+ <property name="org.jboss.soa.esb.persistence.db.pool.max.size" value="5"/>
+ <!--table managed by pool to test for valid connections - created by pool automatically -->
+ <property name="org.jboss.soa.esb.persistence.db.pool.test.table" value="pooltest"/>
+ <!-- # of milliseconds to timeout waiting for a connection from pool -->
+ <property name="org.jboss.soa.esb.persistence.db.pool.timeout.millis" value="5000"/>
+ <property name="org.jboss.soa.esb.persistence.db.conn.manager" value="org.jboss.internal.soa.esb.persistence.manager.StandaloneConnectionManager"/>
+ </properties>
+ <properties name="messagerouting">
+ <property name="org.jboss.soa.esb.routing.cbrClass" value="org.jboss.internal.soa.esb.services.routing.cbr.JBossRulesRouter"/>
+ </properties>
+ <properties name="transformation">
+ <property name="java.naming.provider.url" value="localhost"/>
+ </properties>
+</esb>
Added: labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/jndi.properties
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/jndi.properties (rev 0)
+++ labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/jndi.properties 2007-10-09 20:02:04 UTC (rev 15693)
@@ -0,0 +1,5 @@
+java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory
+java.naming.provider.url=jnp://localhost:1099
+java.naming.factory.url.pkgs=org.jboss.naming
+java.naming.factory.url.pkgs=org.jnp.interfaces
+
Added: labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/juddi.properties
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/juddi.properties (rev 0)
+++ labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/juddi.properties 2007-10-09 20:02:04 UTC (rev 15693)
@@ -0,0 +1,69 @@
+# jUDDI Registry Properties (used by RegistryServer)
+# see http://www.juddi.org for more information
+
+# The UDDI Operator Name
+juddi.operatorName = jUDDI.org
+
+# The i18n locale default codes
+juddi.i18n.languageCode = en
+juddi.i18n.countryCode = US
+
+# The UDDI DiscoveryURL Prefix
+juddi.discoveryURL = http://localhost:8080/juddi/uddiget.jsp?
+
+# The UDDI Operator Contact Email Address
+juddi.operatorEmailAddress = admin at juddi.org
+
+# The maximum name size and maximum number
+# of name elements allows in several of the
+# FindXxxx and SaveXxxx UDDI functions.
+juddi.maxNameLength=255
+juddi.maxNameElementsAllowed=5
+
+# The maximum number of UDDI artifacts allowed
+# per publisher. A value of '-1' indicates any
+# number of artifacts is valid (These values can be
+# overridden at the individual publisher level).
+juddi.maxBusinessesPerPublisher=25
+juddi.maxServicesPerBusiness=20
+juddi.maxBindingsPerService=10
+juddi.maxTModelsPerPublisher=100
+
+# jUDDI Authentication module to use
+juddi.auth = org.apache.juddi.auth.DefaultAuthenticator
+
+# jUDDI DataStore module currently to use
+juddi.dataStore = org.apache.juddi.datastore.jdbc.JDBCDataStore
+
+# use a dataSource (if set to false a direct
+# jdbc connection will be used.
+juddi.isUseDataSource=false
+juddi.jdbcDriver=com.mysql.jdbc.Driver
+juddi.jdbcUrl=jdbc:mysql://localhost:3306/juddi
+juddi.jdbcUsername=root
+juddi.jdbcPassword=admin
+# jUDDI DataSource to use
+# juddi.dataSource=java:comp/env/jdbc/MySqlDS
+
+# jUDDI UUIDGen implementation to use
+juddi.uuidgen = org.apache.juddi.uuidgen.DefaultUUIDGen
+
+# jUDDI Cryptor implementation to use
+juddi.cryptor = org.apache.juddi.cryptor.DefaultCryptor
+
+# jUDDI Validator to use
+juddi.validator=org.apache.juddi.validator.DefaultValidator
+
+# jUDDI Proxy Properties (used by RegistryProxy)
+juddi.proxy.adminURL = http://localhost:8080/juddi/admin
+juddi.proxy.inquiryURL = http://localhost:8080/juddi/inquiry
+juddi.proxy.publishURL = http://localhost:8080/juddi/publish
+juddi.proxy.transportClass = org.apache.juddi.proxy.AxisTransport
+juddi.proxy.securityProvider = com.sun.net.ssl.internal.ssl.Provider
+juddi.proxy.protocolHandler = com.sun.net.ssl.internal.www.protocol
+
+# JNDI settings (used by RMITransport)
+java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory
+java.naming.provider.url=jnp://localhost:1099
+java.naming.factory.url.pkgs=org.jboss.naming
+
Added: labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/log4j.xml
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/log4j.xml (rev 0)
+++ labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/log4j.xml 2007-10-09 20:02:04 UTC (rev 15693)
@@ -0,0 +1,66 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
+
+<!-- ===================================================================== -->
+<!-- -->
+<!-- Log4j Configuration -->
+<!-- -->
+<!-- ===================================================================== -->
+
+<!-- $Id: log4j.xml,v 1.26.2.5 2005/09/15 09:31:02 dimitris Exp $ -->
+
+<!--
+ | For more configuration infromation and examples see the Jakarta Log4j
+ | owebsite: http://jakarta.apache.org/log4j
+ -->
+
+<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/" debug="false">
+
+ <!-- ============================== -->
+ <!-- Append messages to the console -->
+ <!-- ============================== -->
+
+ <appender name="CONSOLE" class="org.apache.log4j.ConsoleAppender">
+ <errorHandler class="org.jboss.logging.util.OnlyOnceErrorHandler"/>
+ <param name="Target" value="System.out"/>
+
+ <layout class="org.apache.log4j.PatternLayout">
+ <!-- The default pattern: Date Priority [Category] Message\n -->
+ <param name="ConversionPattern" value="%d{ABSOLUTE} %-5p [%t][%c{1}] %m%n"/>
+ </layout>
+ </appender>
+
+ <!-- ================ -->
+ <!-- Limit categories -->
+ <!-- ================ -->
+
+ <category name="org.jboss">
+ <priority value="WARN"/>
+ </category>
+ <category name="org.jboss.soa.esb">
+ <priority value="ERROR"/>
+ </category>
+ <category name="org.milyn">
+ <priority value="INFO"/>
+ </category>
+ <category name="org.jboss.soa.esb.actions.converters.SmooksTransformer">
+ <priority value="INFO"/>
+ </category>
+ <category name="org.jboss.internal.soa.esb">
+ <priority value="ERROR"/>
+ </category>
+ <category name="org.apache">
+ <priority value="ERROR"/>
+ </category>
+ <category name="quickstart">
+ <priority value="INFO"/>
+ </category>
+ <!-- ======================= -->
+ <!-- Setup the Root category -->
+ <!-- ======================= -->
+
+ <root>
+ <appender-ref ref="CONSOLE"/>
+ </root>
+
+</log4j:configuration>
Added: labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/readme.txt
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/readme.txt (rev 0)
+++ labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/readme.txt 2007-10-09 20:02:04 UTC (rev 15693)
@@ -0,0 +1,69 @@
+Overview:
+=========
+The purpose of the simple_transformation quickstart sample is to illustrate the
+use of Smooks performing a simple transformation by converting a XML file into
+Java POJOs, in this case it uses 2 different but similiar XML files to transform
+to a common set of POJOs.
+
+Running this quickstart:
+========================
+ Please refer to 'ant help-quickstarts' for prerequisites about the quickstarts
+ and a more detailed descripton of the different ways to run the quickstarts.
+
+ A comprehensive description of message transformation can be found in
+ MessageTransformation.pdf, located in the docs/services folder.
+
+To Run standalone mode:
+=======================
+ 1. In a command terminal window in the quickstart folder type
+ 'ant deploy-jms-dests'.
+ 2. In a command terminal window in this folder ("Window1"), type 'ant run'.
+ 3. Open another command terminal window in this folder ("Window2"), type
+ 'ant runtest'.
+ 4. Now, run 'ant runtest2' which pushes a Pets Store XML order in.
+ 5. Switch back to "Window1" to see the output from the ESB
+ 6. Interrupt the ESB ("Window1") using Ctrl-C and type
+ 'ant undeploy-jms-dests'.
+
+To Run '.esb' archive mode:
+===========================
+ 1. In a command terminal window in this folder ("Window1"), type 'ant deploy'.
+ 3. Open another command terminal window in this folder ("Window2"), type
+ 'ant runtest'.
+ 4. Switch back to Application Server console to see the output from the ESB
+ 5. Undeploy the esb archive ("Window1"), type 'ant undeploy'.
+
+What to look at in this Quickstart:
+===================================
+ As stated above, reading MessageTransformation.pdf would be of great benefit
+ in understanding JBoss ESB Transformations.
+
+ * jboss-esb.xml - uses the SmooksTransformerAction which is shipped with the
+ JBoss ESB.
+ * smooks-config.xml - imports two unique smooks resource files: from-dvdstore.xml
+ and from-petstore.xml from the transforms directory.
+ * from-dvdstore.xml - default-target-profile="from:dvdstore" is the key element
+ that determines when this set of mappings is applied.
+ * from-petstore.xml - default-target-profile="from:petstore" is the key element
+ that determines when this set of mappings is applied. This element is setup
+ as a property on the esb Message via check-origin.groovy
+ * check-origin.groovy - evaluates the inbound XML, looking for the either an
+ OrderLines or LineItems tag in the XML. OrderLines means this is DVDStore
+ related and LineItems means it is Petstore related.
+ * SampleOrder.xml - is the inbound test order. Feel free to modify the data
+ (not the structure) and send it into the transformer multiple times (ant
+ runtest) to see the results.
+ * SamplePetsOrder.xml - is the inbound test order. Feel free to modify the data
+ (not the structure) and send it into the transformer multiple times (ant
+ runtest) to see the results.
+ * src\org\jboss\soa\esb\store\StoreAction.java - converts the beans into
+ a concatenated string and places it back into the default location of the
+ message body. This is useful for seeing the converted string come back as a
+ reply.
+ * src\org\jboss\soa\esb\store\OrderHeader.java - holds the header portion
+ of the Order.
+ * src\org\jboss\soa\esb\store\OrderItem.java - holds a line item for the
+ Order.
+ * src\org\jboss\soa\esb\store\Customer.java - holds the Customer associated
+ with the Order.
+
\ No newline at end of file
Added: labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/scripts/check-origin.groovy
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/scripts/check-origin.groovy (rev 0)
+++ labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/scripts/check-origin.groovy 2007-10-09 20:02:04 UTC (rev 15693)
@@ -0,0 +1,11 @@
+
+def messageText = message.getBody().get();
+def order = new XmlParser().parseText(messageText);
+
+if(order.OrderLines.size() == 1) {
+ message.getProperties().setProperty("from", "dvdstore");
+} else if(order.LineItems.size() == 1) {
+ message.getProperties().setProperty("from", "petstore");
+}
+
+println "Message from: " + message.getProperties().getProperty("from");
Added: labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/smooks-config.xml
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/smooks-config.xml (rev 0)
+++ labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/smooks-config.xml 2007-10-09 20:02:04 UTC (rev 15693)
@@ -0,0 +1,7 @@
+<?xml version="1.0"?>
+<smooks-resource-list xmlns="http://www.milyn.org/xsd/smooks-1.0.xsd">
+
+ <import file="classpath:/transforms/from-dvdstore.xml" />
+ <import file="classpath:/transforms/from-petstore.xml" />
+
+</smooks-resource-list>
\ No newline at end of file
Added: labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/src/org/jboss/soa/esb/samples/quickstart/transformxml2pojo2/MyAction.java
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/src/org/jboss/soa/esb/samples/quickstart/transformxml2pojo2/MyAction.java (rev 0)
+++ labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/src/org/jboss/soa/esb/samples/quickstart/transformxml2pojo2/MyAction.java 2007-10-09 20:02:04 UTC (rev 15693)
@@ -0,0 +1,65 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2006, JBoss Inc., and others contributors as indicated
+ * by the @authors tag. All rights reserved.
+ * See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ * This copyrighted material is made available to anyone wishing to use,
+ * modify, copy, or redistribute it subject to the terms and conditions
+ * of the GNU Lesser General Public License, v. 2.1.
+ * This program is distributed in the hope that it will be useful, but WITHOUT A
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License,
+ * v.2.1 along with this distribution; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA 02110-1301, USA.
+ *
+ * (C) 2005-2006,
+ * @author JBoss Inc.
+ */
+package org.jboss.soa.esb.samples.quickstart.transformxml2pojo2;
+
+import org.jboss.soa.esb.helpers.ConfigTree;
+import org.jboss.soa.esb.message.Message;
+import org.jboss.soa.esb.message.Header;
+import org.jboss.soa.esb.message.Body;
+import org.jboss.soa.esb.actions.AbstractActionLifecycle;
+import org.jboss.soa.esb.addressing.Call;
+import org.jboss.soa.esb.addressing.EPR;
+
+public class MyAction extends AbstractActionLifecycle
+{
+
+ protected ConfigTree _config;
+
+ public MyAction(ConfigTree config) { _config = config; }
+
+
+ public Message displayMessage(Message message) throws Exception{
+ logHeader();
+ System.out.println("Body: " + message.getBody().get());
+ logFooter();
+ return message;
+ }
+
+
+ public void exceptionHandler(Message message, Throwable exception) {
+ logHeader();
+ System.out.println("!ERROR!");
+ System.out.println(exception.getMessage());
+ System.out.println("For Message: ");
+ System.out.println(message.getBody().get());
+ logFooter();
+ }
+
+ // This makes it easier to read on the console
+ private void logHeader() {
+ System.out.println("&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&");
+ }
+ private void logFooter() {
+ System.out.println("&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&\n");
+ }
+
+
+}
\ No newline at end of file
Added: labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/src/org/jboss/soa/esb/samples/quickstart/transformxml2pojo2/test/SendEsbMessage.java
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/src/org/jboss/soa/esb/samples/quickstart/transformxml2pojo2/test/SendEsbMessage.java (rev 0)
+++ labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/src/org/jboss/soa/esb/samples/quickstart/transformxml2pojo2/test/SendEsbMessage.java 2007-10-09 20:02:04 UTC (rev 15693)
@@ -0,0 +1,97 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2006, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+
+package org.jboss.soa.esb.samples.quickstart.transformxml2pojo2.test;
+
+import org.jboss.soa.esb.message.Message;
+import org.jboss.soa.esb.message.format.MessageFactory;
+import org.jboss.soa.esb.message.format.MessageType;
+import org.jboss.soa.esb.client.ServiceInvoker;
+
+import java.io.File;
+import java.io.FileReader;
+import java.io.IOException;
+
+/**
+ * Standalone class with to send ESB messages to a 'known' [category,name].
+ * <p/> arg0 - file name
+ *
+ */
+public class SendEsbMessage
+{
+ public static void main(String args[]) throws Exception
+ {
+// Setting the ConnectionFactory such that it will use scout
+
+ System.setProperty("javax.xml.registry.ConnectionFactoryClass","org.apache.ws.scout.registry.ConnectionFactoryImpl");
+
+ String fileName = "SampleOrder.xml";
+ if (args[0] != null && !args[0].equals(""))
+ fileName = args[0];
+
+ System.out.println("File Name: " + fileName);
+
+ String fileContent = readAsciiFile(fileName);
+ System.out.println("File Content:\n " + fileContent + "\n");
+
+ ServiceInvoker invoker;
+ Message requestMessage;
+ Message replyMessage = null;
+ invoker = new ServiceInvoker("MyTransformationServicesESB", "MyXML2POJO2TransformationService");
+ requestMessage = MessageFactory.getInstance().getMessage(MessageType.JBOSS_XML);
+ requestMessage.getBody().add(fileContent);
+
+ // now delivery it and wait for a response
+ replyMessage = invoker.deliverSync(requestMessage, 20000);
+
+ System.out.println("Reply Message: " + replyMessage.getBody().get());
+ }
+
+ public static String readAsciiFile(String fileName) throws IOException {
+ FileReader fr = null;
+ char[] thechars = null;
+
+ try {
+ File thefile = new File( fileName );
+ fr = new FileReader( thefile );
+ int size = (int) thefile.length();
+ thechars = new char[size];
+
+ int count, index = 0;
+
+ // read in the bytes from the input stream
+ while( ( count = fr.read( thechars, index, size ) ) > 0 ) {
+ size -= count;
+ index += count;
+ }
+ } catch(Exception e) {
+ System.out.println(e);
+ }
+ finally {
+ if( fr != null )
+ fr.close();
+ }
+ return new String(thechars);
+
+ } // readAsciiFile
+
+}
\ No newline at end of file
Added: labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/src/org/jboss/soa/esb/samples/quickstart/transformxml2pojo2/test/SendJMSMessage.java
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/src/org/jboss/soa/esb/samples/quickstart/transformxml2pojo2/test/SendJMSMessage.java (rev 0)
+++ labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/src/org/jboss/soa/esb/samples/quickstart/transformxml2pojo2/test/SendJMSMessage.java 2007-10-09 20:02:04 UTC (rev 15693)
@@ -0,0 +1,120 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2006, JBoss Inc., and others contributors as indicated
+ * by the @authors tag. All rights reserved.
+ * See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ * This copyrighted material is made available to anyone wishing to use,
+ * modify, copy, or redistribute it subject to the terms and conditions
+ * of the GNU Lesser General Public License, v. 2.1.
+ * This program is distributed in the hope that it will be useful, but WITHOUT A
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License,
+ * v.2.1 along with this distribution; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA 02110-1301, USA.
+ *
+ * (C) 2005-2006,
+ * @author JBoss Inc.
+ */
+package org.jboss.soa.esb.samples.quickstart.transformxml2pojo2.test;
+
+import javax.naming.InitialContext;
+import javax.naming.NamingException;
+import javax.jms.JMSException;
+import javax.jms.ConnectionFactory;
+import javax.jms.Queue;
+import javax.jms.Connection;
+import javax.jms.Session;
+import javax.jms.MessageProducer;
+import javax.jms.ObjectMessage;
+
+import java.io.File;
+import java.io.FileReader;
+import java.io.IOException;
+
+public class SendJMSMessage {
+ Connection conn;
+ Session session;
+ Queue que;
+
+
+ public void setupConnection() throws JMSException, NamingException
+ {
+ InitialContext iniCtx = new InitialContext();
+ Object tmp = iniCtx.lookup("ConnectionFactory");
+ ConnectionFactory qcf = (ConnectionFactory) tmp;
+ conn = qcf.createConnection();
+ que = (Queue) iniCtx.lookup("queue/quickstart_transform_pojo2_gw");
+ session = conn.createSession(false,Session.AUTO_ACKNOWLEDGE);
+ conn.start();
+ System.out.println("Connection Started");
+ }
+
+ public void sendAMessage(String msg) throws JMSException {
+
+ MessageProducer send = session.createProducer(que);
+ ObjectMessage tm = session.createObjectMessage(msg);
+ send.send(tm);
+ send.close();
+ }
+ public String readAsciiFile(String fileName) throws IOException {
+ FileReader fr = null;
+ char[] thechars = null;
+
+ try {
+ File thefile = new File( fileName );
+ fr = new FileReader( thefile );
+ int size = (int) thefile.length();
+ thechars = new char[size];
+
+ int count, index = 0;
+
+ // read in the bytes from the input stream
+ while( ( count = fr.read( thechars, index, size ) ) > 0 ) {
+ size -= count;
+ index += count;
+ }
+ } catch(Exception e) {
+ System.out.println(e);
+ }
+ finally {
+ if( fr != null )
+ fr.close();
+ }
+ return new String(thechars);
+
+ } // readAsciiFile
+
+ public void closeConnection() {
+ try {
+ conn.stop();
+ session.close();
+ conn.close();
+ } catch (JMSException jsme) {
+ System.out.println("Could not close connection: " + conn + " exception: " + jsme);
+ }
+
+ }
+ public static void main(String args[])
+ {
+ SendJMSMessage sm = new SendJMSMessage();
+ try {
+ sm.setupConnection();
+ if (args.length == 0) {
+ throw new Exception("You must supply the name of a XML file: SampleOrder.xml");
+ }
+ String fileContent = sm.readAsciiFile(args[0]);
+ System.out.println("---------------------------------------------");
+ System.out.println(fileContent);
+ System.out.println("---------------------------------------------");
+ sm.sendAMessage(fileContent);
+ } catch (Exception e) {
+ e.printStackTrace();
+ } finally {
+ sm.closeConnection();
+ } // finally
+ } // main
+
+}
\ No newline at end of file
Added: labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/src/org/jboss/soa/esb/store/Customer.java
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/src/org/jboss/soa/esb/store/Customer.java (rev 0)
+++ labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/src/org/jboss/soa/esb/store/Customer.java 2007-10-09 20:02:04 UTC (rev 15693)
@@ -0,0 +1,96 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2006, JBoss Inc., and others contributors as indicated
+ * by the @authors tag. All rights reserved.
+ * See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ * This copyrighted material is made available to anyone wishing to use,
+ * modify, copy, or redistribute it subject to the terms and conditions
+ * of the GNU Lesser General Public License, v. 2.1.
+ * This program is distributed in the hope that it will be useful, but WITHOUT A
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License,
+ * v.2.1 along with this distribution; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA 02110-1301, USA.
+ *
+ * (C) 2005-2006,
+ * @author JBoss Inc.
+ */
+
+package org.jboss.soa.esb.store;
+
+import java.io.Serializable;
+
+/**
+ * @author <a href="mailto:tom.fennelly at jboss.com">tom.fennelly at jboss.com</a>
+ */
+public class Customer implements Serializable{
+
+ // <Customer userName="user1" firstName="Harry" lastName="Potter" state="SD"/>
+ private String userName;
+ private String firstName;
+ private String lastName;
+ private String state;
+
+ /**
+ * @return Returns the firstName.
+ */
+ public String getFirstName() {
+ return firstName;
+ }
+ /**
+ * @param firstName The firstName to set.
+ */
+ public void setFirstName(String firstName) {
+ //System.out.println("**** firstName: " + firstName);
+ this.firstName = firstName;
+ }
+ /**
+ * @return Returns the lastName.
+ */
+ public String getLastName() {
+ return lastName;
+ }
+ /**
+ * @param lastName The lastName to set.
+ */
+ public void setLastName(String lastName) {
+ this.lastName = lastName;
+ }
+ /**
+ * @return Returns the state.
+ */
+ public String getState() {
+ return state;
+ }
+ /**
+ * @param state The state to set.
+ */
+ public void setState(String state) {
+ this.state = state;
+ }
+ /**
+ * @return Returns the userName.
+ */
+ public String getUserName() {
+ return userName;
+ }
+ /**
+ * @param userName The userName to set.
+ */
+ public void setUserName(String userName) {
+ this.userName = userName;
+ }
+
+ /* (non-Javadoc)
+ * @see java.lang.Object#toString()
+ */
+ @Override
+ public String toString() {
+ return userName + "," + firstName + "," + lastName + "," + state;
+ }
+
+
+}
Added: labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/src/org/jboss/soa/esb/store/OrderHeader.java
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/src/org/jboss/soa/esb/store/OrderHeader.java (rev 0)
+++ labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/src/org/jboss/soa/esb/store/OrderHeader.java 2007-10-09 20:02:04 UTC (rev 15693)
@@ -0,0 +1,120 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2006, JBoss Inc., and others contributors as indicated
+ * by the @authors tag. All rights reserved.
+ * See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ * This copyrighted material is made available to anyone wishing to use,
+ * modify, copy, or redistribute it subject to the terms and conditions
+ * of the GNU Lesser General Public License, v. 2.1.
+ * This program is distributed in the hope that it will be useful, but WITHOUT A
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License,
+ * v.2.1 along with this distribution; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA 02110-1301, USA.
+ *
+ * (C) 2005-2006,
+ * @author JBoss Inc.
+ */
+
+package org.jboss.soa.esb.store;
+
+import java.util.Calendar;
+import java.io.Serializable;
+
+/**
+ * @author <a href="mailto:tom.fennelly at jboss.com">tom.fennelly at jboss.com</a>
+ */
+public class OrderHeader implements Serializable {
+
+ // <Order orderId="1" orderDate="Wed Nov 15 13:45:28 EST 2006" statusCode="0" netAmount="59.97" totalAmount="64.92" tax="4.95">
+ private String orderId;
+ private Calendar orderDate;
+ private String statusCode;
+ private double netAmount;
+ private double totalAmount;
+ private double tax;
+
+ /**
+ * @return Returns the netAmount.
+ */
+ public double getNetAmount() {
+ return netAmount;
+ }
+ /**
+ * @param netAmount The netAmount to set.
+ */
+ public void setNetAmount(double netAmount) {
+ this.netAmount = netAmount;
+ }
+ /**
+ * @return Returns the orderDate.
+ */
+ public Calendar getOrderDate() {
+ return orderDate;
+ }
+ /**
+ * @param orderDate The orderDate to set.
+ */
+ public void setOrderDate(Calendar orderDate) {
+ this.orderDate = orderDate;
+ }
+ /**
+ * @return Returns the orderId.
+ */
+ public String getOrderId() {
+ return orderId;
+ }
+ /**
+ * @param orderId The orderId to set.
+ */
+ public void setOrderId(String orderId) {
+ this.orderId = orderId;
+ }
+ /**
+ * @return Returns the statusCode.
+ */
+ public String getStatusCode() {
+ return statusCode;
+ }
+ /**
+ * @param statusCode The statusCode to set.
+ */
+ public void setStatusCode(String statusCode) {
+ this.statusCode = statusCode;
+ }
+ /**
+ * @return Returns the tax.
+ */
+ public double getTax() {
+ return tax;
+ }
+ /**
+ * @param tax The tax to set.
+ */
+ public void setTax(double tax) {
+ this.tax = tax;
+ }
+ /**
+ * @return Returns the totalAmount.
+ */
+ public double getTotalAmount() {
+ return totalAmount;
+ }
+ /**
+ * @param totalAmount The totalAmount to set.
+ */
+ public void setTotalAmount(double totalAmount) {
+ this.totalAmount = totalAmount;
+ }
+
+ /* (non-Javadoc)
+ * @see java.lang.Object#toString()
+ */
+ @Override
+ public String toString() {
+ return orderId + ", " + (orderDate == null?null:orderDate.getTime()) + ", " + statusCode + ", " + netAmount + ", " + totalAmount + ", " + tax + ", ";
+ }
+}
Added: labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/src/org/jboss/soa/esb/store/OrderItem.java
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/src/org/jboss/soa/esb/store/OrderItem.java (rev 0)
+++ labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/src/org/jboss/soa/esb/store/OrderItem.java 2007-10-09 20:02:04 UTC (rev 15693)
@@ -0,0 +1,110 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2006, JBoss Inc., and others contributors as indicated
+ * by the @authors tag. All rights reserved.
+ * See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ * This copyrighted material is made available to anyone wishing to use,
+ * modify, copy, or redistribute it subject to the terms and conditions
+ * of the GNU Lesser General Public License, v. 2.1.
+ * This program is distributed in the hope that it will be useful, but WITHOUT A
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License,
+ * v.2.1 along with this distribution; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA 02110-1301, USA.
+ *
+ * (C) 2005-2006,
+ * @author JBoss Inc.
+ */
+
+package org.jboss.soa.esb.store;
+
+import java.io.Serializable;
+/**
+ * @author <a href="mailto:tom.fennelly at jboss.com">tom.fennelly at jboss.com</a>
+ */
+public class OrderItem implements Serializable {
+
+ // <OrderLine position="1" quantity="1">
+ // <Product productId="364" title="The 40-Year-Old Virgin " price="29.98"/>
+ // </OrderLine>
+ private int position;
+ private int quantity;
+ private String productId;
+ private String title;
+ private double price;
+
+ /**
+ * @return Returns the position.
+ */
+ public int getPosition() {
+ return position;
+ }
+ /**
+ * @param position The position to set.
+ */
+ public void setPosition(int position) {
+ //System.out.println("**** position: " + position);
+ this.position = position;
+ }
+ /**
+ * @return Returns the price.
+ */
+ public double getPrice() {
+ return price;
+ }
+ /**
+ * @param price The price to set.
+ */
+ public void setPrice(double price) {
+ //System.out.println("**** price: " + price);
+ this.price = price;
+ }
+ /**
+ * @return Returns the productId.
+ */
+ public String getProductId() {
+ return productId;
+ }
+ /**
+ * @param productId The productId to set.
+ */
+ public void setProductId(String productId) {
+ this.productId = productId;
+ }
+ /**
+ * @return Returns the quantity.
+ */
+ public int getQuantity() {
+ return quantity;
+ }
+ /**
+ * @param quantity The quantity to set.
+ */
+ public void setQuantity(int quantity) {
+ this.quantity = quantity;
+ }
+ /**
+ * @return Returns the title.
+ */
+ public String getTitle() {
+ return title;
+ }
+ /**
+ * @param title The title to set.
+ */
+ public void setTitle(String title) {
+ this.title = title;
+ }
+
+ /* (non-Javadoc)
+ * @see java.lang.Object#toString()
+ */
+ @Override
+ public String toString() {
+ return position + "," + quantity + "," + productId + "," + title + "," + price;
+
+ }
+}
Added: labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/src/org/jboss/soa/esb/store/StoreAction.java
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/src/org/jboss/soa/esb/store/StoreAction.java (rev 0)
+++ labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/src/org/jboss/soa/esb/store/StoreAction.java 2007-10-09 20:02:04 UTC (rev 15693)
@@ -0,0 +1,74 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2006, JBoss Inc., and others contributors as indicated
+ * by the @authors tag. All rights reserved.
+ * See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ * This copyrighted material is made available to anyone wishing to use,
+ * modify, copy, or redistribute it subject to the terms and conditions
+ * of the GNU Lesser General Public License, v. 2.1.
+ * This program is distributed in the hope that it will be useful, but WITHOUT A
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+ * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License,
+ * v.2.1 along with this distribution; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA 02110-1301, USA.
+ *
+ * (C) 2005-2006,
+ * @author JBoss Inc.
+ */
+
+package org.jboss.soa.esb.store;
+
+import java.util.HashMap;
+import java.util.List;
+
+import org.jboss.soa.esb.actions.AbstractActionPipelineProcessor;
+import org.jboss.soa.esb.actions.ActionProcessingException;
+import org.jboss.soa.esb.helpers.ConfigTree;
+import org.jboss.soa.esb.message.Message;
+
+/**
+ * Store action.
+ * <p/>
+ * This action uses bean value objects that were prepopulated by Smooks in an earlier action on the pipline.
+ * @author <a href="mailto:tom.fennelly at jboss.com">tom.fennelly at jboss.com</a>
+ */
+public class StoreAction extends AbstractActionPipelineProcessor {
+
+ public StoreAction(ConfigTree configTree) {
+
+ }
+
+ public Message process(Message message) throws ActionProcessingException {
+ HashMap beanHash = (HashMap) message.getBody().get("EXTRACTED_BEANS_HASH");
+
+ StringBuffer results = new StringBuffer();
+ if(beanHash != null) {
+ OrderHeader header = (OrderHeader) beanHash.get("orderHeader");
+ Customer customer = (Customer) beanHash.get("customer");
+ List orderItems = (List) beanHash.get("orderItemList");
+ results.append("Demonstrates Smooks ability to rip the XML into Objects\n");
+ results.append("********* StoreAction - Order Value Objects Populated *********\n");
+ results.append("Header: " + header + "\n");
+ results.append("Customer: " + customer + "\n");
+ if(orderItems != null) {
+ results.append("Order Items (" + orderItems.size() + "):\n");
+ for(int i = 0; i < orderItems.size(); i++) {
+ results.append("\t" + i + ": " + orderItems.get(i) + "\n");
+ }
+ }
+ results.append("\n****************************************************************** ");
+ message.getBody().add("OrderHeader",header);
+ message.getBody().add("Customer",customer);
+ message.getBody().add("OrderItems",orderItems);
+ } else {
+ results.append("\n*** No beanhash found!");
+ }
+
+ // Take this "parsed" output
+ message.getBody().add(results.toString());
+ return message;
+ }
+}
Added: labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/transforms/from-dvdstore.xml
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/transforms/from-dvdstore.xml (rev 0)
+++ labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/transforms/from-dvdstore.xml 2007-10-09 20:02:04 UTC (rev 15693)
@@ -0,0 +1,54 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<smooks-resource-list xmlns="http://www.milyn.org/xsd/smooks-1.0.xsd"
+ default-target-profile="from:dvdstore">
+
+ <!-- Populate the OrderHeader -->
+ <resource-config selector="order">
+ <resource>org.milyn.javabean.BeanPopulator</resource>
+ <param name="beanId">orderHeader</param>
+ <param name="beanClass">org.jboss.soa.esb.store.OrderHeader</param>
+ <param name="bindings">
+ <binding property="orderId" selector="Order @orderId" />
+ <binding property="orderDate" selector="Order @orderDate" type="LongDate"/>
+ <binding property="statusCode" selector="Order @statusCode" />
+ <binding property="netAmount" selector="Order @netAmount" type="Double" />
+ <binding property="totalAmount" selector="Order @totalAmount" type="Double" />
+ <binding property="tax" selector="Order @tax" type="Double" />
+ </param>
+ </resource-config>
+
+ <!-- Populate the Customer -->
+ <resource-config selector="order customer">
+ <resource>org.milyn.javabean.BeanPopulator</resource>
+ <param name="beanId">customer</param>
+ <param name="beanClass">org.jboss.soa.esb.store.Customer</param>
+ <param name="bindings">
+ <binding property="userName" selector="order customer @userName" />
+ <binding property="firstName" selector="order customer @firstName" />
+ <binding property="lastName" selector="order customer @lastName" />
+ <binding property="state" selector="order customer @state" />
+ </param>
+ </resource-config>
+
+ <!-- Populate the OrderItem list -->
+ <resource-config selector="order orderlines orderline">
+ <resource>org.milyn.javabean.BeanPopulator</resource>
+ <param name="beanId">orderItem</param>
+ <param name="beanClass">org.jboss.soa.esb.store.OrderItem</param>
+ <param name="addToList">true</param>
+ <param name="bindings">
+ <binding property="position" selector="order orderlines orderline @position" type="Integer" />
+ <binding property="quantity" selector="order orderlines orderline @quantity" type="Integer" />
+ <binding property="productId" selector="order orderlines orderline product @productId" />
+ <binding property="title" selector="order orderlines orderline product @title" />
+ <binding property="price" selector="order orderlines orderline product @price" type="Double" />
+ </param>
+ </resource-config>
+
+
+ <resource-config selector="decoder:LongDate">
+ <resource>org.milyn.javabean.decoders.CalendarDecoder</resource>
+ <param name="format">EEE MMM dd HH:mm:ss z yyyy</param>
+ </resource-config>
+
+</smooks-resource-list>
Added: labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/transforms/from-petstore.xml
===================================================================
--- labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/transforms/from-petstore.xml (rev 0)
+++ labs/jbossesb/trunk/product/samples/quickstarts/transform_XML2POJO2/transforms/from-petstore.xml 2007-10-09 20:02:04 UTC (rev 15693)
@@ -0,0 +1,52 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<smooks-resource-list xmlns="http://www.milyn.org/xsd/smooks-1.0.xsd"
+ default-target-profile="from:petstore">
+
+ <!-- Populate the OrderHeader -->
+ <resource-config selector="order">
+ <resource>org.milyn.javabean.BeanPopulator</resource>
+ <param name="beanId">orderHeader</param>
+ <param name="beanClass">org.jboss.soa.esb.store.OrderHeader</param>
+ <param name="bindings">
+ <binding property="orderId" selector="Order @orderId" />
+ <binding property="orderDate" selector="Order @orderDate" type="LongDate"/>
+ <binding property="statusCode" selector="Order @status" />
+ <binding property="totalAmount" selector="Order @totalPrice" type="Double" />
+ </param>
+ </resource-config>
+
+ <!-- Populate the Customer -->
+ <resource-config selector="order">
+ <resource>org.milyn.javabean.BeanPopulator</resource>
+ <param name="beanId">customer</param>
+ <param name="beanClass">org.jboss.soa.esb.store.Customer</param>
+ <param name="bindings">
+ <binding property="userName" selector="order @username" />
+ <binding property="firstName" selector="order @shipToFirstName" />
+ <binding property="lastName" selector="order @shipToLastName" />
+ <binding property="state" selector="order @shipState" />
+ </param>
+ </resource-config>
+
+ <!-- Populate the OrderItem list -->
+ <resource-config selector="order LineItems LineItem">
+ <resource>org.milyn.javabean.BeanPopulator</resource>
+ <param name="beanId">orderItem</param>
+ <param name="beanClass">org.jboss.soa.esb.store.OrderItem</param>
+ <param name="addToList">true</param>
+ <param name="bindings">
+ <binding property="position" selector="LineItem @lineNumber" type="Integer" />
+ <binding property="quantity" selector="LineItem @quantity" type="Integer" />
+ <binding property="productId" selector="LineItem Item @itemId" />
+ <binding property="price" selector="LineItem Item @listPrice" type="Double" />
+ <binding property="title" selector="LineItem Item @name" />
+ </param>
+ </resource-config>
+
+
+ <resource-config selector="decoder:LongDate">
+ <resource>org.milyn.javabean.decoders.CalendarDecoder</resource>
+ <param name="format">EEE MMM dd HH:mm:ss z yyyy</param>
+ </resource-config>
+
+</smooks-resource-list>
More information about the jboss-svn-commits
mailing list