Hi All, I have a design scenario that is giving me a few headaches and I'm wondering what solution is the best solution.
I have a dashboard-like application that polls information from a service that requires a java RMI connection to gather real time data. I'd like to implement that dashboard component in silverlight and provide the data using WCF.
I've designed a solution for this in the past with .net remoting and Windows forms. My previous design was a windows service, but I'm wondering if there is a way for me to host this service like application in IIS.
The service needs to: ->Open RMI connection (this i've done with ikvm) ->pull data at regular intervals ->Update clients new data has arrived (observer pattern)
Could I implement a singleton instance of my data collection class and register observers? Should i just host WCF in a windows service? Any other ideas?