Re: Does GWT work in Snow Leopard?

2009-08-29 Thread Dean S. Jones
http://wiki.oneswarm.org/index.php/OS_X_10.6_Snow_Leopard this got me back up and running --~--~-~--~~~---~--~~ 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: Howto implement a RequestBuilder using gin

2009-08-29 Thread Jeff Chimene
It looks like that's the only way. One wrinkle that was not mentioned in the original post is that the URL argument to a RequestBuilder instantiation is RESTful with volatile path components. IOW, instance bindings will not solve this problem. I'm using binding annotations:

Re: Howto implement a RequestBuilder using gin

2009-08-29 Thread Christian Goudreau
Huh, I have done this with a command pattern style... bind(ServiceCached.*class*).in(Singleton.*class*); As simple as that ! I use XML between client and server. Action class know what is the url to use and when a response is received, I have a class that transform my XML in object. Works fine,

Re: Java server frameworks for GWT

2009-08-29 Thread David Given
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Sandman wrote: [...] I've been thinking about using Apache Tomcat as my test server. Are any of the other web servers better suited for GWT-RPC? I use Winstone on my server --- it's very small and lightweight but runs GWT servlets perfectly. As

Re: Howto implement a RequestBuilder using gin

2009-08-29 Thread Jeff Chimene
Hi Christian: Thanks for the meat! I hope you have time for a few questions... So ServiceCached is: Public interface ServiceCached { public class GetProductsName implements Action; public abstract class GotProductsName implements RequestCallback; } Action: from gwt-dispatch? How do you get

The dreaded No source code is avail error - ARGH!!!!

2009-08-29 Thread jack
I understand what this issue is and basically how to solve it. Namely, I need to create a module xml file for code that I want to use in my client and inherit it in my client's xml module. In my case, I have a widget that calls a service through GWT-RPC. The service returns a simple DTO (that I

Re: Hosted mode hanging 4 out of 10times

2009-08-29 Thread gaill...@audemat.com
Hi all, Even if this thread isn't so helpfull, I can said that I've the same problem as rahul. In hosted dev mode sometime I get Connecting to site 127.0.0.1, specialy on low end dev machine. The same project, on the same OS and exactly the same dev environment, works on Core2duo but failed

Re: Java server frameworks for GWT

2009-08-29 Thread elpix1
I didn't have any experience with Java servers also, having worked mostly with Python, but using servlets with the GWT RPC model is very easy. I run my test GWT application with Tomcat and Jetty with no problems. I think any of these servers are OK for testing and even production. I am not

TreeItem padding does not work

2009-08-29 Thread Javi
Hi all, I'm trying to change the padding in the TreeItems I have in a tree. By default, the TreeItem html code generated looks like this: div style=padding: 3px 3px 3px 23px; margin-left: 0pt; div id=gwt-uid-2 class=gwt-TreeItem style=display: inline; role=treeitem SOME HTML CODE OF A WIDGET

File Manipulation / Processing in GWT

2009-08-29 Thread alvinjayreyes
Anyone here has done some file manipulation through GWT? --~--~-~--~~~---~--~~ 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

how to to run gwt project in Jboss

2009-08-29 Thread pdvprasad
hi we developed a project on Ejb3.0 TOPLink (JPA) GWT1.5 gwt-ext.2.5 MYSQL (Database) i am successfully running project in Glassfish (server) , but i want to run the developed application with jboss 4.2.0 severi am able deploy the ejb3 beans and entities, getting problem while

Re: WYSIWYG version of Google Plugin for Eclipse coming soon?

2009-08-29 Thread Robnauticus-
Hi Keith, I own the Designer, the only warning I would give about purchase is this; only get it if you are not planning on using any 3rd party widget libraries that are up to date. SmartGWT and GXT cannot be designed yet. They are working on it but you should not hold a project up for that.

Re: The dreaded No source code is avail error - ARGH!!!!

2009-08-29 Thread jack
Ok, so now I have some idea of how the source/ element works. I've gone a little further and I have created a jar file with gwt.Patient (both source and class files). gwt.Patient.gwt.xml now includes a source path=gwt/. I think I need this since I am using a non-standard package convention

Re: The dreaded No source code is avail error - ARGH!!!!

