我正在遠程登錄到具有GAC中的Orcale.DataAccess.dll的服務器。然而,當我在.dll文件調用一個函數,我得到以下異常: 'Could not load file or assembly 'Orcale.DataAccess, Version=2.112.2.0, Culture=netural, PublicKeyToken=89b483f429c47342' or one of
我從MarshalByRefObject繼承的類,並在它我重寫終身服務給它兩個InitialLeaseTime一個小時: public override object InitializeLifetimeService()
{
// Expire after two hours.
var lease = (ILease)base.InitializeLifetimeServi
我試圖將現有的C#項目移植到一個新的分佈式項目中,使用連接客戶端和服務器組件(其Sokoban遊戲進行大學練習)的接口。 這裏是我的問題: 在一個組件,說:Level.cs,我有: Level.cs namespace Sokoban
{
public enum MoveDirection { Right, Left, Down, Up }
public class Level
我將創建簡單的程序Console App C#.NET 4.0以便遠程加載DLL文件。 我的代碼正常工作負載DLL上的本地計算機,但我得到的問題解決DLL試圖遠程加載時。 我不知道要處理這個,因爲我找不到任何遠程加載dll的代碼示例。 我得到的錯誤如下。 Could not load file or assembly 'http://codesanook.cloudapp.net/dll/ZupZ
class myremoteobject:MarshalByRefObject
{
public myremoteobject()
{
Console.WriteLine("hi there");
}
}
class Program
{
static void Main(string[] args)
{
HttpC