Using DAO pattern in a GWT project

2009-04-08 Thread Neo
Hi, Can i use the DAO pattern in a GWT project. If yes then how ? Please suggest. --~--~-~--~~~---~--~~ 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: Windows not showing/hiding as expected

2009-04-08 Thread Gary1975
Thanks for the advice - I thought it was something like that but didn't know what to do about it. I'll give it a go today The Window and MessageBox come from GWT-Ext On Apr 7, 4:00 pm, Thomas Broyer t.bro...@gmail.com wrote: On 7 avr, 16:13, Gary1975 gary.ev...@gmail.com wrote: Hi, I am

Re: CSS Style for single tabs of a TabBar

2009-04-08 Thread -Lord-67
No suggestions from anyone? Really could need some help here ... Greetings, -Lord-67 --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

How to sing events on the mark up element

2009-04-08 Thread vaibhav
Hi, I want to access the text box written in HTML from GWT on the basis of element ID. I am able to get this elemt in GWT and also show that. Even I am able to change the text of the text box but I am not able to add the events to the element. How to add the event. I have written some bit of code

Re: Connecting to database with eclipse

2009-04-08 Thread eggsy
Hi there, Ok lets take it step by step. Can you show us your client side RPC interface classes. You should have something like the following: --- package com.company.client.rpc; import java.util.List; import com.company.client.dto.PupilDTO; import

Re: IE doesnt show my progress bar when the data loads in to my Grid

2009-04-08 Thread alex.d
You can't start antother thread from javascript. And though it's a singlethreaded environment your animation isn't moving probably because browser is busy with filling the data. You can show some static text Loading... and then load your data. On 8 Apr., 07:22, Suren nsurendi...@gmail.com wrote:

SuggestBox focuslistener problem with Chrome

2009-04-08 Thread Sandeep
Hi all, I am using a SuggestBox but i have added a prompt on it. It shows Enter a number when focus is not on SuggestBox and when focus is set on suggestbox i set the text to using focuslistner. This works fine on all other browsers but when i try it on Chrome i have to click on suggestBox and

Re: Open a local file with GWT

2009-04-08 Thread alex.d
It's actually the same thing - don't you think? If you can do smth. like Window.open(file:///C:\mycreditcard-number.txt) then you also can go through it though you have full access to popup's Window and Document objects. But may be i'm misunderstanding smth. here completely. On 8 Apr., 06:37,

Re: Windows not showing/hiding as expected

2009-04-08 Thread Gary1975
I have now implemented the suggested solution and it works a treat. Many thanks for the advice. On Apr 8, 7:31 am, Gary1975 gary.ev...@gmail.com wrote: Thanks for the advice - I thought it was something like that but didn't know what to do about it. I'll give it a go today The Window and

Re: How to set icon of tree nodes via CSS

2009-04-08 Thread Mark RG Itol
Hi guys, would like to follow up on this one. Do you have any ideas? Thanks a lot. :) On Apr 2, 6:47 pm, Mark RG Itol markr...@gmail.com wrote: Hi guys, I am using GWT's Treepanel and I need to set different icons for my TreeNodes. I tried using TreeNode.setIconCls(String) but it doesn't

Re: debug freeze

2009-04-08 Thread Vitali Lovich
And the hosted mode log didn't print any exceptions? Weird. On Wed, Apr 8, 2009 at 12:56 AM, seven.reeds seven.re...@gmail.com wrote: As always, it was my fault. I was using a null object. I was finally able to put try/catch blocks around the right thing. Thanks for your suggestions On

Re: HorizontalSplitPanel splitter image through CSS

2009-04-08 Thread alan m
It's amazing how many gwt developers don't know the basic fact that their apps output html, css, and javascript (*NO* relation of java) to the browser and not java - browsers don't read java! No offence to gwt or java devs of course :-) 2009/4/7 Miloš Ranđelović milos@gmail.com: Thanks,

Re: GWT Violates LGPL

2009-04-08 Thread Miles T.
So GWT distribution includes JFreeChart which is LGPL. Problem would be here, Allan, something wrong related to section 4 of the license ? On 8 avr, 07:15, Ian Petersen ispet...@gmail.com wrote: On Tue, Apr 7, 2009 at 10:09 PM, Ian Petersen ispet...@gmail.com wrote: On Tue, Apr 7, 2009 at

Re: File Upload Problem with GWT And Java HttpServlet

