程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> ASP.NET基礎 >> asp.net下使用DIME協議上傳文件

asp.net下使用DIME協議上傳文件

編輯:ASP.NET基礎
在某些Web Service的應用場景下,例如公文的傳送,在Web Service返回結果的同時將word文檔及其它附件返回,這時候可以使用DIME協議來進行文件的傳輸。使用它來傳輸不需要經過SOAP消息的序列化/反序列化,有很高的效率。當然這裡要用到Web Services Enhancements (WSE) ,目前的最新版本為3.0。本文中所使用的版本為2.0sp2,有趣的是WSE的各個版本中的命令空間都有很大的變化。這一點的確有點讓人苦惱!在安裝WSE時推薦將Visual Studio Tools也安裝上,這樣會免去手工修改Web Service的Web.config文件的工作。
本文的示例下載:http://www.cnblogs.com/Files/lcybest/DIMESample.rar
Web Service:
首先要引用Microsoft.Web.Services2.dll,修改Web.config文件,將下面這段配置添加進去:
<webServices>
<soapExtensionTypes>
<add type="Microsoft.Web.Services2.WebServicesExtension, Microsoft.Web.Services2, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" priority="1" group="0" />
</soapExtensionTypes>
</webServices>
</system.web>
如果你安裝了WSE的Visual Studio工具,以上工作可以通過工具來實現。
下面的代碼演示了在ResponseSoapContext中加入DIME附件的實現:
[WebMethod]
public string GetDocument(string DocumentId)
{
if(DocumentId.Length==0)
return "DocumentId can not be empty!";
Attachment attach=new Attachment(Guid.NewGuid().ToString(),@"D:\test.doc");
Microsoft.Web.Services2.ResponseSoapContext.Current.Attachments.Add(attach);
return "SendOK";
}
我們使用一個windows應用程序來演示一下可以接收Web Service附件的客戶端
首先要將Microsoft.Web.Services2.dll引用到項目中,添加對Web Service的引用。此時如果安裝了WSE工具會自己動生成一個以“WSE”為結尾的代理類。在代碼中可以直接使用這個代理類。
如果沒有安裝工具則需要手工修改Visual Studio生成的代理類,代理類默認是從System.Web.Services.Protocols.WebClientProtocol繼承的,在這裡要修改為從Microsoft.Web.Services2.WebServicesClientProtocol來繼承。
在我們客戶端中可以通過以下代碼來實現將Response中的文件取出來保存到文件系統中:
 程序代碼
private void button1_Click(object sender, System.EventArgs e)
{
TalkServer.DataInterface client=new DIMEClient.TalkServer.DataInterface();
string strvalue=client.GetDocument("test111");
if(client.ResponseSoapContext.Attachments.Count==0)
{
MessageBox.Show("No Attachments in the webservice response!");
return;
}
Microsoft.Web.Services2.Attachments.Attachment attach;
attach=client.ResponseSoapContext.Attachments[0];
byte[] buffer=new byte[attach.Stream.Length];
client.ResponseSoapContext.Attachments[0].Stream.Read(buffer,0,buffer.Length);
System.IO.FileStream stream=new System.IO.FileStream(@"C:\test.doc",System.IO.FileMode.Create);
stream.Write(buffer,0,buffer.Length);
stream.Flush();
stream.Close(); 
if(strvalue=="SendOK")
MessageBox.Show("Receive succeed");
else
MessageBox.Show("Receive fail");
}
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved