0

我已经在发送请求时显示名称/命名空间/其他属性的地方,但现在它们已经消失了,我一生都无法弄清楚发生了什么变化......我正在尝试利用 WebApi 项目,但文档似乎有限的。

WebServiceResource.cs:

using System;
using System.Collections.Generic;

using System.Linq;
using System.Web;
using System.ServiceModel;
using System.ServiceModel.Web;
using wsDAL.EDataTypes;
using System.Data;
using System.IO;
using System.Text;
using System.Net.Http;

namespace wsDAL
{
    [ServiceContract]
    public class WebServiceResources
    {
        [WebGet(UriTemplate = "/GetNameValueTest/{name}/{value}")]
        public NameValue GetNameValueTest(string name, string value)
        {
            NameValue nv = new NameValue("WS_" + name + "_WS", "WS_" + value + "_WS");  
            return nv;
        }
    }
}

GeneralResources.cs:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Runtime.Serialization;
using System.Data;

namespace wsDAL.EDataTypes
{
    [DataContract(Name = "NameValueContract", Namespace = "http://fred.NameValue.com")]
    public class NameValue
    {
        private string _name;
        private string _value;

        public NameValue()
        {
            _name = null;
            _value = null;
        }

        public NameValue(string Name, string Value)
        {
            _name = Name;
            _value = Value;
        }

        [DataMember(Name = "NameMember")]
        public string Name { get { return _name; } set { _name = value; } }

        [DataMember(Name = "ValueMember")]
        public string Value { get { return _value; } set { _value = value; } }
    }
}

注意我使用 lightcore 作为 IOC 容器(对这个东西有点新)最初是在http://blog.alexonasp.net/post/2011/04/15/Microsoft-Web-API-e28093-the -REST-is-done-by-WCF-(Part-1).aspx 但是一旦我进入第六部分,他HttpResponseMessage<Contact>从 POST 中返回,一切都开始分崩离析。客户端在返回 xml 时正在寻找命名空间,但这不是序列化响应的一部分......

全球.asax.cs:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Routing;
using LightCore;
using Microsoft.ApplicationServer.Http.Description;
using Microsoft.ApplicationServer.Http.Activation;

....

public static void RegisterRoutes(RouteCollection routes)
{
    routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
    ContainerBuilder builder = new ContainerBuilder();
    builder.Register<IResourceFactory, LightCoreResourceFactory>();

    IContainer container = builder.Build();
    var configuration = HttpHostConfiguration.Create().SetResourceFactory((serviceType, instanceContext, request) => container.Resolve(serviceType), null);

    RouteTable.Routes.MapServiceRoute<WebServiceResources>("ws", configuration);

    routes.MapRoute(
        "Default", // Route name
        "{controller}/{action}/{id}", // URL with parameters
        new { controller = "Home", action = "Index", id = UrlParameter.Optional } 
    );
}

....

好的,我似乎没有意识到,名称/命名空间信息被序列化到服务器,而不是客户端。

4

2 回答 2

0

是否添加了路由表记录?

RouteTable.Routes.MapServiceRoute<WebServiceResources>("GetNameValueTest");
于 2011-09-15T20:48:55.587 回答
0

更新了这个答案...我在客户端上使用了 DataContractSerializer 来添加名称/命名空间信息,而在服务器上我使用的是默认的 WebApi 序列化,它没有添加信息。感谢任何花时间研究此问题的人。

于 2011-09-16T20:45:05.030 回答