Session Management in the gwt-ext

2011-04-22 Thread Sanjay Jain
Hello All I am working on the gwt-ext application.On the server side I am using Hibernate.I am mantaining session on the server side.it's time out is 5 minute (In action class). Now take a secenario in which a user logged in remains it open for five minute.After five minutes expires it do a click

Debugging Maven Project in Eclipse ( Tutorial )

2011-04-22 Thread Metronome Basic
Any suggestion for debugging in Eclipse If you create an Eclipse Project , the debugging facilities are there and ready to use. If you import a maven project , you cannot run as Webapp nor Debug Or you have to setup a debug configuration ( for every project ? ) or is there

module not loading

2011-04-22 Thread Carlos
hi all, if i have two different modules and each module is associated to an html page when the user navigates from the host page to the second page the module(script) is not working its just viewing the html contents and the onModuleLoad() is not firing. in fact i compiled the two modules and

Re: Layout Panels missing from GWT Designer palette in Eclipse

2011-04-22 Thread Christian
I have done some further testing. Using Eclipse under Windows the problem remains the same. But if I create a new project the missing panels are present in the designer, so it must depend on some settings of my existing project. Nevertheless it is not possible to export the palette from the one

Loading thumbnails of images as links in gwt

2011-04-22 Thread Patssay
Hi, I am trying to load thumbnail images as links in gwt. I am not able to figure out the exact way to do this? Could someone please help? Thanks, Sayali -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Debuging GWT application with Eclipse

2011-04-22 Thread tdanan
Hi All, I am currently working on a client / server GWT application using eclipse and gwt plugin and jetty. The server code needs to read a file on disk. When I launch my Web Application from eclipse ( run or debug mode ) I get the following exception. I do not have the issue when starting the

Which widget to use

2011-04-22 Thread Riyaz
Hi, I am a 2 day old developer of GWT, I need some advice on which widget to use, my use case is this 1) i need a grid to display items, 2)Each item row should have a link/icon , clicking on which the should expand and collapse showing the details of the item 3)I should also be able to edit few

some problem about GWT

2011-04-22 Thread 剑涛 何
I code a servlet in GWT: Line 8: public class AddServvlet extends HttpServlet{ private static final long serialV = 1L; protected void doPost(HttpServletRequest req,HttpServletResponse res) { int a = Integer.parseInt(req.getParameter(a)); int b =

Re: Debugging Maven Project in Eclipse ( Tutorial )

2011-04-22 Thread cri
You may find http://mojo.codehaus.org/gwt-maven-plugin/ helpful. On Apr 22, 2:33 am, Metronome Basic metronome.ba...@worldonline.fr wrote: Any suggestion for debugging in Eclipse If you create an Eclipse Project , the debugging facilities are there and ready to use. If you import a maven

Appstats RecordingFuture classcast exception

2011-04-22 Thread Baloe
Hi all, We're using the appstats for extra logging. Works fine as far as I've looked at it, but not we get a classcast exception for most requests. Looks like a java version conflict to me, but we only included the library, so there is no point in fixing anything. The error: Reason: pre

Re: Debugging Maven Project in Eclipse ( Tutorial )

2011-04-22 Thread Metronome Basic
Using Eclipse Google Eclipse plugin automatically handle launching the Hosted mode browser with a simple right click on your module gwt.xml file run as web application. I wish it could be that simple I have 3 Pcs ( 2 with Xp 1 debian lenny ) with eclipse and maven plugin only on on 3 only

Re: Debugging Maven Project in Eclipse ( Tutorial )

2011-04-22 Thread Jeff Larsen
Have you enabled the GPE for the other projects that don't have right click run as web application? you can also check out David Chandler's post http://googlewebtoolkit.blogspot.com/2010/08/how-to-use-google-plugin-for-eclipse.html It is a bit old, so it might be dated. I'm not sure. I know

Adding a control (ex.: Button) to a StackPanel header, is it possible?

2011-04-22 Thread Chris
I'm looking around and trying to find a way to add a Button to a Stack Panel's header; has anyone done this before? Thanks. -- 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: Problems with Godaddy hosting and server-side deserialization

2011-04-22 Thread Andrew Calleja
Unfortunately the appengine doesn't cater for my needs as the 3000 files limit is too low for the custom skin I need to use. Is there really no way around the above? Thanks again, Andrew On Apr 21, 6:49 pm, Andrew C drewcall...@gmail.com wrote: Will look it up. Thanks David and Nino On

Re: Which widget to use

2011-04-22 Thread Sunit Katkar
Take a look at the new CELL widgets in GWT . Thank you, Sunit Katkar On Thu, Apr 21, 2011 at 8:25 PM, Riyaz sunez.ri...@gmail.com wrote: Hi, I am a 2 day old developer of GWT, I need some advice on which widget to use, my use case is this 1) i need a grid to display items, 2)Each

