Re: does xml API use gwt's own engine?

2011-09-18 Thread leandro borbosa
I think GWT leverages the browser implementation for XML processing.

2011/9/18 wahaha 

> gwt's xml API,is it use his own analyzing engine or not?
>
> --
> 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.
> To unsubscribe from this group, send email to
> google-web-toolkit+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>
>

-- 
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.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: byte array to Image

2011-09-18 Thread leandro borbosa
I also needed this one.
Thx for sharing !

2011/9/18 AgitoM 

> Hi All,
>
> Thank you so much for the many replies.
> Tried out the solution and library suggested by Xi just now, since his
> solution was the easiest to verify.
> It works.
>
> After having downloaded this library:
> http://sourceforge.net/projects/migbase64/
>
> I convert the byte string like this:
> String base64String = "data:image/png;base64," +
> Base64.encodeToString(image,false);
>
> Then simply use it at the client side like this:
> Image image = new Image(base64String);
>
> The image now displays. I think the base64 library I initially used
> was not browser safe as Jens and Thad suggested.
> Would have build a servlet as Jens suggested if it had not worked.
>
> As for your question Alexandre, I don't know why the service developer
> suggested I could not use base64.
> Could have been inexperience on his behalf :-). Clearly base64 does
> work.
>
> On Sep 17, 12:02 am, Xi  wrote:
> > Hi,
> >
> > I've usedhttp://sourceforge.net/projects/migbase64/in my
> > application, to convert the byte array to a base64 string, which works
> > pretty well and efficient
> > My code is like : String base64 = "data:image/png;base64," +
> > Base64.encodeToString(bytes,false);
> > And at the client side, you just set the value into an image
> > element's "src" attribute.
> >
> > But be careful, IE CAN NOT take charge of an image that bigger
> > than 32KB by using the "Base64" way.
> >
> > Hope this can help you.
> >
> > On 16 sep, 12:54, AgitoM  wrote:
> >
> > > Hi all,
> >
> > > From a web service I am receiving a byte array that represents a
> > > image.
> > > I need to somehow squeeze this byte array into a image widget or
> > > similar widget on my client side.
> >
> > > First I tried to convert the byte array to a base64 string:
> > > String base64 = Base64Utils.toBase64(image);
> > > base64 = "data:image/png;base64,"+base64;
> >
> > > This didn't work. The developer of the web service informed me that I
> > > should not convert the byte array to a base64 string, and just use it
> > > directly.
> >
> > > To test if the byte array represented a correct image, I saved the
> > > byte array to a physical image:
> > > InputStream in = new ByteArrayInputStream(image);
> > > BufferedImage bImage = ImageIO.read(in);
> >
> > > File outputfile = new File("saved.png");
> > > ImageIO.write(bImage, "png", outputfile);
> >
> > > This succesfully resulted in a physical image being created.
> >
> > > However I don't want to write the file and then send the URL to the
> > > image widget on my client side.
> >
> > > Anybody have any suggestion about how I can get this byte array
> > > squeezed into a image?
> > > Or convert this byte array to a base64 string that does work?
>
> --
> 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.
> To unsubscribe from this group, send email to
> google-web-toolkit+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>
>

-- 
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.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT4Touch is now in beta phase, take it for a spin!

2011-09-18 Thread leandro borbosa
I second Tom pretty nice release.
I will definitly have a closer look at it.
Gwt4Flex, Gwt4Titanuim Mobile, Gwt4Touch, Gwt4Titanium Desktop  you guyz are
pretty active :)

Good luck.

Leandro

2011/9/18 Alain Ekambi 

