Re: gwt-comet - CometException: EventSource error

2016-03-09 Thread gichuhi
Hi Did you get a solution to this problem i have a similar problem On Friday, November 16, 2012 at 1:32:58 PM UTC+3, Magnus wrote: > > Hello, > > I would like to use "gwt-comet": > http://code.google.com/p/gwt-comet/ > > To get started, I tested the chat applicati

Re: GWT support Comet/Server-side-push ?

2013-12-17 Thread dhoffer
The two that I am aware of are Atmosphere https://github.com/Atmosphere/atmosphere and CometD both high quality libraries with somewhat differing feature sets, I think one downside to CometD is there is no provided GWT client whereas Atmosphere does have a GWT client. -Dave On Friday,

GWT support Comet/Server-side-push ?

2013-12-14 Thread Zhong-zheng Xiao
I want to use GWT to build a rich web apps, including subscribe-push model. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: GWT support Comet/Server-side-push ?

2013-12-14 Thread Jens
There are quite some libraries out there that provide push support for GWT including web sockets, server sent events, long polling/comet. -- J -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop

Usage of gwt-comet on gwt RequestFactory?

2013-09-16 Thread Jamel Hamas
1- I have already used the following frameworks (Event based client-server) on GWT projects, and works fine with RPC call architecture. - GWT-Comet https://code.google.com/p/gwt-comet/ - GwtEventService https://code.google.com/p/gwteventservice/ After searching, i

Re: gwt-comet issue with GWT 2.5

2013-02-15 Thread Takapa
this is not a GWT direct issue, but I was not able to find a solution for the problem, so maybe someone out there already dealt with this problem. I'm using gwt-comet project and it has been working perfectly so far, but now that I'm upgrading to GWT 2.5 I'm getting an error ( http

Re: gwt-comet issue with GWT 2.5

2013-02-15 Thread Jens
up the generator from your app's project instead of gwt-comet.jar. Alternative is to rebuild gwt-comet from source and replace the file beforehand. -- J. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group

GWT comet in push server mode?

2013-02-12 Thread Maria Garcia
Hi, I have used comet library http://code.google.com/p/gwt-comet/wiki/GettingStarted to create a application. I would like to use comet to server pushes data to my client. Is it possible? Regards, -- You received this message because you are subscribed to the Google Groups Google Web

Re: GWT comet in push server mode?

2013-02-12 Thread Andy Stevko
Many projects have used comet to push data from server to client. This library seems stable although no changes in almost a year. Appengine's channel api uses comet, works really well, and is easy to implement. IMO, web sockets are more desirable to comet in terms of resource utilization. WS does

gwt-comet issue with GWT 2.5

2013-01-12 Thread Aldo Neto
Hi All I know this is not a GWT direct issue, but I was not able to find a solution for the problem, so maybe someone out there already dealt with this problem. I'm using gwt-comet project and it has been working perfectly so far, but now that I'm upgrading to GWT 2.5 I'm getting an error ( http

Re: GWT and Comet

2012-11-21 Thread Magnus
seems to have some comet functionality within catalina.jar. But I did not find a working example yet. Magnus -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web

Re: GWT and Comet

2012-11-19 Thread Oliver Raupach
Hi, for the comet part, you only need ActiveMQ and a small Javascript. Have a look at this page: http://activemq.apache.org/ajax.html -- Oliver Raupach Am 19.11.2012 07:27, schrieb Magnus: Hi Oliver! Am Freitag, 16. November 2012 22:00:20 UTC+1 schrieb Oliver Raupach: I've made

Re: GWT and Comet

2012-11-19 Thread Ali Jalal
Hi, There is a pretty good solution for Comet or WebSocket problems: ATMOSPHERE: https://github.com/Atmosphere/atmosphere It has a complete example of a chat application with GWT. I test it and it works very well. See its wiki: https://github.com/Atmosphere/atmosphere/wiki I wait for its next

