In most cases we are using ASP.NET web services (System.Web.Script.Services.ScriptService) in our AJAX based web applications. This approach brings a major advantage providing automatically all the server-side classes (used in the web service methods) on client side in form of JavaScript alternatives (javascript classes with appropriate namespace).
However, in our applications we are working with classed based on 3rd party framework classes. It means this classes inheriting many unserializable properties what makes them unusable for the automatic web service serialization into JSON and back once sent to the client side.
The question is, if there is a way how to define the list of properites we would like to serialize to JSON and back (once send to client and back) for apropriate class.
Thank you for any clue.