vote up 3 vote down star
1

Hello,

C# 2008 SP1

I have built an application and this is published on windows server using clickonce. The clients go to the url and can download and run the application.

The client is now changing their servers to run Ubuntu. Can a clickonce application be published on a server running Ubuntu. The version of Ubuntu is 8.10.

Many thanks for any advice,

flag

60% accept rate

3 Answers

vote up 5 vote down check

Sure can - any file or web server can host a ClickOnce app. However you will need to configure the correct MIME types on the web server

  • .application => application/x-ms-application
  • .manifest => application/x-ms-manifest
  • .deploy => application/octet-stream
link|flag
Hello, Thanks for the reply. Those MIME types are for the IIS. I wasn't sure that you can run IIS on Ubuntu. I haven't used Ubuntu too much, so don't have much experience. What web server does Ubuntu use? Thanks – robUK Mar 8 at 5:53
No idea about the webserver Ubutu uses - probably Apache. Configure the server to associate the MIME types with the file extentions, and ClickOnce will work. IIS or Apache - MIME is for the client – Scott Weinstein Mar 8 at 6:43
The MIME types are for the documents. You have to set them in IIS if you use IIS. But you want to use Ubuntu. so whatever HTTP Server you are using on Ubuntu, must have those MIME types set. – Cheeso Mar 9 at 5:47
vote up 2 vote down

Simply add the following to the .htaccess file in your web root (Apache2 Ubuntu)

AddType application/x-ms-application application
AddType application/x-ms-manifest manifest
AddType application/octet-stream deploy
AddType application/vnd.ms-xpsdocument xps
AddType application/xaml+xml xaml
AddType application/x-ms-xbap xbap
AddType application/x-silverlight-app xap
link|flag
vote up 0 vote down

I'm assuming you're trying to use Mono, in which case:

Is it possible to support ClickOnce on Linux ?
Yes - but there's still a lot of work required before doing so.

Is ClickOnce the best way to distribute applications/updates ?
I'm not sure - but popularity != superiority so...

from http://lists.ximian.com/pipermail/mono-list/2004-September/023224.html

link|flag
Nope - the server changed. The clients remain Windows. – Cheeso Mar 9 at 5:46

Your Answer

Get an OpenID
or

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