gpt4 book ai didi

c# - 消息=服务器无法识别 HTTP header SOAPAction : error 的值

转载 作者:太空宇宙 更新时间:2023-11-03 18:47:02 25 4
gpt4 key购买 nike

大家好,我创建了一个网络服务。我可以使用 SOAPUI 访问 Web 服务,但是当我尝试通过我的代码调用时,出现此错误。有什么想法吗?

好的网络服务代码如下所示:

[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[WebServiceBindingAttribute(Name = "SoapBinding", Namespace = "xyz")]
[System.ComponentModel.ToolboxItem(false)]
[WebService(Namespace = "http://Search")]
// To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line.
// [System.Web.Script.Services.ScriptService]
public class Stub : System.Web.Services.WebService
{
public Stub()
{
Log.Debug(this,string.Format("this is just a test message"));
}


[WebMethod]
public Response searchAsset(Request serviceTag)
{
}

我的客户端代码是:

Search _search = new Search();
_search.url;
_search.n.wcred;
_search.searchAsset(request);

最佳答案

这解决了我的 SoapAction 问题:

[SoapDocumentService(RoutingStyle = SoapServiceRoutingStyle.RequestElement)]

SoapServiceRoutingStyle EnumerationSoapAction SOAP 消息基于 SOAPAction HTTP header 进行路由。RequestElement SOAP 消息基于 SOAP 消息的 XML 元素之后的第一个子元素进行路由。

关于c# - 消息=服务器无法识别 HTTP header SOAPAction : error 的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3460660/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com