vote up 6 vote down star

We're testing our ClickOnce deployed application internally on IIS (Internet Information Services), but we're wondering if we can deploy it to the wider internet using Apache on Linux so we can make use of our existing external website host.

If so, is there anything else I need to consider other than as specifying the correct mime types such as .application and .deploy?

flag

2 Answers

vote up 5 vote down check

I found a number of people asking the same question starting around 2005, but here is the first google result - also discusses silverlight.

http://software.clempaul.me.uk/articles/clickonce/

As far as I can tell, however, the only thing you would need to worry about would be setting up the mime types and providing access to the files.

link|flag
Great link, thanks! I've found that querying Google is a skill - most often I get exactly what I want but this time I'd drawn a couple of pages of rubbish including a promising forum post that dead-ended! – Andrew Sep 18 '08 at 15:23
vote up 2 vote down

The Paul Clement article is the best description I've found. I also came across a topic in the Apache documentation that suggests putting the configuration in the httpd.conf file instead of .htaccess files. Here are the lines I added to my httpd.conf file:

AddType application/x-ms-application .application
AddType application/manifest .manifest
AddType application/octet-stream .deploy
link|flag

Your Answer

Get an OpenID
or

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