You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@juddi.apache.org by ks...@apache.org on 2009/10/12 21:59:19 UTC

svn commit: r824479 [2/4] - in /webservices/juddi/trunk: ./ docs/examples/appserver/jboss/ docs/examples/helloworld/META-INF/ juddi-client/ juddi-client/src/ juddi-client/src/main/ juddi-client/src/main/java/ juddi-client/src/main/java/org/ juddi-clien...

Added: webservices/juddi/trunk/juddi-samples/src/main/webapp/WEB-INF/beans.xml
URL: http://svn.apache.org/viewvc/webservices/juddi/trunk/juddi-samples/src/main/webapp/WEB-INF/beans.xml?rev=824479&view=auto
==============================================================================
--- webservices/juddi/trunk/juddi-samples/src/main/webapp/WEB-INF/beans.xml (added)
+++ webservices/juddi/trunk/juddi-samples/src/main/webapp/WEB-INF/beans.xml Mon Oct 12 19:59:15 2009
@@ -0,0 +1,30 @@
+<?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:jaxws="http://cxf.apache.org/jaxws"
+  xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd">
+
+  <import resource="classpath:META-INF/cxf/cxf.xml" />
+  <import resource="classpath:META-INF/cxf/cxf-extension-soap.xml" />
+  <import resource="classpath:META-INF/cxf/cxf-servlet.xml" />
+  
+  <jaxws:endpoint id="helloworld" implementor="org.apache.juddi.samples.HelloWorldImpl" 
+     address="/helloworld" />
+
+</beans>

Added: webservices/juddi/trunk/juddi-samples/src/main/webapp/WEB-INF/classes/META-INF/persistence.xml
URL: http://svn.apache.org/viewvc/webservices/juddi/trunk/juddi-samples/src/main/webapp/WEB-INF/classes/META-INF/persistence.xml?rev=824479&view=auto
==============================================================================
--- webservices/juddi/trunk/juddi-samples/src/main/webapp/WEB-INF/classes/META-INF/persistence.xml (added)
+++ webservices/juddi/trunk/juddi-samples/src/main/webapp/WEB-INF/classes/META-INF/persistence.xml Mon Oct 12 19:59:15 2009
@@ -0,0 +1,65 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<persistence xmlns="http://java.sun.com/xml/ns/persistence" 
+             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+             xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd" 
+             version="1.0">
+  <persistence-unit name="juddiDatabase" transaction-type="RESOURCE_LOCAL">
+    <provider>org.hibernate.ejb.HibernatePersistence</provider>
+    <jta-data-source>java:comp/env/jdbc/JuddiDS</jta-data-source>
+        <!-- entity classes -->
+    <class>org.apache.juddi.model.Address</class>
+    <class>org.apache.juddi.model.AddressLine</class>
+    <class>org.apache.juddi.model.AuthToken</class>
+    <class>org.apache.juddi.model.BindingCategoryBag</class>
+    <class>org.apache.juddi.model.BindingDescr</class>
+    <class>org.apache.juddi.model.BindingTemplate</class>
+    <class>org.apache.juddi.model.BusinessCategoryBag</class>
+    <class>org.apache.juddi.model.BusinessDescr</class>
+    <class>org.apache.juddi.model.BusinessEntity</class>
+    <class>org.apache.juddi.model.BusinessIdentifier</class>
+    <class>org.apache.juddi.model.BusinessName</class>
+    <class>org.apache.juddi.model.BusinessService</class>
+    <class>org.apache.juddi.model.CategoryBag</class>
+    <class>org.apache.juddi.model.Contact</class>
+    <class>org.apache.juddi.model.ContactDescr</class>
+    <class>org.apache.juddi.model.DiscoveryUrl</class>
+    <class>org.apache.juddi.model.Email</class>
+    <class>org.apache.juddi.model.InstanceDetailsDescr</class>
+    <class>org.apache.juddi.model.InstanceDetailsDocDescr</class>
+    <class>org.apache.juddi.model.KeyedReference</class>
+    <class>org.apache.juddi.model.KeyedReferenceGroup</class>
+    <class>org.apache.juddi.model.OverviewDoc</class>
+    <class>org.apache.juddi.model.OverviewDocDescr</class>
+    <class>org.apache.juddi.model.PersonName</class>
+    <class>org.apache.juddi.model.Phone</class>
+    <class>org.apache.juddi.model.Publisher</class>
+    <class>org.apache.juddi.model.PublisherAssertion</class>
+    <class>org.apache.juddi.model.PublisherAssertionId</class>
+    <class>org.apache.juddi.model.ServiceCategoryBag</class>
+    <class>org.apache.juddi.model.ServiceDescr</class>
+    <class>org.apache.juddi.model.ServiceName</class>
+    <class>org.apache.juddi.model.ServiceProjection</class>
+    <class>org.apache.juddi.model.Subscription</class>
+    <class>org.apache.juddi.model.SubscriptionChunkToken</class>
+    <class>org.apache.juddi.model.SubscriptionMatch</class>
+    <class>org.apache.juddi.model.Tmodel</class>
+    <class>org.apache.juddi.model.TmodelCategoryBag</class>
+    <class>org.apache.juddi.model.TmodelDescr</class>
+    <class>org.apache.juddi.model.TmodelIdentifier</class>
+    <class>org.apache.juddi.model.TmodelInstanceInfo</class>
+    <class>org.apache.juddi.model.TmodelInstanceInfoDescr</class>
+    <class>org.apache.juddi.model.TransferToken</class>
+    <class>org.apache.juddi.model.TransferTokenKey</class>
+    <class>org.apache.juddi.model.UddiEntity</class>
+    <class>org.apache.juddi.model.UddiEntityPublisher</class>
+
+    <properties>
+      <property name="hibernate.archive.autodetection" value="class"/>
+      <property name="hibernate.hbm2ddl.auto" value="update"/>
+      <property name="hibernate.show_sql" value="false"/>
+
+      <property name="hibernate.dialect" value="org.hibernate.dialect.DerbyDialect"/>
+      
+    </properties>
+  </persistence-unit>
+</persistence>

Added: webservices/juddi/trunk/juddi-samples/src/main/webapp/WEB-INF/classes/juddiv3.properties
URL: http://svn.apache.org/viewvc/webservices/juddi/trunk/juddi-samples/src/main/webapp/WEB-INF/classes/juddiv3.properties?rev=824479&view=auto
==============================================================================
--- webservices/juddi/trunk/juddi-samples/src/main/webapp/WEB-INF/classes/juddiv3.properties (added)
+++ webservices/juddi/trunk/juddi-samples/src/main/webapp/WEB-INF/classes/juddiv3.properties Mon Oct 12 19:59:15 2009
@@ -0,0 +1,89 @@
+################################################################
+#                 jUDDI-v3.0 configuration.                    #
+################################################################
+# Note that the property settings in this                      #
+# file can be overriden by system parameters                   #
+#                                                              #
+################################################################
+#
+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@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=365
+#
+# 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=5000
+#
+# Specifies the amount of time to wait before the notification timer initially f
+ires
+juddi.notification.start.buffer=20000
+
+#
+# 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=macdaddy
+juddi.server.port=8080
+
+#only used by RMITransport
+#juddi.proxy.factory.initial     =org.jnp.interfaces.NamingContextFactory
+#juddi.proxy.provider.url        =jnp://localhost:1099
+#juddi.proxy.factory.url.pkg     =org.jboss.naming
+
+

