Known Types are a mechanism to allow information about derived types to be included in a data contract for serialization purposes.
1
vote
3answers
73 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
0answers
149 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 ...
2
votes
1answer
200 views
WCF Service known type object won't return properties of the known type
I have created a WCF service and have two particular objects, Contact and Driver. Driver inherits Contact. The Contact object is part of a larger Member object. In the code I have the following:
...
1
vote
0answers
127 views
service reference is ignoring knowntype
[CollectionDataContract(Namespace = "CISICPD")]
[KnownType(typeof(List<CISICPD.LeeDictionary>))]
public class LeeDictionary : Dictionary<string, object>
{
}
[DataContract(Namespace = ...
0
votes
1answer
151 views
wcf .net4 dictionary containing dictionaries
I am trying to return an array of dictionary <string, object> where the object may contain a basic type such as int, bool, etc or it could contain another array of dictionary<string, ...
1
vote
0answers
39 views
Is there any way to mention interface as known types in wcf?
I am using wcf service, in that i need to return some complex object derived from the interface called IComponents, instead of mentioning concreate class as known type in service, is there any way to ...
5
votes
2answers
261 views
Two Interface and one concrete class in WCF
please check the below example
namespace GServices
{
[ServiceKnownType(typeof(SearchType))]
[ServiceContract(SessionMode = SessionMode.Allowed)]
public interface ITest
{
...
0
votes
2answers
434 views
Can't get KnownType to work with WCF
I have an interface and a class defined in separate assemblies, like this:
namespace DataInterfaces
{
public interface IPerson
{
string Name { get; set; }
}
}
namespace ...
8
votes
3answers
830 views
Data Contract Known Types and a set of interfaces inheriting each other
I develop (rewrite onto WCF) a file parsing web service accepting string[] and returning ISection[] but actually this is a set of nested interfaces:
namespace Project.Contracts // ...
1
vote
2answers
1k views
Web Service Serializing complex objects
I have a web service with Class1. Class1 has a List of images for a property
[Serializable]
[SoapInclude(typeof(Bitmap))]
public class Class1
{
private static List<Image> _myList = new ...
2
votes
1answer
183 views
Client Generated doesn't provide information about knowntype with third-party
I've got some problems with my Service, about the KnownType and inheritance. I've read almost all the similar question, but i still haven't found a solution. I'll try to explain:
This is my ...
0
votes
1answer
195 views
Effects of XmlIncludeAttribue when it's used in WCF DataContract
1) Does Binding use while creating ChannelFactory makes any difference to how serialization/deserialization works? (I know that binding used should match the server side binding of the service.)
I ...
1
vote
1answer
123 views
using or not using the KnownType attribute between servers?
I have a question about using WCF KnownType attribute between Server / client application,
As you know there is different ways transferring objects between server and client using wcf.
using ...
3
votes
1answer
345 views
How to deserialize types not known, not an ordinary case
I'm struggeling with a deserialization problem that I haven't found an answer for. The scenario is like this:
A silverlight client signs in to the server and gets a session object back. The session ...
3
votes
1answer
128 views
WCF Derived types and violation of the Open/Closed principle
I have a base class that I use in WCF service calls,
[KnownType(typeof(MyDerivedClass))]
public abstract class MyBaseClass {
//some properties
}
I derive from it and every time I derive I have ...
0
votes
1answer
174 views
Attributes on a derived type not being deserialized in a WCF client even though KnownType is used
I have the following types:
public enum MyEnum
{
Value1,
Value2
}
[DataContract]
public class Configuration
{
[DataMember]
public MyEnum MyValue { get; set; }
[DataMember]
...
1
vote
2answers
989 views
DataContract with inheritance?
I have a class with a list of objects that is serialized and deserialized:
[DataContract]
public class Manager
{
[DataMember]
public BigBase[] enemies;
}
The class with subclasses:
...
1
vote
1answer
252 views
KnownTypeAttribute in t4 file
I'm trying to use some reflection in a .tt file, more specifically to determine the KnownTypes on a class. To do this I just use simple reflection, or rather want to use simple reflection, but when I ...
0
votes
0answers
484 views
How to Serialize list<objects> using DataContractSerializer
Library shared between server and client contains interface :
[ServiceContract(SessionMode=SessionMode.Required, CallbackContract=typeof(IClient))]
public interface IServer
{
// Node interface ...
1
vote
1answer
118 views
Abstract classes in client lib, and concrete class in shared lib
How do I solve the serialization problem with abstract class defined in a shared client library, and concrete implementation in a server side library.
Interface in shared client library :
...
1
vote
2answers
3k views
Problem with knowntype attribute in wcf
I'm having the following error in my wcf client.
NetDispatcherFaultException was unhandled.
The formatter threw an exception while trying to deserialize the message: There was an error while ...
2
votes
1answer
173 views
use of declared types in WCF
I am using [ServiceKnownType(typeof(Document))] for every operation contract in my WCF interface class.I want to avoid using this KnownType.Instead use the DeclaredTypes in web.config. can i get any ...
3
votes
1answer
3k views
DataContractResolver / KnownType issue when custom class contains another custom class
I'm trying to output a list of objects to a json format using the DataContractJsonSerializer class however I keep running into the following error.
Type 'Castle.Proxies.JokeCategoryProxy' with data ...
0
votes
1answer
454 views
WCF, return list of Known Types
I have a server side service called ConstructionManager, one of its operation is GetAll() which return a list of constructions. Construction is a data contract, and there are several types which ...
7
votes
3answers
708 views
KnownType for all derived types of an abstract class?
We have an abstract class that is the base for a number of different requests we send over a WCF service. It's an ugly heinous hack that every time we add a new request we have to remember to add the ...
2
votes
1answer
482 views
WCF Known Type error
I get this error when calling my service:
Server Error in '/' Application.
--------------------------------------------------------------------------------
Configuration Error
Description: An error ...
2
votes
2answers
558 views
WCF datacontract knowntype on base class
I have a data contract in a project (Comp.DataContracts) that doesn't need to know about any other projects. I have Comp.ProjA that references Comp.DataContracts and has a derived class that just ...
1
vote
1answer
689 views
WCF - Object as known type -> interoperable?
Actually there should be a straight forward answer to this question (is about the "Object" property below):
Having the following data contract:
[KnownType(typeof(bool))]
...
0
votes
1answer
374 views
WCF KnownTypes in Mono 2.10 / MonoTouch 4.0
I have an application that uses WCF. It runs great on Mono 2.8.2 on Ubuntu and .NET 3.0 on Windows.
It decorates the WCF service contract with the 'ServiceKnownType' attribute, which points to a ...
0
votes
2answers
384 views
Debugging adding known types through config
I've been going round this for a while now and I can't figure out why I can use the config to add references to known types, or how to go about debugging it. Any pointers might save my sanity.
I ...
1
vote
2answers
211 views
Is the usage of the WCF KnownType attribute always a hack?
I have only ever seen it being used to 'overcome' the diferences between OOP and SOA.
3
votes
3answers
2k views
Using Interfaces With WCF
I have Googled and read for hours now and I can't find anyone that deals with my specific scenario...
I want to use interfaces in my WCF service contracts to loosely couple the service from the ...
0
votes
1answer
3k views
WCF net.pipe aborts when receiving response
This has been resolved
This is a contract I'm unable to get from a service call:
[DataContract]
public class myInitializationData : ClientInitializationData
{
[DataMember]
public ...
1
vote
1answer
191 views
Why is ServiceKnownType not needed for my object?
It is my understanding that every type (other than some primitives like int and string) used in a WCF ServiceContract need to be declared with ServiceKnownType attribute. But, I have build a custom ...
6
votes
3answers
4k views
C# WCF: When is it appropriate to use the KnownType attribute?
I'm curious about the KnownType attribute, and when to use it--I'm not terribly clear, after reading the MSDN reference. So yes, the attribute communicates type information to the serializer, but when ...
8
votes
2answers
2k views
WCF Known Type from System.Object in Config
I'm trying to specify a known type in my config, but I'm having problems with the fact that it derives from Object. I can make it work specifying the known type via attribute. But in this case I need ...
1
vote
1answer
449 views
on wcf type is not expected even though its on ServiceKnownType(typeof(…))
i am using third party classes in my service, so i cant edit them.
third party
[Serializable]
Class B : E
[Serialazable]
Class E : A
service
[ServiceKnownType(typeof(B))]
...
0
votes
2answers
130 views
Why are we getting a WCF “Framing error” on some machines but not others
We have just found we are getting “framing errors” (as reported by the WCF logs) when running our system on some customer test machine.
It all works ok on our development machines.
We have an ...
1
vote
1answer
2k views
WCF Exception: Cannot add to list of known types
Good Day Everyone...
I’m getting an unexpected WCF error complaining of “Known Types” which are similarly named, but in different name-spaces (see error below).
...please keep in mind I'm still ...
7
votes
2answers
4k views
What is the difference in WCF when using KnownType and ServiceKnownType?
I have a service that returns an array of animal but the list can contain cats, dogs, etc, which all extend animal. I know I need to use either the KnownType or ServiceKnownType attribute, and on the ...
1
vote
2answers
1k views
WCF contracts - namespaces and SerializationExceptions
I am using a third party web service that offers the following calls and responses
http://api.athirdparty.com/rest/foo?apikey=1234
<response>
<foo>this is a foo</foo>
...
3
votes
1answer
2k views
How to add service known types from external config file
I am having difficulty understanding how to exactly go about adding known types; for WCF, from a configuration file that is external to my wcf. I found an example of how to set the configuration file ...
8
votes
1answer
4k views
DataContractSerializer, KnownType and inheritance
I've read many articles about known types and i belive my example should work. But it doesn't. I'm getting the following exception on deserialization and don't understand why:
Error in line 1 ...
2
votes
1answer
3k views
Declaring Known Types for data contracts in different assemblies
I have a method in a WCF service which returns a complex type (myComplexResult), which includes as one of its members a List (Of Common.myBaseClass). I want this list to hold items which can ...
7
votes
2answers
7k views
How to specify a WCF known type in config that is generic?
I have a type, let's call it Data<TKey>. I also have a WCF service contract that accepts a type (lets call it Wrapper) with a property of type Object (for reasons I won't go into, this isn't ...
29
votes
5answers
11k views
How do you configure WCF known types programmatically?
My client/server application is using WCF for communication, which has been great. However one shortcoming of the current architecture is that I must use known type configuration for certain ...
