Re: Overriding CellTree styles

2012-04-30 Thread Markandayarushi Pamu
Hi Guys,

Same way I have overridden, CellTree resource.

But I am getting the wierd problem. 

In my application I am using CellTree in 2 places, in 2 places I have 
overridden with 2 differnent style names.

But If I chnage in css file, changes are applying for the two celltree's..

Plz help me what could be the problem?



On Thursday, 15 December 2011 22:05:34 UTC+5:30, Christopher Piggott wrote:

 I'm looking for a better way to override CellTree styles.  I found the
 default styles:


 http://code.google.com/p/google-web-toolkit/source/browse/trunk/user/src/com/google/gwt/user/cellview/client/CellTree.css?r=8772

 and interface:


 http://code.google.com/p/google-web-toolkit/source/browse/trunk/user/src/com/google/gwt/user/cellview/client/CellTree.java?r=8772#320

 I don't really want to replace the entire style with my own copy
 (slightly tweaked). If I have to, then I'd like to put it into a
 ClientBundle, but I'm not sure how to make the CellTree use that.  Is
 the trick to manipulate the prefix?




-- 
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/-/A3OjRGhxYKQJ.
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: Overriding CellTree styles

2012-04-30 Thread Thomas Broyer


On Monday, April 30, 2012 9:12:50 AM UTC+2, Markandayarushi Pamu wrote:

 Hi Guys,

 Same way I have overridden, CellTree resource.

 But I am getting the wierd problem. 

 In my application I am using CellTree in 2 places, in 2 places I have 
 overridden with 2 differnent style names.

 But If I chnage in css file, changes are applying for the two celltree's..

 Plz help me what could be the problem?


See http://code.google.com/p/google-web-toolkit/issues/detail?id=6144 

-- 
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/-/vGJTP5k1ECkJ.
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: ListDataProvider vs AsyncDataProvider

2012-04-30 Thread tong123123
Sorry, I am not quite understanding your reply.
anyway, I found that if my search results return near 10,000 records, the 
time spent in sql (DAO class) is only 4 seconds, but the time to return to 
the first line of method onSuccess (RPC call, async callback method, 
onSuceess method) need about 2 minutes. and once enter the first line in 
onSuceess method, then the time spent to go to the last line of onSuccess 
method is near 0 second!!
*so where is these 2 minutes spent?*
I think is these the time spent from copy 10,000 records from server to 
client?
and I think if I use asyncDataProvider, will these 2 minutes decrease 
dramatically?

On Monday, April 30, 2012 11:15:23 AM UTC+8, Robert W wrote:

 ListDataProvider  with view creates only  item renderer count neccesary to 
 fill view. You can override simple pager to implement eg constant row count 
 com.google.gwt.view.client.HasRows in while searching

 On Sunday, April 29, 2012 8:08:08 AM UTC+2, tong123123 wrote:

 in a search page, assume the result return many record like 8000 records, 
 and in the simplepager, each page display only 10 records, if using 
 ListDataProvider, the 8000 records will be sent to client at once time and 
 then render the celtable with all 8000 records in one time, the result is 
 static.
 if using AsyncDataProvider, each time the server only sent 10 records to 
 client.
 1) so AsyncDataProvider response is much faster, is this correct?
 2) but how about if the user press the last button in the simplepager 
 when the celltable using AsyncDataProvider? the speed is still similar to 
 get the first page? that is, it only fetch records from 7990 to 8000 
 records only, bypass all the others (record before 7990)?
 3) assume user input criteria fieldA = XXX, if using asyncDataProvider, 
 while searching, other user may enter record which fulfill the criteria 
 fieldA = XXX, so the total number of records in simpepager is continually 
 changing? and so the first ten records in first page is keep continually 
 changing?
 4) anyway, in my case (searching with result return thousands records), 
 AsyncDataProvider is more suitable then using ListDataProvider?

 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/-/AGcqdX_VGFwJ.
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 applications session management

2012-04-30 Thread Adio
Thanks for you reply  i will do my best  !

On Apr 27, 8:19 am, Gmane xyb...@gmail.com wrote:
 On 4/26/2012 8:18 PM, Adio wrote:









  Hi guys, i am a new to GWT applications to AJAX applications in
  general. i am making sample applications, to learn GWT applications. I
  am creating a very simple bank system -ok, by very simple i mean very
  very simple- and i reached the part the authentication and
  authorization logic is needed.

  Can someone explain the authentication logic in GWT apps ?

  Anyone explain the entire authentication and authorization logic in
  Ajax application ?

  Session management in Ajax applications ?

  If you don't want to bother yourselves with explaining and code
  writing any useful links will be fine.

  Thank you very mush.

 Hi, first I think you should read up about GWT-RPC topics and try some
 codes first. However as for your question it's very simple if you
 already understand RPC (although there are other ways than RPC to do this):

 - Create your Service and Async on the client side
 - Implement the service on the server side. If you are using GWT RPC,
 this class will inherit from RemoteServiceServlet and eventually inherit
 from Servlet.
 - Just put the authentication logic there (in that RPC servlet),
 verifying user credentials against a database and placing session
 objects on the Service implementation, its that simple

-- 
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 applications session management

2012-04-30 Thread Adio
Thanks for the reply.

On Apr 27, 7:10 pm, Joseph Lust lifeofl...@gmail.com wrote:
 See  https://www.google.com/search?q=google+web+toolit+overview

 Joe

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



org.postgresql.util.PSQLException

2012-04-30 Thread Vrushali Patil
Hi,

I am getting error when I am trying to connect to Postgresql database
from my program. The code I have written is on server side. And I have
added postgres.sql.jar in run configurations build path. I am not able
to figure out the solution. I have tried using other java classes like
BaseDatasource, etc but getting errors there too.

Program -

public Connection makeDatabaseConn(){
try{
 
Class.forName(org.postgresql.Driver);

String url = jdbc:postgresql://
localhost:5432/my_db;
con = DriverManager.getConnection(url,
postgres,
password);
con.setAutoCommit(true);

}catch( Exception e )
{
  e.printStackTrace();
}

 return con;

}

Error -

org.postgresql.util.PSQLException: Your security policy has prevented
the connection from being attempted.  You probably need to grant the
connect java.net.SocketPermission to the database server host and port
that you wish to connect to.
at org.postgresql.Driver.connect(Driver.java:282)

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



ScrollPanel not raising onScroll Event

2012-04-30 Thread Endovélico
I'm currently adapting the example on the showcase (it's still pretty
much equal) and i can't seem to make it raise a Scroll event. Is there
any known issue regarding this?

info: not using uibinder.

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



java.lang.NoSuchMethodError: org.datanucleus.plugin.PluginManager.createPluginManager(

2012-04-30 Thread laxman lingampally
Hi all ,

please help me .

this is the error i am getting: when ever trying to connect mysql
database

java.lang.NoSuchMethodError:
org.datanucleus.plugin.PluginManager.createPluginManager(Ljava/util/
Map;Ljava/lang/ClassLoader;)Lorg/datanucleus/plugin/PluginManager;
at
org.datanucleus.api.jpa.JPAEntityManagerFactory.init(JPAEntityManagerFactory.java:
328)
at
org.datanucleus.api.jpa.PersistenceProviderImpl.createEntityManagerFactory(PersistenceProviderImpl.java:
91)
at
javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:
150)
at
javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:
70)
at com.second.server.domain.NameData.clinit(NameData.java:31)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at
com.google.appengine.tools.development.agent.runtime.Runtime.invoke(Runtime.java:
104)
at
com.google.web.bindery.requestfactory.server.ReflectiveServiceLayer.invoke(ReflectiveServiceLayer.java:
178)
at
com.google.web.bindery.requestfactory.server.ServiceLayerDecorator.invoke(ServiceLayerDecorator.java:
111)
at
com.google.web.bindery.requestfactory.server.ServiceLayerDecorator.invoke(ServiceLayerDecorator.java:
111)
at
com.google.web.bindery.requestfactory.server.SimpleRequestProcessor.processInvocationMessages(SimpleRequestProcessor.java:
455)
at
com.google.web.bindery.requestfactory.server.SimpleRequestProcessor.process(SimpleRequestProcessor.java:
225)
at
com.google.web.bindery.requestfactory.server.SimpleRequestProcessor.process(SimpleRequestProcessor.java:
127)
at
com.google.web.bindery.requestfactory.server.RequestFactoryServlet.doPost(RequestFactoryServlet.java:
133)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:637)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
at org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:
511)
at org.mortbay.jetty.servlet.ServletHandler
$CachedChain.doFilter(ServletHandler.java:1166)
at
com.google.appengine.tools.development.HeaderVerificationFilter.doFilter(HeaderVerificationFilter.java:
35)
at org.mortbay.jetty.servlet.ServletHandler
$CachedChain.doFilter(ServletHandler.java:1157)
at
com.google.appengine.api.blobstore.dev.ServeBlobFilter.doFilter(ServeBlobFilter.java:
60)
at org.mortbay.jetty.servlet.ServletHandler
$CachedChain.doFilter(ServletHandler.java:1157)
at
com.google.apphosting.utils.servlet.TransactionCleanupFilter.doFilter(TransactionCleanupFilter.java:
43)
at org.mortbay.jetty.servlet.ServletHandler
$CachedChain.doFilter(ServletHandler.java:1157)
at
com.google.appengine.tools.development.StaticFileFilter.doFilter(StaticFileFilter.java:
122)
at org.mortbay.jetty.servlet.ServletHandler
$CachedChain.doFilter(ServletHandler.java:1157)
at
com.google.appengine.tools.development.BackendServersFilter.doFilter(BackendServersFilter.java:
97)
at org.mortbay.jetty.servlet.ServletHandler
$CachedChain.doFilter(ServletHandler.java:1157)
at
org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:
388)
at
org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:
216)
at
org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:
182)
at
org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:
765)
at org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:
418)
at
com.google.appengine.tools.development.DevAppEngineWebAppContext.handle(DevAppEngineWebAppContext.java:
78)
at
org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:
152)
at com.google.appengine.tools.development.JettyContainerService
$ApiProxyHandler.handle(JettyContainerService.java:363)
at
org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:
152)
at org.mortbay.jetty.Server.handle(Server.java:326)
at org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:
542)
at org.mortbay.jetty.HttpConnection
$RequestHandler.content(HttpConnection.java:938)
at org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:755)
at org.mortbay.jetty.HttpParser.parseAvailable(HttpParser.java:218)
at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:404)
at
org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:
409)
at org.mortbay.thread.QueuedThreadPool
$PoolThread.run(QueuedThreadPool.java:582)


