The datacontracts tag has no wiki summary.
3
votes
2answers
202 views
Service contracts vs. domain objects
Say I have two interfaces to my application:
A web front-end
A back-end which provides data
Both of them talk to a web-service, and that web-service in turn, handles business logic and talks to a ...
3
votes
2answers
119 views
WCF Serialization Information outside class definition
Suppose this simple scenario:
My client has an already working .net application and he/she wants to expose some functionality through WCF. So he gives me an assembly, containg a public class that ...
2
votes
3answers
287 views
Wcf datacontract for classes in a library which i cannot modify
hi i have a class library that which performs methods and has a lot of different classes which it uses as parameters for the methods calls...
i am creating a wcf wrapper for this class library. but I ...
2
votes
3answers
1k views
C# WCF data contract partial class - new field in 2nd partial class not being picked up
I have a WCF service in which I have some data contracts. I'm using web service software factory, which uses a designer to create all the message and data and other contracts, and it creates them as ...
2
votes
1answer
777 views
RIA DomainService not generating client code using DataContracts
I'm working on a Silverlight 4.0 application and am using RIA services. I have created a class on the server-side which has DataContract and DataMember attributes applied to it.
A DomainService ...
2
votes
1answer
275 views
Is there any way to hide/flatten base types in WCF service data contracts?
Consider the following simple example:
[DataContract("{0}Base")]
public class Base<T> where T : Entity<T>
{
// Common methods & properties. No WCF exposed properties
}
...
0
votes
2answers
104 views
WCF - contracts versioning (by example)
This should be easy for someone familiar with the best practices of versioning service/data contracts. I want to make sure that I will use this versioning in the correct way.
So, let's say we have a ...
0
votes
0answers
57 views
DataCollection deserialization
I have a XML from third-party service:
<formula>
<name>
<parts>
<variable/>
<variable/>
<constant/>
<function/>
</parts>
</formula>
...
0
votes
0answers
72 views
A strategy to add more datacontracts/DTOs to a WCF Service without recompiling the Service Project/Solution
I am currently developing a WCF service that will evolve over time to include new DTOs. I am currently using MEF withing the service implementation to export the webservice object. I have the WCF ...
0
votes
1answer
420 views
WCF Rest Mutliple DataContracts Wrapped
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 ...
0
votes
1answer
320 views
Share Json data between Asp.Net MVC 2 and Asp.Net server side C# code?
I created and love my Asp.Net MVC2 application. It's a very nice DDD app with Domain Model classes, View Model classes, a repository, and Json action methods to expose data.
My coworker wants to ...
0
votes
1answer
476 views
DataContractSerializer KnownType attribute not being respected?
I have a class that is decorated with a KnownType attribute with a type of the class. Is this not allowed?
[KnownType(typeof(Occ600UIConfig))]
public class Occ600UIConfig
{ }
If so, ...
0
votes
3answers
105 views
Which types cannot be used for WCF?
I know for a matter of fact that Type cannot be used when passing in to a WCF service. Does anyone have a complete list?
0
votes
3answers
238 views
Business enum to DatContract Enum conversion in WCF
I have an enum
namespace Business
{
public enum Color
{
Red,Green,Blue
}
}
namespace DataContract
{
[DataContract]
public enum Color
{
[EnumMember]
Red,
...