MattNorman
Well-known member
- Joined
- May 22, 2021
- Messages
- 95
- Programming Experience
- 1-3
I am currently in the process of learning asp.net mvc with the goal of converting a WPF app to a web app.
The WPF app consists of a client application and a server application. The server application performs a few different functions, however the main function is to retrieve data via UI automation. It retrieves the data every 3 seconds, holds it in memory and then publishes it out to any clients that are subscribed.
I use the NetworkComms.Net library for the client registration and publishing.
Can anyone point me in the right direction around how something like this can be achieved in asp.net?
The WPF server app would remain in place as it is required due to the way the data has to be colleting by automating another Windows app.
Can I simply replicate what the WPF client app is currently doing using the NetworkComms library? Would the logic for receiving the data sit within the relevant controller?
Appreciate any advice or pointer on what to look for.
Matt
The WPF app consists of a client application and a server application. The server application performs a few different functions, however the main function is to retrieve data via UI automation. It retrieves the data every 3 seconds, holds it in memory and then publishes it out to any clients that are subscribed.
I use the NetworkComms.Net library for the client registration and publishing.
Can anyone point me in the right direction around how something like this can be achieved in asp.net?
The WPF server app would remain in place as it is required due to the way the data has to be colleting by automating another Windows app.
Can I simply replicate what the WPF client app is currently doing using the NetworkComms library? Would the logic for receiving the data sit within the relevant controller?
Appreciate any advice or pointer on what to look for.
Matt