Thanks Regards
laxman

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to 

Re: Postgress Connection error

2012-04-30 Thread Ed
Kind of off topic but your postgresql server has security constraints.
 Postgresql needs to be opened up so the app server can connect to it
via inet.

Ed


On Sun, Apr 29, 2012 at 6:10 PM, Vrushali Patil vrush.iit...@gmail.com wrote:
 Hi,
 I am getting error when I am trying to connect to Postgresql database
 from my program. The code I have written is on server side. And I have
 added postgres.sql.jar in run configurations build path. I am not able
 to figure out the solution. I have tried using other java classes like
 BaseDatasource, etc but getting errors there too.

 Program -

 public Connection makeDatabaseConn(){
                                try{
                                        Class.forName(org.postgresql.Driver);

                                String url = 
 jdbc:postgresql://localhost:5432/my_db;
                                con = DriverManager.getConnection(url, 
 postgres,
 password);
                                con.setAutoCommit(true);

                                }catch( Exception e )
                            {
                                      e.printStackTrace();
                                    }

                         return con;

                        }


 Error -

 org.postgresql.util.PSQLException: Your security policy has prevented
 the connection from being attempted.  You probably need to grant the
 connect java.net.SocketPermission to the database server host and port
 that you wish to connect to.
        at org.postgresql.Driver.connect(Driver.java:282)
        at java.sql.DriverManager.getConnection(Unknown Source)
        at java.sql.DriverManager.getConnection(Unknown Source)
        at
 com.csre.mtp.agro.Sensorwebapp.server.PollingServiceImpl.makeDatabaseConnection(PollingServiceImpl.java:
 252)
        at
 com.csre.mtp.agro.Sensorwebapp.server.PollingServiceImpl.populateDatabase(PollingServiceImpl.java:
 204)
        at
 com.csre.mtp.agro.Sensorwebapp.server.PollingServiceImpl.readfsxml(PollingServiceImpl.java:
 177)
        at
 com.csre.mtp.agro.Sensorwebapp.server.PollingServiceImpl.getdata(PollingServiceImpl.java:
 86)
        at
 com.csre.mtp.agro.Sensorwebapp.server.PollingServiceImpl.getMeasurements(PollingServiceImpl.java:
 60)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at
 com.google.appengine.tools.development.agent.runtime.Runtime.invoke(Runtime.java:
 112)
        at
 com.google.gwt.user.server.rpc.RPC.invokeAndEncodeResponse(RPC.java:
 569)
        at
 com.google.gwt.user.server.rpc.RemoteServiceServlet.processCall(RemoteServiceServlet.java:
 208)
        at
 com.google.gwt.user.server.rpc.RemoteServiceServlet.processPost(RemoteServiceServlet.java:
 248)
        at
 com.google.gwt.user.server.rpc.AbstractRemoteServiceServlet.doPost(AbstractRemoteServiceServlet.java:
 62)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:637)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
        at org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:
 511)
        at org.mortbay.jetty.servlet.ServletHandler
 $CachedChain.doFilter(ServletHandler.java:1166)
        at
 com.google.appengine.tools.development.HeaderVerificationFilter.doFilter(HeaderVerificationFilter.java:
 35)
        at org.mortbay.jetty.servlet.ServletHandler
 $CachedChain.doFilter(ServletHandler.java:1157)
        at
 com.google.appengine.api.blobstore.dev.ServeBlobFilter.doFilter(ServeBlobFilter.java:
 60)
        at org.mortbay.jetty.servlet.ServletHandler
 $CachedChain.doFilter(ServletHandler.java:1157)
        at
 com.google.apphosting.utils.servlet.TransactionCleanupFilter.doFilter(TransactionCleanupFilter.java:
 43)
        at org.mortbay.jetty.servlet.ServletHandler
 $CachedChain.doFilter(ServletHandler.java:1157)
        at
 com.google.appengine.tools.development.StaticFileFilter.doFilter(StaticFileFilter.java:
 122)
        at org.mortbay.jetty.servlet.ServletHandler
 $CachedChain.doFilter(ServletHandler.java:1157)
        at
 com.google.appengine.tools.development.BackendServersFilter.doFilter(BackendServersFilter.java:
 97)
        at org.mortbay.jetty.servlet.ServletHandler
 $CachedChain.doFilter(ServletHandler.java:1157)
        at
 org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:
 388)
        at
 org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:
 216)
        at
 org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:
 182)
        at
 org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:
 765)
        at org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:
 418)
        at
 com.google.appengine.tools.development.DevAppEngineWebAppContext.handle(DevAppEngineWebAppContext.java:
 78)
    

Re: GWT applications session management

2012-04-30 Thread Harpreet Singh
I am clear on most of it.
Can you explain, placing session objects on the Service implementation a
little more?

On Mon, Apr 30, 2012 at 2:01 PM, Adio fireball...@gmail.com wrote:

 Thanks for the reply.

 On Apr 27, 7:10 pm, Joseph Lust lifeofl...@gmail.com wrote:
  See  https://www.google.com/search?q=google+web+toolit+overview
 
  Joe

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



private static final EntityManagerFactory emfInstance = Persistence.createEntityManagerFactory(transactions-optional);

2012-04-30 Thread laxman lingampally
HI all,


please help me.

i am trying to create EMF object  but it is does't created.

private static final EntityManagerFactory emfInstance =
Persistence.createEntityManagerFactory(transactions-optional);



Thanks  Regards
laxman

-- 
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: How to find that an element is now in view on the screen

2012-04-30 Thread Joseph Lust
There is no built in browser mechanism to achieve this, however you can 
look at the offsets of the target element and its containing element and 
deduce it yourself.

See this SO post for details: 
http://stackoverflow.com/questions/123999/how-to-tell-if-a-dom-element-is-visible-in-the-current-viewport

Also, note that the *getClientRects()* DOM method can also give you the 
bounding box information. Still, you'll need to do the math yourself to see 
if the element is visible or not.


If you want to have something always visible however, why have it in a 
scroll panel? Why not just place in an absolute position so that it does 
not scroll?


Sincerely,
Joseph

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



IE8 is showing script is unresponsive, any known fixes that can be easily applied

2012-04-30 Thread Kishan
Frequently we are getting script is unresponsive in IE8, is any known
fixes that can be easily applied. That will be helpful.

Thanks,
Balakishan

-- 
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: Firefox 12 release

2012-04-30 Thread Jason Hobbs
I can confirm that Win 7 32bit is working.  Thank you!

On Thursday, April 26, 2012 8:38:05 PM UTC-4, Alan Leung wrote:

 http://acleung.com/ff12-win.xpi

 That should cover all the OS'es. I am going to put together all that and 
 check it in soon.

 Let me know if you run into problems.

 -Alan

 On Thu, Apr 26, 2012 at 6:45 AM, Marcel Stör mar...@frightanic.comwrote:

 What about Windows? 

 -- 
 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/-/fAwX-dqYQQAJ.

 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.



-- 
**
Privileged and/or confidential information may be contained in this 
message. If you are not the addressee indicated in this message (or are not 
responsible for delivery of this message to that person) , you may not copy 
or deliver this message to anyone. In such case, you should destroy this 
message and notify the sender by reply e-mail.
If you or your employer do not consent to Internet e-mail for messages of 
this kind, please advise the sender.
Shaw Industries does not provide or endorse any opinions, conclusions or 
other information in this message that do not relate to the official 
business of the company  or its subsidiaries.
**

-- 
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/-/4ozNy4TK_XsJ.
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.


