Reputation: 203
I have a WPF application that is made exclusively for demonstration purposes about how to use a proprietary technology of my company (the app shows a map where tracked objects flying to and fro). Besides showing off our technology, the most important aspect of the demo app is simplicity. It has to be simple to try, simple to set up, simple to use otherwise prospective customers will dump us before they have seen anything. So the demo app must be like checkout-compile-run.
However, I need to add a SOAP web service for the purpose of demonstrating publish/subscribe functionality. But I want no web project, no configuration, no virtual directory, no WCF between web service and the app, or anything else that would make the setup more difficult than compile and run. I just want a single .EXE. Is there a way to make my WPF app also become a simple web server that serves those web services?
Again for the simplicity, it is important that:
I am limited to use .NET 3.5
Upvotes: 3
Views: 5610