Possible Duplicates:
C# - How Can I Pass an object to a web service?
C# - Error passing object to web service
If possible, how?
Possible Duplicates:
C# - How Can I Pass an object to a web service?
C# - Error passing object to web service
If possible, how?
By explicit serialization you mean you just don't want to write the serialization code yourself?
If you pass json object with just simple properties (i.e. no nested objects, just string, number, date values) to a .asmx web service where the parameter to the method is a C# object with the same named fields.... then I think you will get automatic deserialization. No need for a client side proxy/web method etc.