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

2011-06-21 Thread Iqbal Yusuf
Well a BIG THANK YOU Alain.

I'm just enjoying your brilliant cooked up library. :)

That link I put up just for you to test so I haven't done anything yet.
Since all my video contents are up in the Amazon CloudFront cloud it was
vital that I could stream video using rtmp protocol using your tool. It is
working so now I will start my real development soon.

On Tue, Jun 21, 2011 at 1:06 AM, Alain Ekambi
jazzmatad...@googlemail.comwrote:

 Hello Yusuf,
 I m glad  you got it to work.
 I took a look at the link you provided. Looks pretty :)
 Maybe you want to change the backgroundColor to white ?
 You can do that by calling
 *Applicaton.get().setStyle(backgroundColor, #FF);*
 *
 *
 in the initHandler
 *
 *
 Little complicated for now i have to admit. 2.2 will try to simplefy the
 API for thing like backgroundcolors.

 Thank you 4 using gwt4air.

 cheers,

 Alain



 2011/6/21 Iqbal Yusuf iyu...@dcl-online.com

 Hey Alain:

 First of all I'm extremely sorry about the false call. Yes you are right
 it was my FireFox browser issue. Everything is running as you said. Thanks
 again for a great library. I've put up your video display module with video
 source pointing to one of my Amazon Cloudfront RTMP video. It works.

 http://java.oviplus.com/dipu/



 On Mon, Jun 20, 2011 at 5:59 PM, Alain Ekambi 
 jazzmatad...@googlemail.com wrote:


 I ve run the example in different browsers and different machines and
 still cant reproduce the error. It looks like there s problem with your
 local settings. But i cant figure out what.
 Do you have access to another machine  to test ? In the mean time i ll
 still investigate


 2011/6/21 Iqbal Yusuf iyu...@dcl-online.com

  Yes I can run the explorer from here
 http://www.gwt4air.appspot.com/



 On Mon, Jun 20, 2011 at 5:36 PM, Alain Ekambi 
 jazzmatad...@googlemail.com wrote:

 Can you also please tell if you are able to run the explorer on your
 machine ?
 Best,


 Alain


 2011/6/21 Alain Ekambi jazzmatad...@googlemail.com

 This is really wired.
 I ve never seen this error before
 Will have a look at it and get back to to you


 2011/6/20 Iqbal Yusuf iyu...@dcl-online.com

 Here is in detail what I've done so far.

 Step 0:
 Created a GWT application using Eclipse IDE with default settings.

 Step 1:
 Followed your instruction as stated here ==
 http://code.google.com/p/gwt4air/wiki/FlexStart

 Step 2:
 Here is my entry point class;

 *package com.bdeshtv.gwtairtest.client;*
 *
 *
 *import com.ekambi.gwt.web.flex.client.core.framework.FLEX;*
 *import
 com.ekambi.gwt.web.flex.client.core.framework.FlexInitializationHandler;
 *
 *import com.google.gwt.core.client.EntryPoint;*
 *import com.google.gwt.core.client.GWT;*
 *
 *
 *public class Gwt4AirTest implements EntryPoint {*
 *
 *
 * *
 *private static final String SERVER_ERROR = An error occurred while
 *
 * *
 *+ attempting to contact the server. Please check your network *
 * *
 *+ connection and try again.;*
 *
 *
 * *
 *private final GreetingServiceAsync greetingService = GWT*
 * *
 *.create(GreetingService.class);*
 * *
 *public void onModuleLoad() {*
 *
 *
 * *
 * FLEX.init(new FlexInitializationHandler() {*
 * *
 *   @Override*
 * *
 *   public void onInitialization() {*
 * *
 * *
 * *
 *  // your code here*
 *
 *
 * *
 *}});*
 * *

 }
 }



 Here is the error message again. I didn't have to use any controls to
 invoke the error message. Just adding init method will invoke it. I do 
 see
 some folders are getting accessed from the error message. I don't even 
 have
 this folder or E: drive on my laptop.

 An ActionScript error has occured:
 ReferenceError: Error #1056: Cannot create property allowCodeImport
 on flash.system.LoaderContext.
 at mx.core::CrossDomainRSLItem/completeCdRslLoad()*
 [E:\dev\hero_private\frameworks\projects\framework\src\mx\core\CrossDomainRSLItem
 *.as:277]
  at
 mx.core::CrossDomainRSLItem/itemCompleteHandler()[E:\dev\hero_private\frameworks\projects\framework\src\mx\core\CrossDomainRSLItem.as:386]
 at flash.events::EventDispatcher/dispatchEventFunction()
  at flash.events::EventDispatcher/dispatchEvent()
 at flash.net::URLLoader/onComplete()

 --
 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/





 --

 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

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

2011-06-20 Thread Iqbal Yusuf
Here is in detail what I've done so far.

Step 0:
Created a GWT application using Eclipse IDE with default settings.

Step 1:
Followed your instruction as stated here ==
http://code.google.com/p/gwt4air/wiki/FlexStart

Step 2:
Here is my entry point class;

*package com.bdeshtv.gwtairtest.client;*
*
*
*import com.ekambi.gwt.web.flex.client.core.framework.FLEX;*
*import
com.ekambi.gwt.web.flex.client.core.framework.FlexInitializationHandler;*
*import com.google.gwt.core.client.EntryPoint;*
*import com.google.gwt.core.client.GWT;*
*
*
*public class Gwt4AirTest implements EntryPoint {*
*
*
* *
*private static final String SERVER_ERROR = An error occurred while *
* *
*+ attempting to contact the server. Please check your network *
* *
*+ connection and try again.;*
*
*
* *
*private final GreetingServiceAsync greetingService = GWT*
* *
*.create(GreetingService.class);*
* *
*public void onModuleLoad() {*
*
*
* *
* FLEX.init(new FlexInitializationHandler() {*
* *
*   @Override*
* *
*   public void onInitialization() {*
* *
* *
* *
*  // your code here*
*
*
* *
*}});*
* *

}
}



Here is the error message again. I didn't have to use any controls to invoke
the error message. Just adding init method will invoke it. I do see some
folders are getting accessed from the error message. I don't even have this
folder or E: drive on my laptop.

An ActionScript error has occured:
ReferenceError: Error #1056: Cannot create property allowCodeImport on
flash.system.LoaderContext.
at mx.core::CrossDomainRSLItem/completeCdRslLoad()*
[E:\dev\hero_private\frameworks\projects\framework\src\mx\core\CrossDomainRSLItem
*.as:277]
 at
mx.core::CrossDomainRSLItem/itemCompleteHandler()[E:\dev\hero_private\frameworks\projects\framework\src\mx\core\CrossDomainRSLItem.as:386]
at flash.events::EventDispatcher/dispatchEventFunction()
 at flash.events::EventDispatcher/dispatchEvent()
at flash.net::URLLoader/onComplete()

-- 
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-20 Thread Iqbal Yusuf
Yes I can run the explorer from here
http://www.gwt4air.appspot.com/



On Mon, Jun 20, 2011 at 5:36 PM, Alain Ekambi
jazzmatad...@googlemail.comwrote:

 Can you also please tell me if you are able to run the explorer on your
 machine ?
 Best,


 Alain


 2011/6/21 Alain Ekambi jazzmatad...@googlemail.com

 This is really wired.
 I ve never seen this error before
 Will have a look at it and get back to to you


 2011/6/20 Iqbal Yusuf iyu...@dcl-online.com

 Here is in detail what I've done so far.

 Step 0:
 Created a GWT application using Eclipse IDE with default settings.

 Step 1:
 Followed your instruction as stated here ==
 http://code.google.com/p/gwt4air/wiki/FlexStart

 Step 2:
 Here is my entry point class;

 *package com.bdeshtv.gwtairtest.client;*
 *
 *
 *import com.ekambi.gwt.web.flex.client.core.framework.FLEX;*
 *import
 com.ekambi.gwt.web.flex.client.core.framework.FlexInitializationHandler;
 *
 *import com.google.gwt.core.client.EntryPoint;*
 *import com.google.gwt.core.client.GWT;*
 *
 *
 *public class Gwt4AirTest implements EntryPoint {*
 *
 *
 * *
 *private static final String SERVER_ERROR = An error occurred while *
 * *
 *+ attempting to contact the server. Please check your network *
 * *
 *+ connection and try again.;*
 *
 *
 * *
 *private final GreetingServiceAsync greetingService = GWT*
 * *
 *.create(GreetingService.class);*
 * *
 *public void onModuleLoad() {*
 *
 *
 * *
 * FLEX.init(new FlexInitializationHandler() {*
 * *
 *   @Override*
 * *
 *   public void onInitialization() {*
 * *
 * *
 * *
 *  // your code here*
 *
 *
 * *
 *}});*
 * *

 }
 }



 Here is the error message again. I didn't have to use any controls to
 invoke the error message. Just adding init method will invoke it. I do see
 some folders are getting accessed from the error message. I don't even have
 this folder or E: drive on my laptop.

 An ActionScript error has occured:
 ReferenceError: Error #1056: Cannot create property allowCodeImport on
 flash.system.LoaderContext.
 at mx.core::CrossDomainRSLItem/completeCdRslLoad()*
 [E:\dev\hero_private\frameworks\projects\framework\src\mx\core\CrossDomainRSLItem
 *.as:277]
  at
 mx.core::CrossDomainRSLItem/itemCompleteHandler()[E:\dev\hero_private\frameworks\projects\framework\src\mx\core\CrossDomainRSLItem.as:386]
 at flash.events::EventDispatcher/dispatchEventFunction()
  at flash.events::EventDispatcher/dispatchEvent()
 at flash.net::URLLoader/onComplete()

 --
 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/





 --

 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: GWT meets Adobe Flex: gwt4air 2.1 is here !

2011-06-20 Thread Iqbal Yusuf
Hey Alain:

First of all I'm extremely sorry about the false call. Yes you are right it
was my FireFox browser issue. Everything is running as you said. Thanks
again for a great library. I've put up your video display module with video
source pointing to one of my Amazon Cloudfront RTMP video. It works.

http://java.oviplus.com/dipu/



On Mon, Jun 20, 2011 at 5:59 PM, Alain Ekambi
jazzmatad...@googlemail.comwrote:


 I ve run the example in different browsers and different machines and still
 cant reproduce the error. It looks like there s problem with your local
 settings. But i cant figure out what.
 Do you have access to another machine  to test ? In the mean time i ll
 still investigate


 2011/6/21 Iqbal Yusuf iyu...@dcl-online.com

  Yes I can run the explorer from here
 http://www.gwt4air.appspot.com/



 On Mon, Jun 20, 2011 at 5:36 PM, Alain Ekambi 
 jazzmatad...@googlemail.com wrote:

 Can you also please tell if you are able to run the explorer on your
 machine ?
 Best,


 Alain


 2011/6/21 Alain Ekambi jazzmatad...@googlemail.com

 This is really wired.
 I ve never seen this error before
 Will have a look at it and get back to to you


 2011/6/20 Iqbal Yusuf iyu...@dcl-online.com

 Here is in detail what I've done so far.

 Step 0:
 Created a GWT application using Eclipse IDE with default settings.

 Step 1:
 Followed your instruction as stated here ==
 http://code.google.com/p/gwt4air/wiki/FlexStart

 Step 2:
 Here is my entry point class;

 *package com.bdeshtv.gwtairtest.client;*
 *
 *
 *import com.ekambi.gwt.web.flex.client.core.framework.FLEX;*
 *import
 com.ekambi.gwt.web.flex.client.core.framework.FlexInitializationHandler;
 *
 *import com.google.gwt.core.client.EntryPoint;*
 *import com.google.gwt.core.client.GWT;*
 *
 *
 *public class Gwt4AirTest implements EntryPoint {*
 *
 *
 * *
 *private static final String SERVER_ERROR = An error occurred while 
 *
 * *
 *+ attempting to contact the server. Please check your network *
 * *
 *+ connection and try again.;*
 *
 *
 * *
 *private final GreetingServiceAsync greetingService = GWT*
 * *
 *.create(GreetingService.class);*
 * *
 *public void onModuleLoad() {*
 *
 *
 * *
 * FLEX.init(new FlexInitializationHandler() {*
 * *
 *   @Override*
 * *
 *   public void onInitialization() {*
 * *
 * *
 * *
 *  // your code here*
 *
 *
 * *
 *}});*
 * *

 }
 }



 Here is the error message again. I didn't have to use any controls to
 invoke the error message. Just adding init method will invoke it. I do see
 some folders are getting accessed from the error message. I don't even 
 have
 this folder or E: drive on my laptop.

 An ActionScript error has occured:
 ReferenceError: Error #1056: Cannot create property allowCodeImport on
 flash.system.LoaderContext.
 at mx.core::CrossDomainRSLItem/completeCdRslLoad()*
 [E:\dev\hero_private\frameworks\projects\framework\src\mx\core\CrossDomainRSLItem
 *.as:277]
  at
 mx.core::CrossDomainRSLItem/itemCompleteHandler()[E:\dev\hero_private\frameworks\projects\framework\src\mx\core\CrossDomainRSLItem.as:386]
 at flash.events::EventDispatcher/dispatchEventFunction()
  at flash.events::EventDispatcher/dispatchEvent()
 at flash.net::URLLoader/onComplete()

 --
 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/





 --

 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.




 --

 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

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

2011-06-19 Thread Iqbal Yusuf
Hi Alain:

I just wanted to try out your code for the first time and basically took
your Video Display code to do it. Here is what I have done.

Downloaded gwt4air 2.1

Put gwt4air-2.1.jar in my class path by putting it under /war/WEB-INF/lib
and added it through my Eclipse

Put gwt4air folder with all those swf files  under /war

Then basically tried the code from your example which deals with Video
display.

I'll try the code again and send you the source code.

I'm trying to run it from my laptop's localhost using Jetty in hosted mode.
I also tried to run the code outside hosted mode from Jetty with same error
message.

Thanks.

On Sun, Jun 19, 2011 at 3:09 AM, Alain Ekambi
jazzmatad...@googlemail.comwrote:

 Hello Yusuf,
 What exactly are you trying to do ? Run gwt4air from localhost ? XSite
 Request ?
 Do you have a small testcase implementing EntryPoint for me ?

 Best,
 Alain


 2011/6/19 IQBAL YUSUF iqbalyusufd...@gmail.com

 Hey Alain:

 Bugging you again. I was trying to run gwt4air on my local box but ran
 into some cross browser issue. I do have a crossdomain.xml under war
 folder but still getting it. Don't know what I'm doing wrong.

 ReferenceError: Error #1056: Cannot create property allowCodeImport on
 flash.system.LoaderContext.
 at mx.core::CrossDomainRSLItem/**completeCdRslLoad()[E:\dev\**
 hero_private\frameworks\**projects\framework\src\mx\**
 core\CrossDomainRSLItem.as:**277]
  at mx.core::CrossDomainRSLItem/**itemCompleteHandler()[E:\dev\**
 hero_private\frameworks\**projects\framework\src\mx\**
 core\CrossDomainRSLItem.as:**386]
  at flash.events::EventDispatcher/**dispatchEventFunction()
 at flash.events::EventDispatcher/**dispatchEvent()
  at flash.net::URLLoader/**onComplete()

 --
 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/-/u9PvlfXw5dEJ.

 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: GWT meets Adobe Flex: gwt4air 2.1 is here !

2011-06-18 Thread IQBAL YUSUF
Hey Alain:

Bugging you again. I was trying to run gwt4air on my local box but ran into 
some cross browser issue. I do have a crossdomain.xml under war folder but 
still getting it. Don't know what I'm doing wrong.

ReferenceError: Error #1056: Cannot create property allowCodeImport on 
flash.system.LoaderContext.
at 
mx.core::CrossDomainRSLItem/completeCdRslLoad()[E:\dev\hero_private\frameworks\projects\framework\src\mx\core\CrossDomainRSLItem.as:277]
at 
mx.core::CrossDomainRSLItem/itemCompleteHandler()[E:\dev\hero_private\frameworks\projects\framework\src\mx\core\CrossDomainRSLItem.as:386]
at flash.events::EventDispatcher/dispatchEventFunction()
at flash.events::EventDispatcher/dispatchEvent()
at flash.net::URLLoader/onComplete()

-- 
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/-/sxbcJsbMzdMJ.
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-18 Thread IQBAL YUSUF
Hey Alain:

Bugging you again. I was trying to run gwt4air on my local box but ran into 
some cross browser issue. I do have a crossdomain.xml under war folder but 
still getting it. Don't know what I'm doing wrong.

ReferenceError: Error #1056: Cannot create property allowCodeImport on 
flash.system.LoaderContext.
at 
mx.core::CrossDomainRSLItem/completeCdRslLoad()[E:\dev\hero_private\frameworks\projects\framework\src\mx\core\CrossDomainRSLItem.as:277]
at 
mx.core::CrossDomainRSLItem/itemCompleteHandler()[E:\dev\hero_private\frameworks\projects\framework\src\mx\core\CrossDomainRSLItem.as:386]
at flash.events::EventDispatcher/dispatchEventFunction()
at flash.events::EventDispatcher/dispatchEvent()
at flash.net::URLLoader/onComplete()

-- 
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/-/u9PvlfXw5dEJ.
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: Doubt on google analytics integration with gwt app

2011-06-07 Thread IQBAL YUSUF
Awesome work guys 


-- 
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/-/V1pWblJlY0VIMkVK.
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-07 Thread IQBAL YUSUF
You rock Alain... awesome project.. I'm glad that you thought -- I wanted 
a more simpler solution where one will only programm in Java like any GWT 
project. ... Great thinking Now I'm going to play with Flex component 
since I can do it from Java GWT. I'm specially interested to use ***
mx.controls.VideoDisplay *component and hope your library can play that. 
Thanks Again...

Iqbal Yusuf

-- 
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/-/bG9kWWxhemhSSllK.
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-07 Thread IQBAL YUSUF
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/-/VXlMQkR3cGEzWVlK.
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 Flash Killer (beta)

2010-08-28 Thread Iqbal Yusuf Dipu
fantastic .

-- 
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...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT REST and XML

2010-02-17 Thread Iqbal Yusuf Dipu
Wow thats great news. I was not aware of JsonpRequestBuilder. Yes
Objectify is a kool and easy alternatives to JDO/JPA for DataStore.

On Feb 16, 9:58 am, Duong BaTien duong.bat...@gmail.com wrote:
 Hi Iqbal:

 Have you look at JsonpRequestBuilder? I have not, but will when it is in
 the official release. Objectify now has @Embedded, it may be an
 excellent for json transport. This community is so dynamic and diverse.

 Duong BaTien
 DBGROUPS and BudhNet



 On Tue, 2010-02-16 at 05:43 -0800, Iqbal Yusuf Dipu wrote:
  Unfortunately RequestBuilder will not solve SOP issues. My example
  solution is based on Google App Engine Java platform and for cross
  site request I use server side code (i.e. UrlFetch service) as proxy
  for my GWT Client side code (the blog post doesn't have that example).
  I also used script tag injection before on another project. It would
  have been nice to have Cross site capability built into GWT client.

-- 
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...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT REST and XML

2010-02-16 Thread Iqbal Yusuf Dipu
Unfortunately RequestBuilder will not solve SOP issues. My example
solution is based on Google App Engine Java platform and for cross
site request I use server side code (i.e. UrlFetch service) as proxy
for my GWT Client side code (the blog post doesn't have that example).
I also used script tag injection before on another project. It would
have been nice to have Cross site capability built into GWT client.

-- 
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...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT REST and XML

2010-02-15 Thread Iqbal Yusuf Dipu
A) To communicate with RESTful resources you could use
com.google.gwt.http.client.RequestBuilder

i.e.

String url = /rest/myresources;

RequestBuilder builder = new RequestBuilder(RequestBuilder.GET, 
URL
.encode(url));
builder.setCallback(showAllPlayerCallbackHandler);
try {
Request request = builder.send();
} catch (RequestException e) {
GWT.log(RequestException , e);
}



B) I used com.google.gwt.xml.client.* packages to parse XML response.

I've written up a post showing GWT to JAX-RS Jersey rest server here
http://iqbalyusuf.wordpress.com/gwt-uibinder-with-jax-rs-jersey/

Thanks.

Iqbal

-- 
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...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Tutorial : GWT UiBinder with JAX-RS Jersey and Objectify @ http://wp.me/PnkVx-1S

2010-02-03 Thread Iqbal Yusuf Dipu
Tutorial : GWT UiBinder with JAX-RS Jersey and Objectify @ http://wp.me/PnkVx-1S

_Iqbal

-- 
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...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: How to use UIBinder

2010-01-22 Thread Iqbal Yusuf Dipu
GWT UiBinder “helloworld” with HTML
http://wp.me/PnkVx-L

-- 
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...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Mini Tutorial : GWT UiBinder “helloworld” with H TML

2010-01-22 Thread Iqbal Yusuf Dipu
Here's a very simple howto tutorial of a UiBinder template that
contains no widgets, only HTML

http://iqbalyusuf.wordpress.com/gwt-uibinder-helloworld-with-html/

Thanks.

Iqbal Yusuf

-- 
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...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Hosted Mode Browser won't show controls in Windows Vista

2009-10-16 Thread Iqbal Yusuf Dipu

Hi,
I'm using Windows VISTA at home and Windows XP at work. My GWT Hosted
Mode Browser will not show any GWT controls in VISTA but they show up
fine in XP. Has anyone run into this problem?
Thanks.
Iqbal Yusuf Dipu

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---