vote up 0 vote down star
1

Hi,

Am getting an error mentione below when I call my WCF service?How do i get rid of it?

There was an error while trying to serialize parameter http://tempuri.org/:MyWCFSvc.svc The InnerException message was 'Type 'System.String[]' with data contract name 'ArrayOfstring:http://schemas.microsoft.com/2003/10/Serialization/Arrays' is not expected. Add any types not known statically to the list of known types - for example, by using the KnownTypeAttribute attribute or by adding them to the list of known types passed to DataContractSerializer.'. Please see InnerException for more details.*

I tried using [ServiceKnownType(typeof(string[]))] in my WCF sercive interface but no luck

Thanks.

flag

8% accept rate
Can you provide a sample of the code that's causing this problem? – Nick Josevski Mar 30 at 8:56

2 Answers

vote up 0 vote down

Configuring service references on your client provides "Data Type" options that allow you to specify different types for Collection/Dictionary Types. What settings do you have in there?

link|flag
vote up 0 vote down

There's no reason for you to have to KnownType an array of strings. The serializer should already know about that, and arrays are not a problem. I'm moving Lists of things around in WCF without an issue. Could you post a representative sample of what you're doing?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.