English 中文(简体)
Remotely pass messages to c# console app
原标题:

I need to be able to send a string message and receive a string response from a console app running within our organization. I want to pass simple strings back and forth from a remote IP address. What s the best way to do this? My first thought is to listen on a socket, but that seems like overkill. I ve looked a little into becoming a WMI producer/consumer, but that s pretty involved too. Also there s System.Runtime.Remoting.Channels.Tcp to register for messages.

It seems like any of these methods would work, but what s the easiest way to get an event to fire when a string arrives and how to pass a string back from a c# console app?

最佳回答

I suggest you to create a WCF service, as it seems simpler than your alternatives.

问题回答

If you need this to be in a console application, I personally think that implementing this using sockets is the easiest option, especially if the "Remote IP Address" isn t written in C# or under your control.

The TcpClient class is quite easy to use, if all you re doing is passing a few strings back and forth.

One potential gotcha: If the "server" on the remote IP isn t written in C#, make sure to take care of any encoding issues in the passed byte stream, since C# uses Unicode strings.





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签