Operation not supported in the WCF Test Client

前端 未结 4 694
没有蜡笔的小新
没有蜡笔的小新 2021-01-18 13:01

I created a WCF service and to the default service I added another operation contract on the main DataContract:

[OperationContract]
void DoSomething(UserData         


        
4条回答
  •  盖世英雄少女心
    2021-01-18 13:45

    Does the service work if you create a test client(like a console app) and add a service reference to the wcf? If it does, then your datacontract probably has one of those types not supported by WCF Test client.

    See this related issue

提交回复
热议问题