Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Does anyone know if it's possible to use websockets on Cloudbees or Jelastic. I deployed a Railo project with websockets on port 10126, it works beautifully on my Tomcat local setup however nothing happens when deployed to both Jelastic and Cloudbees.

share|improve this question

5 Answers

up vote 2 down vote accepted

At Jelastic we do. That is one of the outcomes of our making Public IPs available. We will be doing a short how-to article coming up this very topic. You can look out for it on our blog (http://blog.jelastic.com) or our twitter account (@jelastic).

share|improve this answer
that will be very helpful but I need to do a demo Friday and it's not working, can you tell me how to get this working – Stofke Jun 13 '12 at 20:29
Were you able to get it running? (I didn't get a notification that you responded to me). I tried it a few times with different setups and had no problems, it was just a question of turning on the public IP and then going about it as normal. – Judah Johns Jun 17 '12 at 21:14

On Cloudbees you can use comet connections (long running) and a client library that supports this as needed. Websocket can work when going direct (if you have access to your own applications IP) but the preferred way currently is comet.

When deploying an app - set "proxyBuffering=false" - to allow comet to work.

share|improve this answer
1  
For some applications, websockets procure significant advantages, the question was not why and when should we use websockets over Comet, the question was which host provides websocket support... (assuming the question author does indeed have a good reason to use websockets) – UndercoverAgent Sep 18 '12 at 1:42

CloudBees now offers beta-support for WebSockets, you just need to use a different endpoint to access your application: http://wiki.cloudbees.com/bin/view/RUN/WebSocket+support

share|improve this answer

AFAIK, only dotCloud supports websockets for now: http://docs.dotcloud.com/guides/websockets/

share|improve this answer
I'll give it a try but all these cloudservices have their own way of deployment. Hopefully it's not to painful to setup – Stofke Jun 13 '12 at 20:30
Tried it and it doesn't work although it says it should – Stofke Jun 13 '12 at 20:42
I'll check with support – Stofke Jun 13 '12 at 20:59
It tested it, and it worked for me. – nico_ekito Jun 14 '12 at 11:32
I must be doing something wrong then – Stofke Jun 14 '12 at 14:16
show 1 more comment

Ok in my understanding with Jelastic they support running Websockets in GlassFish and can support Public IPs.

while Cloudbees supports running separate JVMs (plain java apps, no app server) but without Public IPs.

Here are some references:

Cloudbees JVM container

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.