Как вернуть JSON из webservice

утром,

мне нужно вернуть сообщение из моего веб-сервиса. Ниже приведен пример моего кода, и я возвращаю строку.

[web method]
public string CheckFeedSubmission()
    {
        string responseText = "";
        try
        {
            //Stuff goes here
            responseText = "It Worked!"
        }
        catch (Exception ex) { responseText = "Opps wehave an error! Exception message:" + ex.Message; }
        return responseText ;
    }

в настоящее время я получаю следующий ответ...

<string xmlns="http://tempuri.org/"/>

в идеале я хотел бы вернуть что-то вроде

 {"success" : true, "message" : "***Message Here***"}

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

вся помощь очень ценится, спасибо в advance:)

UPDATE: только что нашел это...

 return "{Message:'hello world'}"

мне нужно что-то вроде

 responseText = "{"success" : true, "message" : "There has been an error. Message: " + ex.Message + ""}"

5 ответов


использование:

[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]//Specify return format.
public string CheckFeedSubmission()
    {
        string responseText = "";
        try
        {
            //Stuff goes here
            responseText = "It Worked!"
        }
        catch (Exception ex) { responseText = "Opps wehave an error! Exception message:" + ex.Message; }
        return responseText ;
    }

результат будет выглядеть так:

<string xmlns="http://tempuri.org/"/>
 {"success" : true, "message" : "***Message Here***"}
</string>

пожалуйста, используйте атрибут для вашего webmethod

   [WebMethod]
    [ScriptMethod(ResponseFormat = ResponseFormat.Json)]

вызывающий абонент установит свой contenttype в application / json для использования webmethod


попробуй это :

[WebMethod] 
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]//Specify return format. 
public bool addUser(UserModel um)
    {
        bool result = false;
        result = Conversion.intToBool(SplashAwardsDB.executeNonQuery(
            "INSERT INTO dbo.User ("
            + "userName, password, firstName, lastName, address, contactNo, birthDate, familyID, familyRole, x, y ) "
            + " VALUES ("
            + "'" + um.userName + "', "
            + "'" + um.password + "', "
            + "'" + um.firstName + "', "
            + "'" + um.lastName + "', "
            + "'" + um.address + "', "
            + "'" + um.contactNo + "', "
            + "'" + um.birthDate + "', "
            + "'" + um.familyID + "', "
            + "'" + um.familyRole + "', "
            + "'" + um.x + "', "
            + "'" + um.y + "')"
            ));
        return result;
    }

чтобы удалить теги XML в ответе Службы, см. Этот ответ в StackOverflow:

ASP.NET WebService обертывает мой ответ JSON с помощью тегов XML


Это мое решение для framewok 4.5.2, В класс FilterConfig добавьте следующий код, Примечание: вам понадобится lib Newtonsoft.

 public class FilterConfig
{
    public static void RegisterGlobalFilters(GlobalFilterCollection filters)
    {
        GlobalConfiguration.Configuration.Formatters.JsonFormatter.SerializerSettings.ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize;
        GlobalConfiguration.Configuration.Formatters.Remove(GlobalConfiguration.Configuration.Formatters.XmlFormatter);
        GlobalConfiguration.Configuration.EnableCors();
        filters.Add(new HandleErrorAttribute());
    }
}