Re: Adding a control (ex.: Button) to a StackPanel header, is it possible?

2011-04-22 Thread Sunit Katkar
The StackPanel header itself is supposed to be a clickable area. So I wonder why you would want to add a button to this area. Anyway, I do not have an idea how to add the button there. Thank you, Sunit Katkar On Fri, Apr 22, 2011 at 7:50 AM, Chris chris.sim...@gmail.com wrote: I'm looking

Re: GWT RPC - WebServiceClient

2011-04-22 Thread Sunit Katkar
We have exact same situation and it all works. We use apache cxf as the communication between the GWT servlets and the API layer on another server. When the WSDLs are created for the apache cxf, we generate a client side jar and include it in the GWT project. This allows us access to the java

Re: Problems with Godaddy hosting and server-side deserialization

2011-04-22 Thread Alan Chaney
I have no experience with GoDaddy, but it looks to me like they have a Java security manager in place. You could fix your problem by changing the security settings to allow classes in the com.google.gwt.user.server.rpc.impl package access. You may have to take this up with GoDaddy, as I

Re: Debuging GWT application with Eclipse

2011-04-22 Thread Carlos
hi, i had a similar problem with eclipse. the problem was that my SDK was in a shared network which results in this exception. so when i placed my SDK in a non shared area like D: or C: it worked correctly. hope this can help. On 22 avr, 12:45, tdanan thomas.da...@mycom-int.com wrote: Hi All,

Re: some problem about GWT

2011-04-22 Thread Carlos
hi, you are writing your code in the client side. thats why it can't recognize the javax.servlet.http.HttpServlet since it is not supported by the gwt libraries. On 22 avr, 07:28, 剑涛 何 hejiant...@gmail.com wrote: I code a servlet in GWT: Line 8:   public class AddServvlet extends HttpServlet{

Re: How to validate email here

2011-04-22 Thread Harald Schilly
You need to be a bit more specific. You cannot use arbitrary classes on GWT's client side. That code needs to be accessible to the GWT compiler! H -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Why only Spring support in Roo?

2011-04-22 Thread cri
I see so many people wanting help on integrating Spring and GWT. Google supports Spring integration in the context of Roo. Why not support Spring integration with vanilla GWT applications? Actually, same question with regard to Maven, i.e. I believe that Maven support is provided in the context of

GWT Reflection on Client Side

2011-04-22 Thread richip
I've two requirements that Reflection on the client side seems most appropriate for: 1) To get references to field variables from client-side Java classes where the the specific name is determined at runtime. I figured that with Reflection, I could expose said field variables by using accessors

Re: How to validate email here

2011-04-22 Thread andy
Sorry , i have got the concept... can please explain... On Apr 22, 8:37 pm, Harald Schilly harald.schi...@gmail.com wrote: You need to be a bit more specific. You cannot use arbitrary classes on GWT's client side. That code needs to be accessible to the GWT compiler! H -- You received this

Re: GWT Reflection on Client Side

2011-04-22 Thread Christian Goudreau
Take a look at this project: http://code.google.com/p/gwt-ent/ Cheers, On Fri, Apr 22, 2011 at 12:08 PM, richip ric...@gmail.com wrote: I've two requirements that Reflection on the client side seems most appropriate for: 1) To get references to field variables from client-side Java classes

