vote up 0 vote down star

I'm in a very bad situation: I need to maintain asp.net web application hosted in an environment on which I don't have any access. For every small intervention I need to go personally which includes checking procedures since it'as a government agency.

I was wondering if there is some way to partially of full update an asp.net web application from the application himself of from some other web-based tool.

I don't have neither remote desktop, vpn and all this should be done through http.

Thanks...

flag

Can your server see the internet? Or at least your version control system? – fuzzymonk Nov 27 '08 at 13:02
Yes server on which the application is hosted can see internet, but due to a security issues I need to do everything through http. – Aleksandar Nov 27 '08 at 13:36
So you will (most certainly) add a security leak over HTTP if you open up your app this way, or am I missing somthing here? – Drejc Nov 27 '08 at 14:13
Not necessarily, click once application can auto-update himself against url from which was downloaded (if newer version is copied on the server with higher assemblies version). I was thinking if such solution could work for web application. – Aleksandar Nov 27 '08 at 15:46

1 Answer

vote up 2 vote down check

I don't think it is a good idea to give your app the privileges to write on the disk. A better solution would be to have a back end process (service) running on the same machine which would check some server of yours if there is a new version available and deploy it on a apropriate occasion. But of course this proces must have privileges to write to disk and access the internet (or external network). As it is a goverment agency I don't think they will be keen on such a solution.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.