You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2012/03/23 16:15:00 UTC

svn commit: r1304411 - in /cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank: ./ src/cxf/client/ src/cxf/server/ src/main/ src/main/java/ src/main/java/cxf/ src/main/java/cxf/client/ src/main/java/cxf/server/ src/main/resources/...

Author: dkulp
Date: Fri Mar 23 15:14:59 2012
New Revision: 1304411

URL: http://svn.apache.org/viewvc?rev=1304411&view=rev
Log:
Merged revisions 1303123 via  git cherry-pick from
https://svn.apache.org/repos/asf/cxf/trunk

........
  r1303123 | dkulp | 2012-03-20 16:09:09 -0400 (Tue, 20 Mar 2012) | 3 lines

  Update corba/bank sample to use maven.   README update will follow
  later.

........

Added:
    cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/pom.xml   (with props)
    cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/main/
    cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/main/java/
    cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/main/java/cxf/
    cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/main/java/cxf/client/
    cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/main/java/cxf/client/Client.java   (contents, props changed)
      - copied, changed from r1304287, cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/cxf/client/Client.java
    cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/main/java/cxf/server/
    cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/main/java/cxf/server/BankImpl.java   (contents, props changed)
      - copied, changed from r1304287, cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/cxf/server/BankImpl.java
    cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/main/java/cxf/server/Server.java   (contents, props changed)
      - copied, changed from r1304287, cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/cxf/server/Server.java
    cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/main/resources/
    cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/main/resources/wsdl/
    cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/main/resources/wsdl/bank.wsdl   (with props)
Removed:
    cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/build.xml
    cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/cxf/client/Client.java
    cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/cxf/server/BankImpl.java
    cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/cxf/server/Server.java

Added: cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/pom.xml
URL: http://svn.apache.org/viewvc/cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/pom.xml?rev=1304411&view=auto
==============================================================================
--- cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/pom.xml (added)
+++ cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/pom.xml Fri Mar 23 15:14:59 2012
@@ -0,0 +1,159 @@
+<!--
+  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.
+-->
+<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>
+    <groupId>org.apache.cxf.samples</groupId>
+    <artifactId>corba-bank</artifactId>
+    <packaging>jar</packaging>
+
+    <name>Bank sample using JAX-WS API's to talk via CORBA/IIOP</name>
+    <description>Bank sample using JAX-WS API's to talk via CORBA/IIOP</description>
+    <version>2.6.0-SNAPSHOT</version>
+
+    <parent>
+        <groupId>org.apache.cxf.samples</groupId>
+        <artifactId>cxf-samples</artifactId>
+        <version>2.6.0-SNAPSHOT</version>
+        <relativePath>../..</relativePath>
+    </parent>
+    <properties>
+        <cxf.version>${project.version}</cxf.version>
+        <cxf.release.base>${basedir}/../../..</cxf.release.base>
+    </properties>
+    <build>
+        <defaultGoal>install</defaultGoal>
+        <pluginManagement>
+            <plugins>
+                <plugin>
+                    <artifactId>maven-compiler-plugin</artifactId>
+                    <configuration>
+                        <source>1.5</source>
+                        <target>1.5</target>
+                    </configuration>
+                </plugin>
+            </plugins>
+        </pluginManagement>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.cxf</groupId>
+                <artifactId>cxf-codegen-plugin</artifactId>
+                <version>${project.version}</version>
+                <executions>
+                    <execution>
+                        <id>generate-sources</id>
+                        <phase>generate-sources</phase>
+                        <configuration>
+                            <wsdlOptions>
+                                <wsdlOption>
+                                    <wsdl>src/main/resources/wsdl/bank.wsdl</wsdl>
+                                    <packagenames>
+                                        <package>bank.common</package>
+                                    </packagenames>
+                                </wsdlOption>
+                            </wsdlOptions>
+                        </configuration>
+                        <goals>
+                            <goal>wsdl2java</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+    <profiles>
+        <profile>
+            <id>server</id>
+            <build>
+                <defaultGoal>test</defaultGoal>
+                <plugins>
+                    <plugin>
+                        <groupId>org.codehaus.mojo</groupId>
+                        <artifactId>exec-maven-plugin</artifactId>
+                        <executions>
+                            <execution>
+                                <phase>test</phase>
+                                <goals>
+                                    <goal>java</goal>
+                                </goals>
+                                <configuration>
+                                    <mainClass>cxf.server.Server</mainClass>
+                                </configuration>
+                            </execution>
+                        </executions>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+        <profile>
+            <id>client</id>
+            <build>
+                <defaultGoal>test</defaultGoal>
+                <plugins>
+                    <plugin>
+                        <groupId>org.codehaus.mojo</groupId>
+                        <artifactId>exec-maven-plugin</artifactId>
+                        <executions>
+                            <execution>
+                                <phase>test</phase>
+                                <goals>
+                                    <goal>java</goal>
+                                </goals>
+                                <configuration>
+                                    <mainClass>cxf.client.Client</mainClass>
+                                    <arguments>
+                                        <argument>src/main/resources/wsdl/bank.wsdl</argument>
+                                    </arguments>
+                                </configuration>
+                            </execution>
+                        </executions>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+    </profiles>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.cxf</groupId>
+            <artifactId>cxf-rt-frontend-jaxws</artifactId>
+            <version>2.6.0-SNAPSHOT</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.cxf</groupId>
+            <artifactId>cxf-rt-bindings-corba</artifactId>
+            <version>2.6.0-SNAPSHOT</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.cxf</groupId>
+            <artifactId>cxf-tools-common</artifactId>
+            <version>2.6.0-SNAPSHOT</version>
+        </dependency>
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-context</artifactId>
+            <version>3.0.6.RELEASE</version>
+        </dependency>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>4.7</version>
+            <scope>compile</scope>
+        </dependency>
+    </dependencies>
+</project>

