0

我托管了一个由 jQuery ajax从ASP.NET 1.1调用的 Web 服务。

这是我用来调用网络服务的代码:

function OnTrimLevelChange() 
{
    var $jDecode = jQuery.noConflict();
    var vin = $jDecode("input[id*=txtVIN]").val();
    var styleId = '';
    var paramList = '{"vin": "' + vin + '","styleID": "' + styleId + '"}';
    try
    {

        $jDecode.ajax({
            type: 'POST',
            contentType: 'application/json; charset=utf-8',
            url: 'http://192.168.10.10/VINDecoder/service.asmx/CallADSWebMethod',
            data: paramList,
            dataType: 'json',
            success: function(data) {
                alert('I am here');
        },
            error: function(xml,textStatus,errorThrown) {
                alert(xml.status + "||" + xml.responseText);
            }
        });
    }
    catch(er)
    {
    }
}

==================================================== =====
以上总是会出错的部分
错误:
xml.status = 0
xml.responseText = null

网络方法代码是:

[WebMethod]
public VINDescription CallADSWebMethod(string vin, string styleID)
{
       VehicleDescription vehicleDescription = FetchVehicleInfo(vin, true, styleID);

        VINDescription vinDescription = new VINDescription();

        try
        {
            if (vehicleDescription != null)
            {
                //Check if the response status of the call is successful or not.
                if (vehicleDescription.responseStatus.description.Equals("Successful"))
                {
                    vinDescription = AddToVINDescription(vehicleDescription);

                }
            }
        }
        catch (NullReferenceException ex)
        {
        }
        return vinDescription;
}

注意:网络服务是在 .Net 4.0 中创建的,而我从中调用的站点是在 1.1 中。它们托管在不同的服务器中。

请让我知道我在这里缺少什么或者我在做她的什么错误..

4

1 回答 1

0

需要在 Web 服务中启用脚本服务执行。像这样 :

[ScriptService]
于 2012-09-12T07:58:49.243 回答