> Hi Tom,
> I m glad you saw the chart example. Like you suspected we are currenttly
> adding support for the Sencha Data Package.
> That example illustrate the use of the JsonStore. Before the final release
> we will add more demos illustrating how  to use stores with widgets.
>
> We actually do not use any tools to generate the GWT overlays. The problem
> we had with automatic generation is that the documentation of the different
> products is most of the times broken or incomplete. Since we would hav to
> check anyway if the Java method actually does what the underlying JS methog
>  does  we decided to write everything by hand ! This is a huge amount of
> work considering the size of the libraries we support but it gives us more
> control over the Java API.
>
> Thx for the inputs and keep them coming.
>
> Cheers.
>
> Alain
>
>
>
>
> 2011/9/18 Tom Carchrae 
>
>> Some more digging and I see how you are doing it at the moment (creating
>> Js data and passing it in)
>>
>>  http://www.gwt4touch.appspot.com//sources/demos/linechart.html
>>
>>
>>
>> On Sun, Sep 18, 2011 at 5:38 AM, Tom Carchrae  wrote:
>>
>>> This is pretty cool.
>>>
>>> But, unless I just didn't see it, it does not look like there is any way
>>> to get data in/out of Sencha's Store objects.
>>>
>>> How are you supposed to populate the data of the components?  Is this
>>> possible?
>>>
>>> Or more generally, how are you supposed to use this to populate data in
>>> the components.  (my expectation is a wrapper on the Store API for CRUD and
>>> ability to add listeners)
>>>
>>> Btw, are you using any library/tool to auto-generate the GWT JS wrapper?
>>>
>>>
>>> Tom
>>>
>>>
>>> On Fri, Sep 16, 2011 at 9:48 AM, Alfredo Quiroga-Villamil <
>>> laww...@gmail.com> wrote:
>>>
 All:

 Ready for you to play with is our latest addition GWT4Touch which
 includes chart support. Develop slick Sencha Touch mobile apps in Java.

 Take it for a spin, visit us at http://www.emitrom.com/gwt4touch

 As usual any feedback will be greatly appreciated.

 The Emitrom Team.

 --
 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.
 To unsubscribe from this group, send email to
 google-web-toolkit+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/google-web-toolkit?hl=en.

>>>
>>>
>>  --
>> 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.
>> To unsubscribe from this group, send email to
>> google-web-toolkit+unsubscr...@googlegroups.com.
>> For more options, visit this group at
>> http://groups.google.com/group/google-web-toolkit?hl=en.
>>
>
>
>
> --
>
> GWT API for  non Java based platforms
> http://code.google.com/p/gwt4air/
> http://www.gwt4air.appspot.com/
>
>
>  --
> 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.
> To unsubscribe from this group, send email to
> google-web-toolkit+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>

-- 
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.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Gwt4Titanium Mobile 1.1.0 Preview: Introducing DevMode

2011-09-07 Thread leandro borbosa
I second Gal: great job Emitrom Team !
With DevMode this is a totally different story
.
I wonder how this work ?
Honeslty i doubted this could even be possible.
Did you wrote a plugin for Titanium Mobile similar  to the browser plug in ?
Most importantly  is the preview available somewhere to play with ?
Thanks

L Bbosa

2011/9/8 Gal Dolber 

> now is a good deal!
> Great job!
>
>
> On Wed, Sep 7, 2011 at 7:26 PM, Alain Ekambi 
> wrote:
>
>> Hello folks,
>> Some days  ago we introduced *  Gwt4Titanium Mobile*, which aims to give
>> developers the ability to write* native mobile applications* for Android
>> and  IOS
>> by leveraging  *GWT* and the* Appcelerator Titanium Platform*. Next to
>> provide a *100% coverage of the Titanium API*, we added other features
>>  like :
>>
>> - I18N Support.
>> - GWT-RPC, RequestFactory as well as RequestBuilder
>> - Dependency Injection support via GIN.
>> - JSON and XML to POJOs support.
>> - Event Bus support.
>> - etc...
>>
>> But a really important part was missing: The ability to run and debug the
>> Java code right frm the GWT project without compiling it to JavaScript.
>> At Emitrom we have been working really hard to provide this missing part.
>>
>> With version 1.1 coming out soon we are glad to introduce* DevMode
>> for Gwt4Titanium Mobile*.
>> Please visit : http://www.youtube.com/watch?v=HYa_ctox6iw   to see it in
>> action.
>>
>> We are looking forward to hearing your inputs.
>>
>> To find out more visit us at:
>> http://www.emitrom.com/ 
>> gwt4timobile
>>
>>
>> Happy Coding from the Emitrom Team!
>>
>>
>>
>>
>>
>>
>>  --
>> 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.
>> To unsubscribe from this group, send email to
>> google-web-toolkit+unsubscr...@googlegroups.com.
>> For more options, visit this group at
>> http://groups.google.com/group/google-web-toolkit?hl=en.
>>
>
>
>
> --
> Guit: Elegant, beautiful, modular and *production ready* gwt applications.
>
> http://code.google.com/p/guit/
>
>
>
>
>  --
> 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.
> To unsubscribe from this group, send email to
> google-web-toolkit+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>

-- 
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.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Java's "Write Once, Run Anywhere" for Mobile with GWT is Here!

2011-08-29 Thread leandro borbosa
Is nt this the same as in the
gwt4air(http://code.google.com/p/gwt4air/) project
?

2011/8/29 Alfredo Quiroga-Villamil 

> All:
>
> We are really happy to announce the addition of GWT4Titanium Mobile to
> our suite of available products.
>
> With a 100% implementation of the Appcelerator's API for Titanium
> Mobile, it has never been easier to develop cross platform mobile
> applications and all from the convenience of your Titanium Studio IDE
> in Java. Reuse all the GWT techniques you are already familiar with.
>
> - Write native applications for Android and IOS in Java using GWT and
> Titanium.
> - I18N Support.
> - GWT-RPC, RequestFactory as well as RequestBuilder for your Ti Mobile
> Apps.
> - Dependency Injection support via GIN.
> - JSON and XML to POJOs support.
> - Event Bus support.
>
> Would you like to find out more? Visit us at:
>
> http://www.emitrom.com/gwt4timobile
>
> Happy Coding from the Emitrom Team!
>
> --
> 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.
> To unsubscribe from this group, send email to
> google-web-toolkit+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>
>

-- 
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.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Gwt touch ui

2011-07-29 Thread leandro borbosa
Just tested it on  the IPad2 works great.
It looks like Sencha Touch. Is it Sencha touch ?

2011/7/29 Juan Pablo Gardella 

> Thanks Alain!! Wonderfull!!
>
>
> 2011/7/29 Alain Ekambi 
>
>> Here is a preview of  gwt4touch 1.0  wich will be shipped in the next
>> release of gwt4air.
>>
>> http://gwt4air.googlecode.com/svn/trunk/touch/GwtAir.html
>>
>> Like alway feedbacks  are really welcome
>>
>> Cheers,
>>
>> Alain
>>
>>
>> 2011/7/8 Gal Dolber 
>>
>>> great news! thanks Alain
>>>
>>> On Friday, July 8, 2011, Alain Ekambi 
>>> wrote:
>>> > Not Flash.Pure Gwt based solution
>>> >
>>> > 2011/7/8 Gal Dolber 
>>> >
>>> > Hi Alain,touch support with flash? do you mean only for android
>>> devices?
>>> > On Fri, Jul 8, 2011 at 3:27 AM, Alain Ekambi <
>>> jazzmatad...@googlemail.com> wrote:
>>> > gwt4air 2.2 will actually have a Gwt Touch moduleStay tuned :)
>>> >
>>> >
>>> >
>>> >
>>> > 2011/7/8 Gal Dolber 
>>> >
>>> >
>>> >
>>> >
>>> > Is anyone doing some open source work on gwt + touch ui?
>>> > This demo is totally incredible
>>> http://dev.sencha.com/deploy/touch/examples/kitchensink/
>>> >
>>> >
>>> >
>>> >
>>> >
>>> >
>>> > We must have this implemented with gwt
>>> > --
>>> > Guit: Elegant, beautiful, modular and *production ready* gwt
>>> applications.
>>> >
>>> > http://code.google.com/p/guit/
>>> >
>>> >
>>> >
>>> >
>>> >
>>> >
>>> >
>>> >
>>> > --
>>> > 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.
>>> > To unsubscribe from this group, send email to
>>> google-web-toolkit+unsubscr...@googlegroups.com.
>>> > For more options, visit this group at
>>> http://groups.google.com/group/google-web-toolkit?hl=en.
>>> >
>>> >
>>> > --
>>> >
>>> > GWT API for  non Java based platforms
>>> > http://code.google.com/p/gwt4air/http://www.gwt4air.appspot.com/
>>> >
>>> >
>>> >
>>> >
>>> >
>>> >
>>> >
>>> >
>>> >
>>> > --
>>> > 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.
>>> > To unsubscribe from this group, send email to
>>> google-web-toolkit+unsubscr...@googlegroups.com.
>>> > For more options, visit this group at
>>> http://groups.google.com/group/google-web-toolkit?hl=en.
>>> >
>>> >
>>> > --
>>> > Guit: Elegant, beautiful, modular and *production ready* gwt
>>> applications.
>>> >
>>> > http://code.google.com/p/guit/
>>> >
>>> >
>>> >
>>> >
>>> >
>>> >
>>> >
>>> >
>>> > --
>>> > 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.
>>> > To unsubscribe from this group, send email to
>>> google-web-toolkit+unsubscr...@googlegroups.com.
>>> > For more options, visit this group at
>>> http://groups.google.com/group/google-web-toolkit?hl=en.
>>> >
>>> >
>>> > --
>>> >
>>> > GWT API for  non Java based platforms
>>> > http://code.google.com/p/gwt4air/
>>> > http://www.gwt4air.appspot.com/
>>> >
>>> >
>>> >
>>> >
>>> >
>>> > --
>>> > 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.
>>> > To unsubscribe from this group, send email to
>>> google-web-toolkit+unsubscr...@googlegroups.com.
>>> > For more options, visit this group at
>>> http://groups.google.com/group/google-web-toolkit?hl=en.
>>> >
>>>
>>> --
>>> Guit: Elegant, beautiful, modular and *production ready* gwt
>>> applications.
>>>
>>> http://code.google.com/p/guit/
>>>
>>> --
>>> 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
>>> .
>>> To unsubscribe from this group, send email to
>>> google-web-toolkit+unsubscr...@googlegroups.com.
>>> For more options, visit this group at
>>> http://groups.google.com/group/google-web-toolkit?hl=en.
>>>
>>>
>>
>>
>> --
>>
>> GWT API for  non Java based platforms
>> http://code.google.com/p/gwt4air/
>> http://www.gwt4air.appspot.com/
>>
>>
>>  --
>> 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.
>> To unsubscribe from this group, send email to
>> google-web-toolkit+unsubscr...@googlegroups.com.
>> For more options, visit this group at
>> http://groups.google.com/group/google-web-toolkit?hl=en.
>>
>
>  --
> 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.
> To unsubscribe from this group, send email to
> google-web-toolkit+unsubscr...@googlegroups.com.
> For more options, visi

