blob: 660888525d35d66665c465b7fccbb4c5aa750f4e [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.
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
/* NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE */
/* ---------------------------------------------------------------- */
/* CHANGES TO THIS FILE MAY ALSO REQUIRE CHANGES TO THE */
/* C-EQUIVALENT FILE. PLEASE ENSURE THAT IT IS DONE. */
/* ---------------------------------------------------------------- */
/* NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE NOTE */
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
#include "XSD_boolean.hpp"
#include <axis/AxisException.hpp>
#include <ctype.h>
#include <iostream>
int main(int argc, char* argv[])
{
XSD_boolean* ws;
xsd__boolean result;
xsd__boolean input;
xsd__boolean* nillableResult;
char endpoint[256];
const char* url="http://localhost:80/axis/XSD_boolean";
if(argc>1)
url = argv[1];
try
{
// Test true and false, using 0, 1, false_, true_, xsd_boolean_false, and xsd_boolean_true
sprintf(endpoint, "%s", url);
ws = new XSD_boolean(endpoint);
// Test non-nillable element, with all valid permutations for representing true and false.
result = ws->asNonNillableElement((xsd__boolean)0);
cout << "non-nillable element, using 0=" << result << endl;
result = ws->asNonNillableElement((xsd__boolean)1);
cout << "non-nillable element, using 1=" << result << endl;
result = ws->asNonNillableElement(false_);
cout << "non-nillable element, using false_=" << result << endl;
result = ws->asNonNillableElement(true_);
cout << "non-nillable element, using true_=" << result << endl;
result = ws->asNonNillableElement(xsd_boolean_false);
cout << "non-nillable element, using xsd_boolean_false=" << result << endl;
result = ws->asNonNillableElement(xsd_boolean_true);
cout << "non-nillable element, using xsd_boolean_true=" << result << endl;
// Test nillable element, with a value
input = (xsd__boolean)0;
nillableResult = ws->asNillableElement(&input);
if (nillableResult)
{
cout << "nillable element=" << *(nillableResult) << endl;
delete nillableResult;
}
else
cout << "nillable element=<nil>" << endl;
// Test nillable element, with nil
nillableResult = ws->asNillableElement(NULL);
if (nillableResult)
{
cout << "nil element=" << *(nillableResult) << endl;
delete nillableResult;
}
else
cout << "nil element=<nil>" << endl;
// Test required attribute
RequiredAttributeElement requiredAttributeInput;
RequiredAttributeElement* requiredAttributeResult;
requiredAttributeInput.setrequiredAttribute((xsd__boolean)1);
requiredAttributeResult = ws->asRequiredAttribute(&requiredAttributeInput);
cout << "required attribute=" << requiredAttributeResult->getrequiredAttribute() << 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
OptionalAttributeElement optionalAttributeInput;
optionalAttributeInput.setoptionalAttribute(false_);
OptionalAttributeElement* optionalAttributeResult = ws->asOptionalAttribute(&optionalAttributeInput);
if (optionalAttributeResult->getoptionalAttribute())
{
cout << "optional attribute, with data=" << *(optionalAttributeResult->getoptionalAttribute()) << endl;
}
else
{
cout << "optional attribute, with data=<not present>" << endl;
}
delete optionalAttributeResult;
// Test optional attribute, not present
optionalAttributeInput.setattribute();
optionalAttributeResult = ws->asOptionalAttribute(&optionalAttributeInput);
if (optionalAttributeResult->getoptionalAttribute())
{
cout << "optional attribute, not present=" << *(optionalAttributeResult->getoptionalAttribute()) << endl;
}
else
{
cout << "optional attribute, not present=<not present>" << endl;
}
delete optionalAttributeResult;
*/
// Test array
#define ARRAY_SIZE 2
int i, outputSize=0;
xsd__boolean_Array arrayInput;
xsd__boolean_Array* arrayResult;
xsd__boolean * array[ARRAY_SIZE];
const xsd__boolean **output;
for (i=0 ; i < ARRAY_SIZE ; i++)
array[i] = new xsd__boolean(true_);
arrayInput.set(array,ARRAY_SIZE);
arrayResult = ws->asArray(&arrayInput);
if (arrayResult)
output = arrayResult->get(outputSize);
cout << "array of " << outputSize << " elements" << endl;
for (i = 0; i < outputSize; i++)
cout << " element[" << i << "]=" << (*output[i]) << endl;
// Clear up input array
for (i = 0 ; i < ARRAY_SIZE ; i++ )
delete array[i];
delete arrayResult;
// Test complex type
SimpleComplexType complexTypeInput;
SimpleComplexType* complexTypeResult;
complexTypeInput.setcomplexTypeElement(xsd_boolean_false);
complexTypeResult = ws->asComplexType(&complexTypeInput);
cout << "within complex type=" << complexTypeResult->getcomplexTypeElement() << 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;
}