[ServiceContract(Namespace = "http://schemas.mycompany.com/", Name = "MyService")]
public interface IMyService
{
[OperationContract(Name = "MyOperation")
OperationResponse MyOperation(OperationRequest request);
}
在这种情况下,
Action
和ReplyAction
的意义是什么?编辑:我应该澄清我的问题...
如果我不指定这些部分,我的wsdl有什么不同?难道它不只是使用命名空间,服务名称和显示名称的某种组合吗?
最佳答案
如果要在消息中自定义这些值(它们反射(reflect)在WSDL中),则仅需要Action/ReplyAction属性。如果您没有它们,则默认值为Action的<serviceContractNamespace> + <serviceContractName> + <operationName>
,以及ReplyAction的<serviceContractNamespace> + <serviceContractName> + <operationName> + "Response"
。
下面的代码打印出服务中所有操作的Action/ReplyAction属性。
public class StackOverflow_6470463
{
[ServiceContract(Namespace = "http://schemas.mycompany.com/", Name = "MyService")]
public interface IMyService
{
[OperationContract(Name = "MyOperation")]
string MyOperation(string request);
}
public class Service : IMyService
{
public string MyOperation(string request) { return request; }
}
public static void Test()
{
string baseAddress = "http://" + Environment.MachineName + ":8000/Service";
ServiceHost host = new ServiceHost(typeof(Service), new Uri(baseAddress));
host.AddServiceEndpoint(typeof(IMyService), new BasicHttpBinding(), "");
host.Open();
Console.WriteLine("Host opened");
foreach (ServiceEndpoint endpoint in host.Description.Endpoints)
{
Console.WriteLine("Endpoint: {0}", endpoint.Name);
foreach (var operation in endpoint.Contract.Operations)
{
Console.WriteLine(" Operation: {0}", operation.Name);
Console.WriteLine(" Action: {0}", operation.Messages[0].Action);
if (operation.Messages.Count > 1)
{
Console.WriteLine(" ReplyAction: {0}", operation.Messages[1].Action);
}
}
}
Console.Write("Press ENTER to close the host");
Console.ReadLine();
host.Close();
}
}
关于WCF OperationContract-Action和ReplyAction的意义是什么?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6470463/