简体   繁体   English

错误的请求-带有jQuery Post的WCF

[英]Bad Request - WCF with jQuery Post

I get a Bad Request Error 400 when I attempt to load Stats from my WCF Service. 尝试从WCF服务加载统计信息时收到“错误请求错误400”。 My call looks like so. 我的电话看起来像这样。 I pulled out the date parameter to see if that was the cause, but no luck still getting the same error. 我拉出了date参数,看是否是原因,但还是没有运气得到同样的错误。

function WCFJSON() {
//var now = new Date();
//var getFromDate = dateToWcf(new Date(now - (60000 * 1440)));

var dt = new Date(now);
var dt1 = new Date(Date.UTC(dt.getFullYear(), dt.getMonth(), dt.getDate(), dt.getHours(), dt.getMinutes(), dt.getSeconds(), dt.getMilliseconds()));
var getFromDate = dt1.toMSJSON();

var userid = "1";
m_Type = "POST";
m_Url = "https://dev-04.boldgroup.int/ManitouDashboard/DashboardProxyService.svc/GetStats"
m_Data = JSON.stringify({getFromDate: "'" + getFromDate + "'",getValueList: [1,2,3]});
m_DataType = "json";
m_ProcessData = true;             
CallService();
}

Date.prototype.toMSJSON = function () {
var date = '//Date(' + this.getTime() + ')//'; //CHANGED LINE
return date;
}; 

function CallService() {
$.ajax({
    type: m_Type,           //GET or POST or PUT or DELETE verb                  
    url: m_Url,                 //Location of the service   
    data: m_Data,
    dataType: m_DataType,   //Expected data format fserver                  
    processdata: m_ProcessData, //True or False
    crossdomain: true,    
    contentType: "application/json; charset=utf-8",             
    success: function (msg) {   //On Successfull service call                      
        ServiceSucceeded(msg);
    },
    error: function (jqXHR, textStatus, errorThrown) {
        ServiceFailed("jqXHT: " + jqXHR.result + "Text Status: " + textStatus + " Error Thrown: " + errorThrown );
    } // When Service call fails              
});
}

The IDashboardWCFService Interface looks like this: IDashboardWCFService接口如下所示:

[ServiceContract]
public interface IDashboardWCFService
{
    [OperationContract]
    [WebInvoke(UriTemplate = "GetStats", ResponseFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.Wrapped)]
    Dictionary<int,List<StatValue>> GetStats(DateTime getFromDate, List<int> getValueList);

    [OperationContract]
    [WebGet(UriTemplate = "GetStatTypes", ResponseFormat = WebMessageFormat.Json)]
    List<StatType> GetStatTypes();
}

Seems like you are trying to perform a cross domain web service call via $ajax method. 似乎您正在尝试通过$ ajax方法执行跨域Web服务调用。 In that case your m_dataType value should be "jsonp" rather than "json" . 在这种情况下,您的m_dataType值应为"jsonp"而不是"json"

Similar question here . 这里有类似的问题。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM