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.

learn more… | top users | synonyms

0
votes
2answers
20 views

Return an Array of a Struct in a WCF Datacontract

i need to return an array of a structure in a Datacontract. i cant manage to make it. i receive an error when setting the values for the array. Here's the Datacontract declaration: [DataContract] ...
0
votes
0answers
16 views

Custom DataContractResolver ResolveName DataContractResolver parameter should not be null

I am using a custom DataContractResolver public override Type ResolveName(string typeName, string typeNamespace, Type declaredType, DataContractResolver knownTypeResolver) { Type ...
0
votes
2answers
22 views

How do I share Service Reference Types Across Multiple Tiers using C# and Visual Studio 2010

My project is split into a service tier project and an implementation tier project. Both are written in C# using Visual Studio 2010. The service tier accepts a request object and passes it to the ...
0
votes
1answer
38 views

Return array of struct in Datacontract

i need to return an array of a structure in a Datacontract. i cant manage to make it. i receive an error when setting the values for the array. Here's the Datacontract declaration: ...
0
votes
1answer
24 views

XML Does not work for me in WebApi -Something to do with my Datacontracts

I am making a web api project and I noticed that one of my method dies when I try to use xml. I usually just use json when testing as this is my preferred method and it works fine. public ...
0
votes
1answer
22 views

DataAnnotation for Required property - Why is it required for asp.net webapi?

I read through these posts DataAnnotation for Required property http://forums.asp.net/t/1835627.aspx/1 and I understand it has something to do with xml and not supporting required but I don't get ...
0
votes
0answers
17 views

Data Contract Single Value Structure

I have a structure somewhat like an enum, except it has a bunch of methods: public struct ComponentIdentifier : IComparable { private long identifier; ... } I want this to serialize such ...
0
votes
1answer
29 views

How to ignore Data Contracts for Json?

I am using asp.net web api and returning my data like this return Request.CreateResponse<ResponseResult<ProductSearchDto>>(product.Status.Code, product); This returned nasty and long ...
0
votes
0answers
29 views

DataContract serialization not always producing the same set of object references in xml (ie ref and id tags)

Problem: I am serializing a very large, complex object using DataContract serialization. There are a number of string properties scattered throughout the object structure, many of which are the same ...
1
vote
1answer
33 views

Include Exceptions as DataMember for DataContractSerializer WCF C#

I want to return an array of exceptions in the DataContract from the WCF but it is not working. [DataContract] public class ProcessResult { [DataMember] public ...
1
vote
1answer
20 views

Remove Order from datamember

Is there anything which can be use to avoid using Order attribute in DataMember while passing parameters from xml to WCF service [DataMember(Name = "Name", Order = 2)] ... [DataMember(Name = "ID", ...
0
votes
1answer
30 views

How to use selective property of class as Data Member in Rest Service

I am trying to use a class as DataContract and have mark there property as DataMember. [DataContract] public class Contact { [DataMember] public string FirstName { get; set; } [DataMember] ...
1
vote
2answers
28 views

Dynamically switch applicable DataContract at runtime?

Can I turn data contract attributes off and on dynamically? Essentially, I'd like two data contracts, one between the 3rd party and my app, and one between my app and my client - without having to ...
3
votes
3answers
65 views

Unable to cast Base class (data contract) to derived class

[DataContract] public class SearchCriteria { [DataMember] public string CountryID { get; set; } } [DataContract] public class CitySearchCriteria: SearchCriteria { [DataMember] ...
0
votes
0answers
45 views

Why can't I use my data contracts form my IService?

I have the following data contracts defined in my IService: [DataContract] public class PumpClass { [DataMember] public int ID { get; set; } [DataMember] public double litresPumped { ...
0
votes
0answers
28 views

sending stream and other data within one method

I have WCF service that needs to get stream and one other parameter and return complex type (without streams). If I create method that accepts only stream as an argument - everything is OK. However I ...
1
vote
3answers
74 views

Generally accepted way to avoid KnownType attribute for every derived class

Is there a generally accepted way to avoid having to use KnownType attributes on WCF services? I've been doing some research, and it looks like there are two options: Data contract resolver ...
0
votes
1answer
29 views

JSON + SOAP - Is DataContract necessary?

Here's my problem. I'm using SOAP to retrieve information from a third-party web service. Response time is too high, so I was planning on using JSON instead, at least in a couple of methods. For this ...
1
vote
1answer
93 views

ServiceStack.Text: Forcing serialization of a property not decorated with DataMember attribute

I have the following class (simplified). [DataContract] public class ServiceResponse { public int Sequence { get; set; } [DataMember] public ServiceResponseStatus Status { get; set; } } ...
0
votes
1answer
11 views

How to transport a derived object as a base object when the contract specifies an interface

If a [ServiceContract] [OperationContract] specifies a return value that is an interface (IInterface) then I can return a Base object (Base : IInterface) or a Derived object (Derived : Base) using ...
0
votes
0answers
23 views

Do WCF DataContracts respect the Flyweight pattern?

If I use the flyweight pattern to create the intrinsic data (including a large image) in a series of objects that also contains extrinsic data, and then transmit them using WCF as DataContracts, does ...
0
votes
1answer
71 views

Basics of DataContractAttribute

I'm looking at Microsoft's How to: Create a Basic Data Contract for a Class or Structure, but it leaves me with lots of questions. They provide this very simplistic example: using System; using ...
0
votes
2answers
184 views

How To Use Interface as DataContract in WCF

I need invoke webservice operations using standard wsdl, but data objects must be different in client and in the server. Using interfaces for data objects in a common library, making proxy classes ...
0
votes
1answer
122 views

can we convert Odata metadata to C# code (datacontract)

there is a odata webservice, i can get metadata from http://service-uri.com/$metadata which contains definition of all its model object, is there any tools that i can use, to convert that ...
0
votes
1answer
80 views

DataContractJsonSerializer to deserialise Json

I am trying to deserialize a Json String. My Deserialization works up to OrderData. When I deserialize OrderData is always null and SourceData also not showing up. It's not throwing any error either. ...
1
vote
0answers
45 views

Type 'System.Threading.Tasks.Task`1[FundingReportData[]]' cannot be serialized [duplicate]

I am getting following error on my server (Windows 2008 Framework 4). Type 'System.Threading.Tasks.Task1[FundingReportData[]]'` cannot be serialized. Consider marking it with the ...
0
votes
1answer
50 views

Creating a DataContract for an external object

I'm currently developing a WCF Web Service in C#.NET. I'm fairly new to this. I'm thinking about how a certain method should be implemented, because it needs to return an "external" object as a ...
0
votes
1answer
38 views

Avoid populating Extended Properties in WCF data contracts

How could I avoid populating the ExtendedProperties collection in my data contract? My WCF service is building the data contract from a XML and populating the ExtendedProperties with the properties ...
0
votes
1answer
42 views

Pass polymorphic type as argument in SoapUI when using ServiceKnownType in WCF Service

I have a WCF Service; this service has an operation that receives an argument of type Request. This is only the base type, and when calling the operation we actually send a value of type Request_V1 ...
0
votes
1answer
137 views

Can we send a Generic List ( List<customObject>) as a parameter to a WCF OperationContract?

Can we send a Generic List ( List) as a parameter to a WCF OperationContract? Seems like the only way to do it is to encapsulate the List as a DataMember inside another Class and specify the class ...
1
vote
3answers
141 views

Passing Business Objects from a WCF Operation (service Layer to Data Layer)

I am building a WCF service. The Data Contract objects will be the exact same as the Business Objects. Should I create Data Contracts in my WCF service or reference my BO Layer and use those ...
0
votes
0answers
109 views

Best practice for using SOAP headers with a WCF service

Consider the following WCF service [ServiceContract] public class MyService { [OperationContract] public byte[] methodA(string param) {...} [OperationContract] public void ...
0
votes
0answers
90 views

Expose or Add DataContracts to a class library for WCF Service

I have a Class Library that I use for client side but now I am creating a webservice that will be using methods/objects/properties from the Class Library. Now when I go into the Class Library and I ...
0
votes
1answer
353 views

VS 2012 “Add Service Reference” generates partial classes for some Shared Assemblies

This question might seem familiar but I worked to those already answered here and across the Internet without finding an answer: Edit At the moment, the Service Reference is working fine again, but ...
1
vote
1answer
43 views

CollectionDataContract to be used to consume Json array

Suppose there is this json produced by a service: [{"key1": 12, "key2": "ab"}, {"key1": 10, "key2": "bc"}] is this possible to be retrieved by wcf rest and parsed using CollectionDataContract as a ...
0
votes
1answer
199 views

WCF An error occurred while receiving the HTTP response

Here's what my WCF service should be returning. When I command PaymentData out of ResponseModel and add other DataMembers in that class it works. [DataContract] public class ResponseModel { ...
1
vote
0answers
34 views

How do I produce ActionResult from a DataContract-attributed class instance?

In my MVC3 application I need to return an XML representation of a class that has DataContract attribute on it. MVC3 actions return ActionResults. [HttpGet] ActionResult MyActionResult( paramsHere ) ...
1
vote
1answer
87 views

In MVC3 how do I get a DataContract-attributed object that was posted to my action?

I have to implement a method that i declared like this: [OperationContract] [WebInvoke(Method = "POST", UriTemplate = @"whatever")] void MyMethod(InputContainer input); where InputContainer is ...
2
votes
1answer
269 views

WCF DataContracts - How can I use a single DataContract with complex object for both WCF SOAP and REST services?

I have a frustrating issue that I have been trying too overcome but can't seem to figure out. I have services that I am exposing over both SOAP and REST endpoints in WCF. To avoid duplicate object ...
1
vote
0answers
59 views

Mark Parameter of WCF service Operation as Required

I have the following ServiceContract: [ServiceContract(Namespace = Constants.NAMESPACE)] public interface IAuthenticationService { [OperationContract] LoginResult Login(LoginData data); } ...
0
votes
1answer
90 views

DataContract classes uninitialized at client side

I have the following class I'd like to send from my WCF (C#) service to my client (WPF): [DataContract] public class OutputAvailableEventArgs { [DataMember] public int ID { ...
0
votes
0answers
75 views

XSD2CODE and DataContract WCF

my problem seems to be simple but I don't find a solution till now. I have created a wsdl file. The wsdl uses complex type so at the end, before creating it I have created some xsd files that ...
0
votes
3answers
170 views

How can I add datacontract to a type (xxxDataTable) which is created by a typed data set?

I have a typed data set and I want to pass tables(which are created by .net) or collection of rows instead of objects(which I would be creating) or collecion of objects to the client side. Silverlight ...
0
votes
2answers
154 views

WCF Multiple Base Classes in one interface?

i just wanted to know if it is possible to use more than one base class in one interface. I face the problem that i am using 2 (and there will be more) base classes for one interface. Using the first ...
0
votes
0answers
151 views

WCF DataContract KnownType

I try to explain my problem as far as i can. My interface class looks like this: [ServiceContract(Namespace = "http://bla.ServiceModel.Samples", SessionMode = SessionMode.Required)] public interface ...
0
votes
0answers
19 views

Object serialization using DataContract, does this look ok?

using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Text; using System.Threading.Tasks; using Windows.Networking.Sockets; namespace ...
0
votes
1answer
97 views

Deserializing with DataContract Collection<Class> to derived Class

The title is a bit confusing, hopefully someone maybe know's a better fitting title for my problem. I am trying to create a class which derives from Collection<Classname> to implement an easy ...
0
votes
0answers
94 views

WCF Contract namespace not being recognized

I am running into an issue when I am trying to specify a custom namespace for my contract objects for my WCF services. I have the following two contracts: ...
3
votes
2answers
201 views

Auto generating DataContract classes from Business Object Classes

I'm currently creating a .NET C# API. I have many classes, and some of them have to be transferred through a REST service as JSON. For example, I may have an account object with a lot of business ...
0
votes
0answers
76 views

How can I return a .NET 4 DataContract over a SoapRpcService from a SoapRpcMethod?

I'm migrating an ASMX web service to WCF and adding a few new methods for new functionality. The desktop app is a VB6 application which uses nsoftware's IPWorks SOAPS control to make the web service ...

1 2 3 4 5 10