You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by di...@apache.org on 2006/02/10 17:15:47 UTC

svn commit: r376754 - in /webservices/axis/trunk/c/tests/auto_build/testcases: server/cpp/Arrays.cpp tests/server/Arrays.xml

Author: dicka
Date: Fri Feb 10 08:15:45 2006
New Revision: 376754

URL: http://svn.apache.org/viewcvs?rev=376754&view=rev
Log:
Add service implementation for Arrays test.

Added:
    webservices/axis/trunk/c/tests/auto_build/testcases/server/cpp/Arrays.cpp
    webservices/axis/trunk/c/tests/auto_build/testcases/tests/server/Arrays.xml

Added: webservices/axis/trunk/c/tests/auto_build/testcases/server/cpp/Arrays.cpp
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/tests/auto_build/testcases/server/cpp/Arrays.cpp?rev=376754&view=auto
==============================================================================
--- webservices/axis/trunk/c/tests/auto_build/testcases/server/cpp/Arrays.cpp (added)
+++ webservices/axis/trunk/c/tests/auto_build/testcases/server/cpp/Arrays.cpp Fri Feb 10 08:15:45 2006
@@ -0,0 +1,63 @@
+/*
+ * Copyright 2003-2006 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 was auto-generated by the Axis C++ Web Service Generator (WSDL2Ws)
+ * This file contains definitions of the web service
+ */
+
+#include "Arrays.hpp"
+
+
+Arrays::Arrays()
+{
+}
+
+Arrays::~Arrays()
+{
+}
+
+/* This function is called by the AxisEngine when something went wrong
+ with the current web service request processing. Appropriate actions should
+ be taken here.*/
+void Arrays::onFault()
+{
+}
+
+xsd__int_Array * Arrays::simpleArray(xsd__int_Array * Value0)  
+{
+	return Value0;
+}
+
+ComplexTypeWithSimpleArray* Arrays::complexTypeWithSimpleArray(ComplexTypeWithSimpleArray* Value0)  
+{
+	return Value0;
+}
+
+ComplexTypeWithSimpleElement_Array * Arrays::complexTypeArray(ComplexTypeWithSimpleElement_Array * Value0)  
+{
+	return Value0;
+}
+
+ComplexTypeWithComplexArray* Arrays::complexTypeWithComplexArray(ComplexTypeWithComplexArray* Value0)  
+{
+	return Value0;
+}
+
+MoreComplexType_Array * Arrays::moreComplexTypeArray(MoreComplexType_Array * Value0)  
+{
+	return Value0;
+}
+

Added: webservices/axis/trunk/c/tests/auto_build/testcases/tests/server/Arrays.xml
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/tests/auto_build/testcases/tests/server/Arrays.xml?rev=376754&view=auto
==============================================================================
--- webservices/axis/trunk/c/tests/auto_build/testcases/tests/server/Arrays.xml (added)
+++ webservices/axis/trunk/c/tests/auto_build/testcases/tests/server/Arrays.xml Fri Feb 10 08:15:45 2006
@@ -0,0 +1,8 @@
+<service>
+    <name>Arrays</name>
+    <description>Arrays Service</description>
+    <serviceLang>cpp</serviceLang>
+    <serviceCode>Arrays.cpp</serviceCode>
+    <wsdl>Arrays.wsdl</wsdl>
+	<servicename></servicename>
+</service>