简体   繁体   English

Windows窗体应用程序因.NET Remoting Service失败

[英]Windows Form Application failed with .NET Remoting Service

I am trying to insert data into database by using windows from application . 我正在尝试使用application的Windows将数据插入数据库。 I hosted it into console application . 我将其托管到控制台应用程序中。 I am using .net remoting to invoke the method . 我正在使用.net远程处理来调用该方法。 My host is running without any problem and i also can run the windows form application without any problem . 我的主机正在运行,没有任何问题,我也可以运行Windows窗体应用程序,没有任何问题。 But problem is when i clicked the submit button to insert data i got error.I do not know why i am getting this error . 但是问题是当我单击“提交”按钮以插入数据时出现错误。我不知道为什么会收到此错误。

Exception thrown: 'System.NullReferenceException' in mscorlib.dll Additional information: Object reference not set to an instance of an object. 引发的异常:mscorlib.dll中的'System.NullReferenceException'其他信息:对象引用未设置为对象的实例。 occurred 发生了

Here is the Interface . 这是接口。

namespace IHelloRemotingService
{
    public interface IHelloRemotingService
    {

        void Insert(string Name, string Address, string Email, string Mobile)
    }


}

Here is the Implementation of the interface .. 这是接口的实现..

public class HelloRemotingService : MarshalByRefObject , IHelloRemotingService.IHelloRemotingService
{
    public void Insert(string Name, string Address, string Email, string Mobile)
        {
            string constr = ConfigurationManager.ConnectionStrings["StudentConnectionString"].ConnectionString;
            using (SqlConnection con = new SqlConnection(constr))
            {
                using (SqlCommand cmd = new SqlCommand("AddNewStudent", con))
                {
                    cmd.CommandType = CommandType.StoredProcedure;
                    cmd.Parameters.AddWithValue("@Name", Name);
                    cmd.Parameters.AddWithValue("@Address", Address);
                    cmd.Parameters.AddWithValue("@EmailID", Email);
                    cmd.Parameters.AddWithValue("@Mobile", Mobile);
                    cmd.Connection = con;
                    con.Open();
                    cmd.ExecuteNonQuery();
                    con.Close();

                }
            }
        }
    }
    }

Code for Hosting service .... 托管服务代码....

 namespace RemotingServiceHost
{

    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("          .NET Remoting Test Server");
            Console.WriteLine("          *************************");
            Console.WriteLine();

            try
            {
                StartServer();
                Console.WriteLine("Server started");
                Console.WriteLine();
            }
            catch (Exception ex)
            {
                Console.WriteLine("Server.Main exception: " + ex);
            }

            Console.WriteLine("Press <ENTER> to exit.");
            Console.ReadLine();

            StopServer();

        }

        static void StartServer()
        {
            RegisterBinaryTCPServerChannel(500);

            RemotingConfiguration.CustomErrorsMode = CustomErrorsModes.Off;

            RemotingConfiguration.RegisterWellKnownServiceType(typeof(HelloRemotingService.HelloRemotingService),
                                                               "Insert.rem",
                                                               WellKnownObjectMode.Singleton);
        }

        static void StopServer()
        {
            foreach (IChannel channel in ChannelServices.RegisteredChannels)
            {
                try
                {
                    ChannelServices.UnregisterChannel(channel);
                }
                catch (Exception ex)
                {
                    Console.WriteLine("Server.StopServer exception: " + ex);
                }
            }
        }

        static void RegisterBinaryTCPServerChannel(int port, string name = "tcp srv")
        {
            IServerChannelSinkProvider firstServerProvider;
            IClientChannelSinkProvider firstClientProvider;

            var channelProperties = new Hashtable();
            channelProperties["typeFilterLevel"] = TypeFilterLevel.Full;
            channelProperties["machineName"] = Environment.MachineName;
            channelProperties["port"] = port;


            // create server format provider
            var serverFormatProvider = new BinaryServerFormatterSinkProvider(null, null); // binary formatter
            serverFormatProvider.TypeFilterLevel = TypeFilterLevel.Full;
            firstServerProvider = serverFormatProvider;

            // create client format provider
            var clientProperties = new Hashtable();
            clientProperties["typeFilterLevel"] = TypeFilterLevel.Full;
            var clientFormatProvider = new BinaryClientFormatterSinkProvider(clientProperties, null);
            firstClientProvider = clientFormatProvider;

            TcpChannel tcp = new TcpChannel(channelProperties, firstClientProvider, firstServerProvider);
            ChannelServices.RegisterChannel(tcp, false);
        }
    }
}

