Daniel Lang
unread,Feb 1, 2012, 9:14:00 PM2/1/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to net-http-a...@googlegroups.com
Hi,
I want to host a single web-page with async updates enabled in a console application. I'd like to use Signalr, NancyFX and an OWIN host like Gate or Kayak if necessary at all (alternative is self-hosted).
I've seen that David has done some work to decouple SignalR from AspNet, so I hope this combination is possible. However, I have practically no experience with any of these technologies, so I wonder if I'm on the correct path at all.
This is my context:
I have a long running operation (data-syncing in fact) that runs either inside a console application or as a windows service. The operation produces a lot of log messages. At the moment, I have a self-hosted WCF service with a duplex contract, so that I can push the messages to the clients (stupid simple WPF-applications just to show the messages as they arrive) in an async fashion. My goal is to simply deployment by killing the client applications and replacing them with a very simple one-page web application that is hostes by the 'server' itself on port 8080 or so. IIS is not an option, because it would complicate deployment and require our customers to have IIS installed on their machines.
Is this possible?
Cheers, Daniel