Propchange: cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Copied: cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/main/java/cxf/client/Client.java (from r1304287, cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/cxf/client/Client.java)
URL: http://svn.apache.org/viewvc/cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/main/java/cxf/client/Client.java?p2=cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/main/java/cxf/client/Client.java&p1=cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/cxf/client/Client.java&r1=1304287&r2=1304411&rev=1304411&view=diff
==============================================================================
--- cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/cxf/client/Client.java (original)
+++ cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/main/java/cxf/client/Client.java Fri Mar 23 15:14:59 2012
@@ -36,7 +36,7 @@ public final class Client {
     }
 
     public static void main(String args[]) throws Exception {
-        URL wsdlUrl = new URL("file:./../resources/bank.wsdl");
+        URL wsdlUrl = Client.class.getResource("/wsdl/bank.wsdl");
     
         BankCORBAService ss = new BankCORBAService(wsdlUrl, SERVICE_NAME);
         Bank port = ss.getBankCORBAPort();  

Propchange: cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/main/java/cxf/client/Client.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/main/java/cxf/client/Client.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Copied: cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/main/java/cxf/server/BankImpl.java (from r1304287, cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/cxf/server/BankImpl.java)
URL: http://svn.apache.org/viewvc/cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/main/java/cxf/server/BankImpl.java?p2=cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/main/java/cxf/server/BankImpl.java&p1=cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/cxf/server/BankImpl.java&r1=1304287&r2=1304411&rev=1304411&view=diff
==============================================================================
--- cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/cxf/server/BankImpl.java (original)
+++ cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/main/java/cxf/server/BankImpl.java Fri Mar 23 15:14:59 2012
@@ -30,7 +30,7 @@ import bank.common.Bank;
 
 @javax.jws.WebService(portName = "BankCORBAPort", serviceName = "BankCORBAService", 
                       targetNamespace = "http://cxf.apache.org/schemas/cxf/idl/bank", 
-                      wsdlLocation = "file:../resources/bank.wsdl",
+                      wsdlLocation = "classpath:/wsdl/bank.wsdl",
                       endpointInterface = "bank.common.Bank")
 
 public class BankImpl implements Bank {

Propchange: cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/main/java/cxf/server/BankImpl.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/main/java/cxf/server/BankImpl.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Copied: cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/main/java/cxf/server/Server.java (from r1304287, cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/cxf/server/Server.java)
URL: http://svn.apache.org/viewvc/cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/main/java/cxf/server/Server.java?p2=cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/main/java/cxf/server/Server.java&p1=cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/cxf/server/Server.java&r1=1304287&r2=1304411&rev=1304411&view=diff
==============================================================================
--- cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/cxf/server/Server.java (original)
+++ cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/main/java/cxf/server/Server.java Fri Mar 23 15:14:59 2012
@@ -26,7 +26,7 @@ public class Server {
         System.out.println("Starting Server");
 
         Object implementor = new BankImpl();
-        String address = "file:./build/bank.ref";
+        String address = "file:target/bank.ref";
         Endpoint endpoint = Endpoint.create("http://cxf.apache.org/bindings/corba",
                                             implementor);
         endpoint.publish(address);

Propchange: cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/main/java/cxf/server/Server.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/main/java/cxf/server/Server.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/main/resources/wsdl/bank.wsdl
URL: http://svn.apache.org/viewvc/cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/main/resources/wsdl/bank.wsdl?rev=1304411&view=auto
==============================================================================
--- cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/main/resources/wsdl/bank.wsdl (added)
+++ cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/main/resources/wsdl/bank.wsdl Fri Mar 23 15:14:59 2012
@@ -0,0 +1,198 @@
+<?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.
+-->
+<wsdl:definitions targetNamespace="http://cxf.apache.org/schemas/cxf/idl/bank" 
+    xmlns:tns="http://cxf.apache.org/schemas/cxf/idl/bank" 
+    xmlns:corba="http://cxf.apache.org/bindings/corba" 
+    xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
+    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" 
+    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
+
+    <corba:typeMapping targetNamespace="http://cxf.apache.org/schemas/cxf/idl/bank/typemap">
+        <corba:struct xmlns:ns4="http://cxf.apache.org/schemas/cxf/idl/bank" xmlns="http://cxf.apache.org/schemas/cxf/idl/bank/typemap" repositoryID="IDL:Account:1.0" name="Account" type="ns4:Account">
+            <corba:member name="name" idltype="corba:string" />
+            <corba:member name="balance" idltype="corba:long" />
+        </corba:struct>
+        <corba:exception xmlns:ns4="http://cxf.apache.org/schemas/cxf/idl/bank" xmlns="http://cxf.apache.org/schemas/cxf/idl/bank/typemap" repositoryID="IDL:AccountNotFoundException:1.0" name="AccountNotFoundException" type="ns4:AccountNotFoundExceptionType">
+            <corba:member name="name" idltype="corba:string" />
+        </corba:exception>
+        <corba:exception xmlns:ns4="http://cxf.apache.org/schemas/cxf/idl/bank" xmlns="http://cxf.apache.org/schemas/cxf/idl/bank/typemap" repositoryID="IDL:AccountAlreadyExistsException:1.0" name="AccountAlreadyExistsException" type="ns4:AccountAlreadyExistsExceptionType">
+            <corba:member name="name" idltype="corba:string" />
+        </corba:exception>
+    </corba:typeMapping>
+    <wsdl:types>
+        <xs:schema attributeFormDefault="unqualified" elementFormDefault="unqualified" targetNamespace="http://cxf.apache.org/schemas/cxf/idl/bank" xmlns="http://cxf.apache.org/schemas/cxf/idl/bank" xmlns:xs="http://www.w3.org/2001/XMLSchema">
+            <xs:complexType name="Account">
+                <xs:sequence>
+                    <xs:element name="name" type="xs:string">
+                    </xs:element>
+                    <xs:element name="balance" type="xs:int">
+                    </xs:element>
+                </xs:sequence>
+            </xs:complexType>
+            <xs:element name="AccountNotFoundException" type="AccountNotFoundExceptionType">
+            </xs:element>
+            <xs:complexType name="AccountNotFoundExceptionType">
+                <xs:sequence>
+                    <xs:element name="name" type="xs:string">
+                    </xs:element>
+                </xs:sequence>
+            </xs:complexType>
+            <xs:element name="AccountAlreadyExistsException" type="AccountAlreadyExistsExceptionType">
+            </xs:element>
+            <xs:complexType name="AccountAlreadyExistsExceptionType">
+                <xs:sequence>
+                    <xs:element name="name" type="xs:string">
+                    </xs:element>
+                </xs:sequence>
+            </xs:complexType>
+            <xs:element name="getAccountResponse">
+                <xs:complexType>
+                    <xs:sequence>
+                        <xs:element name="return" type="Account">
+                        </xs:element>
+                    </xs:sequence>
+                </xs:complexType>
+            </xs:element>
+            <xs:element name="getAccount">
+                <xs:complexType>
+                    <xs:sequence>
+                        <xs:element name="name" type="xs:string">
+                        </xs:element>
+                    </xs:sequence>
+                </xs:complexType>
+            </xs:element>
+            <xs:element name="createAccountResponse">
+                <xs:complexType>
+                    <xs:sequence>
+                        <xs:element name="return" type="xs:boolean">
+                        </xs:element>
+                        <xs:element name="account" type="Account">
+                        </xs:element>
+                    </xs:sequence>
+                </xs:complexType>
+            </xs:element>
+            <xs:element name="createAccount">
+                <xs:complexType>
+                    <xs:sequence>
+                        <xs:element name="name" type="xs:string">
+                        </xs:element>
+                    </xs:sequence>
+                </xs:complexType>
+            </xs:element>
+        </xs:schema>
+    </wsdl:types>
+    <wsdl:message name="createAccount">
+        <wsdl:part name="inparameter" element="tns:createAccount"/>
+    </wsdl:message>
+    <wsdl:message name="createAccountResponse">
+        <wsdl:part name="outparameter" element="tns:createAccountResponse"/>
+    </wsdl:message>
+    <wsdl:message name="getAccount">
+        <wsdl:part name="inparameter" element="tns:getAccount"/>
+    </wsdl:message>
+    <wsdl:message name="AccountAlreadyExistsException">
+        <wsdl:part name="exception" element="tns:AccountAlreadyExistsException"/>
+    </wsdl:message>
+    <wsdl:message name="AccountNotFoundException">
+        <wsdl:part name="exception" element="tns:AccountNotFoundException"/>
+    </wsdl:message>
+    <wsdl:message name="getAccountResponse">
+        <wsdl:part name="outparameter" element="tns:getAccountResponse"/>
+    </wsdl:message>
+    <wsdl:portType name="Bank">
+        <wsdl:operation name="getAccount">
+            <wsdl:input name="getAccountRequest" message="tns:getAccount"/>
+            <wsdl:output name="getAccountResponse" message="tns:getAccountResponse"/>
+            <wsdl:fault name="AccountNotFoundException" message="tns:AccountNotFoundException"/>
+        </wsdl:operation>
+        <wsdl:operation name="createAccount">
+            <wsdl:input name="createAccountRequest" message="tns:createAccount"/>
+            <wsdl:output name="createAccountResponse" message="tns:createAccountResponse"/>
+            <wsdl:fault name="AccountAlreadyExistsException" message="tns:AccountAlreadyExistsException"/>
+        </wsdl:operation>
+    </wsdl:portType>
+    <wsdl:binding name="BankSOAPBinding" type="tns:Bank">
+        <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http" />
+        <wsdl:operation name="getAccount">
+            <soap:operation soapAction="" style="document" />
+            <wsdl:input name="getAccountRequest">
+                <soap:body use="literal"/>
+            </wsdl:input>
+            <wsdl:output name="getAccountResponse">
+                <soap:body use="literal"/>
+            </wsdl:output>
+            <wsdl:fault name="AccountNotFoundException">
+                <soap:fault name="AccountNotFoundException" use="literal"/>
+            </wsdl:fault>
+        </wsdl:operation>
+        <wsdl:operation name="createAccount">
+            <soap:operation name="createAccount" />
+            <wsdl:input name="createAccountRequest">
+                <soap:body use="literal"/>
+            </wsdl:input>
+            <wsdl:output name="createAccountResponse">
+                <soap:body use="literal"/>
+            </wsdl:output>
+            <wsdl:fault name="AccountAlreadyExistsException">
+                <soap:fault name="AccountAlreadyExistsException" use="literal"/>
+            </wsdl:fault>
+        </wsdl:operation>
+    </wsdl:binding>
+    <wsdl:binding name="BankCORBABinding" type="tns:Bank">
+        <corba:binding repositoryID="IDL:cxf/Bank:1.0" />
+        <wsdl:operation name="getAccount">
+            <corba:operation name="getAccount">
+                <corba:param mode="in" name="name" idltype="corba:string" />
+                <corba:return xmlns="http://cxf.apache.org/schemas/cxf/idl/bank/typemap" name="return" idltype="Account" />
+                <corba:raises xmlns="http://cxf.apache.org/schemas/cxf/idl/bank/typemap" exception="AccountNotFoundException" />
+            </corba:operation>
+            <wsdl:input name="getAccountRequest">
+            </wsdl:input>
+            <wsdl:output name="getAccountResponse">
+            </wsdl:output>
+            <wsdl:fault name="AccountNotFoundException">
+            </wsdl:fault>
+        </wsdl:operation>
+        <wsdl:operation name="createAccount">
+            <corba:operation name="createAccount">
+                <corba:param mode="in" name="name" idltype="corba:string" />
+                <corba:param xmlns="http://cxf.apache.org/schemas/cxf/idl/bank/typemap" mode="out" name="account" idltype="Account" />
+                <corba:return name="return" idltype="corba:boolean" />
+                <corba:raises xmlns="http://cxf.apache.org/schemas/cxf/idl/bank/typemap" exception="AccountAlreadyExistsException" />
+            </corba:operation>
+            <wsdl:input name="createAccountRequest">
+            </wsdl:input>
+            <wsdl:output name="createAccountResponse">
+            </wsdl:output>
+            <wsdl:fault name="AccountAlreadyExistsException">
+            </wsdl:fault>
+        </wsdl:operation>
+    </wsdl:binding>
+    <wsdl:service name="BankSOAPService">
+        <wsdl:port name="BankSOAPPort" binding="tns:BankSOAPBinding">
+            <soap:address location="http://localhost:10000/bank/BankSOAPService" />
+        </wsdl:port>
+    </wsdl:service>
+    <wsdl:service name="BankCORBAService">
+        <wsdl:port name="BankCORBAPort" binding="tns:BankCORBABinding">
+            <corba:address location="file:target/bank.ref" />
+        </wsdl:port>
+    </wsdl:service>
+</wsdl:definitions>

Propchange: cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/main/resources/wsdl/bank.wsdl
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/main/resources/wsdl/bank.wsdl
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: cxf/branches/2.5.x-fixes/distribution/src/main/release/samples/corba/bank/src/main/resources/wsdl/bank.wsdl
------------------------------------------------------------------------------
    svn:mime-type = text/xml