Added: webservices/juddi/trunk/juddi-samples/src/main/webapp/WEB-INF/classes/log4j.properties
URL: http://svn.apache.org/viewvc/webservices/juddi/trunk/juddi-samples/src/main/webapp/WEB-INF/classes/log4j.properties?rev=824479&view=auto
==============================================================================
--- webservices/juddi/trunk/juddi-samples/src/main/webapp/WEB-INF/classes/log4j.properties (added)
+++ webservices/juddi/trunk/juddi-samples/src/main/webapp/WEB-INF/classes/log4j.properties Mon Oct 12 19:59:15 2009
@@ -0,0 +1,25 @@
+
+log4j.rootLogger=INFO, logfile
+
+# in case any output is given to stdout, format it
+log4j.appender.stdout=org.apache.log4j.ConsoleAppender
+log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
+log4j.appender.stdout.layout.ConversionPattern=%d %p [%c] - %m%n
+
+log4j.appender.logfile=org.apache.log4j.RollingFileAppender
+log4j.appender.logfile.File=${catalina.home}/logs/juddi.log
+log4j.appender.logfile.MaxFileSize=512MB
+# Keep three backup files.
+log4j.appender.logfile.MaxBackupIndex=3
+# Pattern to output: date priority [category] - message
+log4j.appender.logfile.layout=org.apache.log4j.PatternLayout
+log4j.appender.logfile.layout.ConversionPattern=%d %p [%c] - %m%n
+
+#log4j.category.org.springframework.beans.property editors.CustomDateEditor=DEBUG
+
+log4j.debug=false
+
+# showing sql
+#log4j.category.org.hibernate.hql.ast.QueryTranslatorImpl=DEBUG
+#log4j.category.org.hibernate.SQL=DEBUG
+#log4j.category.org.hibernate.loader.hql.QueryLoad er=DEBUG 

Added: webservices/juddi/trunk/juddi-samples/src/main/webapp/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/webservices/juddi/trunk/juddi-samples/src/main/webapp/WEB-INF/web.xml?rev=824479&view=auto
==============================================================================
--- webservices/juddi/trunk/juddi-samples/src/main/webapp/WEB-INF/web.xml (added)
+++ webservices/juddi/trunk/juddi-samples/src/main/webapp/WEB-INF/web.xml Mon Oct 12 19:59:15 2009
@@ -0,0 +1,66 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+
+<!DOCTYPE web-app
+    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
+    "http://java.sun.com/dtd/web-app_2_3.dtd">
+
+<!--
+	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.
+-->
+<web-app>
+  <context-param>
+    <param-name>contextConfigLocation</param-name>
+    <param-value>WEB-INF/beans.xml</param-value>
+  </context-param>
+
+  <context-param>
+    <param-name>log4jConfigLocation</param-name>
+    <param-value>/WEB-INF/classes/log4j.properties</param-value>
+  </context-param>
+
+  <listener>
+    <listener-class>
+      org.springframework.web.context.ContextLoaderListener
+		</listener-class>
+  </listener>
+
+  <servlet>
+    <servlet-name>CXFServlet</servlet-name>
+    <display-name>CXF Servlet</display-name>
+    <servlet-class>
+      org.apache.cxf.transport.servlet.CXFServlet
+		</servlet-class>
+    <load-on-startup>1</load-on-startup>
+  </servlet>
+  
+   <servlet-mapping>
+    <servlet-name>CXFServlet</servlet-name>
+    <url-pattern>/services/*</url-pattern>
+   </servlet-mapping>
+   
+   <servlet>
+    <servlet-name>UDDIClerkServlet</servlet-name>
+    <display-name>Clerk Servlet</display-name>
+    <servlet-class>
+      org.apache.juddi.v3.client.config.UDDIClerkServlet
+    </servlet-class>
+    <load-on-startup>1</load-on-startup>
+   
+  </servlet>
+   
+</web-app>

Modified: webservices/juddi/trunk/juddi-tomcat/build.xml
URL: http://svn.apache.org/viewvc/webservices/juddi/trunk/juddi-tomcat/build.xml?rev=824479&r1=824478&r2=824479&view=diff
==============================================================================
--- webservices/juddi/trunk/juddi-tomcat/build.xml (original)
+++ webservices/juddi/trunk/juddi-tomcat/build.xml Mon Oct 12 19:59:15 2009
@@ -8,6 +8,7 @@
 		<mkdir dir="${basedir}/target/tomcat"/>
 		<unzip dest="${basedir}/target/tomcat" src="${dependency.tomcat.zip}"/>
 		<unzip dest="${webapps.dir}/juddiv3" src="${dependency.juddiv3.war}"/>
+		<unzip dest="${webapps.dir}/juddi-samples" src="${dependency.juddi-samples.war}"/>
 
 		<chmod perm="ugo+x">
 			<fileset dir="${basedir}/target/tomcat/apache-tomcat-${apache.tomcat.version}/bin">

Modified: webservices/juddi/trunk/juddi-tomcat/pom.xml
URL: http://svn.apache.org/viewvc/webservices/juddi/trunk/juddi-tomcat/pom.xml?rev=824479&r1=824478&r2=824479&view=diff
==============================================================================
--- webservices/juddi/trunk/juddi-tomcat/pom.xml (original)
+++ webservices/juddi/trunk/juddi-tomcat/pom.xml Mon Oct 12 19:59:15 2009
@@ -50,6 +50,12 @@
      <version>${juddi-cxf-version}</version> 
      <type>war</type>
     </dependency>
+     <dependency>
+     <artifactId>juddi-samples</artifactId>
+     <groupId>org.apache.juddi</groupId>
+     <version>3.0.0.SNAPSHOT</version> 
+     <type>war</type>
+    </dependency>
     <dependency>
      <artifactId>juddi-core</artifactId>
      <groupId>org.apache.juddi</groupId>
@@ -102,6 +108,7 @@
 	       <property name="dependency.tomcat.zip" value="${maven.dependency.org.apache.juddi.bootstrap.apache-tomcat.zip.path}"/>
 	       <property name="dependency.juddiv3.war" value="${basedir}/../juddi-cxf/target/juddi-cxf-${juddi-cxf-version}.war"/>
 	       <echo>JUDDIV3.WAR=${dependency.juddiv3.war}</echo>
+	       <property name="dependency.juddi-samples.war" value="${basedir}/../juddi-samples/target/juddi-samples-${juddi-cxf-version}.war"/>
 	       <property name="dependency.juddi.jar" value="${maven.dependency.org.apache.juddi.juddi.jar.path}"/>
 	       <ant antfile="${basedir}/build.xml">
                   <target name="package-tomcat"/>

Propchange: webservices/juddi/trunk/juddiv3-war/src/main/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Mon Oct 12 19:59:15 2009
@@ -0,0 +1 @@
+resources

Copied: webservices/juddi/trunk/juddiv3-war/src/main/java/org/apache/juddi/servlets/NotifyServlet.java (from r823329, webservices/juddi/trunk/juddi-console/subscription-listener/src/main/java/org/apache/juddi/subscription/NotifyServlet.java)
URL: http://svn.apache.org/viewvc/webservices/juddi/trunk/juddiv3-war/src/main/java/org/apache/juddi/servlets/NotifyServlet.java?p2=webservices/juddi/trunk/juddiv3-war/src/main/java/org/apache/juddi/servlets/NotifyServlet.java&p1=webservices/juddi/trunk/juddi-console/subscription-listener/src/main/java/org/apache/juddi/subscription/NotifyServlet.java&r1=823329&r2=824479&rev=824479&view=diff
==============================================================================
--- webservices/juddi/trunk/juddi-console/subscription-listener/src/main/java/org/apache/juddi/subscription/NotifyServlet.java (original)
+++ webservices/juddi/trunk/juddiv3-war/src/main/java/org/apache/juddi/servlets/NotifyServlet.java Mon Oct 12 19:59:15 2009
@@ -13,7 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package org.apache.juddi.subscription;
+package org.apache.juddi.servlets;
 
 import java.io.IOException;
 import java.io.PrintWriter;
@@ -24,7 +24,7 @@
 import javax.servlet.http.HttpServletRequest;
 import javax.servlet.http.HttpServletResponse;
 
-import org.apache.juddi.util.NotificationList;
+import org.apache.juddi.subscription.NotificationList;
 
 
 /**

Copied: webservices/juddi/trunk/juddiv3-war/src/main/java/org/apache/juddi/servlets/RegistryServlet.java (from r823405, webservices/juddi/trunk/juddiv3-war/src/main/java/org/apache/juddi/RegistryServlet.java)
URL: http://svn.apache.org/viewvc/webservices/juddi/trunk/juddiv3-war/src/main/java/org/apache/juddi/servlets/RegistryServlet.java?p2=webservices/juddi/trunk/juddiv3-war/src/main/java/org/apache/juddi/servlets/RegistryServlet.java&p1=webservices/juddi/trunk/juddiv3-war/src/main/java/org/apache/juddi/RegistryServlet.java&r1=823405&r2=824479&rev=824479&view=diff
==============================================================================
--- webservices/juddi/trunk/juddiv3-war/src/main/java/org/apache/juddi/RegistryServlet.java (original)
+++ webservices/juddi/trunk/juddiv3-war/src/main/java/org/apache/juddi/servlets/RegistryServlet.java Mon Oct 12 19:59:15 2009
@@ -13,13 +13,14 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package org.apache.juddi;
+package org.apache.juddi.servlets;
 
 import javax.servlet.ServletConfig;
 import javax.servlet.ServletException;
 import javax.servlet.http.HttpServlet;
 
 import org.apache.commons.configuration.ConfigurationException;
+import org.apache.juddi.Registry;
 import org.apache.log4j.Logger;
 
 /**

Propchange: webservices/juddi/trunk/juddiv3-war/src/main/java/org/apache/juddi/servlets/RegistryServlet.java
------------------------------------------------------------------------------
--- svn:mergeinfo (added)
+++ svn:mergeinfo Mon Oct 12 19:59:15 2009
@@ -0,0 +1 @@
+/webservices/juddi/branches/v3_trunk/juddiv3-war/src/main/java/org/apache/juddi/RegistryServlet.java:797614-802957

Added: webservices/juddi/trunk/juddiv3-war/src/main/webapp/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/UDDI_Publisher.xml
URL: http://svn.apache.org/viewvc/webservices/juddi/trunk/juddiv3-war/src/main/webapp/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/UDDI_Publisher.xml?rev=824479&view=auto
==============================================================================
--- webservices/juddi/trunk/juddiv3-war/src/main/webapp/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/UDDI_Publisher.xml (added)
+++ webservices/juddi/trunk/juddiv3-war/src/main/webapp/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/UDDI_Publisher.xml Mon Oct 12 19:59:15 2009
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Copyright 2001-2009 The Apache Software Foundation.
+ *
+ * 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.
+ *
+ */ -->
+<publisher xmlns="urn:juddi-apache-org:api_v3" authorizedName="uddi">
+  <publisherName>UDDI publisher</publisherName>
+  <isAdmin>false</isAdmin>
+</publisher>
+