-- 
**
Privileged and/or confidential information may be contained in this 
message. If you are not the addressee indicated in this message (or are not 
responsible for delivery of this message to that person) , you may not copy 
or deliver this message to anyone. In such case, you should destroy this 
message and notify the sender by reply e-mail.
If you or your employer do not consent to Internet e-mail for messages of 
this kind, please advise the sender.
Shaw Industries does not provide or endorse any opinions, conclusions or 
other information in this message that do not relate to the official 
business of the company  or its subsidiaries.
**



Re: Firefox 12 release

2012-04-30 Thread Jason Hobbs
Win7 32bit confirmed working.  Thank You!

On Apr 26, 8:38 pm, Alan Leung acle...@google.com wrote:
 http://acleung.com/ff12-win.xpi

 That should cover all the OS'es. I am going to put together all that and
 check it in soon.

 Let me know if you run into problems.

 -Alan

-- 
**
Privileged and/or confidential information may be contained in this 
message. If you are not the addressee indicated in this message (or are not 
responsible for delivery of this message to that person) , you may not copy 
or deliver this message to anyone. In such case, you should destroy this 
message and notify the sender by reply e-mail.
If you or your employer do not consent to Internet e-mail for messages of 
this kind, please advise the sender.
Shaw Industries does not provide or endorse any opinions, conclusions or 
other information in this message that do not relate to the official 
business of the company  or its subsidiaries.
**

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


-- 
**
Privileged and/or confidential information may be contained in this 
message. If you are not the addressee indicated in this message (or are not 
responsible for delivery of this message to that person) , you may not copy 
or deliver this message to anyone. In such case, you should destroy this 
message and notify the sender by reply e-mail.
If you or your employer do not consent to Internet e-mail for messages of 
this kind, please advise the sender.
Shaw Industries does not provide or endorse any opinions, conclusions or 
other information in this message that do not relate to the official 
business of the company  or its subsidiaries.
**



Re: Google axing GWT?

2012-04-30 Thread Travis Webb
Hey Joe! Funny seeing you here.

Obviously Google is making a lot of people nervous, with the following
factors at play:
1. the release and promotion of Dart
2. the unusually long time lapse since the 2.4 release
3. the lack of any roadmap

#2 and #3 were sort of humorously posted as bugs, but the GWT dev team
didn't take kindly to this.

The release lapse between 1.4--1.5 was a full year, so perhaps we're
in for a similar wait for 2.4--2.5. Google and the community are
heavily invested in GWT, so it will live on regardless of what Google
decides.

-tjw



On Apr 27, 1:11 pm, Joseph Lust lifeofl...@gmail.com wrote:
 I'll keep praying for GWT. Let's see what transpires at Google IO in June.

 Joe

-- 
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 Dev plug-in for Firefox 11

2012-04-30 Thread NesHan
Hi...
It is not working for FF12 .. (FF12 linux 32 / 64 version)
Any solution will be appreciated.


On Mar 17, 1:07 pm, Alan Leung acle...@google.com wrote:
 I had just compiled a FF11 linux 32 / 64 only version here:

 http://acleung.com/gwt-dev-plugin.xpi

 -Alan







 On Fri, Mar 16, 2012 at 1:34 PM, Alan Leung acle...@google.com wrote:
  I am working on it

  On Fri, Mar 16, 2012 at 6:10 AM, Paul Wujek paul.wu...@gmail.com wrote:

  Today Ubuntu is asking me to update for FF11, but of course this will
  kill my development environment.

  Is there an estimate of when the GWT plug-in will be available?

  --
  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/-/j0Nmn9KFKIQJ.
  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 portlet issue

2012-04-30 Thread schmarre
Hello

I'm facing the same problem. Have you been able to solve the problem?

Thanks for any response

On Mar 17, 8:04 am, Nitheesh Chandran nithe...@dotentreprise.com
wrote:
 Hello ,

 I used gwt-portlets.jar file to create portlet in GWT. But i got
 compile time error like

 compiling module test.Testing2
    [ERROR] Errors in 'jar:file:/home/user/Desktop/GWT%20PORTLET%20/gwt-
 portlets-0.0/gwt-portlets.jar!/org/gwtportlets/portlet/client/layout/
 LayoutUtil.java'
       [ERROR]  Internal compiler error
 java.lang.IncompatibleClassChangeError: Found interface
 com.google.gwt.core.ext.typeinfo.JClassType, but class was expected
         at
 org.gwtportlets.portlet.rebind.WidgetFactoryHelperGenerator.generate(Widget 
 FactoryHelperGenerator.java:
 58)
         at
 com.google.gwt.core.ext.GeneratorExtWrapper.generate(GeneratorExtWrapper.ja 
 va:
 48)
         at
 com.google.gwt.core.ext.GeneratorExtWrapper.generateIncrementally(Generator 
 ExtWrapper.java:
 60)
         at
 com.google.gwt.dev.javac.StandardGeneratorContext.runGeneratorIncrementally 
 (StandardGeneratorContext.java:
 647)
         at
 com.google.gwt.dev.cfg.RuleGenerateWith.realize(RuleGenerateWith.java:
 41)
         at com.google.gwt.dev.shell.StandardRebindOracle
 $Rebinder.rebind(StandardRebindOracle.java:78)
         at
 com.google.gwt.dev.shell.StandardRebindOracle.rebind(StandardRebindOracle.j 
 ava:
 268)
         at
 com.google.gwt.dev.shell.StandardRebindOracle.rebind(StandardRebindOracle.j 
 ava:
 257)
         at
 com.google.gwt.dev.DistillerRebindPermutationOracle.getAllPossibleRebindAns 
 wers(DistillerRebindPermutationOracle.java:
 91)
         at
 com.google.gwt.dev.jdt.WebModeCompilerFrontEnd.doFindAdditionalTypesUsingRe 
 binds(WebModeCompilerFrontEnd.java:
 96)
         at com.google.gwt.dev.jdt.AbstractCompiler$Sandbox
 $CompilerImpl.process(AbstractCompiler.java:254)
         at org.eclipse.jdt.internal.compiler.Compiler.compile(Compiler.java:
 444)
         at com.google.gwt.dev.jdt.AbstractCompiler$Sandbox
 $CompilerImpl.compile(AbstractCompiler.java:173)
         at com.google.gwt.dev.jdt.AbstractCompiler$Sandbox
 $CompilerImpl.compile(AbstractCompiler.java:288)
         at com.google.gwt.dev.jdt.AbstractCompiler$Sandbox$CompilerImpl.access
 $400(AbstractCompiler.java:139)
         at
 com.google.gwt.dev.jdt.AbstractCompiler.compile(AbstractCompiler.java:
 588)
         at
 com.google.gwt.dev.jdt.BasicWebModeCompiler.getCompilationUnitDeclarations( 
 BasicWebModeCompiler.java:
 97)
         at
 com.google.gwt.dev.jdt.WebModeCompilerFrontEnd.getCompilationUnitDeclaratio 
 ns(WebModeCompilerFrontEnd.java:
 52)
         at
 com.google.gwt.dev.jjs.JavaToJavaScriptCompiler.precompile(JavaToJavaScript 
 Compiler.java:
 569)
         at
 com.google.gwt.dev.jjs.JavaScriptCompiler.precompile(JavaScriptCompiler.jav a:
 33)
         at com.google.gwt.dev.Precompile.precompile(Precompile.java:284)
         at com.google.gwt.dev.Precompile.precompile(Precompile.java:233)
         at com.google.gwt.dev.Precompile.precompile(Precompile.java:145)
         at com.google.gwt.dev.Compiler.run(Compiler.java:232)
         at com.google.gwt.dev.Compiler.run(Compiler.java:198)
         at com.google.gwt.dev.Compiler$1.run(Compiler.java:170)
         at com.google.gwt.dev.CompileTaskRunner.doRun(CompileTaskRunner.java:
 88)
         at
 com.google.gwt.dev.CompileTaskRunner.runWithAppropriateLogger(CompileTaskRu 
 nner.java:
 82)
         at com.google.gwt.dev.Compiler.main(Compiler.java:177)

    [ERROR] Unexpected internal compiler error
 java.lang.IncompatibleClassChangeError: Found interface
 com.google.gwt.core.ext.typeinfo.JClassType, but class was expected
         at
 org.gwtportlets.portlet.rebind.WidgetFactoryHelperGenerator.generate(Widget 
 FactoryHelperGenerator.java:
 58)
         at
 com.google.gwt.core.ext.GeneratorExtWrapper.generate(GeneratorExtWrapper.ja 
 va:
 48)
         at
 com.google.gwt.core.ext.GeneratorExtWrapper.generateIncrementally(Generator 
 ExtWrapper.java:
 60)
         at
 com.google.gwt.dev.javac.StandardGeneratorContext.runGeneratorIncrementally 
 (StandardGeneratorContext.java:
 647)
         at
 com.google.gwt.dev.cfg.RuleGenerateWith.realize(RuleGenerateWith.java:
 41)
         at com.google.gwt.dev.shell.StandardRebindOracle
 $Rebinder.rebind(StandardRebindOracle.java:78)
         at
 com.google.gwt.dev.shell.StandardRebindOracle.rebind(StandardRebindOracle.j 
 ava:
 268)
         at
 com.google.gwt.dev.shell.StandardRebindOracle.rebind(StandardRebindOracle.j 
 ava:
 257)
         at
 com.google.gwt.dev.DistillerRebindPermutationOracle.getAllPossibleRebindAns 
 wers(DistillerRebindPermutationOracle.java:
 91)
         at
 com.google.gwt.dev.jdt.WebModeCompilerFrontEnd.doFindAdditionalTypesUsingRe 
 binds(WebModeCompilerFrontEnd.java:
 96)
         at com.google.gwt.dev.jdt.AbstractCompiler$Sandbox
 $CompilerImpl.process(AbstractCompiler.java:254)
         at 

