我在php中编写了一个包含OperationContract( IsOneWay=true)
当我从.net客户端应用程序调用此方法时,它会给我一个错误
单向操作返回了一个 带有Action =''
的非空消息
这是我的代理生成方法:
[OperationContractAttribute(IsOneWay = true, Action = "http://192.168.1.5/zfsapi/api.php#terminateProcess")]
[XmlSerializerFormatAttribute(Style=OperationFormatStyle.Rpc, SupportFaults=true, Use=OperationFormatUse.Encoded)]
[ServiceKnownTypeAttribute(typeof(ZfsSnapshot))]
void terminateProcess(int pid);
任何人都可以告诉我为什么会出现这种错误并解决此问题吗?