vote up 2 vote down star
2

I have a .Net 3.0 application that needs to pass an integer to another program on the same machine. I was using a WCF service to do this, but ran into user rights issues when trying HOSTING the service on the local box. Any thoughts on how to accomplish this woudld be greatly appreciated.

Thanks,

Dave

flag

4 Answers

vote up 4 vote down check

WCF is still the way to go here.

Generally, for inter-process communication on the same machine, you would use the named pipe channel. If you are not using this, I suggest you do and then determine what the error in hosting is.

If both programs have message loops that are being processed, and you are sending an integer, you could use a call to SendMessage through the P/Invoke layer as well, but that's only because you are sending data that is equal to or smaller than what SendMessage will allow. Larger messages will require something like WCF.

link|flag
vote up 2 vote down

System.IO.Pipes

link|flag
vote up 0 vote down

How were you hosting? Note that a non-admin program using http will need permissions to use the port (in http.sys). This is via netsh (Vista) or (IIRC) httpcfg (XP).

See here, for example.

link|flag
This is where I ran into the problem. We are a XP managed environment and everyone is at min permissions. address="localhost:9571/ReplayCatcher"; binding="basicHttpBinding" – discwiz Mar 3 at 18:29
This might help: leastprivilege.com/HttpCfgACLHelper.aspx/… – Marc Gravell Mar 3 at 18:55
vote up 0 vote down

.NET Remoting is a way to pass messages between programs.

link|flag
Remoting is largely obsolete. – Marc Gravell Mar 3 at 18:24

Your Answer

Get an OpenID
or

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