Re: GWT meets Adobe Flex: gwt4air 2.1 is here !

2011-06-24 Thread leandro borbosa
+1 for that keyboard. I needed it yesterday.

2011/6/24 Alain Ekambi 

> Hi there,
> Sorry i forgot to add an infobox to that demo.
> The Keyboard is not in 2.1
> Will be in 2.2
>
> 2011/6/24 gwt.user 
>
> Hi Alain
>> I just saw this component in the explorer
>> http://www.gwt4air.appspot.com/#mx.extended.KeyBoar
>> d
>> But could not find it in 2.1
>> Amazing component. I ve been looking for something like for a long time
>> now
>> Man i want that now !!! :)
>>
>>
>>
>>
>>
>>  --
>> 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/-/2hdIoZIyuMMJ.
>>
>> To post to this group, send email to google-web-toolkit@googlegroups.com.
>> To unsubscribe from this group, send email to
>> google-web-toolkit+unsubscr...@googlegroups.com.
>> For more options, visit this group at
>> http://groups.google.com/group/google-web-toolkit?hl=en.
>>
>
>
>
> --
>
> GWT API for  non Java based platforms
> http://code.google.com/p/gwt4air/
> http://www.gwt4air.appspot.com/
>
>
>  --
> 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.
> To unsubscribe from this group, send email to
> google-web-toolkit+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>

-- 
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.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Clientside file generation with GWT

2011-06-13 Thread leandro borbosa
You are really coming up with some incredible stuff lately man.
Clientside file generation is definitly something really needed.
The demo works pretty well.
Good work.


2011/6/12 Juan Pablo Gardella 