2009-04-08 Thread Nickelnext
Hello everyone! sorry for the multiple posting, but this morning i updated everything to the 1.6, downloaded the eclipse plugin and so on. Now i'm getting another error: The code is the same as yesterday. What i get now is a message in the window.alert like this: HTTP ERROR: 404 NOT_FOUND

Visualization works in Android G1?

2009-04-08 Thread jfcog...@gsyc.es
I make some app to show a PieChart to show information... In firefox the Pie it's quite cool, but when I use my G1 ... Don't work, show information, buttons, and picture, but the part of the PieChart is ... not there I follow the Getting Started ... any Idea? someone make visualizations things

Re: CSS Style for single tabs of a TabBar

2009-04-08 Thread -Lord-67
What details do you mean? I think i described it in my first post as good as i could (quoted it below, see Detailed description of the problem). Thanks for the help! On Apr 8, 11:27 am, alan m alan.jame...@gmail.com wrote: We need help to help you :-) More details please - what was the issue;

Re: opening new page

2009-04-08 Thread bhanu
This is the way only I also thought. 1. One url that is the main url for Login. And different modules for different pages. right? so I will get the different urls corresponding to different pages. for example. Login page. that is the entry point for the application.

Re: CSS Style for single tabs of a TabBar

2009-04-08 Thread Ian Bambury
You *can* get at the individual tabs using the DOM, but it will be dependent on the structure of the tab panel and therefore would break if that gets changed. If I were doing it, I'd just set the tab text as HTML with the style included - disabled or not as required. Ian

Re: CSS Style for single tabs of a TabBar

2009-04-08 Thread alan m
Sorry, Lord-67, but on a high volume list repeating a request without details or quote is, to me, just an empty email saying help. No offence. :-) If I understand correctly, if you can actually disable a TabBar, at the point you disable it you can also add.styleName(gwt-TabBarItem-disabled) or

Re: Google App Engine GWT

2009-04-08 Thread Shawn Brown
No Threads? A Java application cannot create a new java.lang.ThreadGroup nor a new java.lang.Thread. These restrictions also apply to JRE classes that make use of threads. For example, an application cannot create a new java.util.concurrent.ThreadPoolExecutor, or a java.util.Timer. An

Re: CSS Style for single tabs of a TabBar

2009-04-08 Thread Ian Bambury
2009/4/8 alan m alan.jame...@gmail.com Sorry, Lord-67, but on a high volume list repeating a request without details or quote is, to me, just an empty email saying help. No offence. :-) You should use Gmail, and it's just the next one up :-) If I understand correctly, if you can

Re: Using DAO pattern in a GWT project

2009-04-08 Thread Jim
You can use DAO pattern to wrap EntityManager using Dreamsource ORM. You can download it from http://dreamsource-orm.googlecode.com/files/dreamsource2_0_0_04062009_GWT_src.jar, create an source folder like dreamsource and extract source files from it into dreamsource source folder. Please check

Re: Deploying GWT applications on OSGi Equinox

2009-04-08 Thread lan
Yes I'm absolutely interested. I don't understand how you don't use a war file. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Proposal for a compiler optimization parameter allowing a cross-module communication scheme.

2009-04-08 Thread Yann
=== Context information === In order to handle server push events, I am using a pattern described and used in multiple places: a getEvents() RPC method waits for up to 30 seconds but returns as soon as an event is received. The issue is that this pattern eats a browser

Re: Spring and GWT 1.6RC

2009-04-08 Thread Fangzx
This bug is fixed in lastest GWT 1.6 release! On 3月24日, 上午11时47分, Scott Blum sco...@google.com wrote: Hey, can you guys do me a favor and try out a fix? Just take the attached jar and put it on your classpath ahead of gwt-dev-platform.jar. See if it fixes the not and instance of Servlet

Re: CSS Style for single tabs of a TabBar

2009-04-08 Thread alan m
We need help to help you :-) More details please - what was the issue; html css browser output? On Wed, Apr 8, 2009 at 7:37 AM, -Lord-67 -lord...@web.de wrote: No suggestions from anyone? Really could need some help here ... Greetings, -Lord-67

Re: Asynchronous communication from server to client

2009-04-08 Thread Lothar Kimmeringer
petrus schrieb: Is there a possibility in GWT to communicate asynchronously from server to client? The term used in general for that is Server Push. A technique for that is called Comet, so if you search Comet GWT with the search engine of your choice, you should come up with a couple of