Re: GWT Reflection on Client Side

2011-04-22 Thread richip
Actually, I might have jumped the gun there. Instead of accessing the widget as one of my class's field variables, I could just traverse the Widget structure looking for it by name. Is that even possible? Are there methods / libraries out there that would allow me to specify a Widget by some path

Re: GWT Reflection on Client Side

2011-04-22 Thread richip
*sigh* I replied before I saw this. Thanks! On Apr 22, 10:17 am, Christian Goudreau goudreau.christ...@gmail.com wrote: Take a look at this project: http://code.google.com/p/gwt-ent/ Cheers, On Fri, Apr 22, 2011 at 12:08 PM, richip ric...@gmail.com wrote: I've two requirements

Re: How to validate email here

2011-04-22 Thread andy
Sorry , i haven't got the concept... can you please explain... On Apr 22, 8:37 pm, Harald Schilly harald.schi...@gmail.com wrote: You need to be a bit more specific. You cannot use arbitrary classes on GWT's client side. That code needs to be accessible to the GWT compiler! H -- You

Re: GWT Reflection on Client Side

2011-04-22 Thread Jeff Larsen
Are you just looking for databinding? If so look at the editor framework. -- 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

CellTable sorting : sorting several columns ?

2011-04-22 Thread Celinio
Hi, I am using GWT 2.2 and the new CellTable sorting features, as described here : http://code.google.com/intl/fr-FR/webtoolkit/doc/latest/DevGuideUiCellTable.html There is a strange error (Umbrella exception, nothing else) when I use the columnSortHandler.setComparator(...) method. I commented

Re: Problems with Godaddy hosting and server-side deserialization

2011-04-22 Thread Andrew Calleja
I have a hunch its not possible in shared hosting accounts. Thanks for the tip though. Andrew On Apr 22, 5:19 pm, Alan Chaney a...@mechnicality.com wrote: I have no experience with GoDaddy, but it looks to me like they have a Java security manager in place. You could fix your problem by

trying to open MySqlConn project sample file

2011-04-22 Thread gwtuser
Hello, I have downloaded sample project MySqlConn. I couldn't import it into eclipse through File-import-General- Existing Projects.. Can any one help me -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email

Re: trying to open MySqlConn project sample file

2011-04-22 Thread gwtuser
Just now i saw that it is .war filecan anyone tell me from where i can download full project file. I want to refer this, because i just want the same login for my project. want to access mysql data to gwt project. thanks. On Apr 22, 11:50 am, gwtuser acp...@gmail.com wrote: Hello, I have

Re: Loading thumbnails of images as links in gwt

2011-04-22 Thread Ben Imp
The Image class implements HasClickHandlers, so you can just tie into that and do whatever you need to do when your handler gets called. -Ben -- 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: Which widget to use

2011-04-22 Thread Ben Imp
These examples will probably be helpful. As the other person mentioned in this thread, the Cell Widgets will probably be what you are looking for. http://code.google.com/webtoolkit/examples/ -Ben -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

GWT UIBinder content assist lag

2011-04-22 Thread Wojciech O.
Hello, whe using gwt-maven-plugin inside Eclipse or STS I am facing a major lag when trying to content assist tag in UIBinder view. Take for example the expenses sample app provided by gwt team available to download from the repo. I created an issue related to this here

Re: Debugging Maven Project in Eclipse ( Tutorial )

2011-04-22 Thread Hilco Wijbenga
On 22 April 2011 00:33, Metronome Basic metronome.ba...@worldonline.fr wrote: Any suggestion for debugging in Eclipse Use mvn gwt:debug (instead of mvn gwt:run) and attach your debugger in Eclipse (use Remote Java Application). -- You received this message because you are subscribed to the

Re: Nobody is using Struts1 with GWT successfully?

2011-04-22 Thread Jak
We have an existing Struts1.3 application with forms. I want to be able to add some of the GWT component or gwt-ext on the existing forms. Is there any example or link online I can download? I'm still new to GWT framework, but I like it better than YUI. Any help or guide would be so much

