Click here to Skip to main content
15,922,155 members
Home / Discussions / C#
   

C#

 
GeneralRe: Add a new Language to my program Pin
anderslundsgard17-Jan-08 22:36
anderslundsgard17-Jan-08 22:36 
GeneralRe: Add a new Language to my program Pin
imsathy17-Jan-08 22:53
imsathy17-Jan-08 22:53 
GeneralRe: Add a new Language to my program Pin
anderslundsgard17-Jan-08 23:27
anderslundsgard17-Jan-08 23:27 
GeneralRe: Add a new Language to my program Pin
Russell Jones18-Jan-08 2:51
Russell Jones18-Jan-08 2:51 
GeneralRe: Add a new Language to my program Pin
anderslundsgard18-Jan-08 2:56
anderslundsgard18-Jan-08 2:56 
GeneralRe: Add a new Language to my program Pin
Russell Jones18-Jan-08 3:16
Russell Jones18-Jan-08 3:16 
QuestionRemoting ? Pin
Eike Mueller17-Jan-08 20:46
Eike Mueller17-Jan-08 20:46 
AnswerRe: Remoting ? Pin
led mike18-Jan-08 6:43
led mike18-Jan-08 6:43 
What book or tutorial are you using for learning remoting? What previous experience do you have with other forms if interprocess communications?

You don't make the singleton object in your server, the remoting framework controls that. Therefore in your server code you are creating a different instance than the one the client code is communicating with since it uses the framework to access the remote object. Your server code bypasses the framework and creates it's own instance that the framework knows nothing about.

namespace RemoteTestServer
{
   class Program
   {
      static void Main(string[] args)
      {
         cRemotableObject remoteObject = new cRemotableObject();


led mike

GeneralRe: Remoting ? Pin
Eike Mueller20-Jan-08 0:06
Eike Mueller20-Jan-08 0:06 
GeneralRe: Remoting ? Pin
led mike22-Jan-08 5:03
led mike22-Jan-08 5:03 
GeneralRe: Remoting ? Pin
Eike Mueller22-Jan-08 21:16
Eike Mueller22-Jan-08 21:16 
GeneralRe: Remoting ? Pin
led mike23-Jan-08 5:46
led mike23-Jan-08 5:46 
Generalstartup a WinForm program by code Pin
jason_mf17-Jan-08 19:58
jason_mf17-Jan-08 19:58 
GeneralRe: startup a WinForm program by code Pin
Adeel Chaudhry17-Jan-08 20:01
Adeel Chaudhry17-Jan-08 20:01 
GeneralRe: startup a WinForm program by code Pin
jason_mf17-Jan-08 20:09
jason_mf17-Jan-08 20:09 
GeneralRe: startup a WinForm program by code Pin
Adeel Chaudhry17-Jan-08 20:17
Adeel Chaudhry17-Jan-08 20:17 
GeneralRe: startup a WinForm program by code Pin
jason_mf17-Jan-08 20:22
jason_mf17-Jan-08 20:22 
GeneralRe: startup a WinForm program by code Pin
Adeel Chaudhry17-Jan-08 20:24
Adeel Chaudhry17-Jan-08 20:24 
GeneralRe: startup a WinForm program by code Pin
jason_mf17-Jan-08 20:30
jason_mf17-Jan-08 20:30 
GeneralRe: startup a WinForm program by code Pin
Adeel Chaudhry17-Jan-08 20:35
Adeel Chaudhry17-Jan-08 20:35 
GeneralRe: startup a WinForm program by code Pin
jason_mf17-Jan-08 20:55
jason_mf17-Jan-08 20:55 
QuestionExcel sheet Problem Pin
rishi.kasnia17-Jan-08 19:23
rishi.kasnia17-Jan-08 19:23 
GeneralRe: Excel sheet Problem Pin
Paul Conrad19-Jan-08 7:24
professionalPaul Conrad19-Jan-08 7:24 
GeneralMS Word embed in a form Pin
swjam17-Jan-08 15:10
swjam17-Jan-08 15:10 
GeneralRe: MS Word embed in a form Pin
Adeel Chaudhry17-Jan-08 20:16
Adeel Chaudhry17-Jan-08 20:16 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.