Featured post
c# - How do i architect automatic update of my clients -
i have distributed application written in c# (4.0). has become substantial task update clients each time create new release. not want go clickonce way, since organisations has bought software in cases not wish upgrade clients.
how build such update mechanism, clients? thoughts implement kind of launcher application checks server newest version, updates if required, , starts new one. if no updates available simple starts client application. see problem of updating launcher application, should client 1 responsible this?
how solve in proper , robust way, ensures customer can configurate clients updates or not, , allow clients function autonomically? is, without user supervision.
cheers,
create separated multi tier application. add business logic in classlibrary. add library reference application. afterwards create checkfunction in ui. (e.g. check version "number" calling webservice)
in case remote version > localversion download new dll (register in gac if necessary) , demand restart of application.
if ui logic has changed too, download complete new setup file (with removeolder version = true) , demand user start or call process.start on closed..
just few ideas on topic - hope might help
- Get link
- X
- Other Apps
Comments
Post a Comment