Hi
is there a chance to use this Info-class, defined in one webservice
#import "stlvector.h"
class WS_A__IntVector
{
public:
std::vector<int> item;
};
class Info
{
public:
int id;
std::string name;
WS_A__IntVector childrenComponentIds;
};
int WS_A__getInfo(int Id, WS_A__Info &Info);
in another webservice without just redefining and a need to cast?
I wrote another ws that defined the same class so that they are
structural identical. In C++ the casts works (at least the first
tests) but someone other writes a client-application that uses the
second webservice in java and he can't cast. he needs to break downto
copy each element of the integerarray.
Grateful for answers
Regards stepp