RE: is it possible to use Collections with client proxies?

2004-06-01 Thread Anne Thomas Manes
Here's a great article on using collections: http://www-106.ibm.com/developerworks/library/ws-tip-coding.html Bottom line: use arrays. -Original Message- From: Anne Thomas Manes [mailto:[EMAIL PROTECTED] Sent: Saturday, May 22, 2004 9:53 AM To: [EMAIL PROTECTED] Subject: RE: is it

RE: is it possible to use Collections with client proxies?

2004-06-01 Thread Anne Thomas Manes
Here's a great article on using collections: http://www-106.ibm.com/developerworks/library/ws-tip-coding.html Bottom line: use arrays. -Original Message- From: Anne Thomas Manes [mailto:[EMAIL PROTECTED] Sent: Saturday, May 22, 2004 9:53 AM To: [EMAIL PROTECTED] Subject: RE: is it

RE: is it possible to use Collections with client proxies?

2004-06-01 Thread gary . si . grewal
For using collections in Axis Client. This is what we did. From the WSDL created the Java files using the wsdl2Java etc. In the Java generated Beans we changed the method signature to accept a list instead of an array. say we had the Bean Like GENERATED CLASS private NestedBean[]

RE: is it possible to use Collections with client proxies?

2004-06-01 Thread Abhinav Maheshwari
Thanks Anne, for the nice article. Using arrays has the added advantage of keeping the interface clear, since the object inside a collection is of unknown type. Warm regards, Abhinav Maheshwari -Original Message- From: Anne Thomas Manes [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 01,

RE: is it possible to use Collections with client proxies?

2004-05-25 Thread gary . si . grewal
For using collections in Axis Client. This is what we did. From the WSDL created the Java files using the wsdl2Java etc. In the Java generated Beans we changed the method signature to accept a list instead of an array. say we had the Bean Like GENERATED CLASS private NestedBean[]

RE: is it possible to use Collections with client proxies?

2004-05-24 Thread Meloro, John
I have posted the same question. However, I have not gotten much response. Please let me know if you fare better... -Original Message- From: Airline Pedestal [mailto:[EMAIL PROTECTED] Sent: Sunday, May 23, 2004 1:39 AM To: [EMAIL PROTECTED] Subject: RE: is it possible to use Collections

RE: is it possible to use Collections with client proxies?

2004-05-22 Thread Anne Thomas Manes
You should switch to arrays. Anne -Original Message- From: matthew.hawthorne [mailto:[EMAIL PROTECTED] Sent: Friday, May 21, 2004 2:22 PM To: [EMAIL PROTECTED] Subject: is it possible to use Collections with client proxies? I've recently attempted to switch the way that I create my web

RE: is it possible to use Collections with client proxies?

2004-05-22 Thread Airline Pedestal
How do you do the typeMappings with arrays in the deploy.wsdd and on the client side? Thanks, A --- Anne Thomas Manes [EMAIL PROTECTED] wrote: You should switch to arrays. Anne __ Do you Yahoo!? Yahoo! Domains – Claim yours

RE: is it possible to use Collections with client proxies?

2004-05-21 Thread Meloro, John
You have to manually enter in a typeMapping into the deploy.wsdd. You'll probablly have to make an entry in you SOAPBindingStub as well. -Original Message- From: matthew.hawthorne [mailto:[EMAIL PROTECTED] Sent: Friday, May 21, 2004 2:22 PM To: [EMAIL PROTECTED] Subject: is it possible

Re: is it possible to use Collections with client proxies?

2004-05-21 Thread gary . si . grewal
we were having the same problems. we actually went in and modified the generated files and that took care of it. So just change the method signature for the getters and the setters and change the equals and hashmap and it nicely converst the Arrays to the say ArrayList etc and returns it.

RE: is it possible to use Collections with client proxies?

2004-05-21 Thread Meloro, John
Could you possibly help me with this problem: I am using AXIS, under WebLogic 8.1, as my SOAP Engine. During a particular call to a web service I pass in an array of strings. It appears to me that AXIS is encoding the array of strings on the client side using

Re: is it possible to use Collections with client proxies?

2004-05-21 Thread matthew.hawthorne
[EMAIL PROTECTED] wrote: we were having the same problems. we actually went in and modified the generated files and that took care of it. So just change the method signature for the getters and the setters and change the equals and hashmap and it nicely converst the Arrays to the say ArrayList etc