Re: CSS Style for single tabs of a TabBar

2009-04-08 Thread -Lord-67
What details do you need? I think i tried to describe my problem in my first post as good as i can. (quoted it below with Detailed description of the problem) Main problem: How to access a single tab in a tabbar to set CSS style (disabled bar) or any other (better) way to disable a tab than i

Can't compile with new 1.6 project

2009-04-08 Thread jeremyprioux
Hello, I was using 1.5 and Eclipse for my project and it worked fine (with some home made compiled script). As I wanted to upgrade to the last version, I installed the new Eclipse gwt plugin and created a new project. I think I succeed to import my 5 or 6 modules of my old project, as they are

Re: opening new page

2009-04-08 Thread Ian Bambury
In one GWT application/page, you could show the log in widget, check via Ajax if the details are valid, and if so, display the widget for the second page. There is no need for 2 pages or anything complicated. Ian http://examples.roughian.com 2009/4/8 bhanu baksh...@gmail.com This is the way

Re: GWT dev on Windows and Linux

2009-04-08 Thread Arthur Kalmenson
Do you have profiles in your POM? It looks something like this: profiles profile idgwt-dev-windows/id properties platformwindows/platform /properties

Re: How to use classes in a module that are not part of any module?

2009-04-08 Thread Isaac Truett
Tim, Making a module means creating one XML file. src/com/mycompany/Domain.gwt.xml: module source path=domain / /module ... and done. Inherit that in your GWT app and, assuming that everything in com.mycompany.domain is GWT-compatible, you're set. - Isaac On Wed, Apr 8, 2009 at 1:49

Google App Engine GWT

2009-04-08 Thread Andre Freller
Good news: http://code.google.com/appengine/docs/java/overview.html http://code.google.com/appengine/docs/java/overview.html ... The Google Plugin for Eclipsehttp://code.google.com/appengine/docs/java/tools/eclipse.html adds new project wizards and debug configurations to your

Large GWT-application on mobile phones

2009-04-08 Thread Lothar Kimmeringer
Hello, today I tried to run my main GWT-application (administrative backend of a server-application) on an iPhone/iPod touch and a G1 with Android. At the moment the application is still compiled using GWT 1.4.60, so some issues might already be fixed with later versions. The following things I

Re: Connecting to database with eclipse

