Tagged Questions
The known-types tag has no wiki summary.
17
votes
5answers
6k 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 ...
6
votes
1answer
3k 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 ...
4
votes
2answers
1k 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 ...
4
votes
3answers
5k 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 ...
3
votes
1answer
1k 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 ...
2
votes
1answer
172 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
271 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 ...
2
votes
1answer
1k 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 ...
1
vote
1answer
560 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 ...
1
vote
1answer
1k 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 ...
1
vote
2answers
862 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>
...
0
votes
0answers
27 views
Export WCF KnownTypes to an external config file
i have a big project which has different modules using the same WCF KnownTypes section in their config file, how can I export them to one config file ?
I've tried using configSource and childSource ...
0
votes
0answers
118 views
Add any types not known statically to the list of known types
I have added a Service Reference from my WCF Client to a Document Foundation Classes Java Web Service.
I commented all the duplicate class definitions in Proxy so generated that are already defined in ...
0
votes
1answer
202 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
1answer
1k 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 ...