Tagged Questions
A data contract is a formal agreement between a service and a client that abstractly describes the data to be exchanged. A data contract precisely defines, for each parameter or return type, what data is serialized to be exchanged.
13
votes
4answers
6k views
WCF: Exposing readonly DataMember properties without set?
I have a server side class which I make available on the client side through a [DataContract]. This class has a readonly field which I'd like to make available through a property. However, I'm unable ...
10
votes
3answers
3k views
Which list/collection type is best to use in a WCF data contract?
When defining a WCF data contract, which type should one use for collections/lists?
Should it be ICollection<T>,
IList<T>, T[] or...?
Should I use interface types or the concrete types?
...
9
votes
5answers
4k views
Multiple WCF services referencing the same data contracts
I am building a set of WCF services that share common data contracts (or entities if you prefer). These are simple data transfer objects that are decorated with DataContract and DataMember attributes. ...
9
votes
5answers
2k views
Passing an instance of anonymous type over WCF
I have a WCF service method that expects an object and then retrieves its properties using reflection.
On the client side I create an anonymous type object
var obj = new {FirstName="John", ...
9
votes
2answers
5k views
IsReference property in data contract
What is the purpose of IsReference property in Data contract. How the request and response vary with these property./
9
votes
7answers
2k views
WCF Data Contract and Reference Entity Data?
Soliciting feedback/options/comments regarding a "best" pattern to use for reference data in my services.
What do I mean by reference data?
Let's use Northwind as an example. An Order is related to ...
8
votes
2answers
337 views
confused about how to use JSON in C#
The answer to just about every single question about using C# with json seems to be "use JSON.NET" but that's not the answer I'm looking for.
the reason I say that is, from everything I've been able ...
8
votes
2answers
891 views
Portable / Interoperable WCF Contracts
I was wondering if anybody out there had some good tips/dos and don'ts for designing WCF contracts with a mind for web-service interoperability, both in terms of older Microsoft web service ...
8
votes
1answer
4k views
WCF DataContracts
I have a WCF service hosted for internal clients - we have control of all the clients. We will therefore be using a data contracts library to negate the need for proxy generation. I would like to ...
7
votes
2answers
2k views
DataContract XML serialization and XML attributes
Is it possible to deserialize this XML into an object marked with the DataContract attribute?
<root>
<distance units="m">1000</distance>
</root>
As you may see there is ...
7
votes
3answers
6k views
Generate DataContract from XSD
I want to be able to generate a DataContract from a XSD file, preferably using the xsd.exe tool. What is the easiest way for it to auto generate the [DataContract] and [DataMember] on each of my ...
7
votes
2answers
3k views
Naming Generic DataContracts in WCF
I am using a Generic Class as a Response Data Contract. All is good and this is streamlining the design of my WCF service significantly.
Each request is given a standard response object with the ...
7
votes
4answers
4k views
What is best-practice when designing SOA WCF web-services?
Given an operation contract such as:
[OperationContract]
void Operation(string param1, string param2, int param3);
This could be redesigned to:
[MessageContract]
public class OperationRequest
{
...
6
votes
2answers
547 views
WCF DataContract
I am very confused about the DataContract attribute in WCF. As per my knowledge it is used for serialization user defined type like classes. I write a one class which is expose at client side.
...
6
votes
3answers
2k views
Using custom DataContractResolver in WCF, to transport inheritance trees involving generics
I've got a WCF service, in which there are operations which accept a non-generic base class as parameter.
[DataContract]
class Foo
{ ... }
This base class is in turn inherited, by such generics ...
5
votes
1answer
186 views
Adding a DataMember to an existing DataContract in WCF
I would like to add a DataMember to one of my DataContracts. I would like to know how existing servers and clients will behave in the presence of a new DataMember if one of the parties isn't updated.
...
5
votes
2answers
451 views
Decoding a Java/JSON Map into an F# object
I'm having trouble converting a Java/JSON map into a usable F# object.
Here's the heart of my code:
member this.getMapFromRpcAsynchronously =
Rpc.getJavaJSONMap (new ...
5
votes
1answer
3k views
Client WCF DataContract has empty/null values from service
I have a simple WCF service that returns the time from the server. I've confirmed that data is being sent by checking with Fiddler. Here's the result object xml that my service sends.
...
5
votes
2answers
2k views
WCF Service that returns a custom class generates errors in Reference.cs
I have a WCF Service project in Visual Studio 2008 that contains about 12 methods, some of which return primitive types like bool or string. I also have a Visual Studio Unit Test Project that ...
5
votes
4answers
398 views
Null vs Value Not Set
We've written a web service which uses a simple entity translator to map the values of DTO back on to "real" server side business objects. As part of this excercise. We have come across an ...
4
votes
1answer
52 views
REST API only sets certain properties of object
I am working on a REST API that I post to using POST and XML as the content. In my WebInvoke method, it seems to only be serializing a few of the properties. For example, I pass FirstName, LastName, ...
4
votes
2answers
91 views
Is this the right way of implementing “Design by contract” pattern in PHP?
I've discovered the "Design by contract" pattern and how to implement in in PHP. I can't find a real world example of how to do this in PHP. First question is am i'm doing it in the right way? Second ...
4
votes
1answer
119 views
REST with Polymorphic DataContracts - Deserialization Fails
This has been driving me nuts all day, as I've made no changes yet I swear this was working the way I had intended yesterday.
I have a WCF 4 REST service defined with the following contract:
...
4
votes
3answers
160 views
WCF - Instantiating an object in DataContract constructor
I have two classes as below:
[DataContract]
public class Address
{
[DataMember]
public string Line1
[DataMember]
public string Line2
[DataMember]
public string City
...
4
votes
1answer
89 views
How to make code contracts work with deserialization of data contracts?
I have written a ContractInvariantMethod for a data contract class, and everything works great on the client side, however when an object of this type is sent to my service, and the Data Contract ...
4
votes
1answer
758 views
Why is using [DataMember(EmitDefaultValue = false)] not recommended?
In WCF you can define a contract using the [DataContract] and [DataMember] attributes, like this:
[DataContract]
public class Sample
{
[DataMember(EmitDefaultValue = false, IsRequired = false)]
...
4
votes
1answer
182 views
Proxy class not having equals method WCF
I have a class as DataContract in my webservice and it inherit from IEquatable.
But my siverlight webservice generated proxy class does not have equals. Can any one tell me why this is happening and ...
4
votes
2answers
403 views
Json parsing F#
#r@"\.NETFramework\v4.0\Profile\Client\System.Runtime.Serialization.dll"
open System.Runtime.Serialization
open System.Runtime.Serialization.Json
[<DataContract>]
type geo = {
...
4
votes
1answer
428 views
DataContractJsonSerializer produces list of hashes instead of hash
I would expect a Dictionary object of the form:
var dict = new Dictionary<string,string>()
{
{"blah", "bob"},
{"blahagain", "bob"}
};
to serialize into JSON in the form of:
{ "blah": ...
4
votes
3answers
1k views
WCF DataContract with readonly properties
I'm trying to return a complex type from a service method in WCF. I'm using C# and .NET 4. This complex type is meant to be invariant (the same way .net strings are). Furthermore, the service only ...
4
votes
4answers
2k views
Why am I using the KnownType attribute wrong?
I am trying to deserialize a json response from a google api, so i thought i would define a couple classes to help with it:
[DataContract]
public class DetectionResult:ResponseData
{
...
4
votes
3answers
1k views
DataContracts with behavior
How bad is it? I have read countless articles and never created abstract DataContracts with behavior before, but it seems that doing so will solve an issue I am having that will prevent me from ...
4
votes
5answers
3k views
Persist a DataContract as XML in a database
I'm working on a kind of "store and forward" application for WCF services. I want to save the message in a database as a raw XML blob, as XElement. I'm having a bit of trouble converting the ...
4
votes
2answers
7k views
.NET base type cannot be serialized by WCF
I'm writing a WCF service and want to expose some custom configuration elements (e.g. Custom ConfigurationSection and ConnectionStringSettings) so that I can modify the service's configuration. One of ...
3
votes
1answer
43 views
Are there any other reasons why I should consider omitting emitting the default value to be a bad practice?
I've worked with WCF for awhile now and in places where both client and server tend to be co-released; that is, new versions have almost always been released at the same time. Interoperability and ...
3
votes
2answers
405 views
Constructor in WCF DataContract not reflected on Client
I need to have some data members get some values when I create an instance of the DataContract on the client. This is not happening using constructors. I have searched through different forums and ...
3
votes
2answers
526 views
Runtime add DataContract and DataMember to Dynamic Class created using .Net Reflection
I have used .Net Reflection.Emit to create Dynamic Class and its fields. Now When I use Generic List of this dynamic class object in silverlight enabled WCF service it is giving me an error on ...
3
votes
1answer
1k views
DataContract serialization exception (data contract name is not expected)
I have the following code:
[DataContract]
class TestContract {
private String _Name;
private Int32 _Age;
[DataMember( Name = "Name" )]
public String Name {
get { return ...
3
votes
2answers
509 views
WCF datacontract vs class serialize
I understand that we can have more controls on a class if we use datacontract, however, consider the following 2 cases
[DataContract]
public class Customer
{
[DataMember]
public string ...
3
votes
2answers
365 views
DataContract serialization of an inherited type into a base type
I'm trying to serialize class B as an instance of ita base class A. The DataContractSerializer won't allow me to do that.
An example failing the serialization is as follows:
class Program
{
...
3
votes
1answer
315 views
DataContractSerializer not deserializing all variables
I'm trying to deserialize some xml without having the original class that was used to create the object in xml. The class is called ComOpcClientConfiguration.
It's succesfully setting the ServerUrl ...
3
votes
2answers
685 views
Entity Framework POCO with WCF software design question
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 ...
3
votes
2answers
691 views
WCF Data Contract / Serialization
I created a simple WCF application which expose one operation. This operation takes a composite data type as parameter.
I have not decorated this composite data type with [DataContract] attribute. ...
3
votes
1answer
387 views
Serializing Delegates in WCF Using a Surrogate?
I have an idea, but I need help implementing it.
WCF does not support delegates in its contracts.
Instead it has a cumbersome callback contracts mechanism, and I'm looking for a way to overcome this ...
3
votes
2answers
3k views
Why can't I use WCF DataContract and ISerializable on the same class?
I have a class that I need to be able to serialize to a SQLServer session variable and be available over a WCF Service. I have declared it as follows
namespace MyNM
{
[Serializable]
...
3
votes
2answers
1k views
Creating WCF DataContracts dynamically from code
Given the fact that I have a fully dynamic object model, that is, I have no concrete classes defined anywhere in code, but I still want to be able to create WCF DataContracts for them so I can use ...
3
votes
1answer
653 views
WCF with multiple services and namespace issues
I have created a number of WCF Services, for arguments sake they are called Service1 and Service2.
Both of the services return (at some point, possibly through a relationship inside an object) a ...
3
votes
2answers
2k views
WCF DataContract - marking member IsRequired=false
I have a contract as follows:
[DataContract]
public class MyObj
{
[DataMember(IsRequired=true)]
public string StrA {get; private set;}
[DataMember(IsRequired=false)]
public string ...
3
votes
2answers
366 views
WCF: return only necessary properties on json
Because of performance tuning I would like to return only necessary properties. Is there a possibility/workaround? Pseudo / sample code to understand:
[DataContract]
public interface IMemberOverview
...
3
votes
2answers
1k views
Should i decorate my classes/properties as DataContract/DataMember when i use them in WCF?
I have a framework with objects and data access code. This objects are mapped to the database using NHibernate.
For example my framework has class Customer and Order:
public class Customer
{
...