RE: Solving .NET desrialization problem by simple soap arrays

2002-06-20 Thread Jason D. Lee
working like I thought they ought to. Thanks! -- Jason Lee - Programmer 405.745.1789 Hobby Lobby Stores, Inc. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 29, 2002 8:52 AM To: [EMAIL PROTECTED] Subject: RE: Solving .NET desrialization problem

RE: Solving .NET desrialization problem by simple soap arrays

2002-05-29 Thread SWesten
best solution as far as i know is to use typed arrays. Axis can serialize them to XML and .NET can read them.   e.g.       public Dashboard[] getDashboards() {    Collection result = new ArrayList();    result.add( new Dashboard("personal") );    return (Dashboard[]) result.to