Exteranal config for Remoting cause big problem
-
OK I tried to double chech (5 times at least acctually) all things, still when I replace this code:
HttpChannel c = new HttpChannel(32469); ChannelServices.RegisterChannel(c); RemotingConfiguration.RegisterWellKnownServiceType( typeof(SimpleChatProgram_DLL.SimpleChatProgramLibrary), "RemoteMsgObj.soap", WellKnownObjectMode.Singleton);
with this oneRemotingConfiguration.Configure("App.config", false);
and this config file: my client app (very simple program btw), stop working it can't even start anymore... Server start just as usual, but doesn't work as expected... Any idea? -
OK I tried to double chech (5 times at least acctually) all things, still when I replace this code:
HttpChannel c = new HttpChannel(32469); ChannelServices.RegisterChannel(c); RemotingConfiguration.RegisterWellKnownServiceType( typeof(SimpleChatProgram_DLL.SimpleChatProgramLibrary), "RemoteMsgObj.soap", WellKnownObjectMode.Singleton);
with this oneRemotingConfiguration.Configure("App.config", false);
and this config file: my client app (very simple program btw), stop working it can't even start anymore... Server start just as usual, but doesn't work as expected... Any idea?Any idea guys, I tried bunch of mine, but none give expected results, guess it's something trivial..
-
Any idea guys, I tried bunch of mine, but none give expected results, guess it's something trivial..
try the filters ... unfortunately i forgot the right syntax, but it have something to do with soap or binaryfilter... i cut/copy this from my own project, maybe it helps you VirtualVoid.NET
-
try the filters ... unfortunately i forgot the right syntax, but it have something to do with soap or binaryfilter... i cut/copy this from my own project, maybe it helps you VirtualVoid.NET
I still didn't got this working...