> Great work Alain!! Thanks for share it
>
>
> 2011/6/12 Alain Ekambi 
>
>> Beeing able to generate files on the client is a common requirement  and a
>> usefull  feature for a webapplication .
>> In one of our applications for example we have users generating reports
>> every 30-45 seconds. By beeing able to do that on the client we do not need
>> to scale our servers when the number of users grows.
>>
>> Gwt4Air (http://code.google.com/p/gwt4air/)  introduced in version 2.1 a
>> File API that uses Flex and let u create files(PDF , Excel, Text, PNG,
>> JPEG...) on the client by adding a Flex widget into your GWT application.
>> The problem with that approach is that you needed to load  an entire
>> instance of the Flex framework just to be able to read/write files on the
>> client
>>
>> Gwt4air 2.2 will introcude a more lightweigt solution that does not
>> require Flex(Flash is still needed dough).  Please take a minute to visit:
>>
>> http://gwt4air.googlecode.com/svn/trunk/exporter/GwtAir.html
>>
>> to see the preview in action
>>
>> I m lookig forward to hearing your feedback.
>>
>> Regards,
>>
>> Alain
>>
>> --
>>
>> GWT API for  non Java based platforms
>> http://code.google.com/p/gwt4air/
>> http://www.gwt4air.appspot.com/
>>
>>
>>  --
>> 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.
>> To unsubscribe from this group, send email to
>> google-web-toolkit+unsubscr...@googlegroups.com.
>> For more options, visit this group at
>> http://groups.google.com/group/google-web-toolkit?hl=en.
>>
>
>  --
> 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.
> To unsubscribe from this group, send email to
> google-web-toolkit+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>

-- 
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.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT meets Adobe Flex: gwt4air 2.1 is here !

2011-06-13 Thread leandro borbosa
Sorry I  send the post to fast
I was asking if you can share how the Flex API internaly works ? I mean not
necessary open sourcing it. But just share the principle.
Thanks
Leandro

2011/6/13 leandro borbosa 

> Your work s really impressive man.
> GWT is a great tool (Thanks Google)
> But guys like you are bringing GWT to another level.
>
> I will join Denis and ask you if you can share how the Flex API int
> Keep it up ?
>
>
> 2011/6/10 Alain Ekambi 
>
>> @Denis.
>> The "ActionScript part" of gwt4air is not  opensource. Also i dont know if
>> i ll open that yet. Need to think about it.
>>
>> @Leandro
>> The idea of gwt4air started after we had a requirement to implement a web
>> and a desktop client for the same application. We wanted to be able to do
>> that using only one code basis. GWT provided us the right platform to do so.
>> Because GWT generates HTML/JS and CSS we could deploy the same code to the
>> browser and to AIR. Then  then client wanted to also hav a Flex widget on
>> the web client (to enable client side PDF generation). Because i wanted to
>>  that using GWT I started looking for a solution. And the results of those
>> researchs is what you see in gwt4air
>>
>> If you are more interested you can see the story of the genesis here:
>> http://code.google.com/p/gwt4air/wiki/Beginn
>>
>>
>> Best,
>>
>> Alain
>>
>>
>> 2011/6/8 leandro borbosa 
>>
>>> This is a free time project ? ?
>>> Really impressive stuff.
>>>
>>> "Hopefully i did a good job at that."
>>> I  ve played around with the library i must say you did more then a good
>>> job at that.
>>> I still cant believe i m writing a Flex application.
>>>
>>> I just wonder what makes you start this project. I mean Flex is not a
>>> small framework. Exporting it to GWT must have been some hard work.
>>>
>>> 2011/6/7 Alain Ekambi 
>>>
>>>> Hello Alexandro,
>>>>
>>>> Thank you for your kind words.
>>>> I m glad that you like the project. I m also happy that it can help you
>>>> solve some of the problems you have.
>>>> Gwt4Air is  a free time project. We use it internally at the company i
>>>> work but i dont get paid for that. It s small company so i decided to play
>>>> the nice guy :).But I wish I could do this full time  dough.
>>>>
>>>> i m know the link you provided. As a matter of fact i have a comment
>>>> there.
>>>> While searching for ideas on how to implement the Flex API i came
>>>> accross that post. What i did not like about that solution was the fact 
>>>> that
>>>> the user must deal with both sides. Flex and GWT. I wanted a more simpler
>>>> solution where one will only programm in Java like any GWT project.
>>>> Hopefully i did a good job at that.
>>>>
>>>> Concerning what the Adobe Engineer told you: I think  what he ment is
>>>> that  for every MXML based Flex project the MXML Compiler  does  some
>>>> initialization work that you will have to do manually  if you dont want to
>>>> use MXML. And that initialization is a quiet complex thing. So  he probably
>>>> thought that no one would be crazy enough to try to figure out what the
>>>> compiler really does . But because i wanted to use GWT to write Flex
>>>> applicatons i had to be  crazy enough lol.
>>>>
>>>> cheers,
>>>>
>>>> Alain
>>>>
>>>> 2011/6/5 leandro 
>>>>
>>>>> Hi,
>>>>> I just went to your project and i have to say this is just mind
>>>>> blowing!
>>>>> Are you doing this full time ?
>>>>> Really i wonder how you guyz come up with this kind of stuff.
>>>>> We have been struggling integrating  flex client into how existing GWT
>>>>> application.
>>>>> We ve tried this  solution here
>>>>> http://lgrammel.blogspot.com/2010/02/i-am-working-on-project-that-integrates.html
>>>>> but  that did not scale very well. Maintining MXML/AS3, JavaScript and
>>>>> Java in the same project is a nightmare.
>>>>> Last year at Adobe Max i asked an engineer at from adobe if it s
>>>>> possible to write Flex applications without using AS3 and MXML because we
>>>>> wanted to keep everything in Java
>>>>> and he basically said that s impossible. So i wonder how do you d

