Abdulaziz Burghal
Abdulaziz Burghal

Reputation: 866

Qt mobile app client w/ SignalR .NET server

I'm planning to build Web application and use the SignalR library to allow web admin to chat with other users (use Mobile application)
1- System admin uses Web Application built by Asp.net Boilerplate (.NET Core 3.1).

2- other users use Mobile Application built by (Qt Mobile application )

So, Is this scenario applicable with the SignalR library, or I will encounter some limitations especially with QT Mobile application?

Update:

Why I want this approach?

Because I'm using Esri QML SDK (in Mobile App)

Upvotes: 7

Views: 994

Answers (3)

TomasL
TomasL

Reputation: 106

If you haven't got this up and running by now, I'll suggest you would take a look at signalr-qt. We have been using this for several years now, with Qt apps for iOS, Android and Windows desktop. Unfortunately it is not maintained anymore, but we've been running it in production apps using Qt 5.6, Qt 5.12 and Qt 5.15.

Upvotes: 2

Thunder Lord
Thunder Lord

Reputation: 21

I have not used SignalR before. However, Qt provides its own websocket QML client component as well as a server one, they have a client example here and a server example here should you want to see how the client component interacts.

I have used the QML websocket with a NodeJs websocket server and it presented no problems at all.

Creating a simple working environment should be no problem, Qt provides its own simulator with their IDE, just copy the client example, change the link to point to your server and give it a shot.

Upvotes: 2

Shivendra
Shivendra

Reputation: 159

I am not familiar with QT Mobile Application development, however I looked for it and understood that the language of development is C++.

Based on this, here is a client lib for SignalR in C++. You can use this lib to connect to c++ Click Here

Also, I wish to bring attention to an official documentation from Microsoft that states that C++ & Swift are unofficially supported framework. Link

Upvotes: 4

Related Questions