事实上,我已经找到了解决问题的方法,但我只是好奇。
我遇到了以下错误消息 “此代理不支持UnlockObject方法。如果方法未使用OperationContractAttribute标记,或者接口类型未使用ServiceContractAttribute标记,则可能会发生这种情况”
这是我的界面:
[ServiceContract(CallbackContract = typeof(IServeurCallback), SessionMode.Required)]
public interface IServeur
{
[OperationContract(IsOneWay = true)]
void UnlockObject<T>(Guid ClientId, ObjectId toUnlock, string collectionName);
[...]
}
如何在我的服务器中实现
[ServiceBehavior(InstanceContextMode = InstanceContextMode.PerCall, ConcurrencyMode = ConcurrencyMode.Multiple)]
public class Serveur : Proxy.IServeur
{
public void UnlockObject<T>(Guid ClientId, ObjectId toUnlock, string collectionName)
{
/*stuff using <T>*/
}
}
以及如何从我的客户端调用它
if (this.comboBox1.SelectedItem.ToString() == "Projet")
this.channel.UnlockObject<ProjectClass.Project>(client._Guid, toSend, "collection_Project");
else if (this.comboBox1.SelectedItem.ToString() == "Object")
this.channel.UnlockObject<Object.c_Object>(client._Guid, toSend, "collection_Object");
else if (this.comboBox1.SelectedItem.ToString() == "ObjString")
this.channel.UnlockObject<ObjString.ObjString>(client._Guid, toSend, "collection_ObjString");
(this.channel是以这种方式创建的
DuplexChannelFactory<Proxy.IServeur> factory;
/* do stuff to make it usable */
Proxy.IServeur channel = factory.CreateChannel();
我通过删除
解决了这个问题<T>
来自所有功能。现在我的代码有点脏,但它工作正常
为什么会显示此错误消息?
答案 0 :(得分:0)
您有异常,因为wsdl
不支持开放泛型类型,因此WCF
服务无法在操作合同中公开它们,因为它使用wsdl
来公开您的操作元数据。
可以在代码中公开有界泛型(参见details),或者因为<T>
参数只能识别可以将其添加为另一个参数的类型
[OperationContract(IsOneWay = true)]
void UnlockObject(Type objectType,Guid ClientId, ObjectId toUnlock, string collectionName);