vote up 0 vote down star

I'm sure there has to be an easy way to do this, maybe I'm making more work for myself than I need to. I'm trying to set up cross system communications in a way that I can have bi-directional communication between objects, I imagine it would be something like this.

public interface ISharedResource

public class SharedResourceHost : ISharedResource  //<- slave process

SharedResourceHost resource = new SharedResourceHost("http://192.168.1.102/HostedResources/Process1");

resource.Invoke("SomeMethod");

is there anything like this? I don't wanna have to pull teeth setting up web services etc but if I have to I will.

flag

71% accept rate

3 Answers

vote up 3 vote down check

You should check WCF. It is far too big to explain here but this article should give you some pointers.

http://msdn.microsoft.com/pt-br/library/bb907581.aspx

WCF allows you to set up interfaces in which two objects can communicate using a protocol of your choice.

link|flag
vote up 2 vote down

You're definitely re-inventing the wheel here. Look at the System.Runtime.Remoting namespace. I'd link in a tutorial, but I'd just have to check Google and you can evaluate what will make more sense for you better than I.

link|flag
is remoting the EASY answer to this? – firoso Apr 13 at 19:43
Easier than doing it yourself. – Joel Coehoorn Apr 13 at 19:43
laughs is WCF an easier solution? I hear it's better but in my 'experimentation' I've been mostly swearing at the configuration due to my complete lack of ITS background. – firoso Apr 13 at 19:44
thank you for the help. – firoso Apr 13 at 19:46
WCF essentially replaces System.Net.Remoting in .NET 3.0 (along with much other networking/web-related stuff and adding new functionality). If you're just doing simple remoting, WCF should be fairly straightforward (perhaps marginally harder), but it's the right way to go really. – Noldorin Apr 13 at 20:01
show 1 more comment
vote up 0 vote down

It looks like you'd want either Remoting or WCF. However in both instances you're going to need to make sure you have the correct ports open. I don't see how setting up Web Services would be difficult, but I can only go off of your post.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.