I been trying for 3 days to connect to XMPP server through web sockets on flutter web.
Tried the xmpp_stone package which uses dart.io so can't use it for web and tried the web_support version of that again connection kept getting failed.
I tried xmpp_dart package, strophe, and dart:html WebSocket no luck.
it would be helpful if I get some suggestions or some solution to this
Related
How to connect flutter app to odoo 13? Is there any ways to connect flutter app to odoo 13?
You can use XMLRPC or JSONRPC as External API of Odoo to connect your Odoo from any services. For more details about this you can follow the official documentation. Odoo RPC Client Library in dart is also available for use. Once you have the basic idea how RPC External API works, you can combine this two to achieve what you need.
I'm using ionic 6 (with Angular). Is there a websocket client plugin?
I want to communicate with a websocket server written in c# but I can't find any plugins to use ionic as websocket client.
You don't need a dedicated ionic plugin if you just want to subscribe to a websocket. Existing angular websocket libraries should work.
I personally prefer using socket-io, which works perfectly fine: https://socket.io/
I suggest you to use the same websocket pattern on backend as the frontend. The socket.io doesn't communicate with others websockets, so it means you need to check first which WS actually you are using on backend to keep using the same on the mobile App.
I'm new to Flutter and I'm trying to create simple chat chat app with Nodejs and Flutter. I'm using Socketio for real time communication.
When I try react client to connect my server, it is working but Flutter is not working. I used this package https://pub.dev/packages/flutter_socket_io .
I had same issue before. It is version issue. According to developer of that package, it is working with socket io version 2 so you should use older version of socket io on server-side.
You can see Why my Flutter app does not connect to my local nodejs server?
Greetings fellow citizens of StackOverFlow.
I'm trying to make an IRC Client in nativescript, and I am struggling to find a library to connect to a TCP server for nativescript.
I tried with nativescript-simple-networking and nativescript-socket-tcp
The first one failed to compile with angular.
The second one upon installation it says that It's only compatible with iOS.
Any recommendations of a Library or how can i connect to an IRC Server?
Is it possible to Connect to an IRC server with Socket.io?
I was searching for solution to use xmpp library on flutter to connect with ejabberd server for chatting app. Anyone's suggestion will be very help for me.
XMPP connection made with flutter by using the xmpp_stone library. My Github repository is here. The main problem is, it connects without tls connection. In your ejabberd configuration yaml file line starttls: true, starttls_required: true should be commented.
If you have a better solution please suggest me. Thanks in advance!!!
I founded one way to connecting ejabberd server flutter given Strophe library enter link description here Strophe.js is an XMPP library for JavaScript. Its primary purpose is to enable web-based, real-time XMPP applications that run in any browser.