You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by na...@apache.org on 2006/05/20 08:24:22 UTC

svn commit: r407959 - in /webservices/axis/trunk/c/tests/auto_build/testcases: client/c/SimpleArrayDocClient.c tests/SimpleArrayDocC.xml

Author: nadiramra
Date: Fri May 19 23:24:22 2006
New Revision: 407959

URL: http://svn.apache.org/viewvc?rev=407959&view=rev
Log:
C support fixes/enhancements. Testcases for C bindings.

Added:
    webservices/axis/trunk/c/tests/auto_build/testcases/client/c/SimpleArrayDocClient.c
    webservices/axis/trunk/c/tests/auto_build/testcases/tests/SimpleArrayDocC.xml

Added: webservices/axis/trunk/c/tests/auto_build/testcases/client/c/SimpleArrayDocClient.c
URL: http://svn.apache.org/viewvc/webservices/axis/trunk/c/tests/auto_build/testcases/client/c/SimpleArrayDocClient.c?rev=407959&view=auto
==============================================================================
--- webservices/axis/trunk/c/tests/auto_build/testcases/client/c/SimpleArrayDocClient.c (added)
+++ webservices/axis/trunk/c/tests/auto_build/testcases/client/c/SimpleArrayDocClient.c Fri May 19 23:24:22 2006
@@ -0,0 +1,72 @@
+// Copyright 2003-2004 The Apache Software Foundation.
+// (c) Copyright IBM Corp. 2004, 2005 All Rights Reserved
+// 
+// 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.
+
+// ArrayClient.cpp : Defines the entry point for the console application.i
+//
+
+
+#include <stdlib.h>
+#include <stdio.h>
+
+#include "CommonClientTestCode.h"
+#include "ArrayTestPortType.h"
+
+#define ARRAYSIZE 100
+
+int main(int argc, char* argv[])
+{
+    AXISCHANDLE ws;
+    
+    int x;
+    char endpoint[256];
+    const char* url="http://localhost:80/axis/MathOps";
+    
+    int arrayValues[ARRAYSIZE];
+    intArrayType arrin;
+    intArrayType* arrout;
+    xsdc__int_Array arrayInput;
+    int * array[ARRAYSIZE];
+    
+    if (argc > 1)
+        url = argv[1];
+
+    sprintf(endpoint, "%s", url);
+    ws = get_ArrayTestPortType_stub(endpoint);
+    
+    //testing echoIntArray
+    for (x=0;x<ARRAYSIZE;x++)
+    {
+        arrayValues[x] = x + 1000;
+        array[x] = &arrayValues[x];
+    }
+    
+    arrayInput.m_Array = array;
+    arrayInput.m_Size = ARRAYSIZE;
+    arrayInput.m_Type = XSDC_INT;
+    
+    arrin.intItem = (&arrayInput);
+    printf( "invoking echoIntArray...\n");
+
+    arrout=echoIntArray(ws, &arrin);
+    if (arrout && arrout->intItem)
+        for(x=0;x<arrout->intItem->m_Size; x++)
+            printf("%d\n", *(arrout->intItem->m_Array[x]));
+            
+    Axis_Delete_intArrayType(arrout, 0);
+    destroy_ArrayTestPortType_stub(ws);
+    
+    printf( "---------------------- TEST COMPLETE -----------------------------\n");
+    return 0;
+}

Added: webservices/axis/trunk/c/tests/auto_build/testcases/tests/SimpleArrayDocC.xml
URL: http://svn.apache.org/viewvc/webservices/axis/trunk/c/tests/auto_build/testcases/tests/SimpleArrayDocC.xml?rev=407959&view=auto
==============================================================================
--- webservices/axis/trunk/c/tests/auto_build/testcases/tests/SimpleArrayDocC.xml (added)
+++ webservices/axis/trunk/c/tests/auto_build/testcases/tests/SimpleArrayDocC.xml Fri May 19 23:24:22 2006
@@ -0,0 +1,13 @@
+<test>
+    <name>SimpleArrayDocC</name>
+    <description>SimpleArrayDocC</description>
+    <clientLang>c</clientLang>
+    <clientCode>SimpleArrayDocClient.c</clientCode>
+    <wsdl>SimpleArrayDoc.wsdl</wsdl>
+    <expected>
+        <output>
+            SimpleArrayDoc.cpp.out
+        </output>
+    </expected>
+	<endpoint>http://localhost:80/axis/SimpleArrayDoc</endpoint>
+</test>



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