I have a WCF service that provides some methods for updating your display to a Windows Forms client. Need to make regular calls.
A method gives current service status, the other method returns the current server configuration options. The situation is obtained every 2 seconds, the configuration is received every 10 seconds. I am using asynchronous calls.
I have an instance of WCF client in the application, built on startup and in case the communication breaks. Will it be a problem in using the same example for both calls? Both async calls will be implemented "at the same time" sooner or later. Can the customer handle it or can I make a different example for each "timer"? You can use the same proxy
to call both functions on the service Code> example
Comments
Post a Comment