2
Answers

remoting: how to organise the project files?

colesy77

colesy77

21y
2.4k
1
Hi - I've been working on understanding remoting but am having trouble understanding where to save the separate files - I have the standard server, client and remoteobject classes/dll's but should these be separate solutions, same solution different projects etc. I'm working within the standard .NET IDE. I'm sure it's simple stuff but I'm having trouble understanding assemblies, references and how to tie all the files together. Can anyone help! Thanks Sid
Answers (2)
0
colesy77

colesy77

NA 13 0 21y
Thanks again Chornbe - I also notice that a reference needs to be added to system.runtime.remoting, something that neither of the books I have here have bothered to mention!
0
chrishornberger

chrishornberger

NA 277 0 21y
To fully simulate remoting as it's meant to be used, make all three projects in three different folders. Each of the "ends" should reference the DLL containing the interfaces and common code. Each end will copy the dll to its own working directory at build time. This gives you more of a "real" separation and might help keep you in the right frame of mind.