Re: GWT and Comet

2012-11-19 Thread Magnus
Hi, why is there always the dependency between a comet solution and the actual GWT version? Well, I tried around with atmosphere for a while now, but I did not get happy with it. I just want a jar file and some classes to do server push. But to get a minimal example, I had to use maven (which

Re: GWT and Comet

2012-11-19 Thread b0b
There's gwt-comet which somewhat works (at least with GWT 2.4) but it is abandonned and unmaintained. Which is sad since this is very useful and I think it should this should integrated in GWT itself. Oh and it doesn't work with IE9+ (nothing that can't be fixed but not exaclty trivial last

Re: GWT and Comet

2012-11-18 Thread Magnus
Hi Oliver! Am Freitag, 16. November 2012 22:00:20 UTC+1 schrieb Oliver Raupach: I've made up a starter project to demonstrate the combination of GWT / JMS / COMET / SPRING / JTA / Hibernate. If you like have a look at Githup : https://github.com/raupach/gwt-spring-jpa-jta-jms-comet

Re: gwt-comet - CometException: EventSource error

2012-11-18 Thread Magnus
Hi, here is additional information: The call failed on the server. See the tomcat log below. I also found somewhere that the version of gwt-comet relates to the GWT version. Magnus - Nov 19, 2012 7:30:31 AM org.apache.catalina.core.ApplicationContext log SEVERE: Exception while

gwt-comet - CometException: EventSource error

2012-11-16 Thread Magnus
Hello, I would like to use gwt-comet: http://code.google.com/p/gwt-comet/ To get started, I tested the chat application provided with on the project site: http://code.google.com/p/gwt-comet/wiki/ChatExample I also got the example running: It works fine within eclipse and with GWT development

Re: GWT and Comet

2012-11-16 Thread dhoffer
. Now I came across Tomcat's comet support: One jar file (catalina.jar) and a few classes (CometProcessor, ...). It would be fine if I can use it for my purposes. Question: Are there serious drawbacks when using this solution? Where can I find a minimal example? Thanks! Magnus -- You

Re: GWT and Comet

2012-11-16 Thread Oliver Raupach
Hi, I've made up a starter project to demonstrate the combination of GWT / JMS / COMET / SPRING / JTA / Hibernate. If you like have a look at Githup : https://github.com/raupach/gwt-spring-jpa-jta-jms-comet-hibernate The Projekt did not use 'atmosphere'. It use the Javascript frontend

GWT and Comet

2012-11-15 Thread Magnus
work within my environment, but I am not so happy withit: dozens of atmosphere-*.jar files, the need to use maven to get it running, and other things. Now I came across Tomcat's comet support: One jar file (catalina.jar) and a few classes (CometProcessor, ...). It would be fine if I can use

Free JavaScript, Dojo, jQuery, Ajax, Comet, DWR, JSON daily webinar series

2012-04-18 Thread sangshin
Free JavaScript, Dojo, jQuery, Ajax, Comet, DWR, JSON daily webinar series starts from April 16th. 18 one-hour sessions during the 3 week period (April 16th - May 5th, 2012) 9PM-10PM EDT New York time, 5:30AM-6:30AM (next day) India Time Single registration below lets you register for all 18

The (currently) definite way to achieve Push/Comet/Streaming in a GWT app? :)

2012-01-19 Thread Stefan Sigvardsson
). We have held off dealing with Push, confident that GWT soon would include it natively, but now GWT seems to only focus on app engine from what I can tell. Questions: 1. What is your (currently) recommended way of dealing with Push in GWT? Is it still http://code.google.com/p/gwt-comet

Re: The (currently) definite way to achieve Push/Comet/Streaming in a GWT app? :)

2012-01-19 Thread Andrea Boscolo
There are a lot of libraries out there dealing with comet/push/reverse ajax technology. Some could be: - http://code.google.com/p/gwt-comet/ (I don't see a valid update in almost an year) - http://code.google.com/p/rocket-gwt/wiki/Comet (over 2 year of inactivity) - http://code.google.com/p

