I am trying my hands on creating and consuming wcf services. when i try to call a service operation that expects a data contract as a request, it gives me a compile time error. It says that data contr
I got a WCF service, and one of the return objects is: [DataContract] sealed class Class1 { [DataMember] public int Prop1 { get; private set; }
In my music/rhythm game, I using serialization in order to save user-created simfiles (think music tabs or notecharts). Nothing too earth-shattering there. But, I\'m using a DataContract in order to p
I\'ve seen many different ways to serialize objects in C# that I\'m not sure which one to use and when.
Made som mo开发者_JAVA技巧ck code below to illustrate my example. The problem is the lambda expression. If I leave it as in the code example it will not serialize when I try to call the service. Howev
I am Using WCF service to implement my web-service I have problem when I try to call my function which takes URL as input parameter and returns an object class which was defined by me.
I am going to use Entity Framework and WCF in my application. The suggested practice, as I saw, is using POCO with Entity Framework and also using POCO classes as DataContracts. That is actually what
I\'ve got several data contract classes like this: [DataContract] public class FooData { [DataMember] public string Name;
My WCF service exports a single operatio开发者_Go百科n, marked with the catch-all action and reply action so that it represents a common entry point to the service:
I have a Data Access Layer, a Service Layer, and a Presentation Layer. The Presentation Layer is ASP.NET MVC2 RTM (web), and the Service Layer is WCF (services). It\'s all .NET 3.5 SP1.