我需要从传入消息中提取一个soap Header 属性到我的服务。我正在使用服务堆栈并且一直在环顾四周,但在任何地方都找不到好的答案。谁能告诉我如何从请求对象中检索 SOAP 标头属性?
这是我的服务
public class NotificationServices : Service
{
public GetAccountNotificationResponse Any (GetAccountNotification request)
{
//Do Some stuff Here!!!
//Need to retrieve some header here
}
}
任何帮助将不胜感激。如果您知道无法完成的事实,请也告诉我。
谢谢