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 ですが、彼がPOSTから戻ってくるパート6に到達HttpResponseMessage<Contact>すると、すべてがバラバラになり始めました。クライアントはxmlを返すときに名前空間を探していましたが、それはシリアル化された応答の一部ではありませんでした...

Global.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

これに関する回答を更新しました...名前/名前空間情報を追加していたクライアントでDataContractSerializerを使用していましたが、サーバーでは情報を追加していないデフォルトのWebApiシリアル化を使用していました。これを調査するのに時間を割いてくれた人に感謝します。

于 2011-09-16T20:45:05.030 に答える
0

ルーティングテーブルレコードを追加しましたか?

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