HOW TO:編譯並執行基本遠端應用程式
下列程序說明如何使用 隨附的命令列工具來編譯 HOW TO:建置可遠端處理的型別、HOW TO:建置裝載應用程式,以及 HOW TO:建置用戶端應用程式等主題中建立的基本遠端應用程式。這些主題當中,每個主題內含的指示都能讓您建立包含稱為 type
、client
,以及 listener
子目錄的 remoting
目錄。
若要編譯並執行基本遠端應用程式
在
remoting\type
目錄的命令提示字元上,輸入下列命令:vbc /t:library RemotableType.vb csc /noconfig /t:library RemotableType.cs
將
RemotableType.dll
複製到remoting\client
與remoting\listener
目錄。將
listener.exe.config
複製到remoting\listener
目錄。將
client.exe.config
複製到remoting\client
目錄。在
remoting\listener
目錄的命令提示字元上,輸入下列命令:vbc /r:RemotableType.dll Listener.vb csc /noconfig /r:RemotableType.dll Listener.cs
在
remoting\client
目錄的命令提示字元上,輸入下列命令:vbc /r:RemotableType.dll client.vb csc /noconfig /r:RemotableType.dll Listener.cs csc /noconfig /r:RemotableType.dll Client.cs
在
remoting\listener
目錄的命令提示字元上,輸入Listener
。當
Listener
應用程式執行時,於remoting\client
目錄中開啟新的命令提示字元,然後輸入Client.
請參閱
其他資源
Copyright © 2007 by Microsoft Corporation. All rights reserved.