Re: GWT meets Adobe Flex: gwt4air 2.1 is here !

2011-06-13 Thread leandro borbosa
Your work s really impressive man.
GWT is a great tool (Thanks Google)
But guys like you are bringing GWT to another level.

I will join Denis and ask you if you can share how the Flex API int
Keep it up ?


2011/6/10 Alain Ekambi 

> @Denis.
> The "ActionScript part" of gwt4air is not  opensource. Also i dont know if
> i ll open that yet. Need to think about it.
>
> @Leandro
> The idea of gwt4air started after we had a requirement to implement a web
> and a desktop client for the same application. We wanted to be able to do
> that using only one code basis. GWT provided us the right platform to do so.
> Because GWT generates HTML/JS and CSS we could deploy the same code to the
> browser and to AIR. Then  then client wanted to also hav a Flex widget on
> the web client (to enable client side PDF generation). Because i wanted to
>  that using GWT I started looking for a solution. And the results of those
> researchs is what you see in gwt4air
>
> If you are more interested you can see the story of the genesis here:
> http://code.google.com/p/gwt4air/wiki/Beginn
>
>
> Best,
>
> Alain
>
>
> 2011/6/8 leandro borbosa 
>
>> This is a free time project ? ?
>> Really impressive stuff.
>>
>> "Hopefully i did a good job at that."
>> I  ve played around with the library i must say you did more then a good
>> job at that.
>> I still cant believe i m writing a Flex application.
>>
>> I just wonder what makes you start this project. I mean Flex is not a
>> small framework. Exporting it to GWT must have been some hard work.
>>
>> 2011/6/7 Alain Ekambi 
>>
>>> Hello Alexandro,
>>>
>>> Thank you for your kind words.
>>> I m glad that you like the project. I m also happy that it can help you
>>> solve some of the problems you have.
>>> Gwt4Air is  a free time project. We use it internally at the company i
>>> work but i dont get paid for that. It s small company so i decided to play
>>> the nice guy :).But I wish I could do this full time  dough.
>>>
>>> i m know the link you provided. As a matter of fact i have a comment
>>> there.
>>> While searching for ideas on how to implement the Flex API i came accross
>>> that post. What i did not like about that solution was the fact that the
>>> user must deal with both sides. Flex and GWT. I wanted a more simpler
>>> solution where one will only programm in Java like any GWT project.
>>> Hopefully i did a good job at that.
>>>
>>> Concerning what the Adobe Engineer told you: I think  what he ment is
>>> that  for every MXML based Flex project the MXML Compiler  does  some
>>> initialization work that you will have to do manually  if you dont want to
>>> use MXML. And that initialization is a quiet complex thing. So  he probably
>>> thought that no one would be crazy enough to try to figure out what the
>>> compiler really does . But because i wanted to use GWT to write Flex
>>> applicatons i had to be  crazy enough lol.
>>>
>>> cheers,
>>>
>>> Alain
>>>
>>> 2011/6/5 leandro 
>>>
>>>> Hi,
>>>> I just went to your project and i have to say this is just mind
>>>> blowing!
>>>> Are you doing this full time ?
>>>> Really i wonder how you guyz come up with this kind of stuff.
>>>> We have been struggling integrating  flex client into how existing GWT
>>>> application.
>>>> We ve tried this  solution here
>>>> http://lgrammel.blogspot.com/2010/02/i-am-working-on-project-that-integrates.html
>>>> but  that did not scale very well. Maintining MXML/AS3, JavaScript and
>>>> Java in the same project is a nightmare.
>>>> Last year at Adobe Max i asked an engineer at from adobe if it s
>>>> possible to write Flex applications without using AS3 and MXML because we
>>>> wanted to keep everything in Java
>>>> and he basically said that s impossible. So i wonder how do you do this
>>>> ?
>>>> I  cant wait to play to hero tomorrow at the office when i present the
>>>> solution that will solve our problems :)
>>>>
>>>> Good work man
>>>>
>>>> Alexandro
>>>>
>>>> --
>>>> 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/-/QTE0WG5VSzdpM0FK.
>>

