blob: 8fc03e13a1ff16c01b777dba4bd5c3d4048ef5b4 [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 <iostream>
#include "NoInputParamsServicePortType.hpp"
int main( int argc, char * argv[])
{
const char * pszURL = "http://localhost:9090/axis/services/NoInputParamsService";
xsd__string result;
if (argc > 1)
pszURL = argv[1];
NoInputParamsServicePortType pWS( pszURL, APTHTTP1_1);
try
{
result = pWS.getVersion();
if (result)
cout << "Result: " << result << endl;
else
cout << "FAILED-null result" << endl;
}
catch( SoapFaultException& e)
{
char *faultCode = (char *)e.getFaultCode();
char *faultString = (char *)e.getFaultString();
char *faultActor = (char *)e.getFaultActor();
if (!faultCode) faultCode = "NULL";
if (!faultString) faultString = "NULL";
if (!faultActor) faultActor = "NULL";
cout << " FaultCode = " << faultCode << endl;
cout << " FaultString = " << faultString << endl;
cout << " FaultActor = " << faultActor << endl;
cout << " SoapFaultException: " << e.what() << endl;
}
catch( AxisException& e)
{
cout << 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;
}