Re: Nobody is using Struts1 with GWT successfully?

2011-04-22 Thread Jeff Larsen
give an element an id div id=someid/ public class MyModule implements EntryPoint{ public void onModuleLoad(){ Label someLabel = new Label(test); RootPanel.get(someid).add(someLabel); } } you should see test in your page. I've never used struts, but I'd imagine you're

RE: GWT RPC - WebServiceClient

2011-04-22 Thread Armishev, Sergey
I did this GWT-RPC-WSDL integration and it works fine. Maybe not very much efficient but it works and I made quicly what I needed. I used wscompile to generate POJO java classes from WSDL. That are classes that Web server user for web services communication. They are server side classes. Then I

Re: Nobody is using Struts1 with GWT successfully?

2011-04-22 Thread Jak
Thanks for the code, but not sure what is your point here. This topic is about how to integrate Struts1 with GWT. On Apr 22, 4:23 pm, Jeff Larsen larse...@gmail.com wrote: give an element an id div id=someid/ public class MyModule implements EntryPoint{   public void onModuleLoad(){      

Re: Layout Panels missing from GWT Designer palette in Eclipse

2011-04-22 Thread Eric Clayberg
See... http://code.google.com/intl/de/webtoolkit/doc/latest/DevGuideUiPanels.html#Standards Those widgets only work in Standards mode, and GWT Designer will only show them, if your project is configured for Standards mode. That is the default for new projects, but probably not for your older

JWebSocket using GWT

2011-04-22 Thread Guess What
Folks , I am build a chat Server App in GWT .I came across JWebSocket . (http://jwebsocket.org/) This seems to be useful . But I am not sure how to build using GWT . Has anybody worked on this or can give me some example of how to wrap the JWebScoket calls in GWT . . -- You received this

Re: Which widget to use

2011-04-22 Thread riyaz ahmed
Thank you sunit and Ben On Sat, Apr 23, 2011 at 12:58 AM, Ben Imp benlee...@gmail.com wrote: These examples will probably be helpful. As the other person mentioned in this thread, the Cell Widgets will probably be what you are looking for. http://code.google.com/webtoolkit/examples/

Querying webservice which is on another server hosted on appengine

2011-04-22 Thread Riyaz
Hi, I just used the stockwatcher example for querying webservice which return JSON data , but i dont get the response , i get a status code of 0 The webservice is hosted on an appengine and is online, when i access the URL directly on the browser i am able to get the data on the browser. I am

[gwt-contrib] Session Management in the gwt-ext

2011-04-22 Thread Sanjay Jain
Hello All I am working on the gwt-ext application.On the server side I am using Hibernate.I am mantaining session on the server side.it's time out is 5 minute (In action class). Now take a secenario in which a user logged in remains it open for five minute.After five minutes expires it do a click

[gwt-contrib] Re: Create a utility class for checking assignability of types for use (issue1420808)

2011-04-22 Thread t . broyer
I wrote it down yesterday evening, and the method is now gone, but anyway: http://gwt-code-reviews.appspot.com/1420808/diff/1/user/src/com/google/gwt/uibinder/rebind/TypeOracleUtils.java File user/src/com/google/gwt/uibinder/rebind/TypeOracleUtils.java (right):

[gwt-contrib] Re: MobileWebApp sample. Showcases GWT providing a single app providing specialized views for Deskto... (issue1427803)

2011-04-22 Thread jlabanca
Or CloudTasks. @rchandia - please hold off on any big refactor until I get my changes in. I'll try to send them for review today. http://gwt-code-reviews.appspot.com/1427803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: MobileWebApp sample. Showcases GWT providing a single app providing specialized views for Deskto... (issue1427803)

2011-04-22 Thread Rodrigo Chandia
No problem. On Fri, Apr 22, 2011 at 8:20 AM, jlaba...@google.com wrote: Or CloudTasks. @rchandia - please hold off on any big refactor until I get my changes in. I'll try to send them for review today. http://gwt-code-reviews.appspot.com/1427803/ --

[gwt-contrib] Re: Create a utility class for checking assignability of types for use (issue1420808)

2011-04-22 Thread John Tamplin
On Fri, Apr 22, 2011 at 3:45 AM, t.bro...@gmail.com wrote: I wrote it down yesterday evening, and the method is now gone, but anyway: http://gwt-code-reviews.appspot.com/1420808/diff/1/user/src/com/google/gwt/uibinder/rebind/TypeOracleUtils.java File

[gwt-contrib] [google-web-toolkit] r10055 committed - Edited wiki page RequestFactoryMovingParts through web user interface.

2011-04-22 Thread codesite-noreply
Revision: 10055 Author: b...@google.com Date: Fri Apr 22 06:18:48 2011 Log: Edited wiki page RequestFactoryMovingParts through web user interface. http://code.google.com/p/google-web-toolkit/source/detail?r=10055 Modified: /wiki/RequestFactoryMovingParts.wiki

[gwt-contrib] Re: Add RequestContext.append() to allow actions across different domain service types to be combine... (issue1423805)

2011-04-22 Thread BobV
Which to me leaves the question: is our usage described at [1] an intended use case, that's here to stay? or simply a fortunate unspecified behavior, and we should change our code to this new append() feature? For now, I'm going to call it a fortunate unspecified behavior. At some point in

[gwt-contrib] [google-web-toolkit] r10056 committed - Edited wiki page RequestFactoryMovingParts through web user interface.

2011-04-22 Thread codesite-noreply
Revision: 10056 Author: b...@google.com Date: Fri Apr 22 07:44:46 2011 Log: Edited wiki page RequestFactoryMovingParts through web user interface. http://code.google.com/p/google-web-toolkit/source/detail?r=10056 Modified: /wiki/RequestFactoryMovingParts.wiki

[gwt-contrib] [google-web-toolkit] r10057 committed - Edited wiki page RequestFactoryMovingParts through web user interface.

2011-04-22 Thread codesite-noreply
Revision: 10057 Author: b...@google.com Date: Fri Apr 22 08:12:24 2011 Log: Edited wiki page RequestFactoryMovingParts through web user interface. http://code.google.com/p/google-web-toolkit/source/detail?r=10057 Modified: /wiki/RequestFactoryMovingParts.wiki

[gwt-contrib] Documentation review requested: RequestFactoryMovingParts

2011-04-22 Thread BobV
http://code.google.com/p/google-web-toolkit/wiki/RequestFactoryMovingParts The RFMP doc is targeted at potential contributors or those with non-trivial integration schemes. For those who have been using RequestFactory, what implementation details would you like to have more documentation on?

[gwt-contrib] Re: Create a utility class for checking assignability of types for use (issue1420808)

2011-04-22 Thread jat
http://gwt-code-reviews.appspot.com/1420808/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Create a utility class for checking assignability of types for use (issue1420808)

2011-04-22 Thread rjrjr
LGTM++ http://gwt-code-reviews.appspot.com/1420808/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: MobileWebApp sample. Showcases GWT providing a single app providing specialized views for Deskto... (issue1427803)

2011-04-22 Thread Ray Ryan
I'm getting up to my elbows in there too, trying to narrow the exposure of ClientFactory. John, are there particular spots I should avoid? On Fri, Apr 22, 2011 at 5:27 AM, Rodrigo Chandia rchan...@google.comwrote: No problem. On Fri, Apr 22, 2011 at 8:20 AM, jlaba...@google.com wrote: Or

[gwt-contrib] Re: MobileWebApp sample. Showcases GWT providing a single app providing specialized views for Deskto... (issue1427803)

2011-04-22 Thread Rodrigo Chandia
+1 on CloudTasks, I'll defer the CL 'til John finishes so that the merge onus is on me. On Fri, Apr 22, 2011 at 12:03 PM, Ray Ryan rj...@google.com wrote: I'm getting up to my elbows in there too, trying to narrow the exposure of ClientFactory. John, are there particular spots I should avoid?

[gwt-contrib] [google-web-toolkit] r10058 committed - Create a utility class for checking assignability of types for use...

2011-04-22 Thread codesite-noreply
Revision: 10058 Author: j...@google.com Date: Fri Apr 22 09:21:14 2011 Log: Create a utility class for checking assignability of types for use in finding compatible constructors/methods. Review at http://gwt-code-reviews.appspot.com/1420808 Review by: rj...@google.com

[gwt-contrib] Re: Create a utility class for checking assignability of types for use (issue1420808)

2011-04-22 Thread jat
Committed at r10058 http://gwt-code-reviews.appspot.com/1420808/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Introducing CustomScrollPanel, a subclass of ScrollPanel that lets users define their own scroll... (issue1427804)

2011-04-22 Thread rchandia
LGTM. with nit http://gwt-code-reviews.appspot.com/1427804/diff/1/user/test/com/google/gwt/user/client/ui/CustomScrollPanelTest.java File user/test/com/google/gwt/user/client/ui/CustomScrollPanelTest.java (right):

[gwt-contrib] Re: Create a utility class for checking assignability of types for use (issue1420808)

2011-04-22 Thread t . broyer
Sorry, I'm a bit late... http://gwt-code-reviews.appspot.com/1420808/diff/6004/user/src/com/google/gwt/uibinder/rebind/TypeOracleUtils.java File user/src/com/google/gwt/uibinder/rebind/TypeOracleUtils.java (right):

[gwt-contrib] [google-web-toolkit] r10060 committed - First step of isolating a bunch of code that is used for generating...

2011-04-22 Thread codesite-noreply
Revision: 10060 Author: j...@google.com Date: Fri Apr 22 13:21:48 2011 Log: First step of isolating a bunch of code that is used for generating code, both within a GWT generator or as a separate build step for building server-side implementations. Also, this improves

[gwt-contrib] Fix cast normalizer to properly deal with multidimensional JSO arrays. (issue1428803)

2011-04-22 Thread cromwellian
Reviewers: scottb, Description: Fix cast normalizer to properly deal with multidimensional JSO arrays. Please review this at http://gwt-code-reviews.appspot.com/1428803/ Affected files: M dev/core/src/com/google/gwt/dev/jjs/impl/CastNormalizer.java M

[gwt-contrib] LazyPanel parser should be enabled only if useLazyWidgetBuilders is (issue1423806)

2011-04-22 Thread hermes
Reviewers: rjrjr, jat, Description: LazyPanel parser should be enabled only if useLazyWidgetBuilders is enabled. Please review this at http://gwt-code-reviews.appspot.com/1423806/ Affected files: M user/src/com/google/gwt/uibinder/rebind/UiBinderWriter.java Index:

[gwt-contrib] Re: Create a utility class for checking assignability of types for use (issue1420808)

2011-04-22 Thread jat
http://gwt-code-reviews.appspot.com/1420808/diff/6004/user/src/com/google/gwt/uibinder/rebind/TypeOracleUtils.java File user/src/com/google/gwt/uibinder/rebind/TypeOracleUtils.java (right):

[gwt-contrib] [google-web-toolkit] r10062 committed - LazyPanel parser should be enabled only if useLazyWidgetBuilders is...

2011-04-22 Thread codesite-noreply
Revision: 10062 Author: her...@google.com Date: Fri Apr 22 14:55:03 2011 Log: LazyPanel parser should be enabled only if useLazyWidgetBuilders is enabled. Review at http://gwt-code-reviews.appspot.com/1423806 http://code.google.com/p/google-web-toolkit/source/detail?r=10062

[gwt-contrib] [google-web-toolkit] r10063 committed - Somehow this file didn't committed with the rest.

2011-04-22 Thread codesite-noreply
Revision: 10063 Author: j...@google.com Date: Fri Apr 22 15:15:13 2011 Log: Somehow this file didn't committed with the rest. http://code.google.com/p/google-web-toolkit/source/detail?r=10063 Modified: /trunk/user/test/com/google/gwt/i18n/shared/DateTimeFormatTestBase.java