buhtla
buhtla

Reputation: 2909

.NET integration Framework

Is there any kind of framework that provides some generic mechanism for integration between applications or something similar? By integration I presume data exchange (import and export) between two applications via some standard interface like Web Service.

Upvotes: 1

Views: 2026

Answers (3)

John Asbeck
John Asbeck

Reputation: 196

WCF works great for highly coupled systems, however, if you need your systems to be loosely coupled, try a message based framework like nServiceBus.

Upvotes: 1

Aaronaught
Aaronaught

Reputation: 122654

Yes, there is - Windows Communication Foundation.

You can use that to communicate via Web Services over HTTP (SOAP or REST), TCP, Named Pipes, and many other protocols.

More traditional Inter-Process Communication (IPC) methods include Named Pipes, .NET Remoting, Memory-Mapped Files, and WM_COPYDATA. But I would really recommend WCF over any of those, it's a lot easier to get up and running.

Upvotes: 5

Darin Dimitrov
Darin Dimitrov

Reputation: 1038890

You may read about Windows Communication Foundation.

Upvotes: 0

Related Questions