2009-04-08 Thread Cryssyenddo
No, i don't have it. Here's my client side RPC interface: package vCarePortal.client; import java.sql.Date; import com.google.gwt.user.client.rpc.AsyncCallback; public interface DiscussionBoardServiceAsync { public void getForums(int forumAccessLevel, AsyncCallbackForum[] callback);

Re: Connecting to database with eclipse

2009-04-08 Thread Cryssyenddo
package vCarePortal.client; import java.sql.Date; import com.google.gwt.user.client.rpc.RemoteService; public interface DiscussionBoardService extends RemoteService { public Forum[] getForums(int forumAccessLevel); public Topic[] getTopics(int forumID, int topicAccessLevel);

Asynchronous communication from server to client

2009-04-08 Thread petrus
Hello, Is there a possibility in GWT to communicate asynchronously from server to client? The only solution which I've found is to use Timer as it's showed there http://www.gwtapps.com/doc/html/com.google.gwt.user.client.Timer.html , but then calls will be synchronous. What solution do you

Re: How to sing events on the mark up element

2009-04-08 Thread Thomas Broyer
On 8 avr, 09:37, vaibhav vaibhav@gmail.com wrote: Hi, I want to access the text box written in HTML from GWT on the basis of element ID. I am able to get this elemt in GWT and also show that. Even I am able to change the text of the text box but I am not able to add the events to the

Re: CSS Style for single tabs of a TabBar

2009-04-08 Thread -Lord-67
@Ian Bambury: Thanks, i will try it with DOM or else if that doesn't work the second way with html, just not sure if i will be able to do that on my own since i am not that experienced :-). DOM should be possible because the tabs don't change, i just want some of them to be disabled at a certain

Re: Just getting started with GWT: how to wrap a native Java library?

2009-04-08 Thread Arthur Kalmenson
Hey Jake, I've never used the SWT Canvas, but if it's anything like the canvas tag, you might want to check out the GWTCanvas in the incubator: http://code.google.com/docreader/#p=google-web-toolkit-incubators=google-web-toolkit-incubatort=GWTCanvas Also, Vitali, there's a GWT library for

Re: Just getting started with GWT: how to wrap a native Java library?

2009-04-08 Thread Vitali Lovich
On Wed, Apr 8, 2009 at 8:52 AM, Arthur Kalmenson arthur.k...@gmail.comwrote: Hey Jake, I've never used the SWT Canvas, but if it's anything like the canvas tag, you might want to check out the GWTCanvas in the incubator:

Re: Large GWT-application on mobile phones

2009-04-08 Thread Vitali Lovich
On Wed, Apr 8, 2009 at 8:38 AM, Lothar Kimmeringer j...@kimmeringer.dewrote: Hello, today I tried to run my main GWT-application (administrative backend of a server-application) on an iPhone/iPod touch and a G1 with Android. At the moment the application is still compiled using GWT 1.4.60,

ImageBundle too wide to display in IE7 under Vista

2009-04-08 Thread markmccall
I recently encountered an issue where the contents of an ImageBundle were not being displayed at all, but only under Vista and IE7. Using XP with IE6, IE7, FireFox 2, FireFox 3 the contents of the ImageBundle displayed with no problems. There are second hand reports that it worked under Vista

Re: CSS Style for single tabs of a TabBar

2009-04-08 Thread Ian Bambury
Hi, Don't use the DOM - Google might change the structure, that's what would break it. There are two possibilities: 1) Add HTML as the tab title When the enabled/disabled change happens, get it back and change the style class in the html string you get back and replace it (a simple replaceAll()

Re: Announcing GWT 1.6...and quite a bit more

2009-04-08 Thread Jim
I just want to GWT community to know you CAN boost your productivity by using Dreamsource ORM from http://dreamsource-orm.googlecode.com/files/dreamsource2_0_0_04062009_GWT_src.jar. Dreamsource ORM is implemented to target GWT applications after the first version is being used in production for

Re: File Upload Problem with GWT And Java HttpServlet

2009-04-08 Thread Isaac Truett
If you're running in web mode or hosted mode with -noserver, you would deploy class files to WEB-INF/classes. com.example.Foo would be WEB-INF/classes/com/example/Foo.class, for example. 2009/4/8 Nickelnext nickeln...@gmail.com: Hello everyone! sorry for the multiple posting, but this

Re: Large GWT-application on mobile phones

2009-04-08 Thread Lothar Kimmeringer
Vitali Lovich schrieb: Android: - The browser coming with G1 is not able to do HTTP Basic Authentication (WTF?) That seems strange unlikely given that it's Chrome (or at least some kind of Webkit-based browser). Try running your app in Chrome on the desktop - does that

Re: Large GWT-application on mobile phones

2009-04-08 Thread Vitali Lovich
On Wed, Apr 8, 2009 at 9:54 AM, Lothar Kimmeringer j...@kimmeringer.dewrote: Vitali Lovich schrieb: Android: - The browser coming with G1 is not able to do HTTP Basic Authentication (WTF?) That seems strange unlikely given that it's Chrome (or at least some kind of

Re: Asynchronous communication from server to client

2009-04-08 Thread Vitali Lovich
On Wed, Apr 8, 2009 at 7:08 AM, Lothar Kimmeringer j...@kimmeringer.dewrote: petrus schrieb: Is there a possibility in GWT to communicate asynchronously from server to client? The term used in general for that is Server Push. A technique for that is called Comet, so if you search Comet

Re: Asynchronous communication from server to client

2009-04-08 Thread petrus
Thanks for your advice! I'll try with comet. On 8 Kwi, 13:08, Lothar Kimmeringer j...@kimmeringer.de wrote: petrus schrieb: Is there a possibility in GWT to communicate asynchronously from server to client? The term used in general for that is Server Push. A technique for that is called

Re: Announcing GWT 1.6...and quite a bit more

2009-04-08 Thread Brian
Nice. On Apr 7, 11:57 pm, Bruce Johnson br...@google.com wrote: Hi Folks! Exciting news today. Rather than attempting to describe everything here, let me point you to some blog posts that hopefully you will find interesting: GWT 1.6 and

Re: Proposal for a compiler optimization parameter allowing a cross-module communication scheme.

2009-04-08 Thread Vitali Lovich
Seems like your pattern is easily solved (I didn't look at your compiler suggestion, so this isn't a comment about that). Have your clients send a timestamp in the RPC to the server. The server then takes the highest timestamp tells the client that it doesn't need to listen to notifications

Re: Asynchronous communication from server to client

2009-04-08 Thread Lothar Kimmeringer
Vitali Lovich schrieb: Calls in GWT are always synchronously, independent of the way they are initiated. Actually, they are always asynchronous. I meant asynchronous, I don't know why I wrote synchronous. They are single threaded though if that's what you meant. No, I simply

Re: GWT and map viewer

2009-04-08 Thread Jason Essington
You have a couple of options ... If you are feeling ambitious, you could re-implement the viewer in pure GWT, or you could simply call into the viewer from GWT using JSNI. http://code.google.com/webtoolkit/doc/1.6/DevGuideCodingBasics.html#DevGuideJavaScriptNativeInterface -jason On Apr 7,

Re: Connecting to database with eclipse

2009-04-08 Thread eggsy
Are you using GWT 1.4 or 1.5? If you are using 1.5 add the line: @RemoteServiceRelativePath(teachers) in the same place as where I have mine - replace teachers with whatever path you want for your servlet. next thing is how to call the servlet using RPC this should be done like so:

Re: Connecting to database with eclipse

2009-04-08 Thread eggsy
Next you need to have server side class something like this: - package com.company.server.gwt; public class TeacherServiceImpl extends RemoteServiceServlet implements TeacherService { private static final long serialVersionUID = 1L; public ListPupilDTO getPupils(Integer

Re: Connecting to database with eclipse

2009-04-08 Thread Cryssyenddo
I've made the modifications to my codes, and yet the same error still pop out...here's the modifications i've done: package vCarePortal.client; import java.sql.Date; import com.google.gwt.user.client.rpc.RemoteService; import com.google.gwt.user.client.rpc.RemoteServiceRelativePath;

Re: Connecting to database with eclipse

2009-04-08 Thread Cryssyenddo
I've made the modifications to my codes, and yet the same error still pop out...here's the modifications i've done: package vCarePortal.client; import java.sql.Date; import com.google.gwt.user.client.rpc.RemoteService; import com.google.gwt.user.client.rpc.RemoteServiceRelativePath;

Re: Connecting to database with eclipse

2009-04-08 Thread Cryssyenddo
and by the way, i'm using gwt1.5.3 --~--~-~--~~~---~--~~ 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,

Eclipse Plugin Compile Button Stack Overflow

2009-04-08 Thread Brian
Just installed the Google plugin for Eclipse, and hit the Compile button on my project. It gave me a stack overflow error. Prior to using the plugin, I'd compile by hitting the Compile button in the hosted mode browser. In the Run/Debug Eclipse configuration, I have -Xss4k -Xmx256M Compiles

Reverse engineering

2009-04-08 Thread fatjack1...@googlemail.com
Hi, Im wondering if there is an easy way to reverse engineer your code to produce class diagrams? Regards, Jack --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Re: debug freeze

2009-04-08 Thread Seven Reeds
Correct, the hosted mode log showed the creation of various widgets but there was no null pointer messages. I had sprinkled Window.alert() messages all over the place to narrow down the issue and eventually found the line. Starring at the line made no sense because it was a rational

Trying to use server in another module

2009-04-08 Thread Ivan M
Hello all, I'm facing my first GWT development. I had the idea of developing a project with a module which I have called x.gwtlogin. The server of this module can perform queries on a LDAP server. My idea is to have an instance of this module running in the application server and use its server

Re: Announcing GWT 1.6...and quite a bit more

2009-04-08 Thread Stan B
Thank you, can't wait to dig in! Does the Google/GWT plugin for Eclipse create the service stubs (Async/ Sync/Impl classes) and modify the web.xml to add the servlet for you like Cypal Studio? On Apr 7, 11:57 pm, Bruce Johnson br...@google.com wrote: Hi Folks! Exciting news today. Rather

Re: How to create CSS style for disabled buttons

2009-04-08 Thread Ferdi
I have the same problem with textboxes: it does not work on IE6, selectors are not supported. You need to define a specific class for that style (disabled) and add that style to your component when it is disabled. I am currently looking for a better way to do that. One solution would consist to

Re: Can't compile with new 1.6 project

2009-04-08 Thread robbyb67
I have this problem too ! I am trying the Java-SDK for AppEngine which contains GWT 1.6.4. On 8 Apr., 11:32, jeremyprioux jeremypri...@gmail.com wrote: Hello, I was using 1.5 and Eclipse for my project and it worked fine (with some home made compiled script). As I wanted to upgrade to the

Re: GWT 1.6: Where to save hibernate.cfg.xml and logback.xml?

2009-04-08 Thread hezjing
Thanks Toni. I thought these configuration files has been taken into consideration in the standard GWT 1.6 project directories. On Wed, Apr 8, 2009 at 12:56 AM, Tony Strauss tony.stra...@designingpatterns.com wrote: You might want to keep a version controlled src\conf directory that is

Re: Connecting to database with eclipse

2009-04-08 Thread Cryssyenddo
I solved the problem...I made a typo error at my impl class. I've made the corrections and it works now. I'm wondering, how should i call a service properly? In this piece of code below, i'm trying to get an array Forum object which the data i retrieved form my database and then i intend

Re: Announcing GWT 1.6...and quite a bit more

2009-04-08 Thread Jim
I got the following exception: Plug-in org.eclipse.ajdt.ui was unable to load class org.eclipse.ajdt.internal.ui.ajde.CachedRuntimeClasspathEntryResolver. An error occurred while automatically activating bundle org.eclipse.ajdt.ui (33). when I try to run web application from the project

Re: CSS Style for single tabs of a TabBar

2009-04-08 Thread -Lord-67
Hi, i didn't find out how to do it with DOM and i won't try any more (thanks for this hint). Instead i was able to change the single tabs due to setting the HTML as you told, but i wasn't able to set a CSS style The first solution sounds a bit like quick and dirty. I think i will try the second

Re: Connecting to database with eclipse

2009-04-08 Thread eggsy
Can you confirm (server side) that the array of objects isn't null? If so this sounds like GWT might not be able to handle objects of type Forum. GWT can only handle objects declared under the client side packages and wont be able to handle any database POJO object declared at server level.

Provide support for NavigableMap/NavigableSet implementation?

2009-04-08 Thread Mark Renouf
Hi, I was wondering if anyone has tried adding NavigableMap/ NavigableSet (From JDK 1.6), support for use in GWT? Using the JRE emulation mechanism (super-source), it should be possible to add the required interfaces then update GWT's TreeMap, to implement NavigableMap. I've gotten part-way

Re: IE doesnt show my progress bar when the data loads in to my Grid

2009-04-08 Thread Thomas Broyer
On 8 avr, 07:22, Suren nsurendi...@gmail.com wrote: Hi All, I am loading 100x100 values into the cells of a Grid from the DB. Its taking some time to show the Grid in IE. So thought of showing a progress bar during that time instead of showing blank page to the user. So I am trying to

Re: Connecting to database with eclipse

2009-04-08 Thread Cryssyenddo
Yes, i did created an object class Forum at client side, and i've just confirmed that the array from server side is null. I've found out the problem with result set is we can do execute queries one after another...so i changed the order of my result set codes, that solves the problem. Anyway,

Re: Deploying GWT applications on OSGi Equinox

2009-04-08 Thread gcr
Ian, Have seen the article Embedding an HTTP server in Equinox? If not give it a read and we can continue. It explains how to do without war file. http://www.eclipse.org/equinox/server/http_in_equinox.php On Apr 8, 2:41 am, lan anouar.khem...@gmail.com wrote: Yes I'm absolutely interested.

Android Compatibility Isses with GWT (UI based, not RPC)

2009-04-08 Thread Evan Ruff
Hey guys, Little stream of conciseness here, sorry if this is a bit long/ disjoined. I was wondering if anyone had done any work with GWT and the Android Browser. While I'm getting basic functionality to work, the general speed, responsiveness and user experience seem very sluggish and, well,

Re: Eclipse Plugin Compile Button Stack Overflow

2009-04-08 Thread Miguel Méndez
On Wed, Apr 8, 2009 at 11:11 AM, Brian hibr...@gmail.com wrote: Just installed the Google plugin for Eclipse, and hit the Compile button on my project. It gave me a stack overflow error. Prior to using the plugin, I'd compile by hitting the Compile button in the hosted mode browser. In the

Re: GWT 1.5.3 upgrade problem with RPC

2009-04-08 Thread M. Rasit Ozdas
Hi, I never used GWT 1.4. I started from GWT 1.5.3 directly. But I get the same exception. What would be the cause for that? Do you know anything about this? On Mar 14, 11:05 am, 唐振坤 tan...@gmail.com wrote: In the GWT docs, you need to change the Content-Type from text/plain to

Re: Trying to use server in another module

2009-04-08 Thread Ivan M
Sorry, too fast. I made it work including x.gwtlogin in x.dt as a module with no entry point. I didn't need to copy the server classes, so I have a single server as I wanted. On 8 abr, 17:28, Ivan M supertra...@gmail.com wrote: Hello all, I'm facing my first GWT development. I had the idea of

Re: Announcing GWT 1.6...and quite a bit more

2009-04-08 Thread Miguel Méndez
On Wed, Apr 8, 2009 at 9:43 AM, Stan B stan...@gmail.com wrote: Thank you, can't wait to dig in! Does the Google/GWT plugin for Eclipse create the service stubs (Async/ Sync/Impl classes) and modify the web.xml to add the servlet for you like Cypal Studio? We did not include that feature

Re: Announcing GWT 1.6...and quite a bit more

2009-04-08 Thread Miguel Méndez
What version of eclipse are you using? What version of ajdt? On Wed, Apr 8, 2009 at 11:41 AM, Jim jim.p...@gmail.com wrote: I got the following exception: Plug-in org.eclipse.ajdt.ui was unable to load class org.eclipse.ajdt.internal.ui.ajde.CachedRuntimeClasspathEntryResolver. An error

Re: Announcing GWT 1.6...and quite a bit more

2009-04-08 Thread Jim
I am using Eclipse 3.3. I got this exception first time when I tried to run web application after I installed the plugin and restarted eclipse. However this exception goes away after I restarted my Eclipse. Jim On Apr 8, 1:03 pm, Miguel Méndez mmen...@google.com wrote: What version of eclipse

Content-Type must be 'text/plain' with 'charset=utf-8' Error, But not an upgrade issue

2009-04-08 Thread Rasit OZDAS
Hi, I've sent this post to a thread via googlegroups page, but it doesn't exist in my sent mails folder and also in that page. So I had to post here once more. I'm getting the error in the title. I searched previous threads, all saying that it's a 1.4 - 1.5 issue. But I actually never used 1.4.

Re: Announcing GWT 1.6...and quite a bit more

2009-04-08 Thread Miguel Méndez
Restarting a second time fixes it? On Wed, Apr 8, 2009 at 1:17 PM, Jim jim.p...@gmail.com wrote: I am using Eclipse 3.3. I got this exception first time when I tried to run web application after I installed the plugin and restarted eclipse. However this exception goes away after I restarted

Error installing google plugin for eclipse

2009-04-08 Thread joedayz
I installed in Spring tool suite 2.0 the plugin. I work in ubuntu (linux). For I got it error: Invocation of com.google.gwt.user.tools.WebAppCreator failed. If someone can help with it. Please, Joe --~--~-~--~~~---~--~~ You received this message because you

Re: Android Compatibility Isses with GWT (UI based, not RPC)

2009-04-08 Thread Jason Parekh
On Wed, Apr 8, 2009 at 12:22 PM, Evan Ruff evan.r...@gmail.com wrote: Hey guys, Little stream of conciseness here, sorry if this is a bit long/ disjoined. I was wondering if anyone had done any work with GWT and the Android Browser. While I'm getting basic functionality to work, the

Center Root Panel

2009-04-08 Thread Gonzalo Tirapegui Medina
Hi all: how can i center the main panel into the page ... i've been reading that this panel have an absolute position , in that case , should i get the screen resolution and add some padding to the component? thanks ... Gonzalo. --~--~-~--~~~---~--~~ You

Re: Announcing GWT 1.6...and quite a bit more

2009-04-08 Thread Jim
Yes. I am using the following version of ajdt and aspectj: Version: 1.5.3.200807141310 AspectJ version: 1.6.1.2008070312 Jim On Apr 8, 1:28 pm, Miguel Méndez mmen...@google.com wrote: Restarting a second time fixes it? On Wed, Apr 8, 2009 at 1:17 PM, Jim jim.p...@gmail.com wrote:

Re: Announcing GWT 1.6...and quite a bit more

2009-04-08 Thread flyingb...@gmail.com
I should go back in using eclipse for the project or osmething. I been using netbeans with the gwt4nb but that havnt been updated to support 1.6 I dont really know how to write those config files to setup the new debugger and stuff for netbeans On Apr 8, 10:28 am, Miguel Méndez

Re: Reverse engineering

2009-04-08 Thread flyingb...@gmail.com
the source code is in the jar files. so in netbeans i can hit ctrl +shift+b to go to the class it used On Apr 8, 8:15 am, fatjack1...@googlemail.com fatjack1...@googlemail.com wrote: Hi, Im wondering if there is an easy way to reverse engineer your code to produce class diagrams? Regards,

Re: Announcing GWT 1.6...and quite a bit more

2009-04-08 Thread Miguel Méndez
That is strange. We'll track it internally. Please let us know if it happens again. On Wed, Apr 8, 2009 at 1:51 PM, Jim jim.p...@gmail.com wrote: Yes. I am using the following version of ajdt and aspectj: Version: 1.5.3.200807141310 AspectJ version: 1.6.1.2008070312 Jim On Apr

Re: Error installing google plugin for eclipse

2009-04-08 Thread Miguel Méndez
Was there a stack traced or more information in the failure? What versions of eclipse, etc are involved? On Wed, Apr 8, 2009 at 1:43 PM, joedayz jamdiazd...@gmail.com wrote: I installed in Spring tool suite 2.0 the plugin. I work in ubuntu (linux). For I got it error: Invocation of

New version of Print.it

2009-04-08 Thread Freller
So here you can find the last version of Print.it. It works for both 1.4 and 1.5. You can supply a DOCTYPE do be used to render the printing frame and you can alter the way the printing frame is generated and printed on slow machines,

Re: Android Compatibility Isses with GWT (UI based, not RPC)

2009-04-08 Thread Evan Ruff
Hey Jason, Thanks for the tips. I've posted my note on the Android Developers list so hopefully someone over there has already gone down this road. As for the emulator tip, I've found some images and will be installing them shortly. Sometimes I kind of forget what I'm working with and just

Re: iText Causing GWT-RPC callback to fail. Need to send to HttpServletResponse?

2009-04-08 Thread flyingb...@gmail.com
Can we see how does your itext pdf look like? here is mine: http://www.nabble.com/file/p17809870/DomesticApprovalS13371.pdf On Apr 7, 10:50 pm, Carl Pritchett bogusggem...@gmail.com wrote: Hi, You'll have to work out a token generation scheme. If you find a nice one, post it. Sessions will

Re: Android Compatibility Isses with GWT (UI based, not RPC)

2009-04-08 Thread Evan Ruff
Jason, I actually downloaded a January 7th image I found on the web. Do you know if that version has the Webkit/SquirrelFish updates in it? Sorry if this thread has kinda gotten a little off the tracks, guys. E On Apr 8, 12:57 pm, Jason Parekh jasonpar...@gmail.com wrote: On Wed, Apr 8, 2009

Re: Error installing google plugin for eclipse

2009-04-08 Thread Jose Diaz
This is the information of my STS: SpringSource Tool Suite Version: 2.0.0 (c) Copyright SpringSource 2007, 2009. All rights reserved. Visit http://springsource.com/products/sts My ubuntu: Ubuntu 8.10 - the Intrepid Ibex - released in October 2008. Log: !ENTRY org.eclipse.jdt.ui 4 10001

Re: Error installing google plugin for eclipse

2009-04-08 Thread Miguel Méndez
Last question, is this a 64 machine? On Wed, Apr 8, 2009 at 2:17 PM, Jose Diaz jamdiazd...@gmail.com wrote: This is the information of my STS: SpringSource Tool Suite Version: 2.0.0 (c) Copyright SpringSource 2007, 2009. All rights reserved. Visit http://springsource.com/products/sts

Re: Error installing google plugin for eclipse

2009-04-08 Thread Jose Diaz
Sorry The error is because in my preferences i am using JDK 1.4 by default. I change to jdk 1.6 and the problem was solved. Joe. www.joedayz.org On Wed, Apr 8, 2009 at 1:17 PM, Jose Diaz jamdiazd...@gmail.com wrote: This is the information of my STS: SpringSource Tool Suite Version:

Re: GWT dev on Windows and Linux

2009-04-08 Thread Marley
Thanks for the response. I tried this but am still getting an error. What is in your platform-libs zip? On Apr 8, 8:33 am, Arthur Kalmenson arthur.k...@gmail.com wrote: Do you have profiles in your POM? It looks something like this:         profiles                 profile                

  1   2   >