[jboss-svn-commits] JBL Code SVN: r30045 - in labs/jbossesb/workspace/tcunning/juddiintegration/product/samples/quickstarts/conf: META-INF and 1 other directory.
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Fri Nov 6 00:05:26 EST 2009
Author: tcunning
Date: 2009-11-06 00:05:26 -0500 (Fri, 06 Nov 2009)
New Revision: 30045
Added:
labs/jbossesb/workspace/tcunning/juddiintegration/product/samples/quickstarts/conf/META-INF/
labs/jbossesb/workspace/tcunning/juddiintegration/product/samples/quickstarts/conf/META-INF/uddi.xml
labs/jbossesb/workspace/tcunning/juddiintegration/product/samples/quickstarts/conf/juddiv3.properties
Modified:
labs/jbossesb/workspace/tcunning/juddiintegration/product/samples/quickstarts/conf/base-build.xml
Log:
Fix quickstart paths.
Added: labs/jbossesb/workspace/tcunning/juddiintegration/product/samples/quickstarts/conf/META-INF/uddi.xml
===================================================================
--- labs/jbossesb/workspace/tcunning/juddiintegration/product/samples/quickstarts/conf/META-INF/uddi.xml (rev 0)
+++ labs/jbossesb/workspace/tcunning/juddiintegration/product/samples/quickstarts/conf/META-INF/uddi.xml 2009-11-06 05:05:26 UTC (rev 30045)
@@ -0,0 +1,50 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+
+<uddi>
+ <reloadDelay>5000</reloadDelay>
+ <manager name="test-manager">
+ <nodes>
+ <node>
+ <!-- required 'default' node -->
+ <name>default</name>
+ <description>Main jUDDI node</description>
+ <properties>
+ <property name="serverName" value="localhost" />
+ <property name="serverPort" value="8880" />
+ </properties>
+ <!-- JAX-WS Transport
+ <proxyTransport>org.apache.juddi.v3.client.transport.JAXWSTransport</proxyTransport>
+ <custodyTransferUrl>http://${serverName}:${serverPort}/juddiv3/services/custody-transfer?wsdl</custodyTransferUrl>
+ <inquiryUrl>http://${serverName}:${serverPort}/juddiv3/services/inquiry?wsdl</inquiryUrl>
+ <publishUrl>http://${serverName}:${serverPort}/juddiv3/services/publish?wsdl</publishUrl>
+ <securityUrl>http://${serverName}:${serverPort}/juddiv3/services/security?wsdl</securityUrl>
+ <subscriptionUrl>http://${serverName}:${serverPort}/juddiv3/services/subscription?wsdl</subscriptionUrl>
+ <subscriptionListenerUrl>http://${serverName}:${serverPort}/juddiv3/services/subscription-listener?wsdl</subscriptionListenerUrl>
+ <juddiApiUrl>http://${serverName}:${serverPort}/juddiv3/services/juddi-api?wsdl</juddiApiUrl>
+ -->
+ <!-- In VM Transport Settings
+ <proxyTransport>org.apache.juddi.v3.client.transport.InVMTransport</proxyTransport>
+ <custodyTransferUrl>org.apache.juddi.api.impl.UDDICustodyTransferImpl</custodyTransferUrl>
+ <inquiryUrl>org.apache.juddi.api.impl.UDDIInquiryImpl</inquiryUrl>
+ <publishUrl>org.apache.juddi.api.impl.UDDIPublicationImpl</publishUrl>
+ <securityUrl>org.apache.juddi.api.impl.UDDISecurityImpl</securityUrl>
+ <subscriptionUrl>org.apache.juddi.api.impl.UDDISubscriptionImpl</subscriptionUrl>
+ <subscriptionListenerUrl>org.apache.juddi.api.impl.UDDISubscriptionListenerImpl</subscriptionListenerUrl>
+ <juddiApiUrl>org.apache.juddi.api.impl.JUDDIApiImpl</juddiApiUrl>
+ -->
+ <!-- RMI Transport Settings -->
+ <proxyTransport>org.apache.juddi.v3.client.transport.RMITransport</proxyTransport>
+ <custodyTransferUrl>/juddiv3/UDDICustodyTransferService</custodyTransferUrl>
+ <inquiryUrl>/juddiv3/UDDIInquiryService</inquiryUrl>
+ <publishUrl>/juddiv3/UDDIPublicationService</publishUrl>
+ <securityUrl>/juddiv3/UDDISecurityService</securityUrl>
+ <subscriptionUrl>/juddiv3/UDDISubscriptionService</subscriptionUrl>
+ <subscriptionListenerUrl>/juddiv3/UDDISubscriptionListenerService</subscriptionListenerUrl>
+ <juddiApiUrl>/juddiv3/JUDDIApiService</juddiApiUrl>
+ <javaNamingFactoryInitial>org.jnp.interfaces.NamingContextFactory</javaNamingFactoryInitial>
+ <javaNamingFactoryUrlPkgs>org.jboss.naming</javaNamingFactoryUrlPkgs>
+ <javaNamingProviderUrl>jnp://localhost:1099</javaNamingProviderUrl>
+ </node>
+ </nodes>
+ </manager>
+</uddi>
Modified: labs/jbossesb/workspace/tcunning/juddiintegration/product/samples/quickstarts/conf/base-build.xml
===================================================================
--- labs/jbossesb/workspace/tcunning/juddiintegration/product/samples/quickstarts/conf/base-build.xml 2009-11-06 02:24:56 UTC (rev 30044)
+++ labs/jbossesb/workspace/tcunning/juddiintegration/product/samples/quickstarts/conf/base-build.xml 2009-11-06 05:05:26 UTC (rev 30045)
@@ -376,14 +376,17 @@
<fileset dir="${org.jboss.esb.server.home}/client" includes="hibernate-client.jar" /> <!-- Required for jbpm Client Code. -->
<fileset dir="${org.jboss.esb.server.server}/lib" includes="hibernate3.jar quartz-all.jar"/> <!-- Required for the helloworld_hibernate_action quickstart -->
<path refid="deployment-classpath" />
- <fileset dir="${org.jboss.esb.server.home}/client" includes="*.jar" /> <!-- Required for JMS Client Code. -->
+ <fileset dir="${org.jboss.esb.server.home}/client" includes="*.jar" excludes="scout.jar"/> <!-- Required for JMS Client Code. -->
</path>
<property name="compile-classpath" refid="compile-classpath"/>
+ <property name="conf.dir" location="${basedir}/../conf"/>
<path id="exec-classpath">
<pathelement location="." />
<pathelement location="${classes}" />
- <pathelement location="${basedir}/src" />
+ <pathelement location="${basedir}/src"/>
+ <pathelement location="${conf.dir}"/>
+ <pathelement location="${product.dir}/build/classes/rosetta-aop"/>
<fileset dir="${org.jboss.esb.server.server}/lib" includes="jboss-remoting.jar jboss-j2ee.jar jboss-messaging-client.jar" /> <!-- Required for JMS Client Code. -->
<fileset dir="${org.jboss.esb.server.server}/lib" includes="hibernate3.jar commons-collections.jar hsqldb.jar" /> <!-- Required for jbpm Client Code. -->
<fileset dir="${org.jboss.esb.server.server}/lib" includes="bsh.jar" /> <!-- Required for scripting Client Code. -->
Added: labs/jbossesb/workspace/tcunning/juddiintegration/product/samples/quickstarts/conf/juddiv3.properties
===================================================================
--- labs/jbossesb/workspace/tcunning/juddiintegration/product/samples/quickstarts/conf/juddiv3.properties (rev 0)
+++ labs/jbossesb/workspace/tcunning/juddiintegration/product/samples/quickstarts/conf/juddiv3.properties 2009-11-06 05:05:26 UTC (rev 30045)
@@ -0,0 +1,80 @@
+################################################################
+# jUDDI-v3.0 configuration. #
+################################################################
+# Note that the property settings in this #
+# file can be overriden by system parameters #
+# #
+################################################################
+# These two tokens are referenced in the install data. Note that you
+# can use any tokens, and that their values can be set here or as
+# System parameters.
+juddi.server.name=localhost
+juddi.server.port=8080
+
+juddi.root.publisher=root
+#
+# Name of the persistence unit to use (the default, "juddiDatabase" refers to the unit compiled into the juddi library)
+juddi.persistenceunit.name=juddiDatabase
+#
+# Check-the-time-stamp-on-this-file Interval in milli seconds
+juddi.configuration.reload.delay=2000
+#
+# Default locale
+juddi.locale=en_US
+#
+#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 rows returned in a find_* operation. Each call can set
+# this independently, but this property defines a global maximum.
+juddi.maxRows=1000
+# The maximum number of "IN" clause parameters. Some RDMBS limit the number of
+# parameters allowed in a SQL "IN" clause.
+juddi.maxInClause=1000
+#
+# 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
+#
+# Days before a transfer request expires
+juddi.transfer.expiration.days=3
+#
+# Days before a subscription expires
+juddi.subscription.expiration.days=30
+#
+# Minutes before a "chunked" subscription call expires
+juddi.subscription.chunkexpiration.minutes=5
+#
+# jUDDI Authentication module to use
+juddi.authenticator = org.apache.juddi.v3.auth.JUDDIAuthenticator
+#
+# 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 Key Generator to use
+juddi.keygeneratorr=org.apache.juddi.keygen.KeyGenerator
+#
+# Specifies whether the inquiry API requires authentication
+juddi.authenticate.Inquiry=false
+#
+# Specifies the interval at which the notification timer triggers
+juddi.notification.interval=3000000
+# Specifies the amount of time to wait before the notification timer initially fires
+juddi.notification.start.buffer=20000
+juddi.jndi.registration=true
+
More information about the jboss-svn-commits
mailing list