Added: webservices/juddi/trunk/juddiv3-war/src/main/webapp/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/UDDI_tModels.xml
URL: http://svn.apache.org/viewvc/webservices/juddi/trunk/juddiv3-war/src/main/webapp/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/UDDI_tModels.xml?rev=824479&view=auto
==============================================================================
--- webservices/juddi/trunk/juddiv3-war/src/main/webapp/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/UDDI_tModels.xml (added)
+++ webservices/juddi/trunk/juddiv3-war/src/main/webapp/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/UDDI_tModels.xml Mon Oct 12 19:59:15 2009
@@ -0,0 +1,800 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Copyright 2001-2009 The Apache Software Foundation.
+ *
+ * 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.
+ *
+ */ -->
+<save_tModel xmlns="urn:uddi-org:api_v3">
+  <tModel tModelKey="uddi:uddi.org:keygenerator" xmlns="urn:uddi-org:api_v3">
+    <name>uddi-org:keyGenerator</name>
+    <description>UDDI domain key generator</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#keyGen</overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference tModelKey="uddi:uddi.org:categorization:types" keyName="uddi-org:types:keyGenerator"
+        keyValue="keyGenerator" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:categorization:keygenerator" xmlns="urn:uddi-org:api_v3">
+    <name>uddi-org:categorization:keyGenerator
+		</name>
+    <description>Key Generator for UDDI Categorization tModels
+		</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#categorizationKeyGen
+          </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:keyGenerator" keyValue="keyGenerator" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:sortorder:keygenerator" xmlns="urn:uddi-org:api_v3">
+    <name>uddi-org:sortorder:keyGenerator
+		</name>
+    <description>Key Generator for UDDI Sort Order tModels
+		</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#sortorderKeyGen
+          </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:keyGenerator" keyValue="keyGenerator" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:transport:keygenerator" xmlns="urn:uddi-org:api_v3">
+    <name>uddi-org:transport:keyGenerator
+		</name>
+    <description>Key Generator for UDDI Transport tModels </description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#transportKeyGen
+          </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:keyGenerator" keyValue="keyGenerator" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:protocol:keygenerator" xmlns="urn:uddi-org:api_v3">
+    <name>uddi-org: protocol:keyGenerator</name>
+    <description> Key Generator for UDDI Protocol tModels </description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#protocolKeyGen
+          </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:keyGenerator" keyValue="keyGenerator" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:v3_inquiry">
+    <name>uddi-org:inquiry_v3</name>
+    <description>UDDI Inquiry API V3.0</description>
+    <overviewDoc>
+      <overviewURL useType="wsdlInterface">
+        http://uddi.org/wsdl/uddi_api_v3_binding.wsdl#UDDI_Inquiry_SoapBinding
+			</overviewURL>
+    </overviewDoc>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#InqV3
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:wsdl" keyValue="wsdlSpec" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:soap" keyValue="soapSpec" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:xml" keyValue="xmlSpec" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:specification" keyValue="specification" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:v3_publication">
+    <name>uddi-org:publication_v3</name>
+    <description>UDDI Publication API V3.0</description>
+    <overviewDoc>
+      <overviewURL useType="wsdlInterface">
+        http://uddi.org/wsdl/uddi_api_v3_binding.wsdl#UDDI_Publication_SoapBinding
+			</overviewURL>
+    </overviewDoc>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#PubV3
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:wsdl" keyValue="wsdlSpec" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:soap" keyValue="soapSpec" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:xml" keyValue="xmlSpec" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:specification" keyValue="specification" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:v3_security">
+    <name>uddi-org:security_v3</name>
+    <description>UDDI Security API V3.0</description>
+    <overviewDoc>
+      <overviewURL useType="wsdlInterface">
+        http://uddi.org/wsdl/uddi_api_v3_binding.wsdl#UDDI_Security_SoapBinding
+			</overviewURL>
+    </overviewDoc>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#SecV3
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:wsdl" keyValue="wsdlSpec" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:soap" keyValue="soapSpec" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:xml" keyValue="xmlSpec" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:specification" keyValue="specification" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:categorization:types">
+    <name>uddi-org:types</name>
+    <description>UDDI Type Category System</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#UDDITypes
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:categorization" keyValue="categorization" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:checked" keyValue="checked" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:cacheable" keyValue="cacheable" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:categorization:general_keywords">
+    <name>uddi-org:general_keywords</name>
+    <description>Category system consisting of namespace
+      identifiers and the keywords associated with
+      the namespaces.
+  </description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#GenKW
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:categorization" keyValue="categorization" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:checked" keyValue="checked" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:categorization:nodes">
+    <name>uddi-org:nodes</name>
+    <description>Category system for identifying the nodes
+      of a registry.
+  </description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#Nodes
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:categorization" keyValue="categorization" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:checked" keyValue="checked" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:uncacheable" keyValue="uncacheable" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:relationships">
+    <name>uddi-org:relationships</name>
+    <description>Basic types of business relationships
+  </description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#Relationships
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:categorization" keyValue="categorization" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:unchecked" keyValue="unchecked" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:categorization:owningbusiness">
+    <name>uddi-org:owningBusiness_v3</name>
+    <description>Category system used to point to the
+      businessEntity
+      associated with the publisher of the tModel.
+  </description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#owningBusiness
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:categorization" keyValue="categorization" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:checked" keyValue="checked" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:uncacheable" keyValue="uncacheable" tModelKey="uddi:uddi.org:categorization:types" />
+
+      <keyedReference keyName="entityKeyValues" keyValue="businessKey" tModelKey="uddi:uddi.org:categorization:entitykeyvalues" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:identifier:isreplacedby">
+    <name>uddi-org:isReplacedBy</name>
+    <description>Identifier system used to point to the UDDI
+      entity,
+      using UDDI keys, that is the logical replacement
+      for the one in which isReplacedBy is used.
+  </description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#IsReplacedBy
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:identifier" keyValue="identifier" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:checked" keyValue="checked" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:uncacheable" keyValue="uncacheable" tModelKey="uddi:uddi.org:categorization:types" />
+
+      <keyedReference keyName="entityKeyValues" keyValue="businessKey" tModelKey="uddi:uddi.org:categorization:entitykeyvalues" />
+
+      <keyedReference keyName="entityKeyValues" keyValue="tModelKey" tModelKey="uddi:uddi.org:categorization:entitykeyvalues" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:categorization:validatedby">
+    <name>uddi-org:validatedBy</name>
+    <description>Category system used to point a value set or
+      category
+      group system tModel to associated value set Web service
+      implementations.
+  </description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#validatedBy
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:categorization" keyValue="categorization" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:checked" keyValue="checked" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:uncacheable" keyValue="uncacheable" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="entityKeyValues" keyValue="bindingKey" tModelKey="uddi:uddi.org:categorization:entitykeyvalues" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:categorization:derivedfrom">
+    <name>uddi-org:derivedFrom</name>
+    <description>Category system for referring tModels to other
+      tModels for the purpose of reuse.
+  </description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#DerivedFrom
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:categorization" keyValue="categorization" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:checked" keyValue="checked" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:uncacheable" keyValue="uncacheable" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="entityKeyValues" keyValue="tModelKey" tModelKey="uddi:uddi.org:categorization:entitykeyvalues" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:categorization:entitykeyvalues">
+    <name>uddi-org:entityKeyValues</name>
+    <description>Category system used to declare that a value set
+      uses entity keys as valid values.
+     </description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#entityKeyValues
+          </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:categorization" keyValue="categorization" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:checked" keyValue="checked" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:protocol:serverauthenticatedssl3">
+    <name>uddi-org:serverAuthenticatedSSL3
+		</name>
+    <description>Secure Sockets Layer Version 3.0 with Server
+      Authentication</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#serverSSL3
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:protocol" keyValue="protocol" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:protocol:mutualauthenticatedssl3">
+    <name>uddi-org:mutualAuthenticatedSSL3
+		</name>
+    <description>Secure Sockets Layer Version 3.0 with Mutual
+      Authentication</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#mutualSSL3
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:protocol" keyValue="protocol" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:transport:http">
+    <name>uddi-org:http</name>
+    <description> A Web service that uses HTTP transport</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#overHTTP
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:transport" keyValue="transport" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:transport:smtp">
+    <name>uddi-org:smtp</name>
+    <description>E-mail based Web service</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#overSMTP
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:transport" keyValue="transport" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:transport:ftp">
+    <name>uddi-org:ftp</name>
+    <description>File Transfer Protocol (FTP) based Web service
+		</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#overFTP
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:transport" keyValue="transport" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:transport:fax">
+    <name>uddi-org:fax</name>
+    <description>Fax-based Web service</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#overFax
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:transport" keyValue="transport" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:transport:telephone">
+    <name>uddi-org:telephone</name>
+    <description>Telephone based service</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#overPhone
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:transport" keyValue="transport" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:findqualifier:approximatematch">
+    <name>uddi-org:approximateMatch:SQL99
+		</name>
+    <description>UDDI approximate matching find qualifier
+		</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#wildcard
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:findQualifier" keyValue="findQualifier" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:findqualifier:exactmatch">
+    <name>uddi-org:exactMatch</name>
+    <description>UDDI exact name matching findQualifier
+  </description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#exactmatch
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:findQualifier" keyValue="findQualifier" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:findqualifier:caseinsensitivematch">
+    <name>uddi-org:caseInsensitiveMatch
+		</name>
+    <description>UDDI case insensitive matching find qualifier
+		</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#caseinsens
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:findQualifier" keyValue="findQualifier" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:findqualifier:casesensitivematch">
+    <name>uddi-org:caseSensitiveMatch</name>
+    <description>UDDI Case Sensitive Matching find qualifier
+		</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#casesens
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:findQualifier" keyValue="findQualifier" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:findqualifier:diacriticsinsensitivematch">
+    <name>uddi-org:diacriticsInsensitiveMatch
+		</name>
+    <description>UDDI Diacritics Insensitive Matching find qualifier
+		</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#diacritInsens
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:findQualifier" keyValue="findQualifier" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:findqualifier:diacriticssensitivematch">
+    <name>uddi-org:diacriticsSensitiveMatch
+		</name>
+    <description>UDDI Diacritics Sensitive Matching find qualifier
+		</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#diacritSens
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:findQualifier" keyValue="findQualifier" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:sortorder:binarysort">
+    <name>uddi-org:binarySort</name>
+    <description>UDDI binary sort sortOrder qualifier
+  </description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#sortOrd
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:sortOrder" keyValue="sortOrder" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:findQualifier" keyValue="findQualifier" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:sortorder:uts-10">
+    <name>uddi-org:UTS-10</name>
+    <description>UDDI Unicode Technical Standard #10 sort
+      collation sequence find qualifier
+  </description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#UCASort
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:sortOrder" keyValue="sortOrder" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:findQualifier" keyValue="findQualifier" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:findqualifier:caseinsensitivesort">
+    <name>uddi-org:caseInsensitiveSort</name>
+    <description>UDDI sort qualifier used to sort results without
+      regard to case</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#caseInsensSort
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:findQualifier" keyValue="findQualifier" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:findqualifier:casesensitivesort">
+    <name>uddi-org:caseSensitiveSort</name>
+    <description>UDDI sort qualifier used to sort results using
+      case sensitivity</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#caseSensSort
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+
+      <keyedReference keyName="uddi-org:types:sortOrder" keyValue="sortOrder" tModelKey="uddi:uddi.org:categorization:types" />
+      <keyedReference keyName="uddi-org:types:findQualifier" keyValue="findQualifier" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:findqualifier:sortbynameasc">
+    <name>uddi-org:sortByNameAsc</name>
+    <description>UDDI sort qualifier used to sort results by name
+      in ascending order</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#nameAsc
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:findQualifier" keyValue="findQualifier" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:findqualifier:sortbynamedesc">
+    <name>uddi-org:sortByNameDesc</name>
+    <description>UDDI sort qualifier used to sort results by
+      name in descending order</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#nameDesc
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:findQualifier" keyValue="findQualifier" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:findqualifier:sortbydateasc">
+    <name>uddi-org:sortByDateAsc</name>
+    <description>UDDI sort qualifier used to sort results by date in
+      ascending order</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#dateAsc
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:findQualifier" keyValue="findQualifier" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:findqualifier:sortbydatedesc">
+    <name>uddi-org:sortByDateDesc</name>
+    <description>UDDI sort qualifier used to sort results
+      by date in descending order</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#dateDesc
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:findQualifier" keyValue="findQualifier" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:findqualifier:andallkeys">
+    <name>uddi-org:andAllKeys</name>
+    <description>UDDI find qualifier used to request that a
+      logical AND be performed on bag contents
+      prior to a search</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#andAll
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:findQualifier" keyValue="findQualifier" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:findqualifier:orallkeys">
+    <name>uddi-org:orAllKeys</name>
+    <description>UDDI find qualifier used to request that a
+      logical OR be performed on bag contents
+      prior to a search</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#orAll
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:findQualifier" keyValue="findQualifier" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:findqualifier:orlikekeys">
+    <name>uddi-org:orLikeKeys</name>
+    <description>UDDI find qualifier used to find entities
+      that reference one of the values from each
+      referenced value set</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#orLike
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:findQualifier" keyValue="findQualifier" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:findqualifier:combinecategorybags">
+    <name>uddi-org:combineCategoryBags</name>
+    <description>UDDI find qualifier used to treat all of the
+      categoryBags within a businessEntity as if
+      they were one during inquiry</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#combineCatBags
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:findQualifier" keyValue="findQualifier" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:findqualifier:servicesubset">
+    <name>uddi-org:serviceSubset</name>
+    <description>UDDI find qualifier used to use categoryBags
+      of businessService elements to satisfy the
+      find_business inquiry.</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#servSubset
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:findQualifier" keyValue="findQualifier" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:findqualifier:bindingsubset">
+    <name>uddi-org:bindingSubset</name>
+    <description>UDDI find qualifier for specifying use of
+      categoryBags of bindingTempate elements to satisfy
+      the find_business or find_service inquiries.
+  </description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#bindSubset
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:findQualifier" keyValue="findQualifier" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:findqualifier:suppressProjectedServices">
+    <name>uddi-org:suppressProjectedServices
+		</name>
+    <description>UDDI find qualifier used to exclude service
+      projections from an inquiry function at all
+      levels.</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#suppressProjSvcs
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:findQualifier" keyValue="findQualifier" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:findqualifier:signaturepresent">
+    <name>uddi-org:signaturePresent</name>
+    <description>UDDI findQualifier used to return only entities
+      that have or are contained in entities that have
+      XML Digital Signatures.</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#sign
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:findQualifier" keyValue="findQualifier" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:specification:hostingredirector">
+    <name>uddi-org:hostingRedirector</name>
+    <description>UDDI Hosting Redirector service specification
+		</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#hostDir
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:specification" keyValue="specification" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:specification:v3_policy">
+    <name>uddi-org:v3_policy</name>
+    <description>UDDI Policy Description service specification
+		</description>
+    <overviewDoc>
+      <overviewURL useType="text">
+        http://uddi.org/pubs/uddi_v3.htm#policyDesc
+    </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:specification" keyValue="specification" tModelKey="uddi:uddi.org:categorization:types" />
+    </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:v3_ownership_transfer">
+    <name>uddi-org:ownership_transfer_v3</name>
+    <description>UDDI Custody and Ownership Transfer API V3.0</description>
+    <overviewDoc>
+      <overviewURL useType="wsdlInterface">
+         http://uddi.org/wsdl/uddi_custody_v3_binding.wsdl
+      </overviewURL>
+    </overviewDoc>
+    <overviewDoc>
+      <overviewURL useType="text">
+         http://uddi.org/pubs/uddi_v3.htm#OwnershipTransfer
+      </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:wsdl"
+        keyValue="wsdlSpec"
+        tModelKey="uddi:uddi.org:categorization:types"/>
+      <keyedReference keyName="uddi-org:types:soap"
+        keyValue="soapSpec"
+        tModelKey="uddi:uddi.org:categorization:types"/>
+      <keyedReference keyName="uddi-org:types:xml"
+        keyValue="xmlSpec"
+        tModelKey="uddi:uddi.org:categorization:types"/>
+      <keyedReference keyName="uddi-org:types:specification"
+        keyValue="specification"
+        tModelKey="uddi:uddi.org:categorization:types"/>
+     </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:v3_subscription">
+    <name>uddi-org:subscription_v3</name>
+    <description>UDDI Subscription API V3.0</description>
+    <overviewDoc>
+      <overviewURL useType="wsdlInterface">
+         http://uddi.org/wsdl/uddi_sub_v3_binding.wsdl
+      </overviewURL>
+    </overviewDoc>
+    <overviewDoc>
+      <overviewURL useType="text">
+         http://uddi.org/pubs/uddi_v3.htm#Sub
+      </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:wsdl"
+        keyValue="wsdlSpec"
+        tModelKey="uddi:uddi.org:categorization:types"/>
+      <keyedReference keyName="uddi-org:types:soap"
+        keyValue="soapSpec"
+        tModelKey="uddi:uddi.org:categorization:types"/>
+      <keyedReference keyName="uddi-org:types:xml"
+        keyValue="xmlSpec"
+        tModelKey="uddi:uddi.org:categorization:types"/>
+      <keyedReference keyName="uddi-org:types:specification"
+        keyValue="specification"
+        tModelKey="uddi:uddi.org:categorization:types"/>
+     </categoryBag>
+  </tModel>
+  <tModel tModelKey="uddi:uddi.org:v3_subscriptionlistener">
+    <name>uddi-org:subscriptionListener_v3</name>
+    <description>UDDI Subscription Listener API V3.0</description>
+    <overviewDoc>
+      <overviewURL useType="wsdlInterface">
+          http://uddi.org/wsdl/uddi_subr_v3_binding.wsdl
+      </overviewURL>
+    </overviewDoc>
+    <overviewDoc>
+      <overviewURL useType="text">
+         http://uddi.org/pubs/uddi_v3.htm#Subscribe
+      </overviewURL>
+    </overviewDoc>
+    <categoryBag>
+      <keyedReference keyName="uddi-org:types:wsdl"
+        keyValue="wsdlSpec"
+        tModelKey="uddi:uddi.org:categorization:types"/>
+      <keyedReference keyName="uddi-org:types:soap"
+        keyValue="soapSpec"
+        tModelKey="uddi:uddi.org:categorization:types"/>
+      <keyedReference keyName="uddi-org:types:xml"
+        keyValue="xmlSpec"
+        tModelKey="uddi:uddi.org:categorization:types"/>
+      <keyedReference keyName="uddi-org:types:specification"
+        keyValue="specification"
+        tModelKey="uddi:uddi.org:categorization:types"/>
+     </categoryBag>
+  </tModel>
+</save_tModel>
\ No newline at end of file

