Tagged Questions

0
votes
4answers
48 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:ResponseDat …
0
votes
1answer
20 views

WCF DataContract with an abstract DataMember array

I can't make this scenario work. Here's the pattern- [DataContract] /*abstract*/ class BaseT { ... } [DataContract] class ChildT : BaseT { ... } [DataContract] class MessageCont …
0
votes
1answer
29 views

WCF: Enforce equal DataContracts on both sides

Hi all, I'm wondering if it is possible to have WCF make sure that the DataContracts on both sides of a connection are exactly the same (and throw an exception when trying to conn …
1
vote
3answers
135 views

WCF DataContract Upcasting

I'm trying to take a datacontract object that I received on the server, do some manipulation on it and then return an upcasted version of it however it doesn't seem to be working. …
0
votes
3answers
45 views

How do I add an XML attribute using DataContract

Hi I have a simple class I'm serializing. [DataContract(Name = "Test", Namespace = "")] public class Test { [DataMember(Order = 0, Name = "Text")] public string Text { …
2
votes
4answers
149 views

Should WCF DataContracts be value or reference types?

You're at the service's end of the wire and you don't know your clients. Why would you choose one over the other?
1
vote
1answer
68 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 P …
0
votes
1answer
29 views

How to avoid processContents=”lax” in WCF WSDL from classes implementing IXmlSerializable?

I have a wcf service written in a contract-first fashion. As some of the elements in the schema uses attributes, I had to create a custom serialization for this (using IXmlSerializ …
1
vote
1answer
61 views

WCF: DeSerialize string datamember as int

Hi everyone, I really can't figure this one out! (if it's even possible). From a WCF service we are receiving product information. A product datacontract has some members that ar …
0
votes
2answers
56 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)] …
2
votes
2answers
67 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 interf …
1
vote
4answers
255 views

SQL Server error handling: exceptions and the database-client contract

We’re a team of SQL Servers database developers. Our clients are a mixed bag of C#/ASP.NET, C# and Java web services, Java/Unix services and some Excel. Our client developers only …
7
votes
7answers
598 views

WCF Data Contract and Reference Entity Data?

Hello, 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 exam …
0
votes
2answers
50 views

WCF Relocation of DataContracts

This is a fully functional WCF Hello World program. I.e. I am able to run this program without any Exception. using System; using System.Collections.Generic; using System.Linq; us …
0
votes
3answers
89 views

WCF DataContract

If I don't keep Service Contract, proxy and Service in separate assembly, Service contracts and Proxies resides in Client assembly, And service resides in Service assembly. If I d …

1 2 3 4 next
15 30 50 per page