is it possbiel to host a silverlight application on a normal apache web server?
i mean without asp.net. (just like flash)
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Silverlight can be hosted from apache just fine. The only thing you need to worry about is that you have the proper MIME types set up. You must have at least
.xapfiles set up to serve a content type ofapplication/x-silverlight-app. If your silverlight app is dynamically grabbing files from your server, you might need e.g..xamlfiles to be served asapplication/xaml+xml.To set MIME types with apache, you can either use the
AddTypedirective in a.htaccessfile, or edit apache’smime.typesfile directly.