How to run WPF applications from Apache Server
Please follow the steps :
Step 1: Install Apache server
Step 2: Go to Start -> Programs -> Apache -> Control Apache Server -> Start Apache in Console
Step 3: Test your apache by typing the following: http://localhost:8080/
Step 4: Go to Start -> Programs -> Apache ->Configure Apache Server -> Edit the apache httpd.conf configuration file.
Step 5: Add the following in Virtual Host Section of httpd.conf file
[Add the following]
AddType application/manifest .manifest
AddType application/xaml+xml .xaml
AddType application/x-ms-application .application
AddType application/x-ms-xbap .xbap
AddType application/octet-stream .deploy
[/Add the following]
Step 6: Copy the .XBAP file from the bin folder of your .Net application and paste it in
[Installed Drive]:\Program Files\Apache Group\Apache2\htdocs
Step 7: Open IE and key in the url http://localhost:8080/TestApp.xbap [Make sure Apache is still running]. You can see your .Net browser application running in Apache server.