Re: The (currently) definite way to achieve Push/Comet/Streaming in a GWT app? :)

2012-01-19 Thread Stefan Sigvardsson
*GWTEventService* looks promising, i'll look into that one. Thanks! -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/_bahhP74zYQJ. To post to this

Re: The (currently) definite way to achieve Push/Comet/Streaming in a GWT app? :)

2012-01-19 Thread Andrea Boscolo
It has its own group: https://groups.google.com/forum/?hl=it#!forum/gwteventservice and forum http://gwteventservice.freeforums.org/ I've been using it in the last few weeks and looks (and works) good for my simple requests. Andrew. -- You received this message because you are subscribed to

Re: Comet with RequestBuilder

2011-06-20 Thread David Chandler
Hi Aldo, You can use RPC and RequestBuilder in the same project. They're independent of each other. /dmc On Sat, Jun 18, 2011 at 10:01 AM, Aldo Neto tumo...@gmail.com wrote: Hi all, I'm trying to implement a comet mechanism using the atmosphere project ( http://code.google.com/p/atmosphere

Comet with RequestBuilder

2011-06-18 Thread Aldo Neto
Hi all, I'm trying to implement a comet mechanism using the atmosphere project ( http://code.google.com/p/atmosphere-gwt-comet/) but I'm struggling with the example that it provides. I use the RequestBuilder in my project to communicate with the server, but the gwt-comet-test uses RPC. Does

Re: Comet and GWT

2011-04-07 Thread Lucas Garcia
I am trying the Chat example provided by gwt-comet. http://code.google.com/p/gwt-comet/source/browse/#svn/trunk/src/net/zschech/gwt/chat/client I am using GWT 2.2.0, gwt-comet 1.2.2, Jetty (comes with GWT in Eclipse) and Eclipse. I copied all the java files, the xml files and put the lib

Comet and GWT

2011-04-06 Thread Lucas Garcia
Is there someone working with Comet in GWT? I tried to look for it, there are some libraries in which allow you to do it, but I couldn't put any of them to work. I've tried rocket-gwt and comet-gwt, but always getting errors and the tutorials they provide are a little bit poor. Could someone give

Re: Comet and GWT

2011-04-06 Thread Alexandre Ardhuin
You can use the atmosphere framework and his GWT module : http://code.google.com/p/atmosphere-gwt-comet/ Alexandre. 2011/4/6 Lucas Garcia somentelu...@gmail.com Is there someone working with Comet in GWT? I tried to look for it, there are some libraries in which allow you to do it, but I

Errai Bus or GWT-comet

2011-03-12 Thread Kathiravan Tamilvanan
We are evaluating the Errai Bus and Gwt-comet for adding server push to our applications. Has anyone used any of the two? Can you provide your thoughts on the two libraries?. Greatly appreciate it. -- You received this message because you are subscribed to the Google Groups Google Web

Comet and GWT problem

2010-11-26 Thread Noor
Hi, I am getting some difficulties with comet on the server First, I am working with the default configuration of the gwt hosted mode(i.e. using jetty), do i need to make any change to enable comet Now, on the server what I want is a client will send a request and then he will be enrolled

Re: Comet and GWT problem

2010-11-26 Thread Noor
if somebody knows how to solve this problem, please help?? thanks -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from this group, send email to

Re: Comet and GWT problem

2010-11-26 Thread Noor
When initiating a comet connection on the client, I am getting this error Error 405 HTTP method GET is not supported by this URL -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-tool

Re: Comet and GWT problem

2010-11-26 Thread mP
@Noor Take a look at your posts, you have given hardly any clues about what has gone wrong - not even a stacktrace. Sit back and ask yourself what else can i say that would be helpful. At a glance it seems that your doing a GET to the wrong URL maybe it should be a PUT, dunno. -- You received

Re: Comet and GWT problem

2010-11-26 Thread Noor
Hi MP, have use tried the gwt comet, does it works?? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from this group, send email to google-web

Re: Comet and GWT problem

2010-11-26 Thread Noor
I am getting this error when using the gwt-comet [WARN] 405 - GET /trycomet/greet?t=2UGMNJc=45 (127.0.0.1) 1470 bytes Request headers Host: 127.0.0.1: User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv: 1.9.2.12) Gecko/20101026 Firefox/3.6.12 Accept

