blob: 86c16eab310de55a468fcca007aba5099b25c1a0 [file] [log] [blame]
// 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;
}