Added: webservices/juddi/trunk/juddiv3-war/src/main/webapp/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/itmark_Publisher.xml
URL: http://svn.apache.org/viewvc/webservices/juddi/trunk/juddiv3-war/src/main/webapp/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/itmark_Publisher.xml?rev=824479&view=auto
==============================================================================
--- webservices/juddi/trunk/juddiv3-war/src/main/webapp/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/itmark_Publisher.xml (added)
+++ webservices/juddi/trunk/juddiv3-war/src/main/webapp/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/itmark_Publisher.xml Mon Oct 12 19:59:15 2009
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Copyright 2001-2009 The Apache Software Foundation.
+ *
+ * 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.
+ *
+ */ -->
+<publisher xmlns="urn:juddi-apache-org:api_v3" authorizedName="itmark">
+  <publisherName>IT Marketing Affiliate (B) Publisher</publisherName>
+  <isAdmin>false</isAdmin>
+</publisher>

Added: webservices/juddi/trunk/juddiv3-war/src/main/webapp/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/itmark_tModelKeyGen.xml
URL: http://svn.apache.org/viewvc/webservices/juddi/trunk/juddiv3-war/src/main/webapp/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/itmark_tModelKeyGen.xml?rev=824479&view=auto
==============================================================================
--- webservices/juddi/trunk/juddiv3-war/src/main/webapp/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/itmark_tModelKeyGen.xml (added)
+++ webservices/juddi/trunk/juddiv3-war/src/main/webapp/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/itmark_tModelKeyGen.xml Mon Oct 12 19:59:15 2009
@@ -0,0 +1,41 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Copyright 2001-2009 The Apache Software Foundation.
+ *
+ * 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.
+ *
+ */ -->
+<!-- 
+  In this file, you only need to edit the tModelKey just below.  This will determine your root partition; the base that all system-generated
+  keys will use.  The keywords "uddi" and "keygenerator" must enclose the partition, but you are free to edit the interior.  The general format
+  is a domain name followed by a colon-delimited list of keywords (known as key-specific strings).
+  
+  Examples:
+  
+  uddi:www.mycompany.com:registry:keygenerator
+  uddi:uddi.acme.com:keygenerator
+  uddi:engineering.umich.edu:soa:ubr:keygenerator
+ -->
+<tModel tModelKey="uddi:it.marketing.apache.org:keygenerator"
+	xmlns="urn:uddi-org:api_v3">
+	<name>uddi-org:keyGenerator</name>
+	<description>Marketing domain key generator</description>
+	<overviewDoc>
+		<overviewURL useType="text">
+			http://uddi.org/pubs/uddi_v3.htm#keyGen</overviewURL>
+	</overviewDoc>
+	<categoryBag>
+		<keyedReference tModelKey="uddi:uddi.org:categorization:types"
+			keyName="uddi-org:types:keyGenerator" keyValue="keyGenerator" />
+	</categoryBag>
+</tModel>

