Hi,
I'm trying to use the wsdl2ws tool to generate the server side skeleton/wrapper C++ for the sample Calculator.wsdl.
In the generated code, all the Calculator functions are of type void instead of int as in the sample code provided.
Example:
class Calculator
{
...
void add(int Value0,int Value1,int Value2);
void sub(int Value0,int Value1,int Value2);
void mul(int Value0,int Value1,int Value2);
void div(int Value0,int Value1,int Value2);I'm expecting these functions to look like:
int add(int Value0,int Value1);
I've tried versions 1.1 and 1.1.1 (both source and binaries) on Red Hat Linux 9 with j2sdk standard edition 1.4.2.
Can anyone provide any insight?
Thanks, m -- Michael Mercurio [EMAIL PROTECTED]
