Hello,
Is it possible to have a windows client app running signal R communicate with ASP.NET Zero. I want to be able to send calls to the app and transfer files between both. What are the limitations and recommendations. Appreciate any light you can shed on this issue.
2 Answer(s)
-
1
SignalR is not good for transferring big files. It is for realtime messaging. I think you should split your logics. Do messaging with signalr and transfer data with httpclient post.
Firstly, You can create signalr client on windows client app. Google it. As a start you can check that: https://stackoverflow.com/a/12058856/9988758
After you set signalR client and server do file uploading as with httpclient post, you can also get progress information and show client user. Example: https://stackoverflow.com/a/7196998/9988758
(These links are first links that I saw on google. For more information google it.)
-
0
This issue is closed because it has not had recent activity for a long time.