webservices question

  • Thread starter Thread starter Paul M
  • Start date Start date
P

Paul M

Hi there,

my web application has a bunch of classes with functions that i'd like some
of them to be made into webservices.

However, they mostly return arraylists, which have objects stored inside
them and when i try execute, it spits back exception errors.

any advice?

thanks,
P.
 
What objects are stored in the arraylist?

Make sure the objects are serializable. If not, write some custom
serialization code for the objects.

Tommy,
 
the objects stored are my class object i created called Client (clientID,
emailaddress, etc...)
 
Back
Top