Re: GWT meets Adobe Flex: gwt4air 2.1 is here !

2011-06-08 Thread leandro borbosa
This is a free time project ? ?
Really impressive stuff.

"Hopefully i did a good job at that."
I  ve played around with the library i must say you did more then a good job
at that.
I still cant believe i m writing a Flex application.

I just wonder what makes you start this project. I mean Flex is not a small
framework. Exporting it to GWT must have been some hard work.

2011/6/7 Alain Ekambi 

> Hello Alexandro,
>
> Thank you for your kind words.
> I m glad that you like the project. I m also happy that it can help you
> solve some of the problems you have.
> Gwt4Air is  a free time project. We use it internally at the company i work
> but i dont get paid for that. It s small company so i decided to play the
> nice guy :).But I wish I could do this full time  dough.
>
> i m know the link you provided. As a matter of fact i have a comment there.
> While searching for ideas on how to implement the Flex API i came accross
> that post. What i did not like about that solution was the fact that the
> user must deal with both sides. Flex and GWT. I wanted a more simpler
> solution where one will only programm in Java like any GWT project.
> Hopefully i did a good job at that.
>
> Concerning what the Adobe Engineer told you: I think  what he ment is that
>  for every MXML based Flex project the MXML Compiler  does  some
> initialization work that you will have to do manually  if you dont want to
> use MXML. And that initialization is a quiet complex thing. So  he probably
> thought that no one would be crazy enough to try to figure out what the
> compiler really does . But because i wanted to use GWT to write Flex
> applicatons i had to be  crazy enough lol.
>
> cheers,
>
> Alain
>
> 2011/6/5 leandro 
>
>> Hi,
>> I just went to your project and i have to say this is just mind blowing!
>> Are you doing this full time ?
>> Really i wonder how you guyz come up with this kind of stuff.
>> We have been struggling integrating  flex client into how existing GWT
>> application.
>> We ve tried this  solution here
>> http://lgrammel.blogspot.com/2010/02/i-am-working-on-project-that-integrates.html
>> but  that did not scale very well. Maintining MXML/AS3, JavaScript and
>> Java in the same project is a nightmare.
>> Last year at Adobe Max i asked an engineer at from adobe if it s possible
>> to write Flex applications without using AS3 and MXML because we wanted to
>> keep everything in Java
>> and he basically said that s impossible. So i wonder how do you do this ?
>> I  cant wait to play to hero tomorrow at the office when i present the
>> solution that will solve our problems :)
>>
>> Good work man
>>
>> Alexandro
>>
>> --
>> 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/-/QTE0WG5VSzdpM0FK.
>>
>> To post to this group, send email to google-web-toolkit@googlegroups.com.
>> To unsubscribe from this group, send email to
>> google-web-toolkit+unsubscr...@googlegroups.com.
>> For more options, visit this group at
>> http://groups.google.com/group/google-web-toolkit?hl=en.
>>
>
>
>
> --
>
> GWT API for  non Java based platforms
> http://code.google.com/p/gwt4air/
> http://www.gwt4air.appspot.com/
>
>
>  --
> 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.
> To unsubscribe from this group, send email to
> google-web-toolkit+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>

-- 
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.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.