Tree and cell tree basic ques

2012-04-30 Thread sh_90
Hi,

I am new to GWT and would like to know a very basic thing : 
What is the difference between tree ans cell tree , and in which case is 
each useful over other ?

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



JIT visualization + gwt

2012-04-30 Thread sh_90
Hi,
I want to use the jit (javaScript InfoVis toolkit) visualization with GWT.
It would be very helpful if someone could provide some pointers or if 
someone has done something like this before

Thanks in advance.

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



dwr + gwt

2012-04-30 Thread sh_90
Hi,
Can someone please provide a sample of gwt + dwr integration ??

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/-/D-HijhAxutoJ.
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.



Installing gwt on RAD 7.5

2012-04-30 Thread kmspnr

Hi All,
I am new joined to this group,
I need to install GWT plugin on rad 7.5 but getting error for mylyn
plugin requirement message.
So, as explained here i am adding this link to find and install--
software remote site
http://download.eclipse.org/releases/helios;

but it cannot import the site pakages,
I want to ask if installing gwt on rad 7.5 is possible?
if possible what is the path that i need to follow?

Thanks in advance.

-- 
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: Firefox 12 release

2012-04-30 Thread Piergrossi, Mark J
Alan:

Just wanted to say thank you man. The plug-in works great. It is a shame that 
Google couldn't create these in a timely manner. Your effort is greatly 
appreciated - especially from those of us that have to get real work done.

Mark

From: google-web-toolkit@googlegroups.com 
[mailto:google-web-toolkit@googlegroups.com] On Behalf Of Alan Leung
Sent: Thursday, April 26, 2012 8:38 PM
To: google-web-toolkit@googlegroups.com
Subject: Re: Firefox 12 release

http://acleung.com/ff12-win.xpi

That should cover all the OS'es. I am going to put together all that and check 
it in soon.

Let me know if you run into problems.

-Alan
On Thu, Apr 26, 2012 at 6:45 AM, Marcel Stör 
mar...@frightanic.commailto:mar...@frightanic.com wrote:
What about Windows?
--
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/-/fAwX-dqYQQAJ.

To post to this group, send email to 
google-web-toolkit@googlegroups.commailto:google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.commailto:google-web-toolkit%2bunsubscr...@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.commailto:google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.commailto: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 Mobile App Widgets

2012-04-30 Thread AgitoM
Does anyone know a decent library that contains GWT Widgets for the
development of Mobile Apps in GWT?

