Start with remoting or with WCF

Posted by Sheldon on Stack Overflow See other posts from Stack Overflow or by Sheldon
Published on 2010-05-05T23:54:03Z Indexed on 2010/05/05 23:58 UTC
Read the original article Hit count: 232

Hi.

I'm just starting with distributed application development. I need to create (all by myself) an enterprise application for document management. That application will run on an intranet (within the firewall, no internet access is required now, BUT is probably that will be later).

The application needs to manage images that will be stored within MySQL Server (as blobs) and those images will be then recovered by the app and eventually one or more of them will be converted to PDF.

Performance is the most important non-functional requirement.

I have a couple of doubts.

  1. What do you suggest to use, .NET Remoting or WCF over TCP-IP (I think second one is the best for the moment I need to expose the business logic over internet, changing the protocol).

  2. Where do you suggest to make the transformation of the images to pdf files, I'm using iText. (I have thought to have the business logic stored within the IIS and exposed via WCF, and that business logic to be responsible of getting the images and transforming them to PDF, that because the IIS and the MySQL Server are the same physical machine). I ask about where to do the transformation because the app must be accessible from multiple devices, and for example, for mobile devices, the pdf maybe is not necessary.

Thank you very much in advance.

© Stack Overflow or respective owner

Related posts about distributed-apps

Related posts about remoting