gpt4 book ai didi

web-services - 如何使用 jQuery 调用 WCF Web 服务 (.svc)

转载 作者:行者123 更新时间:2023-12-01 05:59:39 24 4
gpt4 key购买 nike

您好,我正在尝试调用 WCF Web 服务(.svc)

$.ajax({
url: 'http://www.somedoamin.com/Services/service.svc',
dataType: "text/xml",
contentType:'text/xml; charset=utf-8',
beforeSend: function(xhr){
// Pass the soap action onto the proxy.
xhr.setRequestHeader(
"SOAPAction","http://www.anotherdomain.com/Services/Login"
);
},
data:soapMessage,
type: 'POST',
success: function(res) {
var myXML = res.responseText;
console.log('Response ',myXML);
},
error:function(jqXHR, textStatus, errorThrown,exception) {
console.log('An error occured ');
}
});

我收到错误回调。 “发生错误”

那么,我是否需要向 WCF 服务添加一些参数?

最佳答案

关于web-services - 如何使用 jQuery 调用 WCF Web 服务 (.svc),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12506892/

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