blob: c436b8d59e7f108493fc0b6026571da2ac240512 [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 "XSD_anyURI.hpp"
#include <axis/AxisException.hpp>
#include <ctype.h>
#include <iostream>
int main(int argc, char* argv[])
{
char endpoint[256];
const char* url="http://localhost:80/axis/XSD_anyURI";
if(argc>1)
url = argv[1];
try
{
sprintf(endpoint, "%s", url);
XSD_anyURI* ws = new XSD_anyURI(endpoint);
char emptyanyURI[1] = "";
xsd__anyURI emptyInput = new char[1];
strcpy (emptyInput, emptyanyURI);
char simpleanyURI[25] = "http://www.xyz.com";
xsd__anyURI input = new char[25];
strcpy (input, simpleanyURI);
// Test non-nillable element
xsd__anyURI result = ws->asNonNillableElement(input);
if (result)
{
if (*result)
{
cout << "non-nillable element=" << result << endl;
}
else
{
cout << "non-nillable element=<empty>" << endl;
}
}
else
{
cout << "non-nillable element=<nil>" << endl;
}
delete [] input;
// Test empty non-nillable element
result = ws->asNonNillableElement(emptyInput);
if (result)
{
if (*result)
{
cout << "empty non-nillable element=" << result << endl;
}
else
{
cout << "empty non-nillable element=<empty>" << endl;
}
}
else
{
cout << "empty non-nillable element=<nil>" << endl;
}
delete [] emptyInput;
// Test required attribute
input = new char[25];
strcpy (input, simpleanyURI);
RequiredAttributeElement requiredAttributeInput;
requiredAttributeInput.setrequiredAttribute(input);
RequiredAttributeElement* requiredAttributeResult = ws->asRequiredAttribute(&requiredAttributeInput);
if (requiredAttributeResult->getrequiredAttribute())
{
if (*(requiredAttributeResult->getrequiredAttribute()))
{
cout << "required attribute=" << requiredAttributeResult->getrequiredAttribute() << endl;
}
else
{
cout << "required attribute=<empty>" << endl;
}
}
else
{
cout << "required attribute=<nil>" << endl;
}
delete requiredAttributeResult;
/* Optional Attributes currently unsupported by WSDL2Ws
* Exact coding of this section may change depending on chosen implementation
// Test optional attribute, with a value
input = new char[25];
strcpy (input, simpleanyURI);
OptionalAttributeElement optionalAttributeInput;
optionalAttributeInput.setoptionalAttribute(input);
OptionalAttributeElement* optionalAttributeResult = ws->asOptionalAttribute(&optionalAttributeInput);
if (optionalAttributeResult->getoptionalAttribute())
{
if (*(optionalAttributeResult->getoptionalAttribute()))
{
cout << "optional attribute, with data=" << optionalAttributeResult->getoptionalAttribute() << endl;
}
else
{
cout << "optional attribute, with data=<empty>" << endl;
}
}
else
{
cout << "optional attribute, with data=<not present>" << endl;
}
delete [] input;
delete optionalAttributeResult;
// Test empty optional attribute
emptyInput = new char[1];
strcpy (emptyInput, emptyanyURI);
optionalAttributeInput.setoptionalAttribute(emptyInput);
optionalAttributeResult = ws->asOptionalAttribute(&optionalAttributeInput);
if (optionalAttributeResult->getoptionalAttribute())
{
if (*(optionalAttributeResult->getoptionalAttribute()))
{
cout << "empty optional attribute=" << optionalAttributeResult->getoptionalAttribute() << endl;
}
else
{
cout << "empty optional attribute=<empty>" << endl;
}
}
else
{
cout << "empty optional attribute=<not present>" << endl;
}
delete [] emptyInput;
delete optionalAttributeResult;
// Test optional attribute, not present
// optionalAttributeInput.setattribute();
optionalAttributeResult = ws->asOptionalAttribute(&optionalAttributeInput);
if (optionalAttributeResult->getoptionalAttribute())
{
if (*(optionalAttributeResult->getoptionalAttribute()))
{
cout << "optional attribute, not present=" << optionalAttributeResult->getoptionalAttribute() << endl;
}
else
{
cout << "optional attribute, not present=<empty>" << endl;
}
}
else
{
cout << "optional attribute, not present=<not present>" << endl;
}
delete optionalAttributeResult;
*/
// Test array
xsd__anyURI_Array arrayInput;
int arraySize=2;
xsd__anyURI* array=new xsd__anyURI[arraySize];
for (int inputIndex=0 ; inputIndex < arraySize ; inputIndex++)
{
array[inputIndex]= new char[25];
strcpy (array[inputIndex], simpleanyURI);
}
arrayInput.set(array,arraySize);
xsd__anyURI_Array* arrayResult = ws->asArray(&arrayInput);
int outputSize=0;
const xsd__anyURI *output= arrayResult->get(outputSize);
cout << "array of " << outputSize << " elements" << endl;
for (int index = 0; index < outputSize ; index++)
{
if (output!=NULL)
{
if (output[index]!=NULL)
{
cout << " element[" << index << "]=" << output[index] << endl;
}
else
{
cout << " element[" << index << "]=<empty>" << endl;
}
}
else
{
cout << " element[" << index << "]=<nil>" << endl;
}
}
// Clear up input array
for (int deleteIndex = 0 ; deleteIndex < arraySize ; deleteIndex++ )
{
delete array[deleteIndex];
}
delete [] array;
delete arrayResult;
// Test complex type
input = new char[25];
strcpy (input, simpleanyURI);
SimpleComplexType complexTypeInput;
complexTypeInput.setcomplexTypeElement(input);
SimpleComplexType* complexTypeResult = ws->asComplexType(&complexTypeInput);
if (complexTypeResult->getcomplexTypeElement())
{
if (*(complexTypeResult->getcomplexTypeElement()))
{
cout << "within complex type=" << complexTypeResult->getcomplexTypeElement() << endl;
}
else
{
cout << "within complex type=<empty>" << endl;
}
}
else
{
cout << "within complex type=<nil>" << endl;
}
delete complexTypeResult;
// Tests now complete
delete ws;
}
catch(AxisException& e)
{
cout << "Exception : " << e.what() << endl;
}
catch(exception& e)
{
cout << "Unknown exception has occured: " << e.what() << endl;
}
catch(...)
{
cout << "Unknown exception has occured" << endl;
}
cout<< "---------------------- TEST COMPLETE -----------------------------"<< endl;
return 0;
}