Over the past few days I've been experimenting with gwt-mobile-gui.
Though this library is great, it doesn't appear to be working on all
browsers. (or at least I can't get it to work on Firefox).

So basically I am looking into other Libraries. Does anyone have any
suggestions?

Reason I am looking for a mobile widget library is because I am
developing a mobile app. I developed a framework for a mobile app
myself, and it works fine, but it looks too ugly.
If no other library is available, does anyone know any tutorial of
guide to how to develop nice looking GUI in GWT?

Hope anyone can offer some advice.

-- 
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: Firefox 12 release

2012-04-30 Thread Paul Robinson

On 30/04/12 15:23, Piergrossi, Mark J wrote:


Alan:

Just wanted to say thank you man. The plug-in works great. It is a shame that 
Google couldn't create these in a timely manner. Your effort is greatly 
appreciated -- especially from those of us that have to get real work done.


Alan is a Google employee. The real shame is what Firefox is doing.

Paul

--
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: Firefox 12 release

2012-04-30 Thread Roger Studner
Agreed… right now the giant issue is Mozilla/Firefox.

If Firebug didn't exist, I imagine nobody would use Firefox anymore.  It is 
that simple.

Roger

On Apr 30, 2012, at 10:37 AM, Paul Robinson wrote:

 On 30/04/12 15:23, Piergrossi, Mark J wrote:
 
 Alan:
  
 Just wanted to say thank you man. The plug-in works great. It is a shame 
 that Google couldn’t create these in a timely manner. Your effort is greatly 
 appreciated – especially from those of us that have to get real work done.
 Alan is a Google employee. The real shame is what Firefox is doing.
 
 Paul
 
 -- 
 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: Google axing GWT?

2012-04-30 Thread Eric Clayberg (Google)
GWT is not based in ATL and we are definitely not axing it. GWT has been 
based in Mountain View for most of the past year and that is where all of 
the GWT 2.5 work that Ray Cromwell references is being done. GWT 2.5 has 
taken a bit longer to get out than we originally planned, but it also 
includes some very significant new functionality (like Elemental which Ray 
references in his G+ post). The GWT project remains very stable and viable, 
and we plan to keep it that way long term (keep in mind that Google relies 
on GWT just as much as the external community). Any changes planned for the 
GWT team will actually help ensure that and are unrelated to anything going 
on in ATL.

On Thursday, April 26, 2012 12:31:09 PM UTC-4, dka...@gmail.com wrote:

 Some of my contacts down in Atlanta tell me Google is making big 
 changes to the GWT team and word is they are going to eliminate GWT 
 and a number of other projects. Can anyone from Google confirm or 
 deny? 


-- 
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/-/siCmdQ4lFLAJ.
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 Mobile App Widgets

2012-04-30 Thread Alfredo Quiroga-Villamil
Mobile web libraries are based on webkit. Firefox is not. Mobile devices
use webkit. To test the app you can try to use a webkit based browser such
as chrome or safari. So if you are happy with that library I recommend you
continue using it and test it as previously mentioned.

Regards,

Alfredo
On Apr 30, 2012 10:35 AM, AgitoM karel.m...@gmail.com wrote:

 Does anyone know a decent library that contains GWT Widgets for the
 development of Mobile Apps in GWT?

 Over the past few days I've been experimenting with gwt-mobile-gui.
 Though this library is great, it doesn't appear to be working on all
 browsers. (or at least I can't get it to work on Firefox).

 So basically I am looking into other Libraries. Does anyone have any
 suggestions?

 Reason I am looking for a mobile widget library is because I am
 developing a mobile app. I developed a framework for a mobile app
 myself, and it works fine, but it looks too ugly.
 If no other library is available, does anyone know any tutorial of
 guide to how to develop nice looking GUI in GWT?

 Hope anyone can offer some advice.

 --
 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: Installing gwt on RAD 7.5

2012-04-30 Thread Adolfo Panizo Touzon
Yes, it's possible. I had problems too.

I've solved by going to *windowsPreferencesInstall/UpdateAvailable
Software Sites* and clicking in *Eclipse Helios 3.6* and *Helios Milestone
Repository*.

The exactly path that you have to use is:
http://dl.google.com/eclipse/plugin/3.6

PD. The rest of my team had to add more software sites, so..., play and
try.

Regards,

Adolfo.

2012/4/30 kmspnr p.oz...@gmail.com


 Hi All,
 I am new joined to this group,
 I need to install GWT plugin on rad 7.5 but getting error for mylyn
 plugin requirement message.
 So, as explained here i am adding this link to find and install--
 software remote site
 http://download.eclipse.org/releases/helios;

 but it cannot import the site pakages,
 I want to ask if installing gwt on rad 7.5 is possible?
 if possible what is the path that i need to follow?

 Thanks in advance.

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




-- 
El precio es lo que pagas. El valor es lo que recibes.
Warren Buffet

-- 
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: Google axing GWT?

2012-04-30 Thread Eric Clayberg (Google)
The Dart project is also not based in ATL and most definitely is not being 
cut in any way, shape or form.

It continues to do extremely well and is on track for a major release later 
this year.

On Thursday, April 26, 2012 1:34:31 PM UTC-4, dka...@gmail.com wrote:

 Yes I am aware of this. There have been further developments recently 
 in terms of staff, and supposedly one of the other projects being cut 
 is Dart. I'll admit, maybe some of the current (and former) GWT team 
 members down in Atlanta aren't seeing the whole picture, but from 
 where they sit it looks pretty grim. 

 On Apr 26, 11:43 am, dominikz dominik.zalew...@gmail.com wrote: 
  Gee man... 
  
  are you aware of all this?
 https://groups.google.com/d/topic/google-web-toolkit/YgVlmth_6SU/disc...

-- 
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/-/4LoEzdv2PrwJ.
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: Parser xml on server

2012-04-30 Thread Magallo
Hi all, I have a similar problem.

If I wanted to share a class that has a method 'loadXmlString(String xml)'  
and I wanted to use it sometims client side, sometimwes server side, how 
could I do? I see that client side this works using 
com.google.gwt.xml.client.* classes, but when I try to execute it server 
side, a java.lang.NoClassDefFoundError: Could not initialize class 
com.google.gwt.xml.client.XMLParser  error occurs. How can I solve this 
problem? Do I have to implement the same parsing algorithm twice? One 
client side and one server side? I can't believe that!

Please help.

On Wednesday, August 18, 2010 12:45:57 PM UTC+2, Xavier wrote:

 Hello, 

 I have a problem. I parser a xml from the server, but the following 
 error occurs: 

 Caused by: java.lang.NoClassDefFoundError: Could not initialize class 
 com.google.gwt.xml.client.XMLParser 

 I understand that this package can not be used on the server. 

 Could someone tell me how I colud parser an XML on  the server side. 

 Thanks in advance. 

 Sincerely, 

 Xavier


On Wednesday, August 18, 2010 12:45:57 PM UTC+2, Xavier wrote:

 Hello, 

 I have a problem. I parser a xml from the server, but the following 
 error occurs: 

 Caused by: java.lang.NoClassDefFoundError: Could not initialize class 
 com.google.gwt.xml.client.XMLParser 

 I understand that this package can not be used on the server. 

 Could someone tell me how I colud parser an XML on  the server side. 

 Thanks in advance. 

 Sincerely, 

 Xavier


On Wednesday, August 18, 2010 12:45:57 PM UTC+2, Xavier wrote:

 Hello, 

 I have a problem. I parser a xml from the server, but the following 
 error occurs: 

 Caused by: java.lang.NoClassDefFoundError: Could not initialize class 
 com.google.gwt.xml.client.XMLParser 

 I understand that this package can not be used on the server. 

 Could someone tell me how I colud parser an XML on  the server side. 

 Thanks in advance. 

 Sincerely, 

 Xavier

-- 
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/-/cMxRKz244gQJ.
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: Firefox 12 release

2012-04-30 Thread Mark Piergrossi
Roger:

I agree with the opinion that excessive FireFox releases are hard to keep 
up with. Our FireFox constraint is due to customer demand. All of our large 
telecommunication customers standardize on FireFox through out their 
company for it's stability (the majority also run Windows clients).

Mark

-- 
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/-/r6q38_lWc5kJ.
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 Dev plug-in for Firefox 11

2012-04-30 Thread Alan Leung
What is not working? Can you be more specific?

Did you install any of the .xpi in the other thread:
https://groups.google.com/forum/#!topic/google-web-toolkit/7OR5LM1POzI

-Alan

On Sun, Apr 29, 2012 at 9:30 AM, NesHan nesimi.ha...@gmail.com wrote:

 Hi...
 It is not working for FF12 .. (FF12 linux 32 / 64 version)
 Any solution will be appreciated.


 On Mar 17, 1:07 pm, Alan Leung acle...@google.com wrote:
  I had just compiled a FF11 linux 32 / 64 only version here:
 
  http://acleung.com/gwt-dev-plugin.xpi
 
  -Alan
 
 
 
 
 
 
 
  On Fri, Mar 16, 2012 at 1:34 PM, Alan Leung acle...@google.com wrote:
   I am working on it
 
   On Fri, Mar 16, 2012 at 6:10 AM, Paul Wujek paul.wu...@gmail.com
 wrote:
 
   Today Ubuntu is asking me to update for FF11, but of course this will
   kill my development environment.
 
   Is there an estimate of when the GWT plug-in will be available?
 
   --
   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/-/j0Nmn9KFKIQJ.
   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: Installing gwt on RAD 7.5

2012-04-30 Thread Pinar Ozlen
Hi,

Many Thanks for your reply,
I tried that option like this site offers
http://www.ibm.com/developerworks/forums/thread.jspa?messageID=14587966
but i dont have  *Available Software Sites*  option under the  *
windowsPreferencesInstall/Update*
*
*
*did you exprienced this problem?*
*
*
2012/4/30 Adolfo Panizo Touzon adolfo.pan...@gmail.com

 Yes, it's possible. I had problems too.

 I've solved by going to *windowsPreferencesInstall/UpdateAvailable
 Software Sites* and clicking in *Eclipse Helios 3.6* and *Helios
 Milestone Repository*.

 The exactly path that you have to use is:
 http://dl.google.com/eclipse/plugin/3.6

 PD. The rest of my team had to add more software sites, so..., play and
 try.

 Regards,

 Adolfo.


 2012/4/30 kmspnr p.oz...@gmail.com


 Hi All,
 I am new joined to this group,
 I need to install GWT plugin on rad 7.5 but getting error for mylyn
 plugin requirement message.
 So, as explained here i am adding this link to find and install--
 software remote site
 http://download.eclipse.org/releases/helios;

 but it cannot import the site pakages,
 I want to ask if installing gwt on rad 7.5 is possible?
 if possible what is the path that i need to follow?

 Thanks in advance.

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




 --
 El precio es lo que pagas. El valor es lo que recibes.
 Warren Buffet

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



Editors and automatic object updates/change propagation.

2012-04-30 Thread Mike
It appears that the GWT Editor framework only supports explicitly pushing 
updates to the object being edited by calling the driver's flush() 
method. However, I want to validate properties as they are changed. Thus in 
the case of a data-bound form, I'd like to validate a property as soon as 
the corresponding form field loses focus. I'm using JSR 303 validation to 
validate the bean being edited, so the state of the bean itself needs to be 
updated.

Is it possible to automatically propagate Editor changes to the object 
being edited rather than explicitly invoking flush()?

-- 
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/-/HkR0ijz89hwJ.
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 Mobile App Widgets

2012-04-30 Thread AgitoM
Well the app runs fine on iPhone Safari, Google Chrome, and the
Android Default Browser.
However the app does not work on Firefox and Opera installations on
the Android platform, so that could be a problem.
So still hope someone can make a suggestion.

On Apr 30, 10:53 pm, Alfredo Quiroga-Villamil laww...@gmail.com
wrote:
 Mobile web libraries are based on webkit. Firefox is not. Mobile devices
 use webkit. To test the app you can try to use a webkit based browser such
 as chrome or safari. So if you are happy with that library I recommend you
 continue using it and test it as previously mentioned.

 Regards,

 Alfredo
 On Apr 30, 2012 10:35 AM, AgitoM karel.m...@gmail.com wrote:







  Does anyone know a decent library that contains GWT Widgets for the
  development of Mobile Apps in GWT?

  Over the past few days I've been experimenting with gwt-mobile-gui.
  Though this library is great, it doesn't appear to be working on all
  browsers. (or at least I can't get it to work on Firefox).

  So basically I am looking into other Libraries. Does anyone have any
  suggestions?

  Reason I am looking for a mobile widget library is because I am
  developing a mobile app. I developed a framework for a mobile app
  myself, and it works fine, but it looks too ugly.
  If no other library is available, does anyone know any tutorial of
  guide to how to develop nice looking GUI in GWT?

  Hope anyone can offer some advice.

  --
  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 Mobile App Widgets

2012-04-30 Thread emurmur
I did a little research a while back.  Here are my notes;


m-gwt
http://code.google.com/p/mgwt/
Set of mobile widgets and transitions for GWT.  The widgets are quite
good and work on desktop, tablet and phones.  My Android 3.1 tablet
has trouble with the history, but that is a small problem.  The
library is well integrated with standard GWT.  It uses CSS3
transitions and animations for efficiency.  It uses separate CSS files
for each browser profile, so it is easy to use the correct sizes and
transitions based on browser type.  Integrates with gwt-phonegap to
create installable applications.  The associated blog is also very
informative.

There is a demo site to show how mGWT performs in mobile and desktop
browsers.  It is a single site that uses different CSS to display
itself for these different form factors.  mGWT performs more smoothly
than GWT Mobile, but it does not have as many widgets and features.
It works well on an Android phone, Android tablet (that is
impressive)  and desktop webkit browsers.  It does not work at all on
IE9 (so, more work would need to be done to create a browser profile
for IE).  The history management works well in both the desktop and
mobile browsers, which is a big advantage over GWT Mobile.

GWT Designer was recently updated to support mGWT, so it is well
integrated with Google’s tooling.

GWTMobile
http://code.google.com/p/gwtmobile/
GWTMobile is a framework that includes mobile UI widgets, a
persistence api and a phone-gap wrapper.  The Android store has two
demo apps that can be installed.

The apps run using GWT-PhoneGap and perform pretty well on an Android
phone.  I would say most of the transitions are not that good.  The
mGWT transitions work much better.

There is a separate browser demo for desktop and mobile.  In both
cases, the views are formatted for a phone (the desktop site runs in a
picture of a phone).  The mobile demo works well on an Android phone
and feels almost identical to the demo app, except the history
management is broken.  I keep hitting the back button and leaves the
demo site, which is very aggravating.  Again, the transitions are
better on mGWT, but GWT Mobile has more user interface widgets.

The demo site does not run on IE.

CAVEAT: I have not used either of these libraries.  I looked at their
demos on desktop and mobile browsers.  I also downloaded the mobile
apps (both based on PhoneGap).

Ed

On Apr 30, 11:01 am, AgitoM karel.m...@gmail.com wrote:
 Well the app runs fine on iPhone Safari, Google Chrome, and the
 Android Default Browser.
 However the app does not work on Firefox and Opera installations on
 the Android platform, so that could be a problem.
 So still hope someone can make a suggestion.

 On Apr 30, 10:53 pm, Alfredo Quiroga-Villamil laww...@gmail.com
 wrote:







  Mobile web libraries are based on webkit. Firefox is not. Mobile devices
  use webkit. To test the app you can try to use a webkit based browser such
  as chrome or safari. So if you are happy with that library I recommend you
  continue using it and test it as previously mentioned.

  Regards,

  Alfredo
  On Apr 30, 2012 10:35 AM, AgitoM karel.m...@gmail.com wrote:

   Does anyone know a decent library that contains GWT Widgets for the
   development of Mobile Apps in GWT?

   Over the past few days I've been experimenting with gwt-mobile-gui.
   Though this library is great, it doesn't appear to be working on all
   browsers. (or at least I can't get it to work on Firefox).

   So basically I am looking into other Libraries. Does anyone have any
   suggestions?

   Reason I am looking for a mobile widget library is because I am
   developing a mobile app. I developed a framework for a mobile app
   myself, and it works fine, but it looks too ugly.
   If no other library is available, does anyone know any tutorial of
   guide to how to develop nice looking GUI in GWT?

   Hope anyone can offer some advice.

   --
   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: Google axing GWT?

2012-04-30 Thread Raja Khan
Thanks Eric for taking the time to address...

On Mon, Apr 30, 2012 at 10:54 AM, Eric Clayberg (Google) 
clayb...@google.com wrote:

 The Dart project is also not based in ATL and most definitely is not being
 cut in any way, shape or form.

 It continues to do extremely well and is on track for a major release
 later this year.

 On Thursday, April 26, 2012 1:34:31 PM UTC-4, dka...@gmail.com wrote:

 Yes I am aware of this. There have been further developments recently
 in terms of staff, and supposedly one of the other projects being cut
 is Dart. I'll admit, maybe some of the current (and former) GWT team
 members down in Atlanta aren't seeing the whole picture, but from
 where they sit it looks pretty grim.

 On Apr 26, 11:43 am, dominikz dominik.zalew...@gmail.com wrote:
  Gee man...
 
  are you aware of all this?https://groups.google.**
 com/d/topic/google-web-**toolkit/YgVlmth_6SU/disc.https://groups.google.com/d/topic/google-web-toolkit/YgVlmth_6SU/disc.
 ..

  --
 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/-/4LoEzdv2PrwJ.

 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 Mobile App Widgets

2012-04-30 Thread Alfredo Quiroga-Villamil
Yes, if you are trying to cover that case, then you must absolutely
find a mobile library that can potentially support any of the
installable browsers in mobile devices. The important case to always
keep in mind I would say is over engineering. Unless it's a
requirement from the client, I would ask myself the question, what
percentage of the market am I trying to support? Ideally the answer
would be 100%, reality it's a different story. This is more the case
since mobile web is fairly young. Even the web after all these years
would be a nightmare if you removed GWT and libraries like it that
have tried to make the developer experience better by hiding the
browser differences or better said quirks.

About a year and a half ago, perhaps more already, there was a point
where the future of mobile web for developers looked bright. It was
all going to be based on webkit or at least most of it and the world
was going to be a happy place.

Fast forward and we find a world where there is an incredible amount
of fragmentation in the mobile market place with multiple versions of
webkit, many don't exactly behaving consistently. Throw into the mix
your request and it's almost starting to feel like we are right back
to the web as we know it today where may browsers exists with
difference in behavior not only between them but even among versions.

Best of luck and wish your project the best.

Alfredo

On Mon, Apr 30, 2012 at 2:01 PM, AgitoM karel.m...@gmail.com wrote:
 Well the app runs fine on iPhone Safari, Google Chrome, and the
 Android Default Browser.
 However the app does not work on Firefox and Opera installations on
 the Android platform, so that could be a problem.
 So still hope someone can make a suggestion.

 On Apr 30, 10:53 pm, Alfredo Quiroga-Villamil laww...@gmail.com
 wrote:
 Mobile web libraries are based on webkit. Firefox is not. Mobile devices
 use webkit. To test the app you can try to use a webkit based browser such
 as chrome or safari. So if you are happy with that library I recommend you
 continue using it and test it as previously mentioned.

 Regards,

 Alfredo
 On Apr 30, 2012 10:35 AM, AgitoM karel.m...@gmail.com wrote:







  Does anyone know a decent library that contains GWT Widgets for the
  development of Mobile Apps in GWT?

  Over the past few days I've been experimenting with gwt-mobile-gui.
  Though this library is great, it doesn't appear to be working on all
  browsers. (or at least I can't get it to work on Firefox).

  So basically I am looking into other Libraries. Does anyone have any
  suggestions?

  Reason I am looking for a mobile widget library is because I am
  developing a mobile app. I developed a framework for a mobile app
  myself, and it works fine, but it looks too ugly.
  If no other library is available, does anyone know any tutorial of
  guide to how to develop nice looking GUI in GWT?

  Hope anyone can offer some advice.

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




-- 
Alfredo Quiroga-Villamil

AOL/Yahoo/Gmail/MSN IM:  lawwton

-- 
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: Firefox 12 release

2012-04-30 Thread Dimitrijević Ivan
Win 7 64bit checked by my. Works fine

On Monday, April 30, 2012 6:01:26 PM UTC+2, Mark Piergrossi wrote:

 Roger:

 I agree with the opinion that excessive FireFox releases are hard to keep 
 up with. Our FireFox constraint is due to customer demand. All of our large 
 telecommunication customers standardize on FireFox through out their 
 company for it's stability (the majority also run Windows clients).

 Mark



-- 
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/-/tU9I9wr-yrMJ.
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 Mobile App Widgets

2012-04-30 Thread Daniel Kurka
if you are interested in mgwt there is a very friendly user group for
the framework: http://groups.google.com/group/mgwt

mgwt pays a lot of attention to do things in a GWT way, which brings
big advantages to mobile device development.

take a look for yourself at http://www.m-gwt.com



On 30 Apr., 20:43, Alfredo Quiroga-Villamil laww...@gmail.com wrote:
 Yes, if you are trying to cover that case, then you must absolutely
 find a mobile library that can potentially support any of the
 installable browsers in mobile devices. The important case to always
 keep in mind I would say is over engineering. Unless it's a
 requirement from the client, I would ask myself the question, what
 percentage of the market am I trying to support? Ideally the answer
 would be 100%, reality it's a different story. This is more the case
 since mobile web is fairly young. Even the web after all these years
 would be a nightmare if you removed GWT and libraries like it that
 have tried to make the developer experience better by hiding the
 browser differences or better said quirks.

 About a year and a half ago, perhaps more already, there was a point
 where the future of mobile web for developers looked bright. It was
 all going to be based on webkit or at least most of it and the world
 was going to be a happy place.

 Fast forward and we find a world where there is an incredible amount
 of fragmentation in the mobile market place with multiple versions of
 webkit, many don't exactly behaving consistently. Throw into the mix
 your request and it's almost starting to feel like we are right back
 to the web as we know it today where may browsers exists with
 difference in behavior not only between them but even among versions.

 Best of luck and wish your project the best.

 Alfredo









 On Mon, Apr 30, 2012 at 2:01 PM, AgitoM karel.m...@gmail.com wrote:
  Well the app runs fine on iPhone Safari, Google Chrome, and the
  Android Default Browser.
  However the app does not work on Firefox and Opera installations on
  the Android platform, so that could be a problem.
  So still hope someone can make a suggestion.

  On Apr 30, 10:53 pm, Alfredo Quiroga-Villamil laww...@gmail.com
  wrote:
  Mobile web libraries are based on webkit. Firefox is not. Mobile devices
  use webkit. To test the app you can try to use a webkit based browser such
  as chrome or safari. So if you are happy with that library I recommend you
  continue using it and test it as previously mentioned.

  Regards,

  Alfredo
  On Apr 30, 2012 10:35 AM, AgitoM karel.m...@gmail.com wrote:

   Does anyone know a decent library that contains GWT Widgets for the
   development of Mobile Apps in GWT?

   Over the past few days I've been experimenting with gwt-mobile-gui.
   Though this library is great, it doesn't appear to be working on all
   browsers. (or at least I can't get it to work on Firefox).

   So basically I am looking into other Libraries. Does anyone have any
   suggestions?

   Reason I am looking for a mobile widget library is because I am
   developing a mobile app. I developed a framework for a mobile app
   myself, and it works fine, but it looks too ugly.
   If no other library is available, does anyone know any tutorial of
   guide to how to develop nice looking GUI in GWT?

   Hope anyone can offer some advice.

   --
   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 
  athttp://groups.google.com/group/google-web-toolkit?hl=en.

 --
 Alfredo Quiroga-Villamil

 AOL/Yahoo/Gmail/MSN IM:  lawwton

-- 
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: RequestFactory and Value Proxy for Objectify Key problem

2012-04-30 Thread Peter Leong
For anyone else that passes this way looking for the cause of the 
*AssertionError: 
Incorrect size: 2* in *AutoBeanCodexImpl$CoderCreator.getCoder()*...

I had an AutoBean with an *ArrayList*AnotherAutoBean.  I changed it to be 
just *List*AnotherAutoBean and it fixed the problem.

Cheers,
Pete

On Friday, July 8, 2011 9:58:24 AM UTC+10, Phil C wrote:

 I am trying to convert our application to use RequestFactory (GWT 2.3 
 using all com.google.web.bindery.requestfactory.shared references).  I 
 am running into issues when trying to use an entity proxy for the 
 objectify key class. 

 @ProxyFor(Key.class) 
 public interface KeyProxyT extends EntityProxy extends ValueProxy{ 
 long getId(); 
 String getKindClassName(); 
 String getName(); 
 KeyProxy? getParent(); 
 V extends EntityProxy KeyProxyV getRoot(); 
 } 

 the entity class then has a reference to the key like this 

 public interface BarProxy{ 
   KeyBarProxy getKey(); 
 } 

 we end up with an error like 

 java.lang.AssertionError: Incorrect size: 2 
 at com.google.web.bindery.autobean.shared.impl.AutoBeanCodexImpl 
 $CoderCreator.getCoder(AutoBeanCodexImpl.java:124) 
 at com.google.web.bindery.autobean.shared.impl.AutoBeanCodexImpl 
 $PropertyCoderCreator.maybeCreateCoder(AutoBeanCodexImpl.java:354) 
 at com.google.web.bindery.autobean.shared.impl.AutoBeanCodexImpl 
 $PropertyCoderCreator.visitReferenceProperty(AutoBeanCodexImpl.java: 
 341) 
 at 

 when looking at it in the deubugger, there appear to be 2 coders.  The 
 first is for BarProxy, and the second is for the Key. 

 Any help appreciated.

-- 
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/-/Q-tnuKALCgwJ.
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 Serialization error with HTML String content

2012-04-30 Thread dhoffer
Using GWT 2.4.  I'm trying to track down the root cause of this...not
sure if I'm doing something wrong or this is a bug someplace.

30 Apr 2012 13:54:48,953 ERROR AtmosphereHandler []: Failed to
deserialize message
com.google.gwt.user.client.rpc.SerializationException: Too few tokens
in RPC request
at
com.google.gwt.user.server.rpc.impl.ServerSerializationStreamReader.extract(ServerSerializationStreamReader.java:
809)
at
com.google.gwt.user.server.rpc.impl.ServerSerializationStreamReader.deserializeStringTable(ServerSerializationStreamReader.java:
735)
at
com.google.gwt.user.server.rpc.impl.ServerSerializationStreamReader.prepareToRead(ServerSerializationStreamReader.java:
449)
at
org.atmosphere.gwt.server.AtmosphereGwtHandler.deserialize(AtmosphereGwtHandler.java:
283)
at
ipt.tas.chatdashboard.ui.gwt.server.AtmosphereHandler.deserialize(AtmosphereHandler.java:
68)
at
org.atmosphere.gwt.server.AtmosphereGwtHandler.doServerMessage(AtmosphereGwtHandler.java:
237)
at
org.atmosphere.gwt.server.AtmosphereGwtHandler.onRequest(AtmosphereGwtHandler.java:
183)
at
org.atmosphere.cpr.AsynchronousProcessor.action(AsynchronousProcessor.java:
217)
at
org.atmosphere.cpr.AsynchronousProcessor.suspended(AsynchronousProcessor.java:
166)
at
org.atmosphere.container.JettyCometSupport.service(JettyCometSupport.java:
99)
at
org.atmosphere.cpr.AtmosphereFramework.doCometSupport(AtmosphereFramework.java:
1162)
at
org.atmosphere.cpr.AtmosphereServlet.doPost(AtmosphereServlet.java:
293)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:637)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
at
org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:487)
at
org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:
362)
at
org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:
216)
at
org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:
181)
at
org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:
729)
at
org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:405)
at
org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:
152)
at
org.mortbay.jetty.handler.RequestLogHandler.handle(RequestLogHandler.java:
49)
at
org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:
152)
at org.mortbay.jetty.Server.handle(Server.java:324)
at
org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:
505)
at org.mortbay.jetty.HttpConnection
$RequestHandler.content(HttpConnection.java:843)
at org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:647)
at org.mortbay.jetty.HttpParser.parseAvailable(HttpParser.java:
211)
at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:
380)
at
org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:
395)
at org.mortbay.thread.QueuedThreadPool
$PoolThread.run(QueuedThreadPool.java:488)
Caused by: java.lang.IndexOutOfBoundsException: Index: 11, Size: 11
at java.util.ArrayList.rangeCheck(ArrayList.java:604)
at java.util.ArrayList.get(ArrayList.java:382)
at
com.google.gwt.user.server.rpc.impl.ServerSerializationStreamReader.extract(ServerSerializationStreamReader.java:
807)
... 30 more