Added: webservices/juddi/trunk/juddiv3-war/src/main/webapp/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/listener_Publisher.xml
URL: http://svn.apache.org/viewvc/webservices/juddi/trunk/juddiv3-war/src/main/webapp/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/listener_Publisher.xml?rev=824479&view=auto
==============================================================================
--- webservices/juddi/trunk/juddiv3-war/src/main/webapp/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/listener_Publisher.xml (added)
+++ webservices/juddi/trunk/juddiv3-war/src/main/webapp/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/listener_Publisher.xml Mon Oct 12 19:59:15 2009
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Copyright 2001-2009 The Apache Software Foundation.
+ *
+ * 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.
+ *
+ */ -->
+<publisher xmlns="urn:juddi-apache-org:api_v3" authorizedName="marketinglistener">
+  <publisherName>Marketing Listener Publisher</publisherName>
+  <isAdmin>false</isAdmin>
+</publisher>
+

Added: webservices/juddi/trunk/juddiv3-war/src/main/webapp/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/listener_tModels.xml
URL: http://svn.apache.org/viewvc/webservices/juddi/trunk/juddiv3-war/src/main/webapp/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/listener_tModels.xml?rev=824479&view=auto
==============================================================================
--- webservices/juddi/trunk/juddiv3-war/src/main/webapp/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/listener_tModels.xml (added)
+++ webservices/juddi/trunk/juddiv3-war/src/main/webapp/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/listener_tModels.xml Mon Oct 12 19:59:15 2009
@@ -0,0 +1,44 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Copyright 2001-2009 The Apache Software Foundation.
+ *
+ * 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.
+ *
+ */ -->
+<save_tModel xmlns="urn:uddi-org:api_v3">
+	<tModel tModelKey="uddi:it.sales.apache.org:keygenerator"
+		xmlns="urn:uddi-org:api_v3">
+		<name>uddi-org:keyGenerator</name>
+		<description>Sales domain key generator</description>
+		<overviewDoc>
+			<overviewURL useType="text">
+				http://uddi.org/pubs/uddi_v3.htm#keyGen</overviewURL>
+		</overviewDoc>
+		<categoryBag>
+			<keyedReference tModelKey="uddi:uddi.org:categorization:types"
+				keyName="uddi-org:types:keyGenerator" keyValue="keyGenerator" />
+		</categoryBag>
+	</tModel>
+	<tModel tModelKey="uddi:sales.apache.org:keygenerator" xmlns="urn:uddi-org:api_v3">
+	  <name>uddi-org:keyGenerator</name>
+	  <description>Sales Root domain key generator</description>
+	  <overviewDoc>
+	    <overviewURL useType="text">
+	      http://uddi.org/pubs/uddi_v3.htm#keyGen</overviewURL>
+	  </overviewDoc>
+	  <categoryBag>
+	    <keyedReference tModelKey="uddi:uddi.org:categorization:types" keyName="uddi-org:types:keyGenerator"
+	      keyValue="keyGenerator" />
+	  </categoryBag>
+	</tModel>
+</save_tModel>
\ No newline at end of file

