我有这个对象,我以 JSON 格式提交给 WCF
var j= {
"Omschrijving": escape(encodeURI(document.getElementById('descr').value.trim())),
"Foto" : "...", // VERY LONG STRING HERE (150 000 characters),
"XCo": pLocation.x,
"YCo": pLocation.y,
"user": login,
"Adres":escape(encodeURI(document.getElementById('map-location').innerHTML)),
"Type": $('#meldingType').val()
};
为了这个问题,已经删除了 foto 属性。它计算了大约 150k 个字符。
这是从我的 phonegapp 应用程序调用 WCF 的请求:
function corsRequest(j, url){
response = "-9";
var xhr = createCORSRequest('POST', url);
if (!xhr) {
navigator.notification.alert("Gelieve een andere internetbrowser als standaard in te stellen.", null, "Fout");
return;
}
// Response handlers.
xhr.onload = function () {
response = xhr.responseText;
};
//xhr.send(JSON.stringify(j).replace(/"/g, '\''));
var notJson = '"'+JSON.stringify(j).replace(/"/g, '\'')+'"';
//alert(notJson);
xhr.setRequestHeader("Content-type", "application/json");
xhr.send(notJson);
我有这个作为 web.config
<basicHttpBinding>
<binding name="crossDomain" maxReceivedMessageSize="10485760">
<readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
</binding>
</basicHttpBinding>
<webHttpBinding>
<binding name="crossDomain" crossDomainScriptAccessEnabled="true" maxReceivedMessageSize="10485760">
<readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
</binding>
</webHttpBinding>
[...]
<services>
<service name="CeviService.CeviSpotter" behaviorConfiguration="MyServiceTypeBehaviors">
<endpoint contract="IMetadataExchange" binding="mexHttpBinding" address="mex"/>
<endpoint address="ajaxEndpoint" binding="webHttpBinding" contract="CeviService.ICeviSpotter" behaviorConfiguration="AjaxBehavior" bindingConfiguration="crossDomain">
<identity>
<dns value="localhost" />
</identity>
</endpoint>
</service>
</services>
问题是:当我提交一个长 JSON 字符串(150k+ 个字符)时,它在 localhost 上运行良好。它给了我它应该在成功提交时返回的值。但是,当 web 服务上线时,我得到的响应(如果服务器连接建立或 20 秒后(超时)会发出警报)是空的。这很奇怪,因为响应一开始就设置为 -9。如果 20 秒后响应仍为 -9,则表示服务器超时。如果它是-1(由服务器设置),则存在服务器错误(如语法错误或其他东西)。如果为 1,则命令和函数已成功执行。所以它显示的警报只是空的。并且这些值不会提交到数据库。
现在,我做错了什么,还是因为服务器设置?(它适用于本地主机,但不是当我把它放到网上时)
提前致谢
编辑:WCF 被 try-catch 包围,所以不可能有空响应