1

我创建了一个远程处理应用程序。类库中的代码是

 public class InitialClass1:MarshalByRefObject
{
    int i=0;
    public InitialClass1()
    {

    }
    public string getInitial(string nam)
    {                
        i++;
        if (nam.ToLower() == "naresh") return i.ToString()+").Jadapalli";
        else if (nam.ToLower() == "balu") return i.ToString() + "Gonugunta";
        else if (nam.ToLower() == "murali") return i.ToString() + "Vempuluri";
        else if (nam.ToLower() == "chandra sekhar") return i.ToString() + "Ponnam";
        else if (nam.ToLower() == "aneev") return i.ToString() + "Katti";
        else if (nam.ToLower() == "rajini") return i.ToString() + "Karlapudi";
        else
            return i.ToString() + "No results";

    }
}

控制台应用程序中的代码是

class Program
{
    [STAThread]
    static void Main(string[] args)
    {
        TcpChannel tcp = new TcpChannel(1234);
        ChannelServices.RegisterChannel(tcp,false);
        string s = ConfigurationManager.AppSettings["remote"];
        RemotingConfiguration.RegisterWellKnownServiceType(typeof(InitialClass1),s,WellKnownObjectMode.SingleCall);
        Console.WriteLine("Remoting starting...");
        Console.ReadLine();            
    }
}

Windows 应用程序中的代码是

 private void button1_Click(object sender, EventArgs e)
    {
        label3.Text = Icls.getInitial(textBox1.Text);
    }

    private void Form1_Load(object sender, EventArgs e)
    {

         string url = ConfigurationManager.AppSettings["remote"];
        TcpChannel chan = new TcpChannel();
        ChannelServices.RegisterChannel(chan, false);

        RemotingConfiguration.ApplicationName = "TestRemoting";
        RemotingConfiguration.RegisterActivatedClientType(typeof(InitialClass1), url);

        Icls = new InitialClass1();

    }

它显示为异常Requested Service not found

App.Config 文件中的代码是

<configuration>
  <appSettings>
    <add key="remote" value="tcp://localhost:1234/TestRemoting"/>
  </appSettings>
</configuration>
4

2 回答 2

0

我的错误是服务器对象是控制台应用程序

TcpChannel tcp = new TcpChannel(1234);
    ChannelServices.RegisterChannel(tcp,false);
    string s = ConfigurationManager.AppSettings["remote"];
    RemotingConfiguration.RegisterWellKnownServiceType(typeof(InitialClass1),s,WellKnownObjectMode.SingleCall);
    Console.WriteLine("Remoting starting...");
    Console.ReadLine(); 

请参阅注册我正在传递 s 值(即来自 app.config 文件 tcp://localhost:1234/TestRemoting 的整个 url)。那就是问题所在。实际上,我们必须根据您的意愿在服务器对象中提供所需的名称,但相同的名称只能在 app.config 文件中。

这里我的网址是tcp://localhost:1234/TestRemoting。在这种情况下,我们需要将TestRemoting服务器对象作为

RemotingConfiguration.RegisterWellKnownServiceType(typeof(InitialClass1),"TestRemoting",WellKnownObjectMode.SingleCall);

那只是我的问题。现在我的应用程序运行良好..

于 2013-08-07T12:35:36.590 回答
0

我认为您应该尝试使用 button1_click 方法进行初始化。因为您希望在单击按钮时对其进行初始化。

于 2013-08-06T11:26:37.717 回答