This happens when I send the following HTML as a string to the
Atmosphere comet framework but that framework just seems to pass this
to GWT's ClientSerializationStreamWriter 
ServerSerializationStreamReader.  Here is the string that fails:
div style=font-family: Arial; font-size: 10pt;div
class=chatline style=text-indent:-10px; margin-left:10px;span
class=timestamp-self style=color:#FF;(Apr 30 2012 15:11:33) /
spanspan class=from-self style=color:#FF;tom: /spanspan
class=messagea/span/div
/div

But this string works fine with same method:
div style=font-family: Arial; font-size: 10pt;/div

What's going on here?  Is there some known restrictions sending HTML
with GWT serialization?  How to fix this?

-Dave


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



How to unit test GWT serialization?

2012-04-30 Thread dhoffer
I'd like to write a unit test to test GWT serialization, any pointers
on how to setup a unit test that would allow me to pass a variety of
data structures from the client to the server and compare results?  Is
this even possible?

-- 
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-contrib] Re: Re: Fix for issue 5952: RequestContext#isChanged. (issue1601806)

2012-04-30 Thread Rajeev Dayal
Thanks, Thomas. I'll take a look and see what's going on in our
environment. I wonder if it's an order-of-execution failure (implying that
there's statefulness between test runs that's not getting cleared).

