We are in the process of developing a WPF application. In future, this app may be converted to Asp.Net Web. I will appreciate if someone can give me some Architectural Guidelines so that the future conversion to Web does not make someone re-write the whole application.
This is the current Architecture we have in mind:
WPF->WCF->DAL
Apart from that i want to know if there are some coding guidelines. Some of them i can think of are:
1) Minimal use of in-memory data to keep future web application sessions small.
2) Instead of using Global variables, use Cache.
Any help will be highly appreciated.
P.S.: Please do not start the discussion on why not develop the Web
application to start with.