ASP.NET通過Remoting service上傳檔案的執行個體詳解

來源:互聯網
上載者:User
最近在因為在學習Remoting,純粹只是瞭解一下,發現Remoting確實是好東西。

我們通常有三種方式來使用remoting,一種是

第一種:Publishing a public object
公開的對象建立在本地
第二種:Remote creation of a public object (SAO)
對象建立在用戶端請求中
第三種:Remote creation of a private object (CAO)
對象建立在HOST上,用戶端引用伺服器上的對象

目次我也沒有很好理解這三種的本質區別在哪裡。而這三種方式的remoting建立方式也不相同。

第一種方式
Host:
ChannelServices.RegisterChannel (new TcpChannel(1500));
cTransfer Trans = new cTransfer();
RemotingServices.Marshal (Trans, "TestService");Client:
cTransfer T = (cTransfer) Activator.GetObject(typeof(cTransfer),
"tcp://host:1500/TestService");
第二種方式
Host:
ChannelServices.RegisterChannel (new TcpChannel(1500));
RemotingConfiguration.RegisterWellKnownServiceType(typeof(cTransfer),
"TestService", WellKnownObjectMode.Singleton);Client:
cTransfer T = (cTransfer) Activator.GetObject(typeof(cTransfer),
"tcp://host:1500/TestService");
第三種方式
Host:
ChannelServices.RegisterChannel (new TcpChannel(1500));
RemotingConfiguration.RegisterActivatedServiceType(typeof(cTransfer));Client:
object[] attr = {new UrlAttribute("tcp://host:1500")};
object[] args = {"Sample constructor argument"};
cTransfer T = (cTransfer) Activator.CreateInstance(typeof(cTransfer), args, attr);
如果我們需要一個對象(object)允許遠程調用處理,那麼這個對象(object)需要繼承於MarshalByRefObject這個類。

如何在remoting中傳送檔案呢?基本思路就是在client開啟client的檔案,轉換在Byte[]類型之後調用host的對象。
Client與Host之間傳送的對象
[Serializable]
public struct kAction
{
public string filename;
public byte[] context;

};開啟檔案,將流位元組儲存到Context中去
Stream fileStream=File.Open(this.transFileName.Text,FileMode.Open);
fileStream.Position=0;
byte[] Content = new byte[((int) fileStream.Length) + 1];
fileStream.Read(Content,0,Content.Length) ;
在Host在讀取到Kaction之後,把它儲存到指定檔案夾下面
MemoryStream meoeryStream=new MemoryStream(k_Action.context);
FileStream fileStream=new FileStream(@"d:\"+k_Action.filename,FileMode.Create);
meoeryStream.WriteTo(fileStream);
fileStream.Close();
meoeryStream.Close();
發現不能在對象中又定義新的對象。在準備發送到HOST上會提示“包含潛在危險的類型”。
[Serializable]
public struct kAction
{
public string filename;
public byte[] context;
public FineInfo fileInfo;//這裡

};
記錄一下自己的心得。有空我會好好整理下下回做篇完整點的。

cnzc's blogs

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.