On Sun Apr 29 07:17:38 GMT-400 2012, t.bro...@gmail.com wrote:

 On 2012/04/29 10:42:26, tbroyer wrote:
  On 2012/04/27 16:11:29, rdayal wrote:
   Hey Thomas,
  
   When I ran the tests after applying your change, I saw a failure in
   EditorTest.test:
  
   aused by: junit.framework.AssertionFailedError:
 expected=EditorBarTest
   actual=FOO
   at
  

 com.google.web.bindery.requestfactory.gwt.client.ui.EditorTest.onSuccess(EditorTest.java:164)

   at
  

 com.google.web.bindery.requestfactory.gwt.client.ui.EditorTest.onSuccess(EditorTest.java:1)

   at
  

 com.google.web.bindery.requestfactory.shared.impl.AbstractRequest.onSuccess(AbstractRequest.java:129)

   at
  

 com.google.web.bindery.requestfactory.shared.impl.AbstractRequestContext.processPayload(AbstractRequestContext.java:377)

   ... 28 more
  
  
   Are you seeing the same thing?

  On my local branch (off of r10773), ant -f user/build.xml
 test.dev.htmlunit

 -Dgwt.junit.testcase.includes=com/google/web/bindery/requestfactory/gwt/client/ui/EditorTest.class

  passes:

  [junit] Running
  com.google.web.bindery.requestfactory.gwt.client.ui.EditorTest
  [junit] Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 49,035
 sec

  I'll rebase and see if that changes anything.

 Rebased upon r10958, ant clean dist-dev and then ran test.dev.htmlunit
 and test.web.htmlunit, with the same BUILD SUCCESSFUL results.

 I tried with OpenJDK (6u24) and Oracle JDK (6u27)
 (with the clean/dist-dev being run with OpenJDK; only the test being run
 with both JDKs)

 Also tried with OpenJDK 7u3 (clean dist-dev, then test.dev.htmlunit;
 using JAVA_HOME=/usr/lib/jvm/java-7-openjdk-amd64/ ant ... on the
 command line; I'm not really sure the JAVA_HOME honored everywhere using
 this technique); same (successful) results.

 http://gwt-code-reviews.appspot.com/1601806/https://www.google.com/url?sa=Dq=http://gwt-code-reviews.appspot.com/1601806/


-- 
http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] Re: Fix for issue 5952: RequestContext#isChanged. (issue1601806)

2012-04-30 Thread Freeland Abbott
Depending on which targets are failing, we also run with FF3, which Thomas
most likely doesn't

