Page 1 of 2

Is it possible to implement Websockets within a Tiggzi created app ?

Posted: Thu May 17, 2012 9:46 pm
by riclf

Is it possible to implement Websockets within a Tiggzi created app ?

Best, Is there a plugin for that or what is the guideline to manually place the code into the app ?


Is it possible to implement Websockets within a Tiggzi created app ?

Posted: Thu May 17, 2012 10:15 pm
by maxkatz

Yes, it's possible. You are just building a standard HTML5, jQuery Mobile (or PhoneGap) app. No plug-in yet so the actual functionality would need to be added by the developer.

http://help.tiggzi.com/5-steps-to-bui...


Is it possible to implement Websockets within a Tiggzi created app ?

Posted: Mon Dec 03, 2012 12:53 pm
by Bill

FYI... I note that the page that Max refers to was changed to:
http://help.gotiggr.com/5steps

(though it does not particularly address Websockets at all.)


Is it possible to implement Websockets within a Tiggzi created app ?

Posted: Mon Dec 03, 2012 3:33 pm
by Kateryna Grynko

Hello Bill,
The builder doesn't have this feature yet (from dev tools side), but any HTML5 or JavaScript feature can always be coded.


Is it possible to implement Websockets within a Tiggzi created app ?

Posted: Sun Nov 16, 2014 2:33 am
by Jason Cheek

I'm sorry for resurrecting a long-dead question, but how did you handle the server-side event loop? Doesn't Appery restrict the runtime of server scripts?


Is it possible to implement Websockets within a Tiggzi created app ?

Posted: Sun Nov 16, 2014 2:48 am
by Illya Stepanov

Hi Jason,

If you export your app as HTML/CSS/JS and host it on your side this restrictions won't work.


Is it possible to implement Websockets within a Tiggzi created app ?

Posted: Sun Nov 16, 2014 3:12 am
by Jason Cheek

Ok, so there is no way to implement long-polling or websocket style using the Appery servers? I basically want to accomplish the same notification/event based messaging for our web browser bases clients as for our mobile clients. Like the facebook messenger.

Is this possible through Appery's server scripts or do I need to bring in an outside server for this purpose?


Is it possible to implement Websockets within a Tiggzi created app ?

Posted: Sun Nov 23, 2014 5:21 pm
by Serhii Kulibaba

Please watch the video tutorial about creation of chat: https://www.youtube.com/watch?v=r7bSY...


Is it possible to implement Websockets within a Tiggzi created app ?

Posted: Tue Nov 25, 2014 10:31 pm
by Jason Cheek

thank you. I was interesting video series to watch. Unfortunately, it looks like they just implemented in "Update" button. That doesn't quite work for my purposes, but it showed me a good alternative architecture.


Is it possible to implement Websockets within a Tiggzi created app ?

Posted: Wed Nov 26, 2014 5:12 am
by Yurii Orishchuk

Hi Jeson,

Yes, you are right.

Currently you can not use Long-polling to get server events from Appery.io server code.

But you can do it with others 3rd party servers. Client part does not have this restriction.

Also you have following ways:

  1. Request server with some delay.

  2. Use Push notification to notify client about something happened on the server side.

    Regards.