Added: webservices/juddi/trunk/juddiv3-war/src/main/webapp/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/root_BusinessEntity.xml
URL: http://svn.apache.org/viewvc/webservices/juddi/trunk/juddiv3-war/src/main/webapp/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/root_BusinessEntity.xml?rev=824479&view=auto
==============================================================================
--- webservices/juddi/trunk/juddiv3-war/src/main/webapp/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/root_BusinessEntity.xml (added)
+++ webservices/juddi/trunk/juddiv3-war/src/main/webapp/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/root_BusinessEntity.xml Mon Oct 12 19:59:15 2009
@@ -0,0 +1,221 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Copyright 2001-2009 The Apache Software Foundation.
+ *
+ * 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.
+ *
+ */ -->
+ <!-- 
+  This file contains the root business entity structure that represents your registry.  The key chosen (or generated) for this entity will serve
+  as the node id for all entities published within the registry.  The services contained within this business entity reflect the UDDI APIs that
+  you wish to support (adding or subtracting the services here will not enable/disable them, simply add/omit them from being discovered via UDDI).
+  
+  The top-level business entity and sub-entities all use keys as unique identifiers.  They are left blank by default which means the system will
+  generate a key (generated as root partition with GUID appended).  You can choose to create your own, human-readable keys but they must match
+  the root key generator created in the root_tModelKeyGen.xml file.  Matching means they must equal the root key generator with the keyword
+  "keygenerator" replaced by your own string.
+  
+  Example:
+  
+  root_tModelKeyGen.xml key is uddi:www.mycompany.com:registry:keygenerator
+  
+  Legal user-defined keys are:
+  
+  uddi:www.mycompany.com:registry:ubr-node (for the businessKey)
+  uddi:www.mycompany.com:registry:inquiry-service (for the inquiry service service key)
+  uddi:www.mycompany.com:registry:inquiry-service-wsdlDeployment (for the inquiry service binding template that represents the WSDL)
+  
+  
+  See below for other fields that you may want to edit...
+  -->
+<businessEntity xmlns="urn:uddi-org:api_v3" xmlns:xml="http://www.w3.org/XML/1998/namespace" businessKey="uddi:marketing.apache.org:businesses-asf">
+  <!-- Change the name field to represent the name of your registry -->
+  <name xml:lang="en">An Apache jUDDI Node</name>
+  <!-- Change the description field to provided a brief description of your registry -->
+  <description xml:lang="en">This is a UDDI v3 registry node as implemented by Apache jUDDI.</description>
+  <discoveryURLs>
+    <!-- This discovery URL should point to the home installation URL of jUDDI -->
+    <discoveryURL useType="home">http://${juddi.server.name}:${juddi.server.port}/juddiv3</discoveryURL>
+  </discoveryURLs>
+  <categoryBag>
+    <keyedReference tModelKey="uddi:uddi.org:categorization:nodes" keyValue="node" />
+  </categoryBag>
+  <businessServices>
+    <!-- As mentioned above, you may want to provide user-defined keys for these (and the services/bindingTemplates below.  Services that you
+    don't intend to support should be removed entirely -->
+    <businessService serviceKey="uddi:marketing.apache.org:services-inquiry" businessKey="uddi:marketing.apache.org:businesses-asf">
+      <name xml:lang="en">UDDI Inquiry Service</name>
+      <description xml:lang="en">Web Service supporting UDDI Inquiry API</description>
+      <bindingTemplates>
+        <bindingTemplate bindingKey="uddi:marketing.apache.org:servicebindings-inquiry-ws" serviceKey="uddi:marketing.apache.org:services-inquiry">
+          <description>UDDI Inquiry API V3</description>
+          <!-- This should be changed to the WSDL URL of the inquiry API.  An access point inside a bindingTemplate will be found for every service
+          in this file.  They all must point to their API's WSDL URL -->
+          <accessPoint useType="wsdlDeployment">http://${juddi.server.name}:${juddi.server.port}/juddiv3/services/inquiry?wsdl</accessPoint>
+          <tModelInstanceDetails>
+            <tModelInstanceInfo tModelKey="uddi:uddi.org:v3_inquiry">
+              <instanceDetails>
+                <instanceParms>
+                <![CDATA[
+                  <?xml version="1.0" encoding="utf-8" ?>
+                  <UDDIinstanceParmsContainer xmlns="urn:uddi-org:policy_v3_instanceParms">
+                    <defaultSortOrder>
+                      uddi:uddi.org:sortorder:binarysort
+                    </defaultSortOrder>
+                  </UDDIinstanceParmsContainer>
+                ]]>
+                </instanceParms>
+              </instanceDetails>
+            </tModelInstanceInfo>
+          </tModelInstanceDetails>
+          <categoryBag>
+            <keyedReference keyName="uddi-org:types:wsdl" keyValue="wsdlDeployment" tModelKey="uddi:uddi.org:categorization:types"/>
+          </categoryBag>
+        </bindingTemplate>
+      </bindingTemplates>
+    </businessService>
+    <businessService serviceKey="uddi:marketing.apache.org:services-publish" businessKey="uddi:marketing.apache.org:businesses-asf">
+      <name xml:lang="en">UDDI Publish Service</name>
+      <description xml:lang="en">Web Service supporting UDDI Publish API</description>
+      <bindingTemplates>
+        <bindingTemplate bindingKey="uddi:marketing.apache.org:servicebindings-publish-ws" serviceKey="uddi:marketing.apache.org:services-publish">
+          <description>UDDI Publication API V3</description>
+          <accessPoint useType="wsdlDeployment">http://${juddi.server.name}:${juddi.server.port}/juddiv3/services/publish?wsdl</accessPoint>
+          <tModelInstanceDetails>
+            <tModelInstanceInfo tModelKey="uddi:uddi.org:v3_publication">
+              <instanceDetails>
+                <instanceParms>
+                <![CDATA[
+                  <?xml version="1.0" encoding="utf-8" ?>
+                  <UDDIinstanceParmsContainer xmlns="urn:uddi-org:policy_v3_instanceParms">
+                    <authInfoUse>required</authInfoUse>
+                  </UDDIinstanceParmsContainer>
+                ]]>
+                </instanceParms>
+              </instanceDetails>
+            </tModelInstanceInfo>
+          </tModelInstanceDetails>
+          <categoryBag>
+            <keyedReference keyName="uddi-org:types:wsdl" keyValue="wsdlDeployment" tModelKey="uddi:uddi.org:categorization:types"/>
+          </categoryBag>
+        </bindingTemplate>
+      </bindingTemplates>
+    </businessService>
+    <businessService serviceKey="uddi:marketing.apache.org:services-security" businessKey="uddi:marketing.apache.org:businesses-asf">
+      <name xml:lang="en">UDDI Security Service</name>
+      <description xml:lang="en">Web Service supporting UDDI Security API</description>
+      <bindingTemplates>
+        <bindingTemplate bindingKey="uddi:marketing.apache.org:servicebindings-security-ws" serviceKey="uddi:marketing.apache.org:services-security">
+          <description>UDDI Security API V3</description>
+          <accessPoint useType="wsdlDeployment">http://${juddi.server.name}:${juddi.server.port}/juddiv3/services/security?wsdl</accessPoint>
+          <tModelInstanceDetails>
+            <tModelInstanceInfo tModelKey="uddi:uddi.org:v3_security" />
+          </tModelInstanceDetails>
+          <categoryBag>
+            <keyedReference keyName="uddi-org:types:wsdl" keyValue="wsdlDeployment" tModelKey="uddi:uddi.org:categorization:types"/>
+          </categoryBag>
+        </bindingTemplate>
+      </bindingTemplates>
+    </businessService>
+    <businessService serviceKey="uddi:marketing.apache.org:services-custodytransfer" businessKey="uddi:marketing.apache.org:businesses-asf">
+      <name xml:lang="en">UDDI Custody and Ownership Transfer Service</name>
+      <description xml:lang="en">Web Service supporting UDDI Custody and Ownership Transfer API</description>
+      <bindingTemplates>
+        <bindingTemplate bindingKey="uddi:marketing.apache.org:servicebindings-custodytransfer-ws" serviceKey="uddi:marketing.apache.org:services-custodytransfer">
+          <description>UDDI Custody and Ownership Transfer API V3</description>
+          <accessPoint useType="wsdlDeployment">http://${juddi.server.name}:${juddi.server.port}/juddiv3/services/custody-transfer?wsdl</accessPoint>
+          <tModelInstanceDetails>
+            <tModelInstanceInfo tModelKey="uddi:uddi.org:v3_ownership_transfer">
+              <instanceDetails>
+                <instanceParms>
+                <![CDATA[
+                <?xml version="1.0" encoding="utf-8" ?>
+                <UDDIinstanceParmsContainer
+                 xmlns="urn:uddi-org:policy_v3_instanceParms">
+                  <authInfoUse>required</authInfoUse>
+                </UDDIinstanceParmsContainer>
+                ]]>
+                </instanceParms>
+              </instanceDetails>
+            </tModelInstanceInfo>
+          </tModelInstanceDetails>
+          <categoryBag>
+            <keyedReference keyName="uddi-org:types:wsdl" keyValue="wsdlDeployment" tModelKey="uddi:uddi.org:categorization:types"/>
+          </categoryBag>
+        </bindingTemplate>
+      </bindingTemplates>
+    </businessService>
+    <businessService serviceKey="uddi:marketing.apache.org:services-subscription" businessKey="uddi:marketing.apache.org:businesses-asf">
+      <name xml:lang="en">UDDI Subscription Service</name>
+      <description xml:lang="en">Web Service supporting UDDI Subscription API</description>
+      <bindingTemplates>
+        <bindingTemplate bindingKey="uddi:marketing.apache.org:servicebindings-subscription-ws" serviceKey="uddi:marketing.apache.org:services-subscription">
+          <description>UDDI Subscription API V3</description>
+          <accessPoint useType="wsdlDeployment">http://${juddi.server.name}:${juddi.server.port}/juddiv3/services/subscription?wsdl</accessPoint>
+          <tModelInstanceDetails>
+            <tModelInstanceInfo tModelKey="uddi:uddi.org:v3_subscription">
+              <instanceDetails>
+                <instanceParms>
+                <![CDATA[
+                <?xml version="1.0" encoding="utf-8" ?>
+                <UDDIinstanceParmsContainer
+                xmlns="urn:uddi-org:policy_v3_instanceParms">
+                <authInfoUse>required</authInfoUse>
+                <filterUsingFindAPI>supported</filterUsingFindAPI>
+                </UDDIinstanceParmsContainer>
+                ]]>
+                </instanceParms>
+              </instanceDetails>
+            </tModelInstanceInfo>
+          </tModelInstanceDetails>
+          <categoryBag>
+            <keyedReference keyName="uddi-org:types:wsdl" keyValue="wsdlDeployment" tModelKey="uddi:uddi.org:categorization:types"/>
+          </categoryBag>
+        </bindingTemplate>
+      </bindingTemplates>
+    </businessService>
+    <businessService serviceKey="uddi:marketing.apache.org:services-subscriptionlistener" businessKey="uddi:marketing.apache.org:businesses-asf">
+      <name xml:lang="en">UDDI Subscription Listener Service</name>
+      <description xml:lang="en">Web Service supporting UDDI Subscription Listener API</description>
+      <bindingTemplates>
+        <bindingTemplate bindingKey="uddi:marketing.apache.org:servicebindings-subscriptionlistener-ws" serviceKey="uddi:marketing.apache.org:services-subscriptionlistener">
+          <description>UDDI Subscription Listener API V3</description>
+          <accessPoint useType="wsdlDeployment">http://${juddi.server.name}:${juddi.server.port}/juddiv3/services/subscription-listener?wsdl</accessPoint>
+          <tModelInstanceDetails>
+            <tModelInstanceInfo tModelKey="uddi:uddi.org:v3_subscriptionlistener" />
+          </tModelInstanceDetails>
+          <categoryBag>
+            <keyedReference keyName="uddi-org:types:wsdl" keyValue="wsdlDeployment" tModelKey="uddi:uddi.org:categorization:types"/>
+          </categoryBag>
+        </bindingTemplate>
+      </bindingTemplates>
+    </businessService>
+     <businessService serviceKey="uddi:marketing.apache.org:services-publisher" businessKey="uddi:marketing.apache.org:businesses-asf">
+      <name xml:lang="en">jUDDI Publisher Service</name>
+      <description xml:lang="en">Web Service supporting jUDDI specific API</description>
+      <bindingTemplates>
+        <bindingTemplate bindingKey="uddi:marketing.apache.org:servicebindings-publisher-ws" serviceKey="uddi:marketing.apache.org:services-publisher">
+          <description>jUDDI Publisher Service API V3</description>
+          <accessPoint useType="wsdlDeployment">http://${juddi.server.name}:${juddi.server.port}/juddiv3/services/publisher?wsdl</accessPoint>
+          <categoryBag>
+            <keyedReference keyName="uddi-org:types:wsdl" keyValue="wsdlDeployment" tModelKey="uddi:uddi.org:categorization:types"/>
+          </categoryBag>
+        </bindingTemplate>
+      </bindingTemplates>
+    </businessService>
+  </businessServices>
+</businessEntity>
+
+
+
+

Added: webservices/juddi/trunk/juddiv3-war/src/main/webapp/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/root_Publisher.xml
URL: http://svn.apache.org/viewvc/webservices/juddi/trunk/juddiv3-war/src/main/webapp/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/root_Publisher.xml?rev=824479&view=auto
==============================================================================
--- webservices/juddi/trunk/juddiv3-war/src/main/webapp/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/root_Publisher.xml (added)
+++ webservices/juddi/trunk/juddiv3-war/src/main/webapp/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/root_Publisher.xml Mon Oct 12 19:59:15 2009
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Copyright 2001-2009 The Apache Software Foundation.
+ *
+ * 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.
+ *
+ */ -->
+<publisher xmlns="urn:juddi-apache-org:api_v3" authorizedName="root">
+  <publisherName>root publisher</publisherName>
+  <isAdmin>true</isAdmin>
+</publisher>

Added: webservices/juddi/trunk/juddiv3-war/src/main/webapp/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/root_tModelKeyGen.xml
URL: http://svn.apache.org/viewvc/webservices/juddi/trunk/juddiv3-war/src/main/webapp/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/root_tModelKeyGen.xml?rev=824479&view=auto
==============================================================================
--- webservices/juddi/trunk/juddiv3-war/src/main/webapp/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/root_tModelKeyGen.xml (added)
+++ webservices/juddi/trunk/juddiv3-war/src/main/webapp/WEB-INF/classes/RENAME4MARKETING_juddi_custom_install_data/root_tModelKeyGen.xml Mon Oct 12 19:59:15 2009
@@ -0,0 +1,40 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Copyright 2001-2009 The Apache Software Foundation.
+ *
+ * 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.
+ *
+ */ -->
+<!-- 
+  In this file, you only need to edit the tModelKey just below.  This will determine your root partition; the base that all system-generated
+  keys will use.  The keywords "uddi" and "keygenerator" must enclose the partition, but you are free to edit the interior.  The general format
+  is a domain name followed by a colon-delimited list of keywords (known as key-specific strings).
+  
+  Examples:
+  
+  uddi:www.mycompany.com:registry:keygenerator
+  uddi:uddi.acme.com:keygenerator
+  uddi:engineering.umich.edu:soa:ubr:keygenerator
+ -->
+<tModel tModelKey="uddi:marketing.apache.org:keygenerator" xmlns="urn:uddi-org:api_v3">
+  <name>uddi-org:keyGenerator</name>
+  <description>Root domain key generator</description>
+  <overviewDoc>
+    <overviewURL useType="text">
+      http://uddi.org/pubs/uddi_v3.htm#keyGen</overviewURL>
+  </overviewDoc>
+  <categoryBag>
+    <keyedReference tModelKey="uddi:uddi.org:categorization:types" keyName="uddi-org:types:keyGenerator"
+      keyValue="keyGenerator" />
+  </categoryBag>
+</tModel>

Added: webservices/juddi/trunk/juddiv3-war/src/main/webapp/WEB-INF/classes/RENAME4SALES_juddi_custom_install_data/UDDI_Publisher.xml
URL: http://svn.apache.org/viewvc/webservices/juddi/trunk/juddiv3-war/src/main/webapp/WEB-INF/classes/RENAME4SALES_juddi_custom_install_data/UDDI_Publisher.xml?rev=824479&view=auto
==============================================================================
--- webservices/juddi/trunk/juddiv3-war/src/main/webapp/WEB-INF/classes/RENAME4SALES_juddi_custom_install_data/UDDI_Publisher.xml (added)
+++ webservices/juddi/trunk/juddiv3-war/src/main/webapp/WEB-INF/classes/RENAME4SALES_juddi_custom_install_data/UDDI_Publisher.xml Mon Oct 12 19:59:15 2009
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Copyright 2001-2009 The Apache Software Foundation.
+ *
+ * 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.
+ *
+ */ -->
+<publisher xmlns="urn:juddi-apache-org:api_v3" authorizedName="uddi">
+  <publisherName>UDDI publisher</publisherName>
+  <isAdmin>false</isAdmin>
+</publisher>
+



---------------------------------------------------------------------
To unsubscribe, e-mail: juddi-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: juddi-cvs-help@ws.apache.org