remote debugging with Jetty and GWT?

2008-10-13 Thread markww
Hi, I'm using Jetty 6.x as my web server. Does anyone know how to setup remote debugging with GWT? It's difficult debugging via print statements.. Thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web

Unable to find/load mapped servlet class

2008-10-13 Thread Joshua Partogi
Dear all, I encounter this problem when trying to run a trivial sample. I already have the class, but why does GWT throw this error? com.google.gwt.user.client.rpc.StatusCodeException: Unable to find/ load mapped servlet class 'lab.gwt.server.TestServiceImpl' Could anyone give me a hint on

Re: setting an image to have a transparent background? (.getElement().setAttribute(style, .....)

2008-10-13 Thread Jason Morris
As a rule of thumb, never setAttribute, when there is a property for that element that does the same job. For example, use setClassName() instead of setAttribute(class, ...), and getStyle().setProperty() instead of setAttribute(style). IE has problems handing setAttribute with any special

Re: How to Dynamically resize RichTextArea

2008-10-13 Thread Jason Morris
samsus wrote: Hello, Is there a way i can dynamically resize the RichTextArea Height?, that is, it starts with 50px height, and if the content inside the RichTextArea passes that limit, the height is increased. Any ideas? I'm not sure about automatically resizing the field (ie:

Re: setting an image to have a transparent background? (.getElement().setAttribute(style, .....)

2008-10-13 Thread Thomas Wrobel
No, because the goal is to make something fade in an out :) I already got it working on IE/Firefox and Opera now, havnt tested Safari yet. Opera/Firefox both seem to work very smoothly with it, in fact. IE works but a little slower to update. I do use PNG images a lot though..lovely format. Not

Re: setting an image to have a transparent background? (.getElement().setAttribute(style, .....)

2008-10-13 Thread Lothar Kimmeringer
Ponthiaux Eric schrieb: Could you use png images instead ? AFAIR IE has problems with transparency when showing PNGs (my copy of GWT in Action is at home, so I can't look it up at the moment). Regards, Lothar --~--~-~--~~~---~--~~ You received this message

Re: setting an image to have a transparent background? (.getElement().setAttribute(style, .....)

2008-10-13 Thread darkflame
Indeed. But you can use a fix to get around it; http://www.twinhelix.com/css/iepngfix/demo/ On Oct 13, 1:54 pm, Lothar Kimmeringer [EMAIL PROTECTED] wrote: Ponthiaux Eric schrieb: Could you use png images instead ? AFAIR IE has problems with transparency when showing PNGs (my copy of GWT

Re: How to Dynamically resize RichTextArea

2008-10-13 Thread samsus
Jason, i done a few hacks using javascript and DOM, using something like frames[framename].contentDocument.height to dynamically resize the textarea, it works fine in firefox and Chrome, it doesnt work however in IE (suprise!) , i search all i could for some valid height property in IE with no

Re: setting an image to have a transparent background? (.getElement().setAttribute(style, .....)

2008-10-13 Thread Ponthiaux Eric
Could you use png images instead ? Playing with specials browser attributes is a tricky thing . Basically it will multiply your work at least by 4 ( IE , Firefox , Safari , Opera ). regards. Thomas Wrobel a écrit : Cheers for the advice, I'll use those methods in future. :) 2008/10/13

Re: TextBoxBase CSS bug?

2008-10-13 Thread Paul Robinson
setStyleName() removes all existing styles, so you've removed the standard gwt style names (gwt-*) addStyleName() adds to it. [EMAIL PROTECTED] wrote: Is there a problem with the following code as it doesnt grey out my text boxes (it does stet the size though). or is this a gwt bug? my

Re: PopupPanel with Parent

2008-10-13 Thread Thomas Broyer
On 12 oct, 20:41, rjcarr [EMAIL PROTECTED] wrote: I'm wondering if there is a way to give a popup panel a parent. Specifically, I have an absolute panel where the overflow is hidden (think google maps) and I'd like a popup to go into this panel and get hidden like everything else (think info

overide onBroserEvent

2008-10-13 Thread [EMAIL PROTECTED]
Hi ive made some classes that extend Checkbox and overide onbrowserevent. everything worked fine and a couple of days ago i switched to gwt 1.5 and today i noticed it doesnt work anymore. seems like it totaly ignores my overides? I figured its probably because its missing @Override annotations

Re: How to Dynamically resize RichTextArea

2008-10-13 Thread samsus
if i do that, the iframe will from start try to ocupy as much space as it can (instead of starting at a certain height and then increasing) On Oct 13, 10:26 am, ponthiaux eric [EMAIL PROTECTED] wrote: did you try to use size in % ? 2008/10/13 Jason Morris [EMAIL PROTECTED] samsus

Re: Most efficient way to transfer larger amounts of data via RPC?

2008-10-13 Thread rakesh wagh
3. Is there another way all together that I could approach this to get the data to the client faster? For this specific scenario use RequestBuilder on client and a traditional servlet on the server. --~--~-~--~~~---~--~~ You received this message because you are

Problem with RichTextArea.getBasicFormatter().selectAll() and others

2008-10-13 Thread Lothar Kimmeringer
Hello, I've got a problem with a RichTextBox. As soon as I try to use functions of the BasicFormatter, I get errors. My goal is to set the font-name of a set text: configTextArea.setText(config); configTextArea.getBasicFormatter().selectAll();

Possible bug with GWT or Java, but dont have the expirence to be sure myself :x

2008-10-13 Thread darkflame
I have been expirementing developing a transition effect in GWT, that is made by fadeing out a 10x10 array of images in sequence. The fade's, individualy, work ok. But if more then one is attempted at a time I get this; # # An unexpected error has been detected by Java Runtime Environment: # #

How to get the list of GWT modules

2008-10-13 Thread [EMAIL PROTECTED]
Hi All, Because of the compilation time, I decided to split my GWT application in several business GWT modules. Each developer only uses the necessary modules and I need to identify what modules are declared. So to do it, I wanna know how to get the list of GWT modules declared in the inherits

Re: Possible bug with GWT or Java, but dont have the expirence to be sure myself :x

2008-10-13 Thread darkflame
umm..I meant looked at the log file. Not exactly sure what logging at a log file would do On Oct 13, 4:44 pm, darkflame [EMAIL PROTECTED] wrote: I have been expirementing developing a transition effect in GWT, that is made by fadeing out a 10x10 array of images in sequence. The fade's,

Re: Possible bug with GWT or Java, but dont have the expirence to be sure myself :x

2008-10-13 Thread Paul Robinson
That's java itself, not gwt. You could try a later JVM - the latest non-RC 1.6 jdk is 1.6.0_07-b06 darkflame wrote: I have been expirementing developing a transition effect in GWT, that is made by fadeing out a 10x10 array of images in sequence. The fade's, individualy, work ok. But if more

Re: Possible bug with GWT or Java, but dont have the expirence to be sure myself :x

2008-10-13 Thread alex.d
What about Web-mode? Any problems there? On 13 Okt., 16:44, darkflame [EMAIL PROTECTED] wrote: I have been expirementing developing a transition effect in GWT, that is made by fadeing out a 10x10 array of images in sequence. The fade's, individualy, work ok. But if more then one is attempted

Re: overide onBroserEvent

2008-10-13 Thread Thomas Broyer
On 13 oct, 15:27, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi ive made some classes that extend Checkbox and overide onbrowserevent. everything worked fine and a couple of days ago i switched to gwt 1.5 and today i noticed it doesnt work anymore. seems like it totaly ignores my overides?

Re: Possible bug with GWT or Java, but dont have the expirence to be sure myself :x

2008-10-13 Thread darkflame
Yes, try this in IE; http://www.cuyperscode.com/CuypersCode2_WIP/test%20folder/TestProject.html Press Button2 to test the simple fade, Button1 to start the by-section fade out. crash's IE6 at the same point the crash happens in hosted. (the by-section fade out dosnt work at all in Firefox or

Re: Possible bug with GWT or Java, but dont have the expirence to be sure myself :x

2008-10-13 Thread darkflame
I'll give that a go too. On Oct 13, 4:51 pm, Paul Robinson [EMAIL PROTECTED] wrote: That's java itself, not gwt. You could try a later JVM - the latest non-RC 1.6 jdk is 1.6.0_07-b06 darkflame wrote: I have been expirementing developing a transition effect in GWT, that is made by

Re: Question about racing condition with refresh in linux.

2008-10-13 Thread shaselai
anyone? On Oct 9, 4:20 pm, shaselai [EMAIL PROTECTED] wrote: When I load m GWT program it creates a bunch of panels and buttons and it also makes a call to the server for data to populate a listbox. When I first did this in Windows it was fine and I never noticed this racing condition. When

Re: setting an image to have a transparent background? (.getElement().setAttribute(style, .....)

2008-10-13 Thread Thomas Wrobel
Cheers for the advice, I'll use those methods in future. :) 2008/10/13 Jason Morris [EMAIL PROTECTED]: As a rule of thumb, never setAttribute, when there is a property for that element that does the same job. For example, use setClassName() instead of setAttribute(class, ...), and

How to add a thrid party jar file to the gwt project

2008-10-13 Thread Prakash
How can I add a thrid party jar file in my gwt project like commons- logging-1.1.jar ,castor-1.1.jar which does not have source code I came to know that I have to inherit that in the gwt xml file. I tried but its always giving me error . Its always saying that No source code available for that

Re: Enter the Container

2008-10-13 Thread archimechanical
2 gwt team: just make the com.google.gwt.user.client.ui.Widget.setParent(Widget parent) PUBLIC. I want to take all responsibility for my code. As I think, GWT should not be child safe, we are not in MS camp, where guys often think for(instead of) me. I want to think myself. If I want to step out

run gwt project with eclipse

2008-10-13 Thread [EMAIL PROTECTED]
Hello everyone, i've just built a gwt project with projectCreator and ApplicationCreator.So i've imported the my project into eclipseand when i laujch it with the script shell MyApplication-shell which is genereted i i have the two window which i expected.But when i try to run it by right

Is there a problem with GWT junit from a 'junit' ant task?

2008-10-13 Thread Graham
Hi, I'm trying to get Junit tests working using the formatting options of the junit ant task but I keep on getting what I guess are classpath problems. When I invoke junit.textui.TestRunner from a java task I get no problems. All the exmaples I have found in books and on the web use the java

Re: How to Dynamically resize RichTextArea

2008-10-13 Thread ponthiaux eric
did you try to use size in % ? 2008/10/13 Jason Morris [EMAIL PROTECTED] samsus wrote: Hello, Is there a way i can dynamically resize the RichTextArea Height?, that is, it starts with 50px height, and if the content inside the RichTextArea passes that limit, the height is increased.

Re: Have source code in Frame contact GWT application

2008-10-13 Thread freeall
Hi. Thanks. I made static calls work, but I can't make it work on instances. Sorry for all the text below. The only question is on the last. Just wanted to make sure that all details was here. So imagine this webpage layout, split into different panels: - | 1 |

Re: How to add a thrid party jar file to the gwt project

2008-10-13 Thread Isaac Truett
You can't use a library in a GWT client if you don't have source. No way around that. You also can't use many libraries, even with source, if they depend on classes not emulated by GWT. You can use those libraries on the server, but you'll need to find another solution for the client. On Mon,

Re: Possible bug with GWT or Java, but dont have the expirence to be sure myself :x

2008-10-13 Thread Paul Robinson
Your error message indicates you were using 1.6.0_03 darkflame wrote: I have heard from someone using Java 1.6.0_05 that it works fine. It seems the _07 update (which I was on) is causing the problems. On Oct 13, 5:00 pm, darkflame [EMAIL PROTECTED] wrote: Yes, try this in

Re: Have source code in Frame contact GWT application

2008-10-13 Thread Ian Bambury
Why are you doing it this way? There may be another option. Ian http://examples.roughian.com 2008/10/13 freeall [EMAIL PROTECTED] Hi. Thanks. I made static calls work, but I can't make it work on instances. Sorry for all the text below. The only question is on the last. Just wanted to

Getting name of file on which mouse right click

2008-10-13 Thread Prithviraj
Hi everybody, I 'm new bee to GWT and want to get the name of the hyperlink on which the mouse right click is there any way to do this, plwease tell me . Thank in advance --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

Using gwt-json-rpc with JROCK json rpc for .NET

2008-10-13 Thread Lukasz Kucharski
Hello there! We're gonna be integrating GWT and .NET IIS hosted services in our next project. From the research I've managed to do so far I concluded that it would be nice to have gwt-json-rpc and JAYROCK json-rpc implementation for .NET talking one to another. Did anyone use those libraries

Re: Possible bug with GWT or Java, but dont have the expirence to be sure myself :x

2008-10-13 Thread Thomas Wrobel
Thats strange, as thats what Command.com said when I type java -version I have just updated anyway to this version;

Re: Ant tasks ZipException

2008-10-13 Thread Isaac Truett
[java] com.google.gwt.core.ext.typeinfo.NotFoundException: java.lang.Object This suggests to me that you don't have gwt-user.jar on your classpath. On Mon, Oct 13, 2008 at 12:23 PM, birwin [EMAIL PROTECTED] wrote: Thank You Isaac, That did eliminate the ZipException... I am now

Re: Possible bug with GWT or Java, but dont have the expirence to be sure myself :x

2008-10-13 Thread Paul Robinson
You can have any number of versions of java installed. From the windows command prompt, whichever is first in your PATH environment variable is the one that will be used (and if you never add java to your PATH, then you will get the last one to be installed since it drops a java.exe in system32).

JUnit GXT mock problem

2008-10-13 Thread Andrey
Hello! I am trying to test my MVC GWT application which uses GXT widgets. The JUnit4 is used, not GWTTestCase. So GWT.Create is disabled by GWTMockUtilities.disarm(); We expect to mock all GXT widgets. But there is one unresolved problem: java.lang.UnsatisfiedLinkError:

Re: Enter the Container

2008-10-13 Thread kozura
Guess I don't see the point, I can't think of anything I've needed to do that can't be done with Composite and/or Panel. Do you have a specific example of something *commonly* done that'd be much easier with this class? Otherwise it would seem to be unnecessarily bloating the API and thus

Re: Ant tasks ZipException

2008-10-13 Thread birwin
Thanks again for your response Isaac, I believe I do have the gwt-user.jar on my path... I am using Ivy for my dependency resolution. I assigned the gwt JARs from IVY and named the path gwt.path Just to make sure the user JAR was on the path, I assigned the path to a property and then echoed

TreeSet SerializationException

2008-10-13 Thread Twentyseven
Hello, I'm using GWT 1.5.2, with Spring 2.5.2 and Hibernate 3.2.6. I'm using the TreeSet class in GWT on the client side with a custom comparator and I have no problem. But I tried to use the sort attribute of set in the Hibernate mapping (Hibernate return a TreeSet with a custom Comparator)

Re: Servlet Problem

2008-10-13 Thread Lothar Kimmeringer
Lukiep schrieb: Hi, I'm trying to deploy my application in Apache Tomcat. I generated the file and classes but when I put their in the Tomcat directory (WebInf/lib e classes) the servlet doesn't work. Check the logfile of the tomcat-server if there are any entries. So check if the

Re: Ant tasks ZipException

2008-10-13 Thread birwin
Sorry, the last Timecard.gwt.xml was not the correct one. Here is the one I am using: ?xml version=1.0 encoding=UTF-8 standalone=no? module !-- Inherit the core Web Toolkit stuff. -- inherits name=com.google.gwt.user.User/ !-- Inherit Web Toolkit

Re: Possible bug with GWT or Java, but dont have the expirence to be sure myself :x

2008-10-13 Thread darkflame
Just done that, had to select the install folder manualy as it wasnt on the list, but then the _07 version appeared. Exact same problem, this time, however, the resulting error says; # Java VM: Java HotSpot(TM) Client VM (10.0-b23 mixed mode, sharing windows-x86) # Problematic frame: 10.0-b23?

Re: Ant tasks ZipException

2008-10-13 Thread birwin
It does contain com/google/gwt/emul/java/lang/Object.java Just to make sure the GWTCompile task handles spaces in its classpath, I moved the user.jar to the root directory and created a new classpath that just had that JAR. I tried a recompile and included the new classpath and again it failed

Re: Maps API for GWT: How to get the clicked polyline vertex?

2008-10-13 Thread Eric Ayers
Um, sorry about that - there is no gwt-maps list, I mean the Google Maps API group http://groups.google.com/group/Google-Maps-API -Eric. On Mon, Oct 13, 2008 at 2:30 PM, Eric Ayers [EMAIL PROTECTED] wrote: Hi Brian, Thanks for bringing this up. I checked at:

Re: how to use RichTextToolbar

2008-10-13 Thread Sumit Chandel
Hi samsus, You can find the RichTextToolbar class that is being used in the Showcase sample application in the /samples/Showcase directory in your GWT distribution. Feel free to use the class directly or inspire your own RichTextToolbar class from the implementation in the sample. Hope that

Re: Maps API for GWT: How to get the clicked polyline vertex?

2008-10-13 Thread Brian
Hi Eric, Thanks for the reply. Yeah I couldn't find where the 'index parameter was documented in the Javascript API, so I wasn't sure if the docs were stale, or that sample was experimental. Now I know.. For what it's worth, I was able to do what I needed to by looping through all the verts.

Re: Have source code in Frame contact GWT application

2008-10-13 Thread Daniel Kurka
2008/10/13 freeall [EMAIL PROTECTED] Hi. Thanks. I made static calls work, but I can't make it work on instances. Sorry for all the text below. The only question is on the last. Just wanted to make sure that all details was here. So imagine this webpage layout, split into different

Re: Maps API for GWT: How to get the clicked polyline vertex?

2008-10-13 Thread Eric Ayers
On Mon, Oct 13, 2008 at 3:19 PM, Brian [EMAIL PROTECTED] wrote: Hi Eric, Thanks for the reply. Yeah I couldn't find where the 'index parameter was documented in the Javascript API, so I wasn't sure if the docs were stale, or that sample was experimental. Now I know.. For what it's

Re: Most efficient way to transfer larger amounts of data via RPC?

2008-10-13 Thread mtwomey
On Oct 13, 9:13 am, rakesh wagh [EMAIL PROTECTED] wrote: 3. Is there another way all together that I could approach this to get the data to the client faster? For this specific scenario use RequestBuilder on client and a traditional servlet on the server. I'm reading up on request

Re: Advice on implementing a BlueprintCSS-like layout ?

2008-10-13 Thread Sumit Chandel
Hi Julien, In case you haven't seen it before, you might be interested in checking out the gwt-dnd project, which essentially enables drag-n-drop for GWT applications. You can check out the project at the link below. http://code.google.com/p/gwt-dnd/ Hope that helps, -Sumit Chandel On Thu, Oct

Re: GWT + iText + Eclipse Problem

2008-10-13 Thread Dean S. Jones
iText is a SERVER SIDE library for creating PDF's... you are trying to use it on the client side. On Oct 13, 2:25 pm, prof3ta [EMAIL PROTECTED] wrote: Hello everyone, I'm developing a web application using the gwt and I need to import some external libraries in the project. In the specific,

how to change the RichTextArea default FontSize

2008-10-13 Thread ruds
Hello there, did anyone tried to set the font size of the richtextarea to a value larger than 7; i have been googling for 3 days and could not find any solution to change the font size other than the basic html font sizes. i have been following the code and found out that the execCommand which is

Re: GWT + iText + Eclipse Problem

2008-10-13 Thread Jeremiah Elliott
Did you edit the classpath in the App-compile script? or just the one in eclipse? On Mon, Oct 13, 2008 at 3:53 PM, Dean S. Jones [EMAIL PROTECTED] wrote: iText is a SERVER SIDE library for creating PDF's... you are trying to use it on the client side. On Oct 13, 2:25 pm, prof3ta [EMAIL

Re: Most efficient way to transfer larger amounts of data via RPC?

2008-10-13 Thread Dean S. Jones
A bit of advice from lessons on my last project: Reduce your in-memory footprint of data to only what you must have to display what is needed to the user at the time,... (except for cacheing frequently used data). Several hundred K of information is likely not useful to the client. i.e. showing

Re: Looking for a Java/Ajax/GWT Developer

2008-10-13 Thread Dean S. Jones
Sounds Interesting... ;-) On Oct 13, 1:27 pm, Paddy Lewis [EMAIL PROTECTED] wrote: New York firm hiring java/ajax/GWT developer.  Strong object oriented design, multi-threaded java application, swing/AWT and of course GWT! Minimum four years in the software development field with a financial

Re: Most efficient way to transfer larger amounts of data via RPC?

2008-10-13 Thread mtwomey
On Oct 13, 4:04 pm, Dean S. Jones [EMAIL PROTECTED] wrote: A bit of advice from lessons on my last project: Reduce your in-memory footprint of data to only what you must have to display what is needed to the user at the time,... (except for cacheing frequently used data). Several hundred K

Re: GWT + iText + Eclipse Problem

2008-10-13 Thread Dean S. Jones
This doesn't matter really, the classpath can be correct, the error is that the GWT compiler can't find the SOURCE for the iText library, which makes sense: it's not a Client Side Library. On Oct 13, 4:58 pm, Jeremiah Elliott [EMAIL PROTECTED] wrote: Did you edit the classpath in the

Re: TextBoxBase CSS bug?

2008-10-13 Thread Arthur Kalmenson
Actually, you're best off using setStylePrimaryName() and setStyleDependentName() because AFAIK there are some problems with setStyleName() and some browsers. See the API here:

Re: i18n, hosted mode with noserver : strange crash

2008-10-13 Thread Fernando Paz
Hello, You need to add separated lines fir each locale, something like this: http://code.google.com/docreader/#p=google-web-toolkit-doc-1-5s=google-web-toolkit-doc-1-5t=DevGuideSpecifyingLocale On Tue, Oct 7, 2008 at 11:26 AM, philippe [EMAIL PROTECTED]wrote: Hi all, I'm using i18n for the

Re: getting to servlet (non rpc) in hosted mode vs. Tomcat

2008-10-13 Thread Fernando Paz
Hello, You need to write for the both mode: RequestBuilder builder = new RequestBuilder(RequestBuilder. GET, URL .encode(../IDServlet)); try it!!! On Tue, Oct 7, 2008 at 6:05 AM, Michel [EMAIL PROTECTED] wrote: Hi, I need to call a servlet from

Re: Unable to find/load mapped servlet class

2008-10-13 Thread Joshua Partogi
Yes it helps :-) It's working now. I also got the basic idea of how GWT works now. Thanks! On Oct 13, 7:17 pm, Kamal Chandana Mettananda [EMAIL PROTECTED] wrote: Where have you placed the TestServiceImpl class inside your web application? You may read Compile Deploy section of the following

Your opinion sought: Jetty or Tomcat?

2008-10-13 Thread Bruce Johnson
Hi everyone, Hope you're enjoying 1.5. The GWT team has started putting together a 1.6 roadmap, which we'll publish as soon as we have it nailed down. Two of the areas we want to work on for 1.6 are some improvements to hosted mode startup time and a friendlier output directory structure

Re: run gwt project with eclipse

2008-10-13 Thread Dean S. Jones
I'm going to assume you used the -eclipse flag when you created the project... there should be a MyApplication.launch file in the project root. ( if not, regenerate the appication with -eclipse ) import the project highlight your project root select the green circle Run toolbar item, select

Re: Ant tasks ZipException

2008-10-13 Thread birwin
Well, I have created from scratch the simplest GWT application I could think of... I created the simplest build file I could think of (No Ivy dependency management, no code... Just a blank web page) and then attempted to build the project... I got exactly the same results as above. I decided to

Re: Servlet Problem

2008-10-13 Thread Dean S. Jones
You prepended GWT.getModuleBaseURL() to the URL, so GWT is looking for the Servlet mapped at /your.full.module.name.whatever.Module/MatrioscaCore , not / MatrioscaCore which is mapped at the web-app root. --~--~-~--~~~---~--~~ You received this message because you

Re: Servlet Problem

2008-10-13 Thread gregor
Hi Lukiep, You can try changing your url-mapping tag in web.xml to: url-pattern/com.foo.path.to.YourModuleName/MatrioscaCore/url- pattern i.e. the explicit result of String moduleURL = GWT.getModuleBaseURL() + MatrioscaCore; regards gregor On Oct 13, 6:40 pm, Lothar Kimmeringer [EMAIL

NetBeans / hosted mode without gwt4nb

2008-10-13 Thread nogridbag
I'd like to use NetBeans for GWT development without the GWT plugin. So I simply used applicationCreator and then I created a new NetBeans application from existing sources. It works fine if I use the MyProject-comile.cmd and MyProject-shell.cmd scripts that applicationCreator creates. However,

Re: Most efficient way to transfer larger amounts of data via RPC?

2008-10-13 Thread gregor
Hi Matt, As Dean says, RequestBuilder would return the string much faster. However I would be worried that trying to do the sort of queries you mentioned against raw text data would also be slow, or building some complex data structures from it client side against which to run them may be a)

Re: NetBeans / hosted mode without gwt4nb

2008-10-13 Thread Fernando Paz
Hello. Not only the src must to have in the path, you need to be sure thta the Module.gwt.xml has the appropiatte configuration, some like this: entry-point class=ec.com.mycompany.modulos.propuesta.detalle.client.Form/ luck! On Mon, Oct 13, 2008 at 6:28 PM, nogridbag [EMAIL PROTECTED] wrote:

Re: Most efficient way to transfer larger amounts of data via RPC?

2008-10-13 Thread Dean S. Jones
My general observation is that ANY non-trivial data processing in 2+ orders of magnitude faster on the Server than on the Client ( Especially with IE ) If all the data really is needed in the client, I would rather structure/parse it on the server and send something like JSON over the wire.

Re: NetBeans / hosted mode without gwt4nb

2008-10-13 Thread nogridbag
Hi, thanks. The module configuration file (and more specifically the app entry-point) was created by the applicationCreator. It works fine with the MyProject-shell.cmd and MyProject-compile.cmd scripts. It must be some sort of NetBeans classpath option ? On Oct 13, 7:43 pm, Fernando Paz

Re: Ant tasks ZipException

2008-10-13 Thread Isaac Truett
path refid=compile.cp / path refid=class.path / What's in these? Are they also in your stripped-down build? On Mon, Oct 13, 2008 at 6:39 PM, birwin [EMAIL PROTECTED] wrote: Well, I have created from scratch the simplest GWT application I could think of... I created the simplest build file

Re: Your opinion sought: Jetty or Tomcat?

2008-10-13 Thread Tim
jetty is awesome. In their latest drop (6.1.12.rc2 and rc3) there is a new feature in maven-jetty-plugin to reload jetty on keyboard events in console rather than automatically - it's indispensable when java GWT code lives in the same source tree as the server side java code (just in different

New GWT SoundManager - for playing MP3 songs

2008-10-13 Thread Rekkai
Hi, We have developed a GWT wrapper for SoundManager2. SoundManager2 is a javascript library for creating and playing embedded MP3 player. Please checkout the code from http://www.codelathe.com/gwtsm/ --~--~-~--~~~---~--~~ You received this message because you are

refreshing page after change meta

2008-10-13 Thread Gambogi
Hello everybody, Im begginer in GWT , so , i got so many difficulties in this first step. I just trying to do a website with, at first moment, two languages. I did everything which i got from the tutorials etc etc. Now, i already have something wich works , but not like i want. I change my xml

[gwt-contrib] Re: code review requested for 1.5 branch, FF3 getAbsoluteTop/Left

2008-10-13 Thread John Tamplin
On Mon, Oct 13, 2008 at 11:18 AM, Joel Webber [EMAIL PROTECTED] wrote: This is a pretty tricky expression -- my understanding of how it works is that (maybe_float_value | 0) coerces to an integer because the | operator requires its operands to be integral. This seems like a perfectly good

[gwt-contrib] Re: code review requested for 1.5 branch, FF3 getAbsoluteTop/Left

2008-10-13 Thread Joel Webber
This is a pretty tricky expression -- my understanding of how it works is that (maybe_float_value | 0) coerces to an integer because the | operator requires its operands to be integral. This seems like a perfectly good approach, but I would add a comment explaining how it works (because I've seen

[gwt-contrib] Re: code review requested for 1.5 branch, RPC quoting, issues 1137, 1906, and more

2008-10-13 Thread Joel Webber
Running RPCSuite, it looks like everything passes except for UnicodeEscapingTest.testClientToServer[Non]BMP(), which cause the exceptions described below, on the server. I'll keep looking over the patch; feel free to swing by if you want to look over the failure together on the Android emulator.

[gwt-contrib] RR: OOPHM for AIR applications

2008-10-13 Thread Thomas Broyer
Could someone with OOPHM experience review this design doc about adding hosted-mode support for AIR applications, based on OOPHM: http://code.google.com/p/gwt-in-the-air/wiki/DesignOOPHM Adobe AIR knowledge is obviously a plus, but I think isn't required to understand the document. Anyway,

[gwt-contrib] [google-web-toolkit commit] r3741 - in releases/1.6/dev/core/src/com/google/gwt: core/ext/linker core/ext/linker/impl dev/cfg...

2008-10-13 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Mon Oct 13 09:50:46 2008 New Revision: 3741 Removed: releases/1.6/dev/core/src/com/google/gwt/dev/cfg/DefaultPropertyProvider.java Modified: releases/1.6/dev/core/src/com/google/gwt/core/ext/linker/Artifact.java

[gwt-contrib] Re: code review requested for 1.5 branch, RPC quoting, issues 1137, 1906, and more

2008-10-13 Thread Lex Spoon
On Mon, Oct 13, 2008 at 11:40 AM, John Tamplin [EMAIL PROTECTED] wrote: Lex, do you know what we would need to do to get these exceptions seirialized properly to the client? I *think* what needs to happen is that the exception is wrapped in a declared exception. I haven't checked, but the

[gwt-contrib] [google-web-toolkit commit] r3742 - in releases/1.5: dev/core/src/com/google/gwt/dev/jjs/impl user/test/com/google/gwt/dev/jj...

2008-10-13 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Mon Oct 13 12:30:58 2008 New Revision: 3742 Modified: releases/1.5/dev/core/src/com/google/gwt/dev/jjs/impl/MethodInliner.java releases/1.5/user/test/com/google/gwt/dev/jjs/test/CompilerTest.java Log: Uses a more reliable check to prevent methods with

[gwt-contrib] Re: Issue 2950 in google-web-toolkit: Time.valueOf fails with 08 and 09 numbers

2008-10-13 Thread Amit Manjhi
Hi John and Scott, Attached is a patch to fix the issue. The previous code was failing because it was invoking Integer.decode(..) method to do the parsing. Integer.decode(..) first tries to infer the base and then attempts to decode the String in that base. 08 and 09 were decoded as octal and an

[gwt-contrib] Code Review: gwt-google-apis gears Add support for message types other than String()

2008-10-13 Thread Eric Ayers
Hi Miguel, I would like for you to review the attached patch. We discussed them earlier as a part of the WorkerPool demo. It adds support for message types other than string. M gears/test/com/google/gwt/gears/client/workerpool/WorkerPoolTest.java M

[gwt-contrib] Re: RR: OOPHM for AIR applications

2008-10-13 Thread Ray Cromwell
I don't have any OOPHM experience, but IIRC, linkers don't run in hosted mode (or do they now?), so the last part of your design doc may need revising. -Ray On Mon, Oct 13, 2008 at 8:56 AM, Thomas Broyer [EMAIL PROTECTED] wrote: Could someone with OOPHM experience review this design doc

[gwt-contrib] Re: Issue 2950 in google-web-toolkit: Time.valueOf fails with 08 and 09 numbers

2008-10-13 Thread Scott Blum
Could you add this patch to the issue and use a filename like Time_valueOf.patch. On Mon, Oct 13, 2008 at 3:35 PM, Amit Manjhi [EMAIL PROTECTED] wrote: Hi John and Scott, Attached is a patch to fix the issue. The previous code was failing because it was invoking Integer.decode(..) method to

[gwt-contrib] Re: Issue 2950 in google-web-toolkit: Time.valueOf fails with 08 and 09 numbers

2008-10-13 Thread Amit Manjhi
Done. I also added appropriate tests and have attached the updated patch. The patch has been reviewed by John Tamplin. Since the patch is simple, both he and I think this patch is safe to go in 1_5_3. Thoughts? Regards, Amit Index: user/test/com/google/gwt/emultest/java/sql/SqlTimeTest.java

[gwt-contrib] Re: RR: OOPHM for AIR applications

2008-10-13 Thread Thomas Broyer
On 13 oct, 21:50, Ray Cromwell [EMAIL PROTECTED] wrote: I don't have any OOPHM experience, but IIRC, linkers don't run in hosted mode (or do they now?), They don't. so the last part of your design doc may need revising. Actually, it might rather be my neural compiler producing bad

[gwt-contrib] Re: Issue 2950 in google-web-toolkit: Time.valueOf fails with 08 and 09 numbers

2008-10-13 Thread Scott Blum
On Mon, Oct 13, 2008 at 5:05 PM, Amit Manjhi [EMAIL PROTECTED] wrote: Done. I also added appropriate tests and have attached the updated patch. The patch has been reviewed by John Tamplin. Since the patch is simple, both he and I think this patch is safe to go in 1_5_3. Thoughts? No

[gwt-contrib] Re: RR: OOPHM for AIR applications

2008-10-13 Thread Scott Blum
By the way, we're talking about a redesign where linkers do run in hosted mode. The idea is an initial link over public files + a mocked up CompilationResult with no javascript that encodes the deferred binding props, followed by incremental relinks when generators produce resources. On Mon, Oct

[gwt-contrib] [google-web-toolkit commit] r3745 - in branches/oophm/plugins/xpcom: . prebuilt/extension/platform/Darwin_x86-gcc3 prebuilt/e...

2008-10-13 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Mon Oct 13 17:38:49 2008 New Revision: 3745 Added: branches/oophm/plugins/xpcom/prebuilt/extension/platform/Darwin_x86-gcc3/ branches/oophm/plugins/xpcom/prebuilt/extension/platform/Darwin_x86-gcc3/components/

[gwt-contrib] [google-web-toolkit commit] r3746 - branches/oophm/plugins/xpcom/prebuilt

2008-10-13 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Mon Oct 13 17:44:04 2008 New Revision: 3746 Added: branches/oophm/plugins/xpcom/prebuilt/oophm-xpcom.xpi (contents, props changed) Log: Add prebuilt XPI containing the following XPCOM plugins for Firefox 3: Windows x86 Linux x86 Linux x86_64

[gwt-contrib] [google-web-toolkit commit] r3747 - branches/oophm/plugins/xpcom/prebuilt

2008-10-13 Thread codesite-noreply
Author: [EMAIL PROTECTED] Date: Mon Oct 13 17:46:40 2008 New Revision: 3747 Modified: branches/oophm/plugins/xpcom/prebuilt/oophm-xpcom.xpi (props changed) Log: Set MIME type so XPI file can be installed. --~--~-~--~~~---~--~~

[gwt-contrib] FF3 winxp on OOPHM rev 3747 branch fails with No GWT plugin found

2008-10-13 Thread gslender
FF3 winxp on OOPHM rev 3747 branch fails with No GWT plugin found hosted.html trys to find plugin but fails with an alert No GWT plugin found The plugin (oophm.xpi) was correctly installed. The IE plugin was also registered and IE seems to work fine. Any workaround or solution? Cheers, Grant

[gwt-contrib] Re: [Code Review] Small Test Framework For JJS Optimizers

2008-10-13 Thread Scott Blum
On Mon, Oct 6, 2008 at 5:57 PM, Scott Blum [EMAIL PROTECTED] wrote: By the way, I've already got a big patch out that Bob is reviewing that is a huge refactor to JavaToJavaScriptCompiler, and we can continue to refactor further to support this use case in the best way possible. I can't

[gwt-contrib] Re: FF3 winxp on OOPHM rev 3747 branch fails with No GWT plugin found

2008-10-13 Thread John Tamplin
On Mon, Oct 13, 2008 at 9:51 PM, gslender [EMAIL PROTECTED] wrote: FF3 winxp on OOPHM rev 3747 branch fails with No GWT plugin found hosted.html trys to find plugin but fails with an alert No GWT plugin found Given the current plugin initialization, hosted.html can't tell a missing plugin

  1   2   >