I'm trying to use websockets in Xamarin. I already have a websocket server written in php and I want to connect to it with an Android client app using Xamarin.
Is it possible do that? Or can I just connect to .NET servers?
Thank you so much!!
Related
We have a backend developed with Golang using Fiber (gofiber) and used also Fiber's Websocket middleware.
When trying to connect from a Web client in local (ws://...) it works perfectly. When deploying our server to CloudRun, and trying to connect (ws://...) it returns a 400.
Any idea what I am missing?
WebSockets are currently not supported on Cloud Run fully managed. This is a highly requested feature, but it's not yet implemented.
However, running WebSockets currently works on Cloud Run for Anthos because of its GCE-based native networking layer.
I am using laravel 6 and I want to deploy laravel based websocket server using supervisor on google cloud standard app engine platform.
I am using this package:
beyondcode/laravel-websockets
I have setup everything and everything is working fine on local machine!
What is the exact procedure to follow to deploy it on GCP?
At this time, WebSockets are not supported by App Engine Standard. There is work being done with Cloud Run support for WebSockets, so this situation might be changing in the future for App Engine Standard.
Cloud Run WebSockets and gRPC bi-directional streaming support
To use WebSockets today, use App Engine Flexible or switch to another service such as Compute Engine.
Creating Persistent Connections with WebSockets
Google Compute Engine WebSocket Support
I'm very noob on programming and using xdk. Do you how to use it?. I know you need to create rest web service for your laravel and then you call it using xdk, but how? do I need to have a web hosting service for this? Please help me. Thank you.
Intel XDK was the technology, similar to Cordova, used to develop cross platform applications. To develop native mobile apps you should look at Cordova or nativescript
To host any kind of application which is based on php backend, needs a web server like nginx, apache etc.
Yes you need a web hosting service.Put all your laravel code on server and interact with app using rest web service via XHR or Ajax Requests.
I have installed and running this script on server: https://github.com/gorilla/websocket
Everything was configured and running ok when I was using ios native application but now I have to switch to phonegap and I cannot find example which is working.
I cannot move to another script on my server because it would be to much work.
Is there any way that I can connect to my server from phonegap ionic?
My application is for ios and android, it's game which needs real time connection just like chat application.
Thank you
I am new to the Oracle ADF Mobile Application Development. I am trying to access the web service in my application.The web service is perfect as I had use it in my another Core Android application.
But when trying to use the same web service in Oracle ADF Mobile it gives me the following error:
SSL handshake failure
Here, I had also attached the screenshot of the emulator.
I don't get what is the issue.
Please help.Thanks in advance...:)
See if this helps:
http://docs.oracle.com/cd/E35521_01/doc.111230/e24475/security.htm#autoId18
Its from the documentation
Frank