blob: ef94ab19afcf6820c31db75871e56e8a1fcb5a0b [file] [log] [blame]
#include <iostream.h>
#include "ChoiceTestSoap.hpp"
#include <ctype.h>
using namespace std;
int main(int argc, char *argv[])
{
try
{
const char* url="http://localhost:80/axis/BasicChoice";
ChoiceComplexType* Value0=new ChoiceComplexType();
ChoiceComplexType* Value1;
Value0->name0="Choice Test";
Value0->name1=NULL;
url = argv[1];
ChoiceTestSoap ws(url);
cout<< "Calling the Service..."<<endl;
Value1=ws.echoChoice(Value0);
cout<<"Value1->name0 = "<<Value1->name0<<endl;
}
catch (AxisException & e)
{
printf ("Exception : %s\n", e.what ());
}
catch (exception & e)
{
printf ("Unknown exception has occured\n");
}
catch (...)
{
printf ("Unknown exception has occured\n");
}
return 0;
}