multiple machine remoting

  • Thread starter Thread starter cs
  • Start date Start date
C

cs

I havent even tried this yet, but before I waste time on it, I want to know
if its possible.
I have app A, which is a remoting server. A publishes a marshalbyref object,
then app B get that object and sets an instance of an object B contains so
that A can access it. Then B must make some objects available to C (another
app), and C might also send back some objects to B.
I already got the A and B communication part done and havent even started on
C yet, but is this doable?
 
cs,

You might have a problem on the B level, as you might have to set up two
servers for remoting the separate types. Generally speaking, you set up one
channel through which all requests go through, but I do not know what kind
of considerations you have to make to set up two channels for two different
types.

Hope this helps.
 
Back
Top