I\'m trying to get the default behavior for a client referencing my WCF WSDL to set IsReference to true on the imported DataContracts. It looks like I should be able to use an IDataContractSurrogate w
I have an XML like this: <data> <foo>some value</foo> <result>...</result>
I\'m using Silverlight 4, .NET 4.0. I have an object that\'s defined in a shared library (shared between my Silverlight project, and the web project hosting the WCF service)
Say i have something like: [DataContract(Namespace=\"http://bla.bla\")] public class MyClass { [DataMember] public long ResponseCod开发者_开发百科e { get; set; }
I\'m trying to serialize class B as an instance of ita base class A. The DataContractSerializer won\'t allow me to do that.
I\'m using Linq to SQL classes in my WCF. Those classes are returned from the WCF methods to the Silverlight. Now, I want to add a custom property on a the generated class (Silverlight side) and trigg
When trying to return an object from a JSON asp.net 3.5SP1 WebService (not WCF, classic asp.net WebService with scriptservice attribute), I have an \"A circular reference was detected while serializin
I have DataContext classes generated from dbml. Once I get data from the database, I need to transform them into DataContract classes so that the objects can be sent via WCF.
I\'m having trouble converting a Java/JSON map into a usable F# object. Here\'s the heart of my code: member this.getMapFromRpcAsynchronously =
I have a common library with some objects in it.Then I have a service project that references the common library and creates some derived types from objects in the common library.