Code for windows form application .. Windows窗体应用程序的代码..

   namespace HelloRemotingServiceClient
{
    public partial class InsertStudentData : Form
    {


        public InsertStudentData()
        {
            InitializeComponent();
            RegisterBinaryTcpClientChannel();
        }



        private void button1_Click(object sender, EventArgs e)
        {
            try
            {
                var remService = (IHelloRemotingService.IHelloRemotingService)Activator.GetObject(typeof(IHelloRemotingService.IHelloRemotingService), "tcp://localhost:500/Insert.rem");
                remService.Insert(textName.Text, textAddress.Text, textEmail.Text, textBox1.Text);
                label5.Text = "Recored Inserted Successfully";
            }
            catch (Exception ex)
            {
                MessageBox.Show("Error: " + ex, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }

        }
        private void RegisterBinaryTcpClientChannel(string name = "tcp client")
        {
            IClientChannelSinkProvider firstClientProvider;
            IServerChannelSinkProvider firstServerProvider;

            var channelProperties = new Hashtable();
            channelProperties["name"] = name;
            channelProperties["typeFilterLevel"] = TypeFilterLevel.Full;
            channelProperties["machineName"] = Environment.MachineName;
            channelProperties["port"] = 0; // auto

            // create client format provider
            var clientProperties = new Hashtable();
            clientProperties["typeFilterLevel"] = TypeFilterLevel.Full;
            var clientFormatProvider = new BinaryClientFormatterSinkProvider(clientProperties, null);
            firstClientProvider = clientFormatProvider;

            // create server format provider
            var serverFormatProvider = new BinaryServerFormatterSinkProvider(null, null);
            serverFormatProvider.TypeFilterLevel = TypeFilterLevel.Full;
            firstServerProvider = serverFormatProvider;

            TcpChannel tcp = new TcpChannel(channelProperties, firstClientProvider, firstServerProvider);
            ChannelServices.RegisterChannel(tcp, false);
        }
    }
}

Design of the form .. 表格设计..

在此处输入图片说明

Here is the screen shot of errors messages . 这是错误消息的屏幕截图。

在此处输入图片说明 The text boxes are able to catch the values but why its throwing this error ? 文本框能够捕获值,但为什么会引发此错误?

Here is a working project. 这是一个工作项目。 You did not configure the formatter. 您没有配置格式化程序。

SharedLib Project: SharedLib项目:

namespace IHelloRemotingService
{
  public interface IHelloRemotingService
  {
    void Insert(string Name, string Address, string Email, string Mobile);
  }
}

Server Console Project: 服务器控制台项目:

namespace Server
{
  public class HelloRemotingService : MarshalByRefObject, IHelloRemotingService.IHelloRemotingService
  {
    public HelloRemotingService()
    {
    }

    public void Insert(string Name, string Address, string Email, string Mobile)
    {
      Console.WriteLine("HelloRemotingService.Insert called");

    }

    public override object InitializeLifetimeService()
    {
      return null; // manage lifetime by myself
    }
  }

  class Program
  {
    static void Main(string[] args)
    {
      Console.WriteLine("          .NET Remoting Test Server");
      Console.WriteLine("          *************************");
      Console.WriteLine();

      try
      {
        StartServer();
        Console.WriteLine("Server started");
        Console.WriteLine();
      }
      catch (Exception ex)
      {
        Console.WriteLine("Server.Main exception: " + ex);
      }

      Console.WriteLine("Press <ENTER> to exit.");
      Console.ReadLine();

      StopServer();

    }

    static void StartServer()
    {
      RegisterBinaryTCPServerChannel(500);

      RemotingConfiguration.CustomErrorsMode = CustomErrorsModes.Off;

      RemotingConfiguration.RegisterWellKnownServiceType(typeof(HelloRemotingService), 
                                                         "Insert.rem", 
                                                         WellKnownObjectMode.Singleton);
    }