On Mon Apr 30 11:10:32 GMT-400 2012, Rajeev Dayal rda...@google.com
wrote:

 Thanks, Thomas. I'll take a look and see what's going on in our
 environment. I wonder if it's an order-of-execution failure (implying that
 there's statefulness between test runs that's not getting cleared).

 On Sun Apr 29 07:17:38 GMT-400 2012, t.bro...@gmail.com wrote:

 On 2012/04/29 10:42:26, tbroyer wrote:
  On 2012/04/27 16:11:29, rdayal wrote:
   Hey Thomas,
  
   When I ran the tests after applying your change, I saw a failure in
   EditorTest.test:
  
   aused by: junit.framework.AssertionFailedError:
 expected=EditorBarTest
   actual=FOO
   at
  

 com.google.web.bindery.requestfactory.gwt.client.ui.EditorTest.onSuccess(EditorTest.java:164)

   at
  

 com.google.web.bindery.requestfactory.gwt.client.ui.EditorTest.onSuccess(EditorTest.java:1)

   at
  

 com.google.web.bindery.requestfactory.shared.impl.AbstractRequest.onSuccess(AbstractRequest.java:129)

   at
  

 com.google.web.bindery.requestfactory.shared.impl.AbstractRequestContext.processPayload(AbstractRequestContext.java:377)

   ... 28 more
  
  
   Are you seeing the same thing?

  On my local branch (off of r10773), ant -f user/build.xml
 test.dev.htmlunit

 -Dgwt.junit.testcase.includes=com/google/web/bindery/requestfactory/gwt/client/ui/EditorTest.class

  passes:

  [junit] Running
  com.google.web.bindery.requestfactory.gwt.client.ui.EditorTest
  [junit] Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 49,035
 sec

  I'll rebase and see if that changes anything.

 Rebased upon r10958, ant clean dist-dev and then ran test.dev.htmlunit
 and test.web.htmlunit, with the same BUILD SUCCESSFUL results.

 I tried with OpenJDK (6u24) and Oracle JDK (6u27)
 (with the clean/dist-dev being run with OpenJDK; only the test being run
 with both JDKs)

 Also tried with OpenJDK 7u3 (clean dist-dev, then test.dev.htmlunit;
 using JAVA_HOME=/usr/lib/jvm/java-7-openjdk-amd64/ ant ... on the
 command line; I'm not really sure the JAVA_HOME honored everywhere using
 this technique); same (successful) results.

 http://gwt-code-reviews.appspot.com/1601806/https://www.google.com/url?sa=Dq=http://gwt-code-reviews.appspot.com/1601806/

  --
 http://groups.google.com/group/Google-Web-Toolkit-Contributors

-- 
http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Re: Fix for issue 5952: RequestContext#isChanged. (issue1601806)

2012-04-30 Thread Rajeev Dayal
Ah, thanks - though it's interesting that there'd be a browser-specific
failure in response to this type of change. Thanks for pointing out the
difference though; I'll double-check.

On Mon Apr 30 13:22:34 GMT-400 2012, Freeland Abbott fabb...@google.com
wrote:

 Depending on which targets are failing, we also run with FF3, which Thomas
 most likely doesn't

 On Mon Apr 30 11:10:32 GMT-400 2012, Rajeev Dayal rda...@google.com
 wrote:
 Thanks, Thomas. I'll take a look and see what's going on in our
 environment. I wonder if it's an order-of-execution failure (implying that
 there's statefulness between test runs that's not getting cleared).

 On Sun Apr 29 07:17:38 GMT-400 2012, t.bro...@gmail.com wrote:

 On 2012/04/29 10:42:26, tbroyer wrote:
  On 2012/04/27 16:11:29, rdayal wrote:
   Hey Thomas,
  
   When I ran the tests after applying your change, I saw a failure in
   EditorTest.test:
  
   aused by: junit.framework.AssertionFailedError:
 expected=EditorBarTest
   actual=FOO
   at
  

 com.google.web.bindery.requestfactory.gwt.client.ui.EditorTest.onSuccess(EditorTest.java:164)

   at
  

 com.google.web.bindery.requestfactory.gwt.client.ui.EditorTest.onSuccess(EditorTest.java:1)

   at
  

 com.google.web.bindery.requestfactory.shared.impl.AbstractRequest.onSuccess(AbstractRequest.java:129)

   at
  

 com.google.web.bindery.requestfactory.shared.impl.AbstractRequestContext.processPayload(AbstractRequestContext.java:377)

   ... 28 more
  
  
   Are you seeing the same thing?

  On my local branch (off of r10773), ant -f user/build.xml
 test.dev.htmlunit

 -Dgwt.junit.testcase.includes=com/google/web/bindery/requestfactory/gwt/client/ui/EditorTest.class

  passes:

  [junit] Running
  com.google.web.bindery.requestfactory.gwt.client.ui.EditorTest
  [junit] Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 49,035
 sec

  I'll rebase and see if that changes anything.

 Rebased upon r10958, ant clean dist-dev and then ran test.dev.htmlunit
 and test.web.htmlunit, with the same BUILD SUCCESSFUL results.

 I tried with OpenJDK (6u24) and Oracle JDK (6u27)
 (with the clean/dist-dev being run with OpenJDK; only the test being run
 with both JDKs)

 Also tried with OpenJDK 7u3 (clean dist-dev, then test.dev.htmlunit;
 using JAVA_HOME=/usr/lib/jvm/java-7-openjdk-amd64/ ant ... on the
 command line; I'm not really sure the JAVA_HOME honored everywhere using
 this technique); same (successful) results.

 http://gwt-code-reviews.appspot.com/1601806/https://www.google.com/url?sa=Dq=http://gwt-code-reviews.appspot.com/1601806/

  --
 http://groups.google.com/group/Google-Web-Toolkit-Contributors

  --
 http://groups.google.com/group/Google-Web-Toolkit-Contributors

-- 
http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: [gwt-contrib] Re: Fix for issue 5952: RequestContext#isChanged. (issue1601806)

2012-04-30 Thread Freeland Abbott
Not saying there is, only that you should include it in the list of
possibilities.  I sounds like Broyer only tested against HTMLUnit, and if
you're doing the normal things, you'll have also tested with a real
browser.



On Mon Apr 30 13:49:50 GMT-400 2012, Rajeev Dayal rda...@google.com
wrote:

 Ah, thanks - though it's interesting that there'd be a browser-specific
 failure in response to this type of change. Thanks for pointing out the
 difference though; I'll double-check.

 On Mon Apr 30 13:22:34 GMT-400 2012, Freeland Abbott fabb...@google.com
 wrote:
 Depending on which targets are failing, we also run with FF3, which Thomas
 most likely doesn't

  On Mon Apr 30 11:10:32 GMT-400 2012, Rajeev Dayal rda...@google.com
 wrote:
 Thanks, Thomas. I'll take a look and see what's going on in our
 environment. I wonder if it's an order-of-execution failure (implying that
 there's statefulness between test runs that's not getting cleared).

 On Sun Apr 29 07:17:38 GMT-400 2012, t.bro...@gmail.com wrote:

 On 2012/04/29 10:42:26, tbroyer wrote:
  On 2012/04/27 16:11:29, rdayal wrote:
   Hey Thomas,
  
   When I ran the tests after applying your change, I saw a failure in
   EditorTest.test:
  
   aused by: junit.framework.AssertionFailedError:
 expected=EditorBarTest
   actual=FOO
   at
  

 com.google.web.bindery.requestfactory.gwt.client.ui.EditorTest.onSuccess(EditorTest.java:164)

   at
  

 com.google.web.bindery.requestfactory.gwt.client.ui.EditorTest.onSuccess(EditorTest.java:1)

   at
  

 com.google.web.bindery.requestfactory.shared.impl.AbstractRequest.onSuccess(AbstractRequest.java:129)

   at
  

 com.google.web.bindery.requestfactory.shared.impl.AbstractRequestContext.processPayload(AbstractRequestContext.java:377)

   ... 28 more
  
  
   Are you seeing the same thing?

  On my local branch (off of r10773), ant -f user/build.xml
 test.dev.htmlunit

 -Dgwt.junit.testcase.includes=com/google/web/bindery/requestfactory/gwt/client/ui/EditorTest.class

  passes:

  [junit] Running
  com.google.web.bindery.requestfactory.gwt.client.ui.EditorTest
  [junit] Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 49,035
 sec

  I'll rebase and see if that changes anything.

 Rebased upon r10958, ant clean dist-dev and then ran test.dev.htmlunit
 and test.web.htmlunit, with the same BUILD SUCCESSFUL results.

 I tried with OpenJDK (6u24) and Oracle JDK (6u27)
 (with the clean/dist-dev being run with OpenJDK; only the test being run
 with both JDKs)

 Also tried with OpenJDK 7u3 (clean dist-dev, then test.dev.htmlunit;
 using JAVA_HOME=/usr/lib/jvm/java-7-openjdk-amd64/ ant ... on the
 command line; I'm not really sure the JAVA_HOME honored everywhere using
 this technique); same (successful) results.

 http://gwt-code-reviews.appspot.com/1601806/https://www.google.com/url?sa=Dq=http://gwt-code-reviews.appspot.com/1601806/

  --
 http://groups.google.com/group/Google-Web-Toolkit-Contributors

  --
 http://groups.google.com/group/Google-Web-Toolkit-Contributors

  --
 http://groups.google.com/group/Google-Web-Toolkit-Contributors

-- 
http://groups.google.com/group/Google-Web-Toolkit-Contributors