You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@juddi.apache.org by jf...@apache.org on 2008/12/03 04:42:26 UTC

svn commit: r722746 - in /webservices/juddi/branches/v3_trunk: ./ juddi-core/ juddi-cxf/ juddi-cxf/src/ juddi-cxf/src/main/ juddi-cxf/src/main/resources/ juddi-cxf/src/main/webapp/ juddi-cxf/src/main/webapp/WEB-INF/ juddi-tomcat/ juddi-web/ uddi-ws/

Author: jfaath
Date: Tue Dec  2 19:42:25 2008
New Revision: 722746

URL: http://svn.apache.org/viewvc?rev=722746&view=rev
Log:
Created CXF deployment.  Some other cosmetic changes to the various POMs.

Added:
    webservices/juddi/branches/v3_trunk/juddi-cxf/
    webservices/juddi/branches/v3_trunk/juddi-cxf/pom.xml   (with props)
    webservices/juddi/branches/v3_trunk/juddi-cxf/src/
    webservices/juddi/branches/v3_trunk/juddi-cxf/src/main/
    webservices/juddi/branches/v3_trunk/juddi-cxf/src/main/resources/
    webservices/juddi/branches/v3_trunk/juddi-cxf/src/main/webapp/
    webservices/juddi/branches/v3_trunk/juddi-cxf/src/main/webapp/WEB-INF/
    webservices/juddi/branches/v3_trunk/juddi-cxf/src/main/webapp/WEB-INF/beans.xml   (with props)
    webservices/juddi/branches/v3_trunk/juddi-cxf/src/main/webapp/WEB-INF/web.xml   (with props)
Modified:
    webservices/juddi/branches/v3_trunk/juddi-core/pom.xml
    webservices/juddi/branches/v3_trunk/juddi-tomcat/pom.xml
    webservices/juddi/branches/v3_trunk/juddi-web/pom.xml
    webservices/juddi/branches/v3_trunk/pom.xml
    webservices/juddi/branches/v3_trunk/uddi-ws/pom.xml

Modified: webservices/juddi/branches/v3_trunk/juddi-core/pom.xml
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/juddi-core/pom.xml?rev=722746&r1=722745&r2=722746&view=diff
==============================================================================
--- webservices/juddi/branches/v3_trunk/juddi-core/pom.xml (original)
+++ webservices/juddi/branches/v3_trunk/juddi-core/pom.xml Tue Dec  2 19:42:25 2008
@@ -5,7 +5,7 @@
   <artifactId>juddi-core</artifactId>
   <version>3.0.0.SNAPSHOT</version>
   <packaging>jar</packaging>
-  <name>UDDI Core</name>
+  <name>jUDDI Core</name>
   
   <repositories>
     <repository>

Added: webservices/juddi/branches/v3_trunk/juddi-cxf/pom.xml
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/juddi-cxf/pom.xml?rev=722746&view=auto
==============================================================================
--- webservices/juddi/branches/v3_trunk/juddi-cxf/pom.xml (added)
+++ webservices/juddi/branches/v3_trunk/juddi-cxf/pom.xml Tue Dec  2 19:42:25 2008
@@ -0,0 +1,51 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.juddi</groupId>
+    <artifactId>juddi-parent</artifactId>
+    <version>3.0.0.SNAPSHOT</version>
+  </parent>
+  <groupId>org.apache.juddi</groupId>
+  <artifactId>juddi-cxf</artifactId>
+  <version>3.0.0.SNAPSHOT</version>
+  <name>jUDDI CXF Deployment</name>
+  <packaging>war</packaging>
+  <repositories>
+    <!-- for jaxb-impl -->
+    <repository>
+      <id>java.net</id>
+      <url>http://download.java.net/maven/1/</url>
+      <layout>legacy</layout>
+    </repository>
+  </repositories>
+  <properties>
+    <cxf.version>2.1.3</cxf.version>
+  </properties>
+  <dependencies>
+    <dependency>
+      <artifactId>juddi-core</artifactId>
+      <groupId>org.apache.juddi</groupId>
+      <version>3.0.0.SNAPSHOT</version>
+      <exclusions>
+        <exclusion>
+          <groupId>javax.servlet</groupId>
+          <artifactId>servlet-api</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.cxf</groupId>
+      <artifactId>cxf-rt-frontend-jaxws</artifactId>
+      <version>${cxf.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.cxf</groupId>
+      <artifactId>cxf-rt-transports-http</artifactId>
+      <version>${cxf.version}</version>
+    </dependency>
+  </dependencies>
+  <build>
+    <finalName>juddi</finalName>
+  </build>
+</project>
\ No newline at end of file

Propchange: webservices/juddi/branches/v3_trunk/juddi-cxf/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: webservices/juddi/branches/v3_trunk/juddi-cxf/src/main/webapp/WEB-INF/beans.xml
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/juddi-cxf/src/main/webapp/WEB-INF/beans.xml?rev=722746&view=auto
==============================================================================
--- webservices/juddi/branches/v3_trunk/juddi-cxf/src/main/webapp/WEB-INF/beans.xml (added)
+++ webservices/juddi/branches/v3_trunk/juddi-cxf/src/main/webapp/WEB-INF/beans.xml Tue Dec  2 19:42:25 2008
@@ -0,0 +1,54 @@
+<?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="inquiry" implementor="org.apache.juddi.api.impl.UDDIInquiryImpl" address="/inquiry"
+   serviceName="a:InquiryService" endpointName="a:InquiryServicePort" xmlns:a="urn:uddi-org:api_v3_portType" />
+  
+  <jaxws:endpoint id="publish" implementor="org.apache.juddi.api.impl.UDDIPublicationImpl" address="/publish" 
+   serviceName="a:PublishService" endpointName="a:PublishServicePort" xmlns:a="urn:uddi-org:api_v3_portType" />
+
+  <jaxws:endpoint id="security" implementor="org.apache.juddi.api.impl.UDDISecurityImpl" address="/security" 
+   serviceName="a:SecurityService" endpointName="a:SecurityServicePort" xmlns:a="urn:uddi-org:api_v3_portType" />
+   
+  <jaxws:endpoint id="subscription" implementor="org.apache.juddi.api.impl.UDDISubscriptionImpl" address="/subscription" 
+   serviceName="a:SubscriptionService" endpointName="a:SubscriptionServicePort" xmlns:a="urn:uddi-org:sub_v3_portType" />
+  
+  <jaxws:endpoint id="supscription-listener" implementor="org.apache.juddi.api.impl.UDDISubscriptionListenerImpl" address="/supscription-listener" 
+   serviceName="a:SubscriptionListenerService" endpointName="a:SubscriptionListenerServicePort" xmlns:a="urn:uddi-org:subr_v3_portType" />
+
+  <jaxws:endpoint id="custody-transfer" implementor="org.apache.juddi.api.impl.UDDICustodyTransferImpl" address="/custody-transfer" 
+   serviceName="a:CustodyTransferService" endpointName="a:CustodyTransferServicePort" xmlns:a="urn:uddi-org:custody_v3_portType" />
+
+  <jaxws:endpoint id="replication" implementor="org.apache.juddi.api.impl.UDDIReplicationImpl" address="/replication" 
+   serviceName="a:ReplicationService" endpointName="a:ReplicationServicePort" xmlns:a="urn:uddi-org:repl_v3_portType" />
+
+  <jaxws:endpoint id="valueset-validation" implementor="org.apache.juddi.api.impl.UDDIValueSetValidationImpl" address="/valueset-validation" 
+   serviceName="a:ValueSetValidationService" endpointName="a:ValudSetValidationServicePort" xmlns:a="urn:uddi-org:vs_v3_portType" />
+
+  <jaxws:endpoint id="valueset-caching" implementor="org.apache.juddi.api.impl.UDDIValueSetCachingImpl" address="/valueset-caching"
+   serviceName="a:ValueSetCachingService" endpointName="a:ValudSetCachingServicePort" xmlns:a="urn:uddi-org:vscache_v3_portType" />
+
+</beans>

Propchange: webservices/juddi/branches/v3_trunk/juddi-cxf/src/main/webapp/WEB-INF/beans.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: webservices/juddi/branches/v3_trunk/juddi-cxf/src/main/webapp/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/juddi-cxf/src/main/webapp/WEB-INF/web.xml?rev=722746&view=auto
==============================================================================
--- webservices/juddi/branches/v3_trunk/juddi-cxf/src/main/webapp/WEB-INF/web.xml (added)
+++ webservices/juddi/branches/v3_trunk/juddi-cxf/src/main/webapp/WEB-INF/web.xml Tue Dec  2 19:42:25 2008
@@ -0,0 +1,50 @@
+<?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>
+
+  <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>/*</url-pattern>
+  </servlet-mapping>
+</web-app>

Propchange: webservices/juddi/branches/v3_trunk/juddi-cxf/src/main/webapp/WEB-INF/web.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: webservices/juddi/branches/v3_trunk/juddi-tomcat/pom.xml
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/juddi-tomcat/pom.xml?rev=722746&r1=722745&r2=722746&view=diff
==============================================================================
--- webservices/juddi/branches/v3_trunk/juddi-tomcat/pom.xml (original)
+++ webservices/juddi/branches/v3_trunk/juddi-tomcat/pom.xml Tue Dec  2 19:42:25 2008
@@ -4,7 +4,7 @@
   <groupId>org.apache.juddi</groupId>
   <artifactId>juddi-tomcat</artifactId>
   <version>3.0.0.SNAPSHOT</version>
-  <name>juddi-tomcat Maven Packaging</name>
+  <name>jUDDI Tomcat Packaging</name>
   <url>http://maven.apache.org</url>
   <dependencies>
     <dependency>

Modified: webservices/juddi/branches/v3_trunk/juddi-web/pom.xml
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/juddi-web/pom.xml?rev=722746&r1=722745&r2=722746&view=diff
==============================================================================
--- webservices/juddi/branches/v3_trunk/juddi-web/pom.xml (original)
+++ webservices/juddi/branches/v3_trunk/juddi-web/pom.xml Tue Dec  2 19:42:25 2008
@@ -10,7 +10,7 @@
   <artifactId>juddi-web</artifactId>
   <packaging>war</packaging>
   <version>3.0.0.SNAPSHOT</version>
-  <name>juddi-web Maven Webapp</name>
+  <name>jUDDI Axis2 Deployment</name>
   <url>http://maven.apache.org</url>
   <dependencies>
     <dependency>

Modified: webservices/juddi/branches/v3_trunk/pom.xml
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/pom.xml?rev=722746&r1=722745&r2=722746&view=diff
==============================================================================
--- webservices/juddi/branches/v3_trunk/pom.xml (original)
+++ webservices/juddi/branches/v3_trunk/pom.xml Tue Dec  2 19:42:25 2008
@@ -5,7 +5,7 @@
   <groupId>org.apache.juddi</groupId>
   <artifactId>juddi-parent</artifactId>
   <version>3.0.0.SNAPSHOT</version>
-  <name>jUDDI-parent</name>
+  <name>jUDDI Parent</name>
   
   <description>jUDDI (pronounced "Judy") is an open source Java implementation of the Universal Description, Discovery, and Integration (UDDI) specification for Web Services.</description>
   <url>http://ws.apache.org/juddi/</url>
@@ -106,6 +106,7 @@
     <module>uddi-ws</module>
     <module>juddi-core</module>
     <module>juddi-web</module>
+    <module>juddi-cxf</module>
     <module>juddi-cargo</module>
     <module>juddi-tomcat</module>
   </modules>

Modified: webservices/juddi/branches/v3_trunk/uddi-ws/pom.xml
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/pom.xml?rev=722746&r1=722745&r2=722746&view=diff
==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/pom.xml (original)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/pom.xml Tue Dec  2 19:42:25 2008
@@ -6,7 +6,7 @@
   <artifactId>uddi-ws</artifactId>
   <version>3.0.0.SNAPSHOT</version>
   <packaging>jar</packaging>
-  <name>UDDI v3 Web Service Stubs and Schema bindings generated from wsdl</name>
+  <name>UDDI v3 Web Service Stubs and Schema bindings generated from WSDL</name>
   
   <repositories>
     <repository>



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