Re: GWT-Gadget same-origin security restriction

2008-09-23 Thread joseanquiles
Thank you Eric. However, I am not using RPC, I am using RequestBuilder to invoke Web services. Is it possible to use RequestBuilder in a similar way? Thank you in advance. Jose Antonio --~--~-~--~~~---~--~~ You received this message because you are subscribed

Getting continued feedback on the state of a RPC call

2008-09-23 Thread Palietta
Hi all, I have a GWT application which uses a remote service that does some complex, and potentially long work. However, I don't want to hold the user unaware of the status of their request for too long. So I would like a way for the client app to receive frequent information on the service

JavaScript error only in Hosted Mode

2008-09-23 Thread psycotica0
Hello. I've run into something that I think is a limitation in the GWT hosted mode browser. In javascript includes, it seems that they don't have the Window object defined. I included a javascript file (By putting a script tag in the gwt.xml), let's say Test.js, and wrote the following into it:

GWT compiler for HPUX

2008-09-23 Thread Aryan
Does GWT compile exist for HPUX? I rquire GWT compile for HPUX for supporting runtime compilation when my GWT application is deployed in HPUX machine --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web

Moving values

2008-09-23 Thread baalu aanand
Hi I am new for using the GWT. Now i am working with Mail application. I am doing some alteration in that. I altered the Task tab at lefthand side. I have placed one textfield and button in that tab. When I give any values in the textfield and select the button means, that text box value

gwt call from ,java to php web service

2008-09-23 Thread cloclo
Hi everybody, I'd love to be able to call a PHP web service from gwt tool library. Ususally it's rather easy to call from java a PHP web webservice. ... import org.apache.axis.client.*; Service service = new Service(); Call call = (Call)

Re: GWT with AXIS

2008-09-23 Thread cloclo
Hello, I'm trying to do more or less the same stuff. The problem is how to make the GWT able to translate a simple call like this: -- import org.apache.axis.client.*; Service service = new Service(); Call call = (Call) service.createCall(); etc... - When I try to

Possible to split GWT application in seperate WAR files?

2008-09-23 Thread cschoett
Hello, i have a question related to packaging a larger business application. I am building a GWT application that contains two parts, a generic part and a customer specific part that will be changed for every customer. Both parts depend on each other and shall be integrated into one big

Possible to split GWT application in seperate WAR files?

2008-09-23 Thread cschoett
Hello, i have a question related to packaging a larger business application. I am building a GWT application that contains two parts, a generic part and a customer specific part that will be changed for every customer. Both parts depend on each other and shall be integrated into one big

Problem with CSS and caching

2008-09-23 Thread p4r1tyb1t
We are currently using GWT for a medium size project. Currently we are facing couple of issues one issue has to deal with CSS cache, when our Interface developer team try to debug a certain CSS issue and they modify the CSS on deployed war, they don't see the result of changes right away rather

com.google.gwt.widgetideas..graphics.client.GWTCanvas problems

2008-09-23 Thread [EMAIL PROTECTED]
I'm new to gwt. I am drawing an arc with this canvas. When i render my app using the google development shell, everything shows properly. Only when i view the html in a browser(ie, firefox, and chrome) the arc does not show up. The rectangles and lines that I have drawn using the canvas

problem_with_download_of_GWT

2008-09-23 Thread Nathan Jeffery
Hi there, i am having difficulty in downloading the app. i have tried quite a few times and have even tried using different browsers, but the download always seems to stop and about 4Mb... any suggestions? thanks. nathan --~--~-~--~~~---~--~~ You received

Opening and Loading a GWT Module from another module

2008-09-23 Thread Halabe
Hi All, Does anyone know how can I open and reload a GWT module from another module in a new Window?? Thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

call a PHP web service from gwt toollibrary

2008-09-23 Thread cloclo
Hi everybody, I'd love to be able to call a PHP web service from gwt toollibrary. Ususally it's rather easy to call from java a PHP web webservice. ...import org.apache.axis.client.*; Service service = new Service(); Call call = (Call) service.createCall(); ... etc But the gwt compiler does't

Re: GWT spring integration

2008-09-23 Thread Martyn
A not very sophisticated solution, but doesn't need much explanation and gets you debugging how you want is a simple proxy servlet for each Spring managed bean, like so: public class PortfolioServiceProxyServlet extends RemoteServiceServlet implements RemotePortfolioService { // Reference

Re: Getting continued feedback on the state of a RPC call

2008-09-23 Thread Amit Dhingra
Hi, Event I am a newbie in java and GWt, though how about partitioning your long job, as in... e.g. For a http call which needs to access names say 100,000 in number. I might actually partition this call in say 26 calls with each call querying names starting with each of the 26 alphabets... and

Re: Getting continued feedback on the state of a RPC call

2008-09-23 Thread Lothar Kimmeringer
Hello, Palietta schrieb: So I created a client-side Timer which, every second, polls another remote service that simply returns this state variable. This timer is started right before the main service is called, and is halted after the service returns. Being these calls asynchronous,

