方法 : 基本的なリモート処理アプリケーションをコンパイルして実行する
次の手順では、 に付属しているコマンド ライン ツールを使用して、「方法 : リモート処理が可能な型を構築する」、「方法 : ホスト アプリケーションを構築する」、「方法 : クライアント アプリケーションを構築する」の各トピックで構築した基本的なリモート処理アプリケーションをコンパイルする方法について説明します。これらの各トピックの手順では、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
」と入力します。
関連項目
その他の技術情報
基本的な .NET Framework リモート処理アプリケーションの構築
Copyright © 2007 by Microsoft Corporation.All rights reserved.