博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
在Web Service中傳送Dictionary
阅读量:6033 次
发布时间:2019-06-20

本文共 3982 字,大约阅读时间需要 13 分钟。

有個需求,想在Web Service中傳遞Dictionary<string, string>參數,例如:

排版顯示純文字
[WebMethod]
public Dictionary
Process(Dictionary
dct)
{
//Do something on the Dictionary
//... blah blah blah ....
 
return dct;
}

天不從人願,以上的寫法會產生Web Service不支援IDictionary的錯誤:

The type System.Collections.Generic.Dictionary`2[[System.String, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[System.String, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] is not supported because it implements IDictionary.

既是IDictionary的原罪,就算是換用Hashtable、ListDictionary應該也是同樣結果,測試之下果然無一倖免。

Google發現討論區有篇來自MS RD的留言,算是證實這是先天限制:

ASMX web services do not support types that implement IDictionary since V1. This is by design and was initially done since key-value constraints could not be appropriately expressed in schema.

來源: 

既然是By Design,就只有繞道而行。Survey了一下,找到一些建議做法:

  • 改用XML
  • 使用DataSet
  • 另外自訂Class作為參數
  • 以DictionaryEntry[]瓜代之

評估了一下,我原本想要借重的就是Dictionary Key/Value的單純資料結構,XML為開放格式不易限制成Key/Value的形式;小小需求動用到DataSet略嫌笨重;自訂Class在編譯時期就要確定Key的種類,不符本案例的前題。看來DictionaryEntry[]較合需求,因此我試寫如下: (剛好Dictionary與DirectionaryEntry的雙向轉換都有示範到)

排版顯示純文字
[WebMethod]
public DictionaryEntry[] Test(System.Collections.DictionaryEntry[] entries)
{
//用ListDictionary主要是為了稍後可以直接CopyTo轉DictionaryEntry[]
//若有效率或其他考量,可改用其他Collection Class
ListDictionary dct = new ListDictionary();
foreach (DictionaryEntry de in entries)
dct.Add(de.Key, de.Value);
 
//Do something on the Dictionary
//... blah blah blah ....
if (dct.Contains("Kuso"))
dct["Kuso"] = "殺很大";
 
DictionaryEntry[] result = new DictionaryEntry[dct.Count];
dct.CopyTo(result, 0);
return result;
}

呼叫端範例如下:

排版顯示純文字
protected void Page_Load(object sender, EventArgs e)
{
localhost.AFAWebService aws = new localhost.AFAWebService();
aws.Credentials = CredentialCache.DefaultCredentials;
Dictionary
dct = new Dictionary
();
dct.Add("Kuso", "你不要走");
//DictionaryEntry在Web Service傳遞時會被當成自訂類別
//因此要用namespace.DictionaryEntry而非System.Collections.DictionaryEntry
List
lst = new List
();
foreach (string key in dct.Keys)
{
localhost.DictionaryEntry de = new localhost.DictionaryEntry();
de.Key = key;
de.Value = dct[key];
lst.Add(de);
}
localhost.DictionaryEntry[] result = aws.Test(lst.ToArray());
Dictionary
dctRes = new Dictionary
();
foreach (localhost.DictionaryEntry de in result)
dctRes.Add(de.Key.ToString(), de.Value.ToString());
Response.Write(dct["Kuso"] + "->" + dctRes["Kuso"]);
Response.End();
}

經過這番來回折騰,這方法看來也不怎麼簡潔。

於是,我又嘗試了,做法上要在Web Service與Client端都Reference這個自訂物件,而且使用Visual Studio的Add Web Reference時,自動產生的Proxy Class宣告中SerializableDictionary會被當成DataSet而失敗,因此得改成手動產生Proxy Class後再將DataSet改回SerializableDictionary:

C:\AppCodeFolder\>wsdl http: //localhost/myweb/afawebservice.asmx?WSDL /l:cs /n:localhost /out:AfaWebServiceProxy.cs
Microsoft (R) Web Services Description Language Utility
[Microsoft (R) .NET Framework, Version 2.0.50727.42]
Copyright (C) Microsoft Corporation. All rights reserved.
Writing file 'AfaWebServiceProxy.cs'.

 

用了SerializableDictionary後,程式碼簡化許多:

排版顯示純文字
[WebMethod]
public SerializableDictionary
Test(
SerializableDictionary
dct)
{
if (dct.ContainsKey("Kuso"))
dct["Kuso"] = "殺很大";
return dct;
}

呼叫端也很單純:

排版顯示純文字
protected void Page_Load(object sender, EventArgs e)
{
localhost.AFAWebService aws = new localhost.AFAWebService();
aws.Credentials = CredentialCache.DefaultCredentials;
SerializableDictionary
dct =
new SerializableDictionary
();
dct.Add("Kuso", "你不要走");
SerializableDictionary
dctRes = aws.Test(dct);
Response.Write(dct["Kuso"] + "->" + dctRes["Kuso"]);
Response.End();
}

但是,這個做法需要在Web Service與Client端加入自訂元件參照、Proxy Class需要手動增加或修改,還是有些許不便。這樣看來,DataSet或XML法雖有其他缺點,但內建支援的特點,在力求簡單的場合裡,倒也值得納入考量吧!

转载于:https://www.cnblogs.com/zhangchenliang/p/3919650.html

你可能感兴趣的文章
[浪子学编程][MS Enterprise Library]ObjectBuilder之创建策略祥解(二)
查看>>
ASP.NET 中设置路径的三种方式
查看>>
EBS使用 Distributed AD在多个节点并行adpatch
查看>>
windows添加和删除服务
查看>>
关于云栖,有点无语的几个地方,管理能不能管?
查看>>
Windows线程的同步与互斥
查看>>
C#进阶系列——MEF实现设计上的“松耦合”(四):构造函数注入
查看>>
AngularJs ng-change事件/指令(转)
查看>>
linux系统下安装两个或多个tomcat
查看>>
ProtoBuffer 简单例子
查看>>
iOS多线程开发系列之(一)NSThread
查看>>
微信小程序初体验(上)- 腾讯ISUX社交用户体验设计成员出品
查看>>
SAP WM Physical Inventory Method ST & PZ
查看>>
一次快速的数据迁移感悟
查看>>
MySQL修改提示符
查看>>
《ELK Stack权威指南(第2版)》一3.6 Java日志
查看>>
C++流的streambuf详解及TCP流的实现
查看>>
《量化金融R语言初级教程》一2.5 协方差矩阵中的噪声
查看>>
mysql到elasticsearch数据迁移踩坑实践-Ali0th
查看>>
Python轻量级数据分析库DaPy
查看>>