Author: peterjones
Date: Tue Oct 7 14:58:13 2008
New Revision: 702653
URL: http://svn.apache.org/viewvc?rev=702653&view=rev
Log:
CXF-1845. Couple of files missed being added for ibmjdk test fix commit.
Added:
cxf/trunk/rt/ws/security/src/test/resources/ibm.security
cxf/trunk/tools/corba/src/test/resources/idlgen/expected_multiplebinding_ibmjdk.idl
Added: cxf/trunk/rt/ws/security/src/test/resources/ibm.security
URL:
http://svn.apache.org/viewvc/cxf/trunk/rt/ws/security/src/test/resources/ibm.security?rev=702653&view=auto
==============================================================================
--- cxf/trunk/rt/ws/security/src/test/resources/ibm.security (added)
+++ cxf/trunk/rt/ws/security/src/test/resources/ibm.security Tue Oct 7
14:58:13 2008
@@ -0,0 +1,22 @@
+#
+# 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.
+#
+# On the ibm jdk, we want to place IBMJCE before IBMJSSEProvider2 in the
+# list of providers when running a couple of security tests to prevent
+# them from failing.
+#
+security.provider.1=com.ibm.crypto.provider.IBMJCE
+security.provider.2=com.ibm.jsse2.IBMJSSEProvider2
Added:
cxf/trunk/tools/corba/src/test/resources/idlgen/expected_multiplebinding_ibmjdk.idl
URL:
http://svn.apache.org/viewvc/cxf/trunk/tools/corba/src/test/resources/idlgen/expected_multiplebinding_ibmjdk.idl?rev=702653&view=auto
==============================================================================
---
cxf/trunk/tools/corba/src/test/resources/idlgen/expected_multiplebinding_ibmjdk.idl
(added)
+++
cxf/trunk/tools/corba/src/test/resources/idlgen/expected_multiplebinding_ibmjdk.idl
Tue Oct 7 14:58:13 2008
@@ -0,0 +1,36 @@
+module edell {
+ module test1 {
+ struct num1 {
+ string str1;
+ };
+ };
+ interface test2 {
+ struct num2 {
+ long long2;
+ };
+ num2
+ opNum2(
+ in num2 in2,
+ out num2 out2,
+ inout num2 inout2
+ );
+ };
+};
+module edell {
+ module test2 {
+ struct num2 {
+ long long2;
+ };
+ };
+ interface test1 {
+ struct num1 {
+ string str1;
+ };
+ num1
+ opNum1(
+ in num1 in1,
+ out num1 out1,
+ inout num1 inout1
+ );
+ };
+};