Remoting Problem
-
Hi My project is in .net 1.1 I have two windows services server and client in which the client will send requests to server remotely. We have server and client installed in one test server(system 1) and one instance of client is installed in another machine(system2). when any request go from client(system2) to server(system1) like fetching some data from database the requested data is not available in the database i am getting the below error "ERR(-13):Server encountered an internal error. For more information, turn on customErrors in the server's .config file." 2. when the same request sent through the client(system1) to the server(system1)(both client and server are in same machine) i am getting proper error message. "ERR(-1):Missing mandatory parameter 'Scenario'" code : ******* on starup i am doing the below RemotingConfiguration.Configure(AppDomain.CurrentDomain.BaseDirectory + "ContextDataPoolService.exe.config"); RemotingConfiguration.CustomErrorsEnabled(true); what is the solution, is there any mistake in my code?