we have several different applications built in asp.net run different parts of same platform. i.e. administration web app, public facing web app , non-web applications (i.e. .exe apps) need perform shared functionality.
ideally don't want clone code due maintainability issues. until recent had these running on same server put dlls in global assembly cache (although never got around , did end cloned code).
now we've moved various parts of system separate servers, putting shared code in gac won't solve cloned code issue. there way share code across multiple servers without making copies?
you want perform distributed execution, because want launch , executable in different machine, , feasible doing shared folder (but should careful security).
another solution create web service exposes method launch executable or run task want share. in way have 1 place update code.
Comments
Post a Comment