Publish to Remote Website using ClickOnce
p.s. I tried it on localhost and everything seemed to work fine.
p.s. I tried it on localhost and everything seemed to work fine.
If not that, chances are it is a problem with the mime type mappings on your web server. Check out the following link with solutions to this problem.
http://msdn2.microsoft.com/library/ms165433(en-us,vs.80).aspx
Hello Ikinney
I'm having the same problem when other PCs try to Install my application.. Only get XML code page.
Where you able to solve the problem?
Please let me know.
Thank you.
Mirko
You sure its a Windows Server your deploying to?
How about uploading an .htaccess file in the same folder as your deployment root with the following:
AddType application/x-ms-application .application
AddType application/x-ms-application .manifest
AddType application/octet-stream .deploy
That should stop it from showing you the XML code and will access process the file.
Good luck. Let me know if it works.