Re: Sharing the localization code between client and server

2008-09-23 Thread Martin Trummer
Hi, I am also interested in this. Our approach is to write the texts into the properties files and then use the GWT-i18n tool to generate the interface-files. Of course this is not the best thing to do, because all the arguments will be strings... Maybe another approach would be to extend the

Re: call a PHP web service from gwt toollibrary

2008-09-23 Thread walden
Claude, Wouldn't that web service be returning you a huge steaming pile of SOAP XML? I think that would be a nightmare to try to deal with in a GWT client. Why don't you build a server side proxy for talking web services, and build a normal GWT interface on the other side to your GWT client

Re: Getting continued feedback on the state of a RPC call

2008-09-23 Thread Lothar Kimmeringer
Palietta schrieb: obviously, in the code sample, the AsyncCallback object returned by doLengthComputation() is not an AsyncCallbackString ... and I must have forgotten a closing bracket in the poll() function... still, any ideas? Why are you calling timer.run()? The comment doesn't fit to

Re: Possible to split GWT application in seperate WAR files?

2008-09-23 Thread walden
Hi, I think the answer is 'no', although there may be work in the pipelines to address late binding among GWT modules (I don't track that). However, from a configuration management POV, what you are proposing makes no sense because you will need to do integration testing of the new

Re: Opening and Loading a GWT Module from another module

2008-09-23 Thread walden
GWT is not Java; it doesn't have dynamic class loading. Maybe someday. In the interim, is there a way to describe your goal without making technology assumptions like this? Maybe there is a way to get the behavior you want using GWT in its current form, but you'll need to say more. Also, the

url parameters

2008-09-23 Thread Dirtybit
Hi, I am building a gwt web app in which users can ask for a navigation route between two points. The coordinates of the points are stored in a database so the user only has to provide two names. The names of the points are also available from a portal that we developed and contains information

Re: Opening and Loading a GWT Module from another module

2008-09-23 Thread Halabe
Hi Walden, My purpose is to view an image that is uploaded in the same session without having to refresh the whole page. I was searching for a way to view the image but I could not view any image that is uploaded in the session that I am trying to view it in. I am getting the error file not

Re: url parameters

2008-09-23 Thread Greg
The GWT widget library (http://gwt-widget.sourceforge.net) provides this functionality. You simply say: String departure = WindowUtils.getLocation().getParameter(departure); If you don't want to use the GWTWL, then you can parse the URL yourself. First create a native method to get access to

Re: url parameters

2008-09-23 Thread Ian Bambury
Or you could use String departure = Window.Location.getParameter(departure); Ian http://examples.roughian.com 2008/9/23 Greg [EMAIL PROTECTED] The GWT widget library (http://gwt-widget.sourceforge.net) provides this functionality. You simply say: String departure =

problem with multiple fileupload in GWT 1.5

2008-09-23 Thread Erik van Ingen
In GWT 1.5 I have an implementation like: http://google-web-toolkit.googlecode.com/svn/javadoc/1.5/com/google/gwt/user/client/ui/FileUpload.html The difference is that I have 2 FileUpload entries, instead of 1: final FileUpload fileUploadDataset = new FileUpload();

Re: Problem with CSS and caching

2008-09-23 Thread p4r1tyb1t
Thanks every body, I reckon that was the case but was not sure since i am new to GWT and this is our first application. GWT does not lend it self very well to separation of form from function on client side and when it comes to division of labor, java is not the first pre-requisite for Interface

Re: Problem with CSS and caching

2008-09-23 Thread p4r1tyb1t
Thanks every body, I reckon that was the case but was not sure since i am new to GWT and this is our first application. GWT does not lend it self very well to separation of form from function on client side and when it comes to division of labor, java is not the first pre-requisite for Interface

logLevel should be followed by one of

2008-09-23 Thread seven.reeds
Hi, Something screwy is going on and I'm not seeing the problem. I have been away from GWT for a couple months on other projects. In the meantime my linux box was upgraded to a different distribution than I have used before. Now, I try to run the GWT compile script and get: -logLevel should

Re: Opening and Loading a GWT Module from another module

2008-09-23 Thread Halabe
The image upload is successful since I can see the images in the server folder and when I refresh the page I can also see it on the client. IThe error I am getting is: Resource not found: images/imagePath/Image1.jpg could a file be missing from the public path or a servlet tag misconfigured in

Re: Sharing the localization code between client and server

2008-09-23 Thread Dobes
It seems like it should be possible to implement a kind of server-side GWT.create() that generates an subclass using cglib or one of the other bytecode generators. Maybe it would only work for the Constants and Messages interfaces, and a minor selection of others, but it would be quite useful.

Re: GWT spring integration

2008-09-23 Thread olivier nouguier
hi all, http://code.google.com/p/net-orcades-spring/ Host my GWT Spring integration servlet with a sample project. Working under Spring, WTP, Cypal, Maven. On Mon, Sep 22, 2008 at 9:43 AM, olivier nouguier [EMAIL PROTECTED] wrote: Hi, I'm using a simple dispatch servlet to dispatch the

Re: how to clear cache on windows hosted mode

2008-09-23 Thread mooreds
Hi Ian, Thanks for the response; I am on Windows. To be more specific, I'm pulling data in from another server via JSONP in the manner described in this article: http://code.google.com/support/bin/answer.py?answer=65632topic=11368 I've found that the script tag content tends to be cached by

GWT TestCase Erreur

2008-09-23 Thread [EMAIL PROTECTED]
Hello, i have create a GwtTestCase class. package com.zoltar.rol.gwt.client.ui; import com.google.gwt.junit.client.GWTTestCase; public class ROLEditorTest extends GWTTestCase { @Override public String getModuleName() { // TODO Auto-generated method stub

Re: gwittir with gwt1.5

2008-09-23 Thread gwtdude
I'm having the same problem. Has anyone found a fix yet? --~--~-~--~~~---~--~~ 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

Regarding MenuBar

2008-09-23 Thread nishant (bhai)
Can i select menu item by using hot key(like combination of alt+f etc.).If yes so please guide me .I have another problem with setAccesskey(char ) method of HasFocus Interface .It is working fine with Button ,but not working with PushButton and ToggleButton.while it implemented in all

Re: gwittir with gwt1.5

2008-09-23 Thread gwtdude
I just ran into the same issue. Has anyone found a fix yet? --~--~-~--~~~---~--~~ 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

Re: Getting continued feedback on the state of a RPC call

2008-09-23 Thread Deba
May be you would like to try polling a servlet using HttpRequest class for your timer calls. Lets know if you succeed. cheers, On Sep 23, 4:09 pm, Amit Dhingra [EMAIL PROTECTED] wrote: Hi, Event I am a newbie in java and GWt, though how about partitioning your long job, as in... e.g.  For

Re: Client-side GChart 2.2: Sparklines and better/faster solidly filled line charts.

2008-09-23 Thread amadeus
Hi, I'm using your software and I would add a simple zoom tool with mouse selection I need to know the exact position of axis origin (left bottom) to transform x,y mouse in chart's coordinates here my code after sinkEvents(Event.ONMOUSEMOVE|Event.ONMOUSEDOWN| Event.ONMOUSEUP); I tried to

Re: url parameters

2008-09-23 Thread sutarsa giri
Hi Dirtybit, i thought you could access Window.Location to access required information from url regards, Sutarsa On Tue, Sep 23, 2008 at 8:36 PM, Dirtybit [EMAIL PROTECTED] wrote: Hi, I am building a gwt web app in which users can ask for a navigation route between two points. The

Memory Leak in IE 7 using GWT

2008-09-23 Thread Chuck
We have an app that uses GWT with large HTML content (60-70 K) that produces large memory leaks (2-3 M) in IE 7. It does not exhibit the same behavior in Firefox (memory goes up with multiple document loads, but goes back down after a few seconds of inactivity). We have looked at the app with

Re: Sharing the localization code between client and server

2008-09-23 Thread Lothar Kimmeringer
Dobes schrieb: It seems like it should be possible to implement a kind of server-side GWT.create() that generates an subclass using cglib or one of the other bytecode generators. Actually I think you can do that with the functionality of the JVM itself using Proxies: -- public interface

need help to refresh frame using javascript function

2008-09-23 Thread AyeAyeAung
Hi, I have 3 frames added on one panel, again that panel is added on Viewport(GWT-Ext). I want to refresh frame using JSNI or javascript function. Normally, we use top.headerFrame.location.href=top.headerFrame.location; for frame (ie. named headerFrame in this code) that is directly added to html

Re: GWT Google Maps InfoWindow Resizing

2008-09-23 Thread Pavel Byles
bump again? I would really appreciate some help here. On Wed, Sep 17, 2008 at 2:51 PM, Pavel Byles [EMAIL PROTECTED] wrote: bump. anyone else? On Tue, Sep 16, 2008 at 10:09 PM, Pavel Byles [EMAIL PROTECTED]wrote: Yes... reset is what I was referring to On Tue, Sep 16, 2008 at 4:43 PM,

[gwt-contrib] Re: RR: 1.6 Event handler proposal

2008-09-23 Thread Joel Webber
I completely agree that it is important to find a better solution to the irritating cross-browser differences in keyboard event handling, and I'd really like to discuss that on a separate thread (starting such a thread right now would be perfectly fine by me -- I just don't want to confuse the

[gwt-contrib] Re: Safari Empty History Tokens

2008-09-23 Thread Joel Webber
Wow, that's about the freakiest thing I've seen in a while. The fact that the following code fails is really disturbing: private static boolean isBorked() { Element e = DOM.createDiv(); e.setInnerHTML(spoo); return e.getInnerHTML().length() == 0; } I also tried taking the