We currently use .NET Remoting for our inhouse line-of-business applications. The main problem with .NET Remoting is that is not supported in the compact framework (which is really a compact framework problem not a remoting problem, remoting rocks!). This keeps us from developing applications that integrate with these systems. Will Indigo/WCF be supported from the compact framework

Compact Framework Support?
Eugene_
You understood all the important parts. You'll be able to use WCF on your middle tier, and talk to it from CF 2.0. If you talk to it from a WCF client, you can get more features (distributed transactions, guaranteed delivery, better perf, etc.).
If you want to learn more about WCF, I highly recommend checking out the labs we have hosted on http://windowscommunication.net/ (hit the "Try IT!" link). Playing with the code for 20 minutes and actually running an app or two is a great way to come up to speed quickly.
Regards,
JJustice [MSFT]
Jr.Coder
mmikedm1000
tdumitr
Hi Jon, we don't currently have WCF for CF, but you can write WCF services that can talk to CF clients. For this to work, use the basicHttpBinding on the service side, which will look just like an ASMX style .Net Web service. Your CF clients can connect to it just as they would to any other Web service.
Once you have the CF <--> WCF communication going, you can use additional endpoints to expose your service over other bindings, such as the netTcpBinding, netNamedPipeBinding, or others.
JJustice [MSFT]
KatyTX
ausmock