Reputation: 35
After running WCF Service I got the Error
This operation is not supported in wcf test client because it uses type System.IO.Stream
My WCF Service code is
[OperationContract]
void getImg(Stream stream);
Upvotes: 1
Views: 2321
Reputation:
The following is a list of features not supported by WCF Test Client:
Types: Stream, Message, XmlElement, XmlAttribute, XmlNode, types that implement the IXmlSerializable interface, including the related XmlSchemaProviderAttribute attribute, and the XDocument and XElement types and the ADO.NET DataTable type.
Duplex contract.
Source: MSDN - WCF Test Client
Upvotes: 2