Rockstar_ Ответов: 3

Веб-метод возвращает ошибку JSON


Всем привет,

У меня есть текстовое поле автозаполнения, поиск работает нормально, основываясь на том, что мы вводим в текстовое поле. Если я напишу метод поиска в файле .cs, то он будет работать нормально. но то же самое я пишу в файле .asmx, вызывая следующую ошибку.

В чем же проблема?

Ответ JSON :

Message
    "Authentication failed."

StackTrace
    null

ExceptionType
    "System.InvalidOperationException"
"NetworkError: 500 Internal Server Error - http://localhost:51636/ProjectName/AutoComplete.asmx/SearchCities"

Bernhard Hiller

"в файле .cs работает нормально" - означает ли это: когда вы запускаете код в консольном приложении или приложении Windows вместо IIS или другого веб-сервера?

virang_21

Попробуйте поймать внутреннее исключение при возврате JSON, чтобы увидеть, что именно не удается..

поймать (исключения webexception Векс)
{
результат = ((класс httpwebresponse)Векс.Ответ).StatusDescription;

}

Rockstar_

Ошибка заключается в следующем :

{"Сообщение":"Ошибка аутентификации.","Трассировка стека":null, то"Тип_исключения": система".Исключение InvalidOperationException"}

MairajAhmed

Пожалуйста, смотрите консоль браузера, вы увидите ошибку.

3 Ответов

Рейтинг:
2

Pratik Bhuva

Эта ошибка возникает из-за того, что вы пытаетесь вызвать метод другого домена. это запрещено браузерами в целях безопасности.
здесь вы можете сделать это через Коров(новая функциональность в HTML5).
установить следующее свойство в JavaScript.

$.support.cors = true;

Узнайте о CORS отсюда...
http://www.html5rocks.com/en/tutorials/cors/[^]

И другое решение состоит в том, чтобы использовать JSONP в тип данных для вызова вашей службы.

вот хорошая ссылка, чтобы узнать о типе данных jsonp.
http://www.jquery4u.com/json/jsonp-examples/[^]


Рейтинг:
1

azeezjamal

Используйте приведенный ниже код для вызова ajax, он работает нормально...

$.ajax({

  // The 'type' property sets the HTTP method.
  // A value of 'PUT' or 'DELETE' will trigger a preflight request.
  type: 'GET',

  // The URL to make the request to.
  url: 'http://html5rocks-cors.s3-website-us-east-1.amazonaws.com/index.html',

  // The 'contentType' property sets the 'Content-Type' header.
  // The JQuery default for this property is
  // 'application/x-www-form-urlencoded; charset=UTF-8', which does not trigger
  // a preflight. If you set this value to anything other than
  // application/x-www-form-urlencoded, multipart/form-data, or text/plain,
  // you will trigger a preflight request.
  contentType: 'text/plain',

  xhrFields: {
    // The 'xhrFields' property sets additional fields on the XMLHttpRequest.
    // This can be used to set the 'withCredentials' property.
    // Set the value to 'true' if you'd like to pass cookies to the server.
    // If this is enabled, your server must respond with the header
    // 'Access-Control-Allow-Credentials: true'.
    withCredentials: false
  },

  headers: {
    // Set any custom headers here.
    // If you set any non-simple headers, your server must include these
    // headers in the 'Access-Control-Allow-Headers' response header.
  },

  success: function() {
    // Here's where you handle a successful response.
  },

  error: function() {
    // Here's where you handle an error response.
    // Note that if the error was due to a CORS issue,
    // this function will still fire, but there won't be any additional
    // information about the error.
  }
});


Рейтинг:
0

Rajesh_DotNet

Пожалуйста, взгляните на эту ссылку. Это сработало для меня.

http://stackoverflow.com/questions/23033614/asp-net-calling-webmethod-with-jquery-ajax-401-unauthorized[^]