2009-08-29 Thread jack
I meant to say the jar i created is NOW in my project's classpath - and still getting the same error On Aug 29, 12:42 pm, jack jack.terran...@gmail.com wrote: Ok, so now I have some idea of how the source/ element works.  I've gone a little further and I have created a jar file with

Re: java.lang.UnsupportedClassVersionError: Bad version number in .class file in eclipse-3.4 + mac osx

2009-08-29 Thread Brian Dorry
I am getting a similar problem, I was working on my project last night with no problems. But opening it and running it today I am receiving the following error SEVERE: Caught exception from remote service procedure com.google.apphosting.api.ApiProxy$UnknownException: An error occurred for the

Re: EclipseLink Glassfish

2009-08-29 Thread MamboJumbo
If anyone will have a similar problem, it was the eclipse galileo issue. I had one of the earlier releases that was not adding selected Facets to GWT project correctly. After installing newer Galileo release everything works fine. --~--~-~--~~~---~--~~ You received

Re: Does GWT work in Snow Leopard?

2009-08-29 Thread Brian Dorry
Thanks Dean, that got me up and running again On Aug 29, 2:51 am, Dean S. Jones deansjo...@gmail.com wrote: http://wiki.oneswarm.org/index.php/OS_X_10.6_Snow_Leopard this got me back up and running --~--~-~--~~~---~--~~ You received this message because you are

Re: The dreaded No source code is avail error - ARGH!!!!

2009-08-29 Thread jack
SOLVED!!! Isn't always something real dumb. So my final piece of misunderstanding on source/ element was keeping this from compiling. The inherited module xml file was under gwt/. The path component of the source/ element is relative to the directory in which the xml module file resides. So

Re: Howto implement a RequestBuilder using gin

2009-08-29 Thread Jeff Chimene
On 08/29/2009 06:02 AM, Christian Goudreau wrote: Huh, I have done this with a command pattern style... bind(ServiceCached. *class*).in(Singleton.*class*); As simple as that ! I use XML between client and server. Action class know what is the url to use and when a response is received, I

Re: Howto implement a RequestBuilder using gin

2009-08-29 Thread Christian Goudreau
First thing first, my implementation is for a server that don't have Servlet ! So gwt-dispatch wasn't the thing for me. I use it in another project, but for this one, I had to build a dispatch api from scratch. Si I decided to use XML for communication between PHP et my client and use Request

Re: WYSIWYG version of Google Plugin for Eclipse coming soon?

2009-08-29 Thread Eric Clayberg
BTW, GWT Designer does support GWT-Ext and work on EXT GWT (GXT) is getting close to complete (SmartGWT will be after that). See... http://www.instantiations.com/forum/viewtopic.php?f=11t=2204start=30#p11874 The problem with many 3rd party widget packages (like the two you mention) is that

Re: Howto implement a RequestBuilder using gin

2009-08-29 Thread Jeff Chimene
On 08/29/2009 11:32 AM, Christian Goudreau wrote: First thing first, my implementation is for a server that don't have Servlet ! So gwt-dispatch wasn't the thing for me. I use it in another project, but for this one, I had to build a dispatch api from scratch. Si I decided to use XML for

Re: Howto implement a RequestBuilder using gin

2009-08-29 Thread Christian Goudreau
However in my app, the request is sometimes a POST with a body, sometimes it's just a GET. I can see that the example will have to be extended to handle such cases. I'm doing the same exact thing, I'm still working to get it work with only one execute without actually having to add another

Re: Does GWT work in Snow Leopard?

2009-08-29 Thread Christian Goudreau
Omg I wasn't aware of that ! Thanks a lot, I'm installing Snow Leopard monday, so it'll save me a lot of pain and time ! Christian On Sat, Aug 29, 2009 at 1:25 PM, Brian Dorry brian.do...@gmail.com wrote: Thanks Dean, that got me up and running again On Aug 29, 2:51 am, Dean S. Jones

Re: Does GWT work in Snow Leopard?

2009-08-29 Thread pohl
I noticed that it should be possible for Google to release a quick patch of GWT 1.6.x that should allow users to run the legacy hosted mode under a Java 1.6 VM now. GWT's hosted mode, on the Mac, does an explicit check to ensure that Java 1.5 is being used. This check only existed because

Re: GWT Deployment on Web Hosting Sites

2009-08-29 Thread khj
Sorry for the delay in replying to your (Sumit) and Dobes' help. A new academic term started and I have been pretty covered up ... sc As Dobes mentioned, you can definitely use any hosting service, sc like GoDaddy, to deploy your GWT application. Also as mentioned, sc GWT generates

