背景:
我创建了一个运行良好的WCF服务(.NET 3.5),由于跨域限制(服务与包含的网页位于不同的服务器上),因此需要使用JavaScript服务javascript),标准肥皂贴不起作用。我更改了一些配置,根据微软博客文章向该方法添加了一个WebInvoke属性,并使该服务与GET一起工作,并确认该方法通过soapUI测试工作。我试图在JSFiddle上建立一个例子,但因为这是一个内联网服务,我显然无法让它工作。
以下是我的SVC.cs文件中的方法: (我在尝试解决这个问题时对配置文件进行了一些代码更改和更改)
// On the interface that defines the contract
[OperationContract]
[WebGet]
string Post(string questionid, string answervalue);
// In my actual service file code behine.
public string Post(string questionid, string answervalue)
{
Guid dataid = _dataProvider.Post(questionid, answervalue);
_dataProvider.Log(retval.ToString());
return dataid.ToString();
}
现在,如果我只输入URL,我会得到GUID的字符串表示,表示该值。
http://localhost/WebPostSvc.svc/json/Post?questionid=207&answervalue=207009
returns: "<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">04bb6445-b1af-4214-8f8b-cf66bb15467f</string>"
以下是我想要开始工作的JavaScript:
<script type="text/javascript">
// string functions to allow formatted output
String.prototype.format = function() {
var args = arguments;
return this.replace(/{(\d+)}/g, function(match, number) {
return typeof args[number] != 'undefined'
? args[number]
: match
;
});
};
$(function()
{
$('.testpostbtn').click(function() {
$.jsonp({
url: "ttp://localhost/WebPostSvc.svc/json/Post?questionid=207&answervalue=207009",
callbackParameter: "callback",
"success" : function(data) {
alert(data);
},
"error" : function(d, msg) {
alert(
"Could not post the data\ncallback={0}\ncallbackParameter={1}\nurl={2}\n{3}\n"
.format(d.callback, d.callbackParameter, d.url, msg)
);
}
});
alert('request sent!');
});
});
</script>
$ .jsonp方法来自:
// jquery.jsonp 2.3.1 (c)2012 Julian Aubourg | MIT License
// https://github.com/jaubourg/jquery-jsonp
我必须使用的是从方法返回的错误,我将其发送到警告框:
Could not post the data
callback=_jqjsp
callbackParameter=callback
url=http://localhost/WebPostSvc.svc/json/Post?questionid=207&answervalue=207009
error
返回的唯一错误消息是“错误”,这不是很有帮助。
我确信我只是错误地使用了该方法,我需要知道:
我做错了什么?
答案 0 :(得分:0)
1)要启用get crossdomain与WCF一起使用,您可能需要配置绑定。
我从http://bendewey.wordpress.com/2009/11/24/using-jsonp-with-wcf-and-jquery/复制的示例请参阅crossDomainAccessEnabled属性。
<system.serviceModel>
<behaviors>
<endpointBehaviors>
<behavior name="webHttpBehavior">
<webHttp />
</behavior>
</endpointBehaviors>
</behaviors>
<bindings>
<webHttpBinding>
<binding name="webHttpBindingWithJsonP" crossDomainScriptAccessEnabled="true" />
</webHttpBinding>
</bindings>
<services>
<service name="ServiceSite.CustomersService">
<endpoint address="" binding="webHttpBinding"
bindingConfiguration="webHttpBindingWithJsonP"
contract="ServiceSite.CustomersService"
behaviorConfiguration="webHttpBehavior"/>
</service>
</services>
</system.serviceModel>
2)使用可调试的工具。 Chrome内置了很好的开发人员工具,在Firefox中你可以安装firebug。这两个工具都可以捕获网络请求并为您提供一些信息。
通常,如果请求永远不会被触发,并且您仍然会收到错误,那么函数调用就会出错,如果请求失败,服务器上的某些内容就会被阻塞。通常,您可以查看响应并获取更多信息。如果响应返回ok,但在dataformat出错之后失败。