色尼玛亚洲综合影院,亚洲3atv精品一区二区三区,麻豆freexxxx性91精品,欧美在线91

ASP.NET通過Remoting service上傳文件

最近在因為在學習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

AspNet技術ASP.NET通過Remoting service上傳文件,轉載需保留來源!

鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。

主站蜘蛛池模板: 嘉黎县| 灵丘县| 湟源县| 迭部县| 临邑县| 肥东县| 滕州市| 宁乡县| 钟祥市| 水富县| 滕州市| 清原| 申扎县| 库车县| 怀集县| 江口县| 南郑县| 三亚市| 太康县| 类乌齐县| 鹤庆县| 广宗县| 庆城县| 石渠县| 惠州市| 新闻| 凤凰县| 旬邑县| 临汾市| 新丰县| 策勒县| 伊春市| 鄂州市| 罗甸县| 灵丘县| 巴林左旗| 大兴区| 岚皋县| 元阳县| 曲靖市| 进贤县|