始终在 WCF 服务中返回带有 Json 的 XML 字符串

本文关键字:Json XML 字符串 返回 WCF 服务 | 更新日期: 2023-09-27 17:56:55

我有始终返回的 WCF 服务:

<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/"> JSON STRING </string>

我只想要 JSON 字符串部分。我已经在stackoverflow中阅读了一些帖子并尝试了解决方案,但我无处可去。这是我的代码:

[ServiceContract]
public interface IUserService
{
    [OperationContract]
    [WebGet(BodyStyle = WebMessageBodyStyle.Bare, RequestFormat = WebMessageFormat.Json,
    ResponseFormat = WebMessageFormat.Json, UriTemplate = "GetUserById?x={uid}")]
    string getUserByUID(string uid);

接口实现:

public class UserService : IUserService
{
    public string getUserByUID(string uid)
    {
        UserDAO mUserDAO = UserService.getUserDAO();
        User mUser = mUserDAO.getUserByUID(Convert.ToInt64(uid));
        if (mUser != null)
        {
            mUserDAO.close();
            return JsonConvert.SerializeObject(mUser);
        }

网页配置:

    <behavior name="restfulBehavior">
      <webHttp />
    </behavior>

Retrofit的呼吁:

D/Retrofit﹕ ---> HTTP GET http:http://localhost/UserService.svc/GetUserById?x=1
D/Retrofit﹕ Content-Type: application/json
D/Retrofit﹕ ---> END HTTP (no body)

从服务器返回

D/Retrofit﹕ <--- HTTP 200 http://localhost/UserService.svc/GetUserById?x=1 (92ms)
D/Retrofit﹕ Content-Length: 446
D/Retrofit﹕ Content-Type: application/xml; charset=utf-8
D/Retrofit﹕ Server: Microsoft-IIS/7.5
D/Retrofit﹕ X-Powered-By: ASP.NET
D/Retrofit﹕ Date: Thu, 18 Jun 2015 03:32:53 GMT
D/Retrofit﹕ OkHttp-Selected-Protocol: http/1.1
D/Retrofit﹕ OkHttp-Sent-Millis: 1434598232505
D/Retrofit﹕ OkHttp-Received-Millis: 1434598232588
D/Retrofit﹕ <string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">{JSON STRING}</string>
D/Retrofit﹕ <--- END HTTP (446-byte body)

我在这里错过了什么?

提前谢谢你。

始终在 WCF 服务中返回带有 Json 的 XML 字符串

您需要声明内容类型和接受类型才能接收 JSON 响应。

我不确定你如何称呼你的服务。我将用 C# 编写一个示例。但是,它可以很容易地翻译成任何其他语言。

WebClient wc = new WebClient(); 
wc.Headers.Add("Content-Type", "application/json; charset=utf-8");
wc.Headers.Add("Accept", "application/json");
wc.DownloadString("http://yourUrl.com/GetUserById?x=1");

它对我有用:)

关于这个问题,这是一个基础设施问题 当我测试时,FTP 没有更新站点,并且代码中的更新没有反映。

但我发现我的代码也是错误的。您可以在下面找到现在正在运行的那个。我希望它可以帮助其他人。

public class UserService : IUserService
{
    public User getUserByUID(string uid)
    {
        UserDAO mUserDAO = UserService.getUserDAO();
        User mUser = mUserDAO.getUserByUID(Convert.ToInt64(uid));
        if (mUser != null)
        {
            mUserDAO.close();
            return mUser;
        }