|
本文的示例下載: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");
}
AspNet技術:asp.net下使用DIME協議上傳文件,轉載需保留來源!
鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。