Re: Java server frameworks for GWT

2009-08-29 Thread Sandman
elpix1 wrote: I didn't have any experience with Java servers also, having worked mostly with Python, but using servlets with the GWT RPC model is very easy. I run my test GWT application with Tomcat and Jetty with no problems. I think any of these servers are OK for testing and even

Country combobox and lookup country by IP

2009-08-29 Thread Jaap
Hi, In my GWT/appengine application I need users to select their country. Two questions 1) Does GWT provide by default a combobox that lists all countries, or is there some 3rd party library for this 2) I'd like to fill in the country already when the page loads based on the IP address. Is

semaphores in gwt

2009-08-29 Thread Jaap
Hi, When starting my webapp I do two RPC calls. I need the data of both of them in order to display something. If you work with threads with a native program you just use semaphores to achieve this. What's the way to do this in GWT? Thanks Jaap

Image/Absolute panel...how to make the clickhandlers fire on the abs, ignoreing the image?

2009-08-29 Thread darkflame
Basically is it possible for an image widget to be transparent as regards to click events, passing them to the panel under it? I'm working on a panel-streaming engine; http://www.darkflame.co.uk/panalstreamer/panelstreamer.html Just click on the first option in the dropdown on the top right.

Re: File Manipulation / Processing in GWT

2009-08-29 Thread ThomasWrobel
Not sure how you mean. You can use GWT to read a file, then mess about with it as a string, then post the result to a PHP file that can write the file to your sever. On Aug 29, 8:31 am, alvinjayreyes jay_malu...@yahoo.com wrote: Anyone here has done some file manipulation through GWT?

Re: semaphores in gwt

2009-08-29 Thread ThomasWrobel
I think your options are; a) Just nest one request inside the other. or b) Do both requests separately, but within both the OnResponse check a flag to see if the other one has finished as well. If either flags that both are done, then trigger the message/code you want to run based on this. I

Re: semaphores in gwt

2009-08-29 Thread Christian Goudreau
Implement a Batch request. You can use the gwt-dispatch project. It's an implementation of the command pattern really well done that allow you to batch request and a lot of thing like rollback, caching, etc. Christian On Sat, Aug 29, 2009 at 8:36 PM, ThomasWrobel darkfl...@gmail.com wrote: I

gin + Javascript Overlay types

2009-08-29 Thread Jeff Chimene
Hi, Is it expected that the following binding to a JSO type would fail? bind(Jsot.class).in(Singleton.class) The issue is: Deferred binding failed for 'com.google.gwt.core.client.JavaScriptObject The get() method in the JSO type is public final native Jsot get() /*-{

Re: Port to OpenBSD

2009-08-29 Thread obvvbooo obvvbooo
Thanks for reply. Sorry, I didn't make it clear. I was asking help for porting the host mode of GWT. There's a lot of native libraries in GWT. For it seems host mode is really convinient way for GWT. Thanks Best Regards, On Sat, Aug 29, 2009 at 1:10 AM, Steven Jay Cohen

Re: Announcing the Google Plugin for Eclipse 1.1.0

2009-08-29 Thread Shavkat S
Thank you, Paul and Cornelius! I've installed 1.6.0_16 and breakpoints work now. On Aug 26, 12:37 pm, Paul Robinson ukcue...@gmail.com wrote: There's a bug in JDK 1.6.0_14 which causes breakpoints not to work. Check which JDK version you have. 1.6.0_16 is out and allegedly fixes this bug.

Has anyone used gwt-validation api? or is there a better one?

2009-08-29 Thread myapplicationquestions
Has anyone used gwt-validation api? or is there a better one? I need mostly data type validations, and some basic constraints on UI side.. Let me know what you all think http://code.google.com/p/gwt-validation/ --~--~-~--~~~---~--~~ You received this message

Running Apache Hupa sample of GWT MVP

2009-08-29 Thread smiletolead
Hi all, I am looking at the sample GWT project Apache HUPA which implements MVP pattern. I am having trouble in running it, though I was able to set up in Eclipse. I am unable to login. I set this mail client to connect to gmail by setting IMAP details of gmail. But it did not connect. Has

Did you forget to inherit a required module? about jdo