Re: Comet and GWT problem

2010-11-26 Thread Richard
This is a cross post. The original is here http://groups.google.com/group/gwt-comet/browse_thread/thread/c154c425911222c5 From Richard. On Nov 27, 8:17 am, Noor baken...@gmail.com wrote: I am getting this error when using the gwt-comet [WARN] 405 - GET /trycomet/greet?t=2UGMNJc=45 (127.0.0.1

Comet Streamhub

2010-11-25 Thread Noor
I am trying to integrate comet in my application. After reading Streamhub, if found this as of version 1.0.3 and greater, the GWT Comet Adapter only works in compiled mode at http://code.google.com/p/gwt-comet-streamhub/ thus, this means that we will not be able to debug with Streamhub

Deployment: Choosing a Servlet Container and a Comet Framework

2010-11-22 Thread Maurice Nee
replacing some client/server polling with a Comet (Server/Push) framework. Any advice on which framework to use would be most appreciated. Debating between: 1. gwteventservice 2. gwt-comet 3. gwt-comet-streamhub 4. rocket-gwt Lastly this is probably a very stupid question, but is there a way

Re: Comet help about code

2010-10-06 Thread Y2i
/java/util/Map.html On Oct 5, 8:10 pm, Yudji guilhermeyu...@hotmail.com wrote: I read the comet inhttp://code.google.com/p/gwt-comet/source/browse/trunk/src/net/zschec... Can explain to me about the code, because i dont undestand:  public void send(String message) throws ChatException

Re: Comet help about code

2010-10-06 Thread Cristiano
Hi All, this is my pattern of how I implement comet. I may change how I handle the ArrayListMessage or use a timestamp as parameter of get method, but basically I always start from this simple snippet of code. It's for GWT but I've basically used it also in a Web Service and in a REST service

Comet help about code

2010-10-05 Thread Yudji
I read the comet in http://code.google.com/p/gwt-comet/source/browse/trunk/src/net/zschech/gwt/chat/server/ChatServiceImpl.java?r=98 Can explain to me about the code, because i dont undestand: public void send(String message) throws ChatException

Comet help about code

2010-10-05 Thread Yudji
I read the comet in http://code.google.com/p/gwt-comet/source/browse/trunk/src/net/zschech/gwt/chat/server/ChatServiceImpl.java?r=98 Can explain to me about the code, because i dont undestand: public void send(String message) throws ChatException

Re: GWT, web service and reverse ajax/Comet

2010-08-10 Thread Richard
Hi Noosy, Yes gwt-comet will maintain a streaming based (non-polling) connection between the browser and server. You will just have to write the code to hook together the web service event into the comet send. From Richard. On Aug 10, 12:27 am, noosy vanessa.tow...@gmail.com wrote: I'm after

Re: GWT, web service and reverse ajax/Comet

2010-08-10 Thread Shawn Brown
I don't think you can because you can't keep a connection open to the client so polling would be your only option. Sorry I was thinking you were using GoogleAppEngine too. My bad... If not , yeah. -- You received this message because you are subscribed to the Google Groups Google Web

GWT, web service and reverse ajax/Comet

2010-08-09 Thread noosy
I'm after some advice regarding having a web service inside my GWT project. The web service is an event consumer and I would like to update my client side GWT code everytime it consumes a new event. Is there a reverse ajax/comet approach that I could use here? Is it possible for my web service

Re: GWT, web service and reverse ajax/Comet

2010-08-09 Thread Shawn Brown
I have found StreamHub, GWT-Comet (and more) online but I'm not sure if I can use these libaries in the manner I am proposing... I don't think you can because you can't keep a connection open to the client so polling would be your only option. Personally I liked DWR. If you have a 2rd server

Comet on android

2010-03-16 Thread Linus Björk
For the moment I use gwt-comet (net.zschech.gwt.comet), but I can't get it work on Android. On an iPhone it works fine. So i wonder if anyone have a solution to get comet working on Android. What type of comet does google use in Gmail and Wave etc? -- You received this message because you

Re: how to use Comet on Gwt?

2010-02-03 Thread bamd...@gmail.com
Kerem Tiryaki thanks for you hint. i checked the code and understood the concept of doing comet in gwt. but i found that you've implemented comet yourself , i was looking for any framework that help me do comet more easily. recently i found stream-hub and it has community version that will work

Re: how to use Comet on Gwt?

2010-02-03 Thread mariyan nenchev
and understood the concept of doing comet in gwt. but i found that you've implemented comet yourself , i was looking for any framework that help me do comet more easily. recently i found stream-hub and it has community version that will work for 10 users free , but for more users we have to pay

Re: how to use Comet on Gwt?

2010-02-03 Thread bamd...@gmail.com
thanks for your notification. I'm already gathering information about gwt comet framework and checking GWTEventService right now. On Feb 3, 2:51 pm, mariyan nenchev nenchev.mari...@gmail.com wrote: Forgive me, but stream hub sux. We implemented it in our project, but we gave up

Re: how to use Comet on Gwt?

2010-02-03 Thread mariyan nenchev
may share your experience with push frameworks, because i will need it in the near future :). On Wed, Feb 3, 2010 at 2:03 PM, bamd...@gmail.com bamd...@gmail.com wrote: thanks for your notification. I'm already gathering information about gwt comet framework and checking GWTEventService right

Re: how to use Comet on Gwt?

2010-02-03 Thread bamd...@gmail.com
today i emailed stream-hub asking the prices and here is a brief info : Web Edition Pricing Single Server License US$ 999 Support Maintenance (1st year) FREE Web Edition Optional Extras HTTPS Support US$ 499 Support Maintenance (2nd year

Re: how to use Comet on Gwt?

2010-02-02 Thread KeremTiryaki
yep it is just a little open sourced demo :) you can check it from http://code.google.com/p/iflag/ On Feb 1, 11:56 am, mariyan nenchev nenchev.mari...@gmail.com wrote: Is this game opensourced :). On Sun, Jan 31, 2010 at 7:48 PM, KeremTiryaki keremtiry...@gmail.comwrote: check instant

Re: how to use Comet on Gwt?

2010-02-01 Thread mariyan nenchev
Is this game opensourced :). On Sun, Jan 31, 2010 at 7:48 PM, KeremTiryaki keremtiry...@gmail.comwrote: check instant messeger application's source from http://gwtapps.com/ it is a book web site... I think it is very good. I used that book when I was developing this: http://tr.im/iflagame

how to use Comet on Gwt?

2010-01-31 Thread bamd...@gmail.com
hi i'm gwt newbie , and want to make a multiplayer TicTacToe with GWT Comet for proof of concept. i found GWT-Comet , gwt-comet-streamhub , rocket-gwt and... and i dont know which one should i use. does GWT supports Comet or i should use one of mentioned projects? please help me on selecting

Re: how to use Comet on Gwt?

2010-01-31 Thread mariyan nenchev
It depends if you want to pay for it or not. On Sun, Jan 31, 2010 at 12:11 PM, bamd...@gmail.com bamd...@gmail.comwrote: hi i'm gwt newbie , and want to make a multiplayer TicTacToe with GWT Comet for proof of concept. i found GWT-Comet , gwt-comet-streamhub , rocket-gwt and... and i dont

Re: how to use Comet on Gwt?

2010-01-31 Thread mariyan nenchev
On Sun, Jan 31, 2010 at 1:13 PM, mariyan nenchev nenchev.mari...@gmail.comwrote: It depends if you want to pay for it or not. On Sun, Jan 31, 2010 at 12:11 PM, bamd...@gmail.com bamd...@gmail.comwrote: hi i'm gwt newbie , and want to make a multiplayer TicTacToe with GWT Comet for proof

Re: how to use Comet on Gwt?

2010-01-31 Thread Johan Rydberg
On 1/31/10 11:11 AM, bamd...@gmail.com wrote: hi i'm gwt newbie , and want to make a multiplayer TicTacToe with GWT Comet for proof of concept. i found GWT-Comet , gwt-comet-streamhub , rocket-gwt and... and i dont know which one should i use. does GWT supports Comet or i should use one

Re: how to use Comet on Gwt?

2010-01-31 Thread gaill...@audemat.com
You don't have to pay $$$, but pay with your work. Each way to do comet or like needs some work depends on backend and frontend technologies. I'm using lighthttp + fastCGI + xmlrpc backend with gwt-xml-rpc frontend but this is only my way. -- You received this message because you are subscribed

Re: how to use Comet on Gwt?

2010-01-31 Thread KeremTiryaki
check instant messeger application's source from http://gwtapps.com/ it is a book web site... I think it is very good. I used that book when I was developing this: http://tr.im/iflagame -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: how to use Comet on Gwt?

2010-01-31 Thread bamd...@gmail.com
i'm studing it , i hope thing in GWT 2 are the same az GWT1.4 about Comet. by the way thank you. On Jan 31, 8:48 pm, KeremTiryaki keremtiry...@gmail.com wrote: check instant messeger application's source fromhttp://gwtapps.com/ it is a book web site... I think it is very good. I used that book

comet

2009-11-30 Thread ben fenster
can anyone tell me what is the best free comet server i came across so meny diffrent servers and i dont know wether to implement one in rpc or use one of the other already built servers like Liberator -- You received this message because you are subscribed to the Google Groups Google Web

Comet and GWT

2009-11-16 Thread iaio81
Hi all, I need implementing comet with my GWT application and I was reading about Rocket-GWT. Can I decide when send updates to client ? And if so, how? How can Rocket GWT avoid too many connections opened at the same time? Thanks all -- You received this message because you are subscribed

Re: Help using comet in tomcat

2009-09-02 Thread abhiram
Hi, Sorry that I am replying this late. But try to import the catalina.jar file into your project. U can find that in the lib folder within your tomcat folder. Once you do that, this error would disappear. HTH, Abhiram On Aug 1, 4:35 pm, Nathan Wells nwwe...@gmail.com wrote: When do you see

atmosphere comet api?

2009-08-26 Thread studproc
is there any tutorial on using gwt with atmosphere comet api ? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com

Re: Help using comet in tomcat

2009-08-01 Thread Nathan Wells
question, but this might help: http://tomcat.apache.org/tomcat-6.0-doc/aio.html You probably already knew this, but catalina is an internal name for Apache's Tomcat server. It is likely that you may need to do some additional configuration before you can do Comet-like stuff in hosted mode

Re: Help using comet in tomcat

2009-07-31 Thread Nathan Wells
Comet-like stuff in hosted mode. HTH Nathan On Jul 30, 9:45 am, BarefootSanders mgold...@gmail.com wrote: Hi all.  I'm trying to reproduce the application here: http://gwtapps.com/?page_id=31 Its a simple instant messenger which uses comet for events.  It imports these two classes: import

Help using comet in tomcat

2009-07-30 Thread BarefootSanders
Hi all. I'm trying to reproduce the application here: http://gwtapps.com/?page_id=31 Its a simple instant messenger which uses comet for events. It imports these two classes: import org.apache.catalina.CometEvent; import org.apache.catalina.CometProcessor; But I guess I dont have them on my

GWT Comet Processor Implementation

2009-06-13 Thread Kousikraj
Hi, I am trying to implement CometProcessor in GWT 1.6. I got a sample for the same from http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/ee2f9207de953fc0d886f73f7dd17388?lnk=raot But still that implementations was for older versions of GWT. Does anyone got a sample for

Re: GWT Comet Processor Implementation

2009-06-13 Thread Mark
The link you posted doesn't work for me, I don't know what CometProcessor is but if you just need a Comet implementaton for GWT you can try GWTEventService. On Jun 13, 5:29 am, Kousikraj kousik...@gmail.com wrote: Hi, I am trying to implement CometProcessor in GWT 1.6. I got a sample

Regarding GWT and comet

2009-01-19 Thread neversaydie
Hello, We are planning to user comet in our yet to be started application. Just wanted to know if any problems in using comet or there is anything better than comet which can be used with GWT ? Thanks for your information in advance

Re: Regarding GWT and comet

2009-01-19 Thread David Hoffer
we use rocket-gwt you might want to check it out. Dave Hoffer - sent via G1 On Jan 19, 2009 4:17 PM, neversaydie moge...@gmail.com wrote: Hello, We are planning to user comet in our yet to be started application. Just wanted to know if any problems in using comet or there is anything

Re: GWT + comet?

2008-09-29 Thread [EMAIL PROTECTED]
for future reference in case someone else comes in and asks (Comet usually comes up once a month or so). For game development: Just screw IE. There's no way to do halfway decent graphics on IE, period. Go flash, or tell people to switch to firefox/opera/safari/comet. All 3 non-IE browsers

Re: GWT + comet?

2008-09-08 Thread Thomas Broyer
On 7 sep, 05:50, markww wrote: Is there any 'comet' support via GWT at the moment? I'm not completely up to speed with javascript / browser technologies, I believe comet was the practice of having the browser keep a connection open to the server so the server could push data to the browser

Re: GWT + comet?

2008-09-08 Thread markww
Ok so after doing some reading it seems there are quite a few viable options on how to get started with comet. I can choose any setup I want for the backend, right now I'm leaning towards Jetty but it's hard to decide. There seem to be articles dating from 2007 / GWT 1.4 which give conflicting

Re: GWT + comet?

2008-09-08 Thread Thomas Broyer
On Sep 8, 7:49 pm, markww [EMAIL PROTECTED] wrote:       -can you debug your webapp using Jetty as the server, I thought GWT uses Tomcat        by default? GWTShell embeds Tomcat, but you can use the -noserver mode and use whatever server software you want. You just lose the ability to

Re: GWT + comet?

2008-09-07 Thread Reinier Zwitserloot
As you said, comet is a complex problem on the server side. On the client it's relatively straightforward. Some issues: 1) You either need an async webserver (such as something based on the fairly new java Simple, or the continuation support available in jetty), or you need an OS + VM combo

Re: GWT + comet?

2008-09-07 Thread markww
to support 'comet'. From a game development point of view, this is great because we can wait for the server to send us data instead of constantly polling it. One thing that still seems to be missing is fast graphics support, to actually render dynamic game data. I was working with the gwt canvas

Re: GWT + comet?

2008-09-07 Thread Reinier Zwitserloot
Glad you liked the missive. I've saved a bookmark for future reference in case someone else comes in and asks (Comet usually comes up once a month or so). For game development: Just screw IE. There's no way to do halfway decent graphics on IE, period. Go flash, or tell people to switch

GWT + comet?

2008-09-06 Thread markww
Hi, Is there any 'comet' support via GWT at the moment? I'm not completely up to speed with javascript / browser technologies, I believe comet was the practice of having the browser keep a connection open to the server so the server could push data to the browser whenever it wanted, instead