Re: WebSQL with GWT

2011-09-09 Thread Hilario Perez Corona
Wow, thanks for the link. This implementation looks really good. -- 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/-/EBrXILb9hCAJ. To post to this

WebSQL with GWT

2011-09-08 Thread Hilario Perez Corona
Hi, Doing some searches, i've not found any libraries for using WebSQL on GWT. Maybe i did my searches wrong and there are libraries for this... Anyway, i've decided to write my first library on GWT, to use WebSQL. Here it is: https://github.com/hpcorona/gwt-websql It's my first library, and

RPC Number after full class name

2011-08-17 Thread Hilario Perez Corona
Hi, I'm creating a GWT-RPC server on Go, and i'm having a problem... When sending or returning RPC data, all class names have a number, for example: my.project.model.Data/*12345678* It appears that the number is some kind of versioning. Anybody knows how to generate that number so my JSON

Re: Widget Calendario

2011-08-12 Thread Hilario Perez Corona
Please, use english on this group. -- 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/-/DWodS_-Xr_oJ. To post to this group, send email to

Re: java.util.Date serialization on RPC...

2011-08-11 Thread Hilario Perez Corona
Ok, i've resolved the mistery... And if anyone is wondering, here's how it works. The date is a simple Long value containing the milliseconds. It is encoded in something that looks like base64, but using this characters: ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789$_ Where:

java.util.Date serialization on RPC...

2011-08-10 Thread Hilario Perez Corona
Hi, I'm working on a Go implementation of GWT-RPC... It's in a very early stage, but it's working fine for most objects... One object that i don't know how to convert is the java.util.Date class. It sends something like this: TGyZwy5 And i don't have a clue of how to convert it to