• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

No serializer found for class error

 
Ranch Hand
Posts: 620
1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello all
im beginner in web services I did simple class and convert it to web service stubs in client
my class is using my custom data structure that build of vector and in every vector element I have hashtable
any way when im invoking the method in my class on the server side every thing goinging well until it getting to the point
it has to return me to the client this custom datastructer: and it gives me this error :
AxisFault
faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException
faultSubcode:
faultString: java.io.IOException: No serializer found for class com.mytest.datastructures.myCostomList in registry org.apache.axis.encoding.TypeMappingDelegate@e2fbeb
��

I was reading about serializers and deserializers but I didn�t understand much , how can I map my costume data type so I could use it with my web service ?
 
reply
    Bookmark Topic Watch Topic
  • New Topic