I have a service.I have开发者_高级运维 an existing class of business objects.What I would like to know is how can I pass a class through WCF from the business object assembly without having to create
The following DataContract: [DataContract(Namespace = \"http://namespace\", Name = \"Blarg\")] public class Blarg
I’m moving a web service from our test environment to our production environment, and am installing it under “services” The web service works fine in test, but in prod I get this error:
I\'m currently using wrapper classes for my DataSets ,in order to implement custom seri开发者_JAVA百科alization. I would like to use DataContractSerializer (more like have to use it) but still support
So I am calling a wcf webservice using Rest WebHttp.I also have set up a second binding mex for testing. My method is working but when I try to test through fiddler or straight httppost through a clie
How do I define DataContract for abstract classes in WCF? I have a class \"Person\" which I communicate successfully using WCF. Now I add a new class \"Foo\" referenced from Person. All still good.
I have this extension method for cloning my LINQ To SQL objects: public static T CloneObjectGraph<T>(this T obj) where T : class
I was wondering if it was better in WCF to use multiple operation contracts or to have only one operation contract with a polym开发者_JS百科orphic data contract.
Using WCF3.5SP1, VS2008.Building a WCF service that exposes about 10 service methods.We have defined about 40 [DataContract] types that are used by the service.
I have a datacontract as part of my WCF Interface that inherits from IIdentity: [DataContract] public class AuthenticationIdentity : IIdentity