blob: c2fe8278d663f22a3ed4f92fe278ff0da3dd9514 [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.
#include <stdlib.h>
#include <stdio.h>
#include "CommonClientTestCode.h"
#include "XSD_positiveInteger.h"
int main(int argc, char* argv[])
{
AXISCHANDLE ws;
xsdc__positiveInteger result;
xsdc__positiveInteger nillableInput;
xsdc__positiveInteger* nillableResult;
char endpoint[256];
const char* url="http://localhost:80/axis/XSD_positiveInteger";
axiscAxisRegisterExceptionHandler(exceptionHandler);
if(argc>1)
url = argv[1];
sprintf(endpoint, "%s", url);
ws = get_XSD_positiveInteger_stub(endpoint);
result = asNonNillableElement(ws, (xsdc__positiveInteger) UNSIGNED_LONGLONGVALUE(18446744073709551615));
printf("non-nillable element=%llu\n", result );
result = asNonNillableElement(ws, (xsdc__positiveInteger)1);
printf("non-nillable element=%llu\n", result );
result = asNonNillableElement(ws, (xsdc__positiveInteger)0);
if (!(exceptionOccurred == C_TRUE
|| get_XSD_positiveInteger_Status(ws) == AXISC_FAIL ))
{
printf("non-nillable element=%llu\n" , result );
exceptionOccurred = C_FALSE;
}
// Test nillable element, with a value
nillableInput = (xsdc__positiveInteger)123456789;
nillableResult = asNillableElement(ws, &nillableInput);
if (nillableResult)
{
printf("nillable element=%llu\n" , *(nillableResult) );
axiscAxisDelete(nillableResult, XSDC_POSITIVEINTEGER);
}
else
printf("nillable element=<nil>\n" );
// Test nillable element, with nil
nillableResult = asNillableElement(ws, NULL);
if (nillableResult)
{
printf("nil element=%llu\n" , *(nillableResult) );
axiscAxisDelete(nillableResult, XSDC_POSITIVEINTEGER);
}
else
printf("nil element=<nil>\n" );
// Test required attribute
{
RequiredAttributeElement requiredAttributeInput;
RequiredAttributeElement* requiredAttributeResult;
requiredAttributeInput.requiredAttribute = 123456789;
requiredAttributeResult = asRequiredAttribute(ws, &requiredAttributeInput);
printf("required attribute=%llu\n" , requiredAttributeResult->requiredAttribute );
Axis_Delete_RequiredAttributeElement(requiredAttributeResult, 0);
}
/* Optional Attributes currently unsupported by WSDL2Ws
* Exact coding of this section may change depending on chosen implementation
// Test optional attribute, with a value
{
OptionalAttributeElement optionalAttributeInput;
OptionalAttributeElement* optionalAttributeResult;
optionalAttributeInput.optionalAttribute = 123456789;
optionalAttributeResult = asOptionalAttribute(ws, &optionalAttributeInput);
if (optionalAttributeResult->optionalAttribute)
printf("optional attribute, with data=%llu\n" , optionalAttributeResult->optionalAttribute );
else
printf("optional attribute, with data=<not present>\n" );
delete optionalAttributeResult;
// Test optional attribute, not present
optionalAttributeInput.setattribute();
optionalAttributeResult = asOptionalAttribute(ws, &optionalAttributeInput);
if (optionalAttributeResult->getoptionalAttribute())
printf("optional attribute, not present=" , optionalAttributeResult->getoptionalAttribute() );
else
printf("optional attribute, not present=<not present>" );
delete optionalAttributeResult;
}
*/
// Test array
{
#define ARRAY_SIZE 2
int i, outputSize=0;
xsdc__positiveInteger_Array arrayInput;
xsdc__positiveInteger_Array* arrayResult;
xsdc__positiveInteger * array[ARRAY_SIZE];
xsdc__positiveInteger ** output;
for (i=0 ; i < ARRAY_SIZE ; i++)
{
array[i] = (xsdc__positiveInteger *)axiscAxisNew(XSDC_POSITIVEINTEGER,0);
*array[i]= 123456789;
}
arrayInput.m_Array = array;
arrayInput.m_Size = ARRAY_SIZE;
arrayInput.m_Type = XSDC_POSITIVEINTEGER;
arrayResult = asArray(ws, &arrayInput);
if (arrayResult)
{
output = arrayResult->m_Array;
outputSize = arrayResult->m_Size;
}
printf("array of %d elements\n" , outputSize );
for (i = 0; i < outputSize; i++)
printf(" element[%d]=%llu\n" , i, *((xsdc__positiveInteger*)(output[i])) );
// Clear up input array
for (i = 0 ; i < ARRAY_SIZE ; i++ )
axiscAxisDelete(array[i], XSDC_POSITIVEINTEGER);
axiscAxisDelete(arrayResult, XSDC_ARRAY);
}
// Test complex type
{
SimpleComplexType complexTypeInput;
SimpleComplexType* complexTypeResult;
complexTypeInput.complexTypeElement = 123456789;
complexTypeResult = asComplexType(ws, &complexTypeInput);
printf("within complex type=%llu\n" , complexTypeResult->complexTypeElement );
Axis_Delete_SimpleComplexType(complexTypeResult, 0);
}
// Tests now complete
destroy_XSD_positiveInteger_stub(ws);
printf( "---------------------- TEST COMPLETE -----------------------------\n");
return 0;
}