    static void StopServer()
    {
      foreach (IChannel channel in ChannelServices.RegisteredChannels)
      {
        try
        {
          ChannelServices.UnregisterChannel(channel);
        }
        catch(Exception ex)
        {
          Console.WriteLine("Server.StopServer exception: " + ex);
        }
      }
    }

    static void RegisterBinaryTCPServerChannel(int port, string name = "tcp srv")
    {
      IServerChannelSinkProvider firstServerProvider;
      IClientChannelSinkProvider firstClientProvider;

      var channelProperties                = new Hashtable();
      channelProperties["typeFilterLevel"] = TypeFilterLevel.Full;
      channelProperties["machineName"]     = Environment.MachineName;
      channelProperties["port"]            = port;


      // create server format provider
      var serverFormatProvider             = new BinaryServerFormatterSinkProvider(null, null); // binary formatter
      serverFormatProvider.TypeFilterLevel = TypeFilterLevel.Full;
      firstServerProvider                  = serverFormatProvider;

      // create client format provider
      var clientProperties                = new Hashtable();
      clientProperties["typeFilterLevel"] = TypeFilterLevel.Full;
      var clientFormatProvider            = new BinaryClientFormatterSinkProvider(clientProperties, null);
      firstClientProvider                 = clientFormatProvider;

      TcpChannel tcp = new TcpChannel(channelProperties, firstClientProvider, firstServerProvider);
      ChannelServices.RegisterChannel(tcp, false);
    }
  }
}

Client WinForms Project: 客户端WinForms项目:

namespace Client
{
  public partial class MainForm : Form
  {
    public MainForm()
    {
      InitializeComponent();

      RegisterBinaryTcpClientChannel();
    }

    /// <summary>
    /// The main entry point for the application.
    /// </summary>
    [STAThread]
    static void Main()
    {
      Application.EnableVisualStyles();
      Application.SetCompatibleTextRenderingDefault(false);

      using (MainForm form = new MainForm())
      {
        Application.Run(form);
      }
    }

    /// <summary>
    /// Clean up any resources being used.
    /// </summary>
    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>    
    protected override void Dispose(bool disposing)
    {
      if (disposing)
      {
        foreach (IChannel channel in ChannelServices.RegisteredChannels)
        {
          try
          {
            ChannelServices.UnregisterChannel(channel);
          }
          catch (Exception ex)
          {
            Debug.WriteLine("Client.Dispose exception: " + ex);
          }
        }

        if (components != null)
          components.Dispose();
      }
      base.Dispose(disposing);
    }

    private void _btnAccessServer_Click(object sender, EventArgs e)
    {
      try
      {
        var remService = (IHelloRemotingService.IHelloRemotingService)Activator.GetObject(typeof(IHelloRemotingService.IHelloRemotingService), "tcp://localhost:500/Insert.rem");
        remService.Insert("MyName", "MyAddress", "MyEmail", "MyMobile");
      }
      catch (Exception ex)
      {
        MessageBox.Show("Error: " + ex, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
      }
    }

    private void RegisterBinaryTcpClientChannel(string name = "tcp client")
    {
      IClientChannelSinkProvider firstClientProvider;
      IServerChannelSinkProvider firstServerProvider;

      var channelProperties                = new Hashtable();
      channelProperties["name"]            = name;
      channelProperties["typeFilterLevel"] = TypeFilterLevel.Full;
      channelProperties["machineName"]     = Environment.MachineName;
      channelProperties["port"]            = 0; // auto

      // create client format provider
      var clientProperties                = new Hashtable();
      clientProperties["typeFilterLevel"] = TypeFilterLevel.Full;
      var clientFormatProvider            = new BinaryClientFormatterSinkProvider(clientProperties, null);
      firstClientProvider                 = clientFormatProvider;

      // create server format provider
      var serverFormatProvider             = new BinaryServerFormatterSinkProvider(null, null);
      serverFormatProvider.TypeFilterLevel = TypeFilterLevel.Full;
      firstServerProvider                  = serverFormatProvider;

      TcpChannel tcp = new TcpChannel(channelProperties, firstClientProvider, firstServerProvider);
      ChannelServices.RegisterChannel(tcp, false);
    }
  }
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM