Re: GWT: Deserialize objects sent/received via websocket

2023-10-23 Thread Thomas Broyer
On Sunday, October 22, 2023 at 3:25:18 PM UTC+2 an.s...@gmail.com wrote: Hi everyone, thanks for all the thoughts about the topic. After further investigation of the protocol, it seems like there is no pbject serialization involved. Instead, the application creates a websocket and

Re: GWT: Deserialize objects sent/received via websocket

2023-10-22 Thread an . schall
Hi everyone, thanks for all the thoughts about the topic. After further investigation of the protocol, it seems like there is no pbject serialization involved. Instead, the application creates a websocket and establishes a AES-CBC encrypted channel. Hence, the binary blobs that I was seeing

Re: GWT: Deserialize objects sent/received via websocket

2023-10-20 Thread Colin Alworth
Seeing traffic wouldn't hurt, but it would be easiest to discover by looking at code - finding "WebSocket" in the codebase, then seeing what the import is. Alternatively, the compiled JS will probably have some hints, depending on how it was built. As to the authenticati

Re: GWT: Deserialize objects sent/received via websocket

2023-10-20 Thread Thomas Broyer
ormat: https://grpc.io/) looks like on the web, but it's possible they use "binary" nowadays. On Friday, October 20, 2023 at 3:10:17 PM UTC+2 an.s...@gmail.com wrote: > Dear Colin, > > thanks for the quick response. I did observe the authentication approach > via Burp

Re: GWT: Deserialize objects sent/received via websocket

2023-10-20 Thread An Schall
Dear Colin, thanks for the quick response. I did observe the authentication approach via BurpSuite that allows me to investigate each HTTP / websocket request / response. From this perspective, I can see that upon submitting my credentials to the webapp, there is only one HTTP POST request

Re: GWT: Deserialize objects sent/received via websocket

2023-10-20 Thread Colin Alworth
While GWT offers websocket support, the only support is "now you can send messages on a websocket" - no serialization is offered, beyond what the browser itself provides (allowing sending a utf8 string, arraybuffers, blobs, typedarrays, or arrayviews). How are you verifying mess

GWT: Deserialize objects sent/received via websocket

2023-10-20 Thread An Schall
Hi, I am very new to GWT and have questions about the basic principles of how GWT via websockets work. I would like to analyze the authentication function of a given GWT web application. When authenticating with my credentials, I could identify that my credentials are sent via websocket in

Re: Refresh of CellTable via data transmitted via WebSocket delayed

2016-09-24 Thread Kay Pac
Thanks very much Thomas - that was it. I checked the gwt-websocket, and it is indeed using $entry, while gwt-stomp is not. I altered the code and the problem seems to be resolved. Whew! So happy to have found this solution. Kay On Friday, September 23, 2016 at 1:21:42 AM UTC-7, Thomas Broyer

Re: Refresh of CellTable via data transmitted via WebSocket delayed

2016-09-23 Thread Thomas Broyer
On Friday, September 23, 2016 at 2:04:19 AM UTC+2, Kay Pac wrote: > > I have a somewhat complex problem related to a CellTable that updates > based on messages received over a WebSocket connection. The problem is as > follows: The table does not update in real-time, even though

Refresh of CellTable via data transmitted via WebSocket delayed

2016-09-22 Thread Kay Pac
I have a somewhat complex problem related to a CellTable that updates based on messages received over a WebSocket connection. The problem is as follows: The table does not update in real-time, even though "setRowData" and redraw* are called in real-time. There is a delay in the row

Re: WebSocket (JSR 356) + DevMode

2015-01-29 Thread Fabien DUMAY
-toolkit/issues/detail?id=8747> and > follow links; the Gerrit guys had to do it as they depend on Jetty 9 too (for > other purposes than websocket though; and they don't use GWTTestCase, hence > HtmlUnit). > The workaround consists in using a customized gwt-dev though (where

Re: WebSocket (JSR 356) + DevMode

2015-01-29 Thread Thomas Broyer
Start here <https://code.google.com/p/google-web-toolkit/issues/detail?id=8747> and follow links; the Gerrit guys had to do it as they depend on Jetty 9 too (for other purposes than websocket though; and they don't use GWTTestCase, hence HtmlUnit). The workaround consists in using a

WebSocket (JSR 356) + DevMode

2015-01-29 Thread Fabien Dumay
Hey folks, I'm implementing a nice way to use WebSocket on PWT. Ideally I would love to be able to use it with the DevMode. But actually the DevMode embeds Jetty 8 because of HtmlUnit. And the JSR 356 is only supported since the Jetty 9. Does anyone has a workaround to run DevMode or SDM w

Re: Plan for Official WebSocket Support?

2015-01-24 Thread Peter Donald
Just FYI there is an actively maintained websockets library at https://github.com/realityforge/gwt-websockets On Sat, Jan 24, 2015 at 7:41 PM, Art Hsieh wrote: > Hi All, > > I can't seem to find any plan regarding adding the official WebSocket > support to GWT. I know there is

Plan for Official WebSocket Support?

2015-01-24 Thread Art Hsieh
Hi All, I can't seem to find any plan regarding adding the official WebSocket support to GWT. I know there is at least one open source project (gwt-ws) exists, but I am just wondering if GWT is considering adding WebSocket support into next official release. Thanks, Art -- You received

Re: WebSocket support in GWT

2011-01-02 Thread Thomas Broyer
See https://wave.google.com/wave/waveref/googlewave.com/w+4mwxnYKcD and https://wave.google.com/wave/waveref/googlewave.com/w+pBzVdsE4D ...and http://gwt-code-reviews.appspot.com/699801 (among others, I believe) In brief, yes, they're thinking about it (and more than thinking actually), but the

Re: WebSocket support in GWT

2011-01-01 Thread rjcarr
WT. I'm sure if you search on "push notifications" or "comet" you'll get some good guidance. On Dec 31 2010, 11:54 am, EMan wrote: > anyone know if Google plans on having (or already has) websocket > support in GWT?  I cannot find any documentation on it if it a

WebSocket support in GWT

2010-12-31 Thread EMan
anyone know if Google plans on having (or already has) websocket support in GWT? I cannot find any documentation on it if it already exists. Anyone done anything successfully with websockets and GWT that they would recommend? Thanks. -- You received this message because you are subscribed to

Re: WebSocket

2010-02-05 Thread PeterL
Actually, you can have 100% WebSocket support--just use Kaazing WebSocket Gateway. That supports native as well as WebSocket emulation for all the older browsers, including IE. and it is super scalable. Regards, Peter On Feb 3, 4:27 am, "dolcra...@gmail.com" wrote: > I'm p

Re: WebSocket

2010-02-03 Thread dolcra...@gmail.com
I'm pretty sure you can write a library to add this functionality, you would just need to have graceful degradation support for all those browsers and servers that do not support websocket. It would probably have to be a combination of Websocket/(ServerSendEvents+XHR)/(Comet/ Continuation

WebSocket

2010-02-02 Thread Jim
Hello, Is GWT Ready for a WebSocket architecture ? Thx -- 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

Websocket

2010-01-11 Thread hemodroid
Is GWT compatible with websockets? -- 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-toolkit+unsubscr...@googl