Error in getting a custom object inherited from a base class using web method ASP.NET - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T17:01:24Zhttp://stackoverflow.com/feeds/question/255615http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/255615/error-in-getting-a-custom-object-inherited-from-a-base-class-using-web-method-asp1Error in getting a custom object inherited from a base class using web method ASP.NETSachin Gaur2008-11-01T07:22:39Z2008-11-01T23:57:47Z
<p>Hi</p>
<p>I have created a base class A and a class B is a derived class inherited from class A. Both classes are marked as Serialized. When I try to return an object of type B through a web method i am getting following error:</p>
<p><strong>System.Web.Services.Protocols.SoapException: System.Web.Services.Protocols.SoapException: Server was unable to process request. ---> System.InvalidOperationException: There was an error generating the XML document. ---> System.InvalidOperationException: The type CSI.API.RPartyMembershipInfo was not expected. Use the XmlInclude or SoapInclude attribute to specify types that are not known statically.</strong></p>
<p>Any help would be appreciated.</p>
http://stackoverflow.com/questions/255615/error-in-getting-a-custom-object-inherited-from-a-base-class-using-web-method-asp/256284#2562841Answer by Kaius for Error in getting a custom object inherited from a base class using web method ASP.NETKaius2008-11-01T23:57:47Z2008-11-01T23:57:47Z<p>You will need to post your code before we can provide some help.</p>
<p>I did a quick search for the final line of the error message in Google and got these 2 pages which might be of help.</p>
<p><a href="http://www.theserverside.net/discussions/thread.tss?thread_id=37823" rel="nofollow">http://www.theserverside.net/discussions/thread.tss?thread_id=37823</a></p>
<p><a href="http://social.msdn.microsoft.com/Forums/en-US/asmxandxml/thread/aa18e76b-0efc-4c5c-be28-5fb578cf47f2/" rel="nofollow">http://social.msdn.microsoft.com/Forums/en-US/asmxandxml/thread/aa18e76b-0efc-4c5c-be28-5fb578cf47f2/</a></p>