how do i convert my API hosted in remoting to WCF
i 开发者_C百科have a API which is hosted using Remoting for security and creating a business logic which is shared among all my other applications now i want to convert this API into WCF do i need to rewrite it or is there any option available
Some great resources out there on the web for this topic:
- From .NET Remoting to the Windows Communication Foundation (WCF)
- Migrating .NET Remoting to WCF (and even ASMX!)
And a lot more - just Google or Bing for them!
Given that your application is "layered" - so the business logic resides in its own classes - this should be fairly straightforward.
Good places to start to learn WCF are MSDN here: http://msdn.microsoft.com/en-us/library/ms734712.aspx and the "fish book", "Programming WCF Services", here: http://shop.oreilly.com/product/9780596526993.do
精彩评论