WCF 代理中的 Action 和 ReplyAction
OperationContract属性中的Action和ReplyAction有什么用?
What is the use of Action and ReplyAction in OperationContract attribute ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Action 定义服务方法的肥皂操作的输入 uri。
回复操作定义服务方法的输出 uri。
它们基本上用于为两者自定义 uri。见下文。
在你的 wsdl 中你会看到
这有意义吗?
Action defines your input uri for the soap operation for your service method.
Reply Action defines the output uri for your service method.
They are basically used to customize the uri for both. See below.
In your wsdl you would see
That make sense?
它用于 WS 寻址。
WS-Addressing 简介: http://www.fpml.org/_wgmail/_bpwgmail/pdfdz3oYx1M9e .pdf
http://www.w3.org/Submission/ws-addressing/
查看回复soap消息:
http://msdn.microsoft.com/en-us /library/system.servicemodel.operationcontractattribute.action.aspx
Its for WS addressing.
Introduction to WS-Addressing: http://www.fpml.org/_wgmail/_bpwgmail/pdfdz3oYx1M9e.pdf
http://www.w3.org/Submission/ws-addressing/
Look at the reply soap message:
http://msdn.microsoft.com/en-us/library/system.servicemodel.operationcontractattribute.action.aspx