note that I am not using WCF, i'm only using ASP.NET web service. Anything similar? Thank you.
Asked
Active
Viewed 2,975 times
1 Answers
1
[DataContract]
is a feature of WCF, so no, the concept doesn't exist in standard ASMX webservices. You're limited to passing proxy objects back and forth, which can get messy.
I've asked an equivalent question here before, and basically learned that you need WCF to do that kind of thing.
-
damn it! what's the ideia by passing an object using XMLSerializer? The client sends, and the method in web service recieves? But I cant use as parameter of the method, right? =X Thank you. – Alan Aug 18 '10 at 20:40
-
I'm not using WCF because Windows Phone doens't really support WCF yet =/ – Alan Aug 18 '10 at 20:41