如何通过SOAP UI通过名称空间将标题通过?

发布于 2025-02-01 14:17:54 字数 698 浏览 4 评论 0原文

我正在通过一个传统项目。

 {
  using(var scope = new OperationContextScope(client.InnerChannel)) {
    var appKeyMsgHeader = new MessageHeader < string > ("app1"); //Input parameter passed to the current method
    var appKeyUnTypedHeader = appKeyMsgHeader.GetUntypedHeader("AppKey", "Au.CustomHeaders");
    OperationContext.Current.OutgoingMessageHeaders.Add(appKeyUnTypedHeader);
    client.InnerChannel.OperationTimeout =
      TimeSpan.Parse(ConfigurationManager.AppSettings[BatchConstants.DisPatcherClientOperationTimeout]);
    output = client.Process(input);
  }
}, appKey);

这是用于消费Web服务的代码。 但是我不知道如何从SOAP UI中消耗同样的食物。 添加简单的标头无法正常工作。命名空间和标题有一些棘手的部分。如何通过肥皂UI传递?

I am working through a legacy project .

 {
  using(var scope = new OperationContextScope(client.InnerChannel)) {
    var appKeyMsgHeader = new MessageHeader < string > ("app1"); //Input parameter passed to the current method
    var appKeyUnTypedHeader = appKeyMsgHeader.GetUntypedHeader("AppKey", "Au.CustomHeaders");
    OperationContext.Current.OutgoingMessageHeaders.Add(appKeyUnTypedHeader);
    client.InnerChannel.OperationTimeout =
      TimeSpan.Parse(ConfigurationManager.AppSettings[BatchConstants.DisPatcherClientOperationTimeout]);
    output = client.Process(input);
  }
}, appKey);

This is the code for consuming the WebService.
But I don't know how to consume the same from SOAP UI.
Adding the simple header is not working. There is some tricky part with namespace and header. How to pass this through SOAP UI?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文