Re: How to return a Vector - and more

2004-02-10 Thread Sam
Thanks for the info, Venkatesh. I have another question now. About a void. The service method I am writing takes in a void and returns a Vector. I want to know how this is handled in the client. (I mean, what should the addParameter() and setReturnType() be, exactly?). I read somewhere that these

Re: How to return a Vector

2004-02-10 Thread Venkatesh Kancharla
Create QName for Vector and set return type as that.. Add these 2 statements in the client QName qVec=new QName("somenamespace","Vector"); call.setReturnType(qVec); regards --- Venkatesh Kancharla - If Nece

How to return a Vector

2004-02-09 Thread Sam
Hi,   I am writing a web service (in Java) that has a method returning a Vector. Can anyone let me know how this can be handled in the client? Specifically, how do I call the call.setReturnType() method? Also, does it matter what the Vector has? (I think it does not, but just to confirm). And do w