2009-08-29 Thread lily
When i call private static final PersistenceManagerFactory PMF = JDOHelper.getPersistenceManagerFactory(transactions-optional); It will be like this. what's trouble with me? p.s.I have jdoconfig.xml made by eclipse. Compiling module com.Demo3 Refreshing module from source

Project Package Name

2009-08-29 Thread GumbyGWTBeginner
Please be gentol... I am very green around the ears to thislol Hi Can anyone please tell me what the importance of the Project and Package name have on app when creating a new application in eclipse? The tutorials all tell you what to write but dont mention how they effect the app? Thanks

Making a fancy GWT Chart

2009-08-29 Thread Nether
My goal is to make a chart which shows standard deviations as a gradient on the vertical axis. I don't think it is easy to do this in the browser, so what I plan on doing is having the server render the chart to a BufferedImage and sending that to the client to display in an Image widget. The

Eclipse GWT NoClassDefFoundError

2009-08-29 Thread jack
I have a simple GWT project in Eclipse that requires another external project. Everything builds fine. But when I launch as a Google Web App using the App Engine I get a server-side NoClassDefFound for classes located in the external project. I've played around with the launch config and can't

[gwt-contrib] Re: Prettier GWT version names for upcoming 2.0 releases

2009-08-29 Thread Cameron Braid
JBoss use a naming scheme that sorts alphabetically, maybe it is worth considering http://www.jboss.org/jbossas/downloads/ Applied to the names in the original email 1) gwt-2.0.0-m1.zip 2) gwt-2.0.0-m2.zip 3) gwt-2.0.0-rc1.zip 4) gwt-2.0.0.zip They could be : 1) gwt-2.0.0-Beta1.zip (or could

[gwt-contrib] [google-web-toolkit] r6023 committed - File.createTempFile() sometimes hangs on the build system while trying...

2009-08-29 Thread codesite-noreply
Revision: 6023 Author: jlaba...@google.com Date: Thu Aug 27 11:09:46 2009 Log: File.createTempFile() sometimes hangs on the build system while trying to get an exclusive lock on a temp file. This patch uses a custom method to create a temp file. Patch by: jlabanca Review by: fabbott

[gwt-contrib] [google-web-toolkit] r6030 committed - Adds more detailed assertions to RunAsyncMetricsIntegrationTest....

2009-08-29 Thread codesite-noreply
Revision: 6030 Author: sp...@google.com Date: Fri Aug 28 14:08:33 2009 Log: Adds more detailed assertions to RunAsyncMetricsIntegrationTest. Review by: jlabanca (desk check) http://code.google.com/p/google-web-toolkit/source/detail?r=6030 Modified:

[gwt-contrib] [google-web-toolkit] r6032 committed - Create a temporary change branch for OOPHM plugin work.

2009-08-29 Thread codesite-noreply
Revision: 6032 Author: j...@google.com Date: Sat Aug 29 12:11:51 2009 Log: Create a temporary change branch for OOPHM plugin work. http://code.google.com/p/google-web-toolkit/source/detail?r=6032 Added: /changes/jat/plugins --~--~-~--~~~---~--~~

[gwt-contrib] Re: Hello UiBinder

2009-08-29 Thread Xijiang Miao
Yes. That's what I did. Thanks! I have to enable the animation to use two nested DisclosurePanel. Otherwise, the parent disclosure panel does not resize properly when the child panel is opening/closing. On Sun, Aug 23, 2009 at 1:57 PM, Amir Kashani amirkash...@gmail.com wrote: Xijiang, Take

[gwt-contrib] [google-web-toolkit] r6034 committed - Created wiki page through web user interface.

2009-08-29 Thread codesite-noreply
Revision: 6034 Author: tamplinjohn Date: Sat Aug 29 20:14:35 2009 Log: Created wiki page through web user interface. http://code.google.com/p/google-web-toolkit/source/detail?r=6034 Added: /wiki/TroubleshootingOOPHM.wiki === --- /dev/null +++

[gwt-contrib] [google-web-toolkit] r6035 committed - Add changes to prompt the user if we don't find the current web server...

2009-08-29 Thread codesite-noreply
Revision: 6035 Author: j...@google.com Date: Sat Aug 29 22:15:21 2009 Log: Add changes to prompt the user if we don't find the current web server in the access list, cleanup old libraries, changes from review feedback. http://code.google.com/p/google-web-toolkit/source/detail?r=6035 Added: