Should i use incubator FastTree or the Tree from the GWT dist.?

2010-08-11 Thread Subhrajyoti Moitra
Hello, I am trying to use a tree widget to render some items. Should i use the FastTree widget in incubator project or the main Tree widget from the GWT dist. ? Please advice, if you know of other better tree widget implementation. Thanks, Subhro. -- You received this message because you are su

Re: GWT 2.0, Maven, Google eclipse and TOMCAT, why didn't google build maven support?

2010-08-11 Thread Andrew Hughes
Déjà vu - this tread is nothing new. If people would like to raise the GWT steering committee's awareness of maven related issues, try using the tool setup for just this purpose :) http://code.google.com/p/google-web-toolkit/issues/list http://code.google.com/p/google-web-toolkit/issues/list?c

Re: Who knows how to execute native code in server-side

2010-08-11 Thread Yingwei HU
uncheck the app engine option when creating the project...so simple 2010/8/6, Yingwei HU : > Hello, all. > Who knows how to execute native code in server-side? > There is no Runtime class in gwt. > I either can not use system.load(lib) to recall the outside dll due to > security control. > What c

Re: Does Timer class only last one session + images as an attachment in an email

2010-08-11 Thread GKotta
I have one more question: I am getting a file access denied when I try to send and image in the datastore as an attachment. I there any way around this? Code (result.get(i).getAssociatedImage is the url where it is stored on the database. In this case, it is http:\127.0.0.1:\image? title=t609i

Re: GWT security

2010-08-11 Thread Ladislav Gazo
Personally I would like to know proper name for it, if you would be so kind and give us some proposals we will consider it as your contribution to the process of making acris-(currently named)-security better :) We initially thought that 'security' also covers transferring server-side security rest

Re: Insertion cursor disappears on IE RichTextArea before I can grab it

2010-08-11 Thread Karthik
Hi Kozuru, I have the simiar problem and I'm a newbie, could you please gimme the NativePreviewHandler fix for this. Thank You. -Karthik -- 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-to

Re: GWT security

2010-08-11 Thread Peter Simun
Hi Greg, thanks for the answer. Who casers? Users cares! Let's imagine that you will modify all the data you are "able" to modify (as an user of the application) and the the server will response you, that you are not allowed to modify them! Are you satisfied with that solution? Is that a common a

Re: Reading a local file

2010-08-11 Thread Thad
If your document is text, you can do what I did--return the text in the addSubmitCompleteHandler: form.addSubmitCompleteHandler(new FormPanel.SubmitCompleteHandler() { public void onSubmitComplete(FormPanel.SubmitCompleteEvent event) { // This event

Re: GWT security

2010-08-11 Thread Greg Dougherty
Hi Peter. Not to be rude, but who cares? Who cares if the user can see a screen that says "Client Data", when the user can't actually download any of that client data? IOW, what's the point? If your sever is properly secured, then users who aren't allowed to see the client data won't be sent it

Reading a local file

2010-08-11 Thread Greg Dougherty
My users want my app to be able to read data from a local file. So far as I can tell, the only way to do this is to have a FileUpload Widget in a form, send the contents of the file to the server, and then get the contents from the server (i.e. send the form with a unique ID attached, then make an

Re: GWT security

2010-08-11 Thread Ladislav Gazo
This seems to me just a flame about what the word 'security' exactly is :) acris-security is about bridging client and server, using server's authentication and authorization methods to add another layer for potencial "attacker" to skip (for common users what is not visible or editable is also not

Re: Switching a class for precompile

2010-08-11 Thread cokol
hi, you can use the element in the gwt module descriptor, please refer to section "Overriding one package implementation with another" in this faq http://code.google.com/intl/de-DE/webtoolkit/doc/1.6/DevGuideOrganizingProjects.html there are also other ways, like you could also provide another cl

Re: why we probably won't use GWT for a large UI project

2010-08-11 Thread marius.andreiana
Hey, On Aug 11, 11:00 pm, lineman78 wrote: > As far as SmartGWT goes, I will warn you that I think the problems and > performance hits you will run into are not worth the UI that you > gain.   Thanks for the heads up. A hello world with data bound widgets seemed straightforward. > Plus you must

Re: Caching issue in host mode?

2010-08-11 Thread cokol
hi, u dont the server locally ,dont you I mean the param in the URL gwt.codesvr should point to 127.0.0.1 ? ;) otherwise I can only imagine that either the file is not in place (hit F5 in eclipse on the package to refresh) or the server does not use the default war folder as context root, this issu

Switching a class for precompile

2010-08-11 Thread Evan Ruff
Hello all, I was wondering if anyone can point me in the right direction for what I'm trying to do. Currently, I've got a huge legacy model used in a number of systems currently in production. I'd like to include this model in my GWT project, but three (out of, maybe 200 classes) use refection. Th

Re: newbie - gweventservice vs eventbus

2010-08-11 Thread cokol
actually, EventBus is meant by GWT to be enganged with business events across components reside on the client. What u're looking for is rather a messaging service, so better focus on GWTEventService - its better suited. In fact, the real implementation can indeed use HandlerManager to propagate eve

Re: Does Timer class only last one session + images as an attachment in an email

2010-08-11 Thread GKotta
Thanks everyone! On Aug 9, 10:44 pm, Prakash wrote: > @GKotta. > If your use case is to delete images (irrespective of user) after two > months, then cron Or timer job on server (Check Quartz) is the good > way to go. Remember in this approach you wont have access to user > session. > > If you ne

Images only show sometimes

2010-08-11 Thread GKotta
Hi, I am using the gwt plugin for eclipse for the gae environment and when I run my project on localhost, the images in my application appear sometimes, but not all the time. Refreshing the page normally solves this problem. Why is this? I'm fine with this while developing, but it will be really a

Re: why we probably won't use GWT for a large UI project

2010-08-11 Thread lineman78
I completely disagree with Stefan, GWT-RPC is no more secure than REST. For both to be secure by the broad definition of the term you simply need to make them run over SSL. The only perceived security you get via GWT-RPC is by obscurity, which is not security at all. As far as SmartGWT goes, I w

Re: More woes with IE + Client(Image) Bundles

2010-08-11 Thread lineman78
This is actually a problem in the way they have implemented ImageResource in IE. It is not scalable as the Gecko and Webkit implementations are. In order to make it scalable you will have to add the repeat both annotation on it, which will keep the generator from bundling it with other images in

Re: Service Location on Server Side

2010-08-11 Thread lineman78
This usually isn't the way something like this is done and there is one major issue that can come up when doing this. App servers will have a maximum simultaneous connections and when you do this, one request will actually take up 2 of these connections and if you start chaining more and more toge

Service Location on Server Side

2010-08-11 Thread Bill
Hello, This feels like a silly question. Please forgive if so. For my simple proof-of-concept application, I have two RPC services, both of which may be accessible by the client. However, for one of my use cases, I need for one of the services to access the other service. Is there any mechanis

How to change a default property from a i18n .properties file

2010-08-11 Thread oyepez003
Hello! I am using GWT 2.0.3, but the file NumberConstant_es_VE.properties has an error The error: defCurrencyCode = VEB and should be: defCurrencyCode = VEF Somebody know how to change only this property from my project? Regards -- You received this message because you are subscribed to t

Re: RequestCallback.onResponseReceived() always returning status code 0

2010-08-11 Thread Philippe Laflamme
Had the same issue. In my case, it was due to making cross-site requests. My server was at localhost:8080 and I was running in DevMode at localhost:. Making a request from : to :8080 is considered a cross-site request (which is not per the same-origin policy). The behaviour in Firefox was

Property user.agent got stuck

2010-08-11 Thread Richova
Hi. I am working with Eclipse Galileo and GWT 2.0.3. Once, to improve compilation time, I put these lines into the Project.gwt.xml file: Days after that, I removed the lines and the project stop working, executing it in Eclipse's host mode. >From Eclipse's "Development mode" tab, I got this

RichTextArea fixed Font Size enumeration, can we set font sizes in pixels?

2010-08-11 Thread Karthikeyan Radhakrishna
Hi, I am building a product configurator using GWT, in which I have implemented RichtextArea for text editing. As RichtextArea has a fixed set of enumeration for font size(small, large, xxlarge...), this doesn't suit my requirement. Is there a way to pass in pixel font size to the RichTextArea?

Caching issue in host mode?

2010-08-11 Thread markM
I successfully integrated the GWT Server Library into my GWT 2.0 app and had a working example in hosted mode. Due to a suggestion in the server library documentation I then added the following to my web.xml. NoCachingFilter org.gwtwidgets.server.filters.

Re: Making GWT look good...

2010-08-11 Thread Marcelo Magno
Worth to mention their debug mode where you can find design problems. Try to click on the "analyse layouts" button: http://demo.vaadin.com/sampler/?debug=true so +1 for Vaadin Marcelo Magno On Wed, Aug 11, 2010 at 1:17 PM, Steve Wart wrote: > Vaadin looks good, and it makes sense to keep th

newbie - gweventservice vs eventbus

2010-08-11 Thread Rajesh
Hi, This is a newbie question. i am evaluating GWT to be used where i have a need for the server to push events to 1 of the client. The solution will be hosted on Tomcat App server and we are looking for concurrent 5000 users using this i came across a project called 'GWTEventService' which says

Re: More woes with IE + Client(Image) Bundles

2010-08-11 Thread Ted
I have had success with IE and using the AbstractImagePrototype that is now deprecated. It is somewhat distasteful to use deprecated API this way, but I figure IE itself is deprecated and I just hope they keep that in there until IE is but a painful memory. On Aug 11, 8:00 am, Sean wrote: > I ha

Re: GWT 2.0, Maven, Google eclipse and TOMCAT, why didn't google build maven support?

2010-08-11 Thread dane.molotok
The documentation is frustrating, so let's all document some stuff here so that other googlers will find help. Hilco, can you link to your pom or post some relevant snippets? My current configuration is broken but I feel like I am very close with having GPE, maven, and the maven-war-plugin happy w

Re: HTML5 and canvas

2010-08-11 Thread Steve Wart
Jamie have you looked at the lively kernel? http://www.lively-kernel.org/ It would be amazing if some of that work could find its way into GWT... On Wed, Aug 11, 2010 at 10:59 AM, Jamie wrote: > I've been doing some more work with HTML5 and canvas. > Writing out canvas scripts by hand is a pain,

Re: Is there a way to write html and then wrap widgets

2010-08-11 Thread bradr
Are you able to create a custom Widget using UIBinder? When you use an UIBinder with the HTMLPanel you can mix HTML and GWT components: Hello text field Each UIBinder Xml file is bound to a Java class. In your Java class you can reference the text box like this: @UiField TextBox myTextFiel

Re: Making GWT look good...

2010-08-11 Thread bradr
Style is so subjective I love GWT as-is, because it is plain, and CSS makes customization a breeze Has the GWT team thought about adding a "theme" section to there website, similar to Firefox's addon page? A place where developers could showcase custom themes. Other developers could down

HTML5 and canvas

2010-08-11 Thread Jamie
I've been doing some more work with HTML5 and canvas. Writing out canvas scripts by hand is a pain, especially when you get into curves. So, have a look here if you're interested in canvas. For now, it's just plain JavaScript. However, javascript can be integrated into GWT, or you could transform

Re: GWT and Spring - More Generation Options

2010-08-11 Thread Jack
MyEclipse For Spring (ME4S) 8.6 is now generally available with support for GWT front end generation as well as Spring back end generation. We also posted an article on DZone here: http://java.dzone.com/articles/generating-enterprise-class You can download the software and get more information he

Re: compile report

2010-08-11 Thread Katharina Probst
It's possible that it's not stuck, but actually building a compile report for all your 42 permutations (you can look into your extra directory and see if it's happily outputting stuff there). That could take a while, as it's going through all kinds of compilation information and building up a lot

Re: Making GWT look good...

2010-08-11 Thread Jamie
One thing that I have been doing lately is to *not* use the tab panel. It's boring. Instead, I create my own tab bar, which I have full css control of, and then a separate stack of widgets. This lets me turn boring looking tabs into something really nice, much like the tabs you find here: http:/

Re: GWT VECTOR GRAPHICS

2010-08-11 Thread John Ivens
Nice example... have you done anything with dragging rectangles around, and having other rectangles scooch out of their way? I would like to investigate something like this for scheduling. On Wed, Aug 4, 2010 at 5:22 AM, pschonefeld wrote: > I've played around with svgweb and GWT ... > >new

Re: why we probably won't use GWT for a large UI project

2010-08-11 Thread marius.andreiana
>From this point of view it makes sense. Will have a look at ExtGWT & Vaadin. On Aug 11, 12:14 pm, cokol wrote: > hi, > > goods thoughts you had, but dont treat GWT as a framework, Google > doesnt do it either :-) Its "just" a toolkit or better yet, a JS > compiler with some tooling around. And

Re: why we probably won't use GWT for a large UI project

2010-08-11 Thread marius.andreiana
Hi Stefan , I'm not sure I understand your point. Say we have api.site.com, with the back-end written in a non-Java tech, which offers REST APIs over SSL such as POST login Body: data username, password Response: auth token GET tweets header: auth token Body: none Response: tweets api.site.com

Re: Making GWT look good...

2010-08-11 Thread Steve Wart
Vaadin looks good, and it makes sense to keep the client-side load light, especially with touch devices becoming prevalent. But it doesn't seem great (so far) for touch UI work, and I think the "everything in Java" mantra is sub-optimal. While Vaadin has hooks for CSS and hand-crafted JavaScript,

Re: compile report

2010-08-11 Thread cokol
please post your gwt.xml module descriptor On 11 Aug., 18:03, ben fenster wrote: > ? > > On 11 אוגוסט, 15:21, ben fenster wrote: > > > > > can anyone tell me why when i compile without compile report flag the > > compilation finishes ok and when i use the flag the compilation gets > > st

Re: Dev plugin for firefox 3.7

2010-08-11 Thread a...@mechnicality.com
Thanks Chris and John I'll hold off switching platforms for a few days, I have other things to do which don't require the webgl stuff. I greatly appreciate all the work done on this and your responsiveness. Regards Alan On 08/11/2010 09:06 AM, John Tamplin wrote: On Wed, Aug 11, 2010 at 1

Re: Dev plugin for firefox 3.7

2010-08-11 Thread John Tamplin
On Wed, Aug 11, 2010 at 10:46 AM, Chris Conroy wrote: > The short answer is that after preliminary support went in, the supporting > libraries changed upstream. Also, when the prelim support went in Windows > dev libraries weren't even available. I think John has a change in the works > to get th

Re: compile report

2010-08-11 Thread ben fenster
? On 11 אוגוסט, 15:21, ben fenster wrote: > can anyone tell me why when i compile without compile report flag the > compilation finishes ok and when i use the flag the compilation gets > stuck at the end after all the permutation is finished here is the > report: >    Compiling 42 permuta

Re: Is KeyPress discouraged ?

2010-08-11 Thread Christian Goudreau
Yeah I saw the issue, should have read that before asking my question here. I wanted to avoid changing anything, well I'll do it in a more proper way then :D Cheers and thanks, On Wed, Aug 11, 2010 at 11:47 AM, cokol wrote: > keypressed is actually an event for writeable characters, like 'a' o

Re: GWT and Map dynamic loading

2010-08-11 Thread Eric Ayers
The gwt-maps API allows you to defer loading of the Maps API. The Maps API will not actually be download until you call Maps.loadMapsApi() Regardless, what I think is happening is that your code is failing in a static initializer or before the onModuleLoad() returns. One way to debug this is to

Re: Is KeyPress discouraged ?

2010-08-11 Thread cokol
keypressed is actually an event for writeable characters, like 'a' or 'b' so if you push CTRL button, the keypress is not fired in browser, so google just made is convenient On 11 Aug., 17:22, Christian Goudreau wrote: > I had made a masked text box and since rolling up to GWT 2.1 MS2 backspace >

Re: Dev plugin for firefox 3.7

2010-08-11 Thread Chris Conroy
The short answer is that after preliminary support went in, the supporting libraries changed upstream. Also, when the prelim support went in Windows dev libraries weren't even available. I think John has a change in the works to get this updated but is blocked on something. I suggest for the time

Re: Dev plugin for firefox 3.7

2010-08-11 Thread a...@mechnicality.com
Hi Chris, I've found that FF 4 beta on Linux x86_64 (Ubuntu 10.04) doesn't seem to work with the BROWSER=ff40 version of the plugin. I've updated to 8516 and tried to repeat the steps in your last email but I can't seem to get the make to work. It worked fine with 3.7 but I urgently need to mo

Is KeyPress discouraged ?

2010-08-11 Thread Christian Goudreau
I had made a masked text box and since rolling up to GWT 2.1 MS2 backspace return 0 or nothing, enter too. I'll go with KeyDown instead, but I was wondering why that have been changed ? -- Christian Goudreau www.arcbees.com -- You received this message because you are subscribed to the Google

Re: GWT and Map dynamic loading

2010-08-11 Thread Vincent COROLLEUR
Hello, I'm trying this in hosted mode (development mode). I can see this error in the Eclipse console. If i use Goodle map API, i will not be able to load the other king of map i need to use. I tried many way to load these javascript files dynamically with an URL as argument but it's always the s

Re: Is there a way to write html and then wrap widgets

2010-08-11 Thread cokol
write a Composite with static or dynamic built elements inside, they just use it as it was a widget On 11 Aug., 03:07, "A/C A/C" wrote: > Is there a way to write some html directly. Add this html to an > existing gwt widget as a child and then wrap the html elements so they > become gwt objects?

Re: Instantations gwt-builder

2010-08-11 Thread cokol
as soon as google finalises the transition :) On 11 Aug., 14:54, markomina wrote: > Instantations had gwt-builder which I evaluated some years ago. > When evaluation/commercial version will be available? -- You received this message because you are subscribed to the Google Groups "Google Web T

Re: Hosting Entire Website on AppEngine? Integrating GWT into your website?

2010-08-11 Thread Joe Hudson
Sure, no problem Scott. If you are looking at the source, I am using GWT Pages (http:// code.google.com/p/gwtpages/). It makes life easier when dealing with application messaging, history token management and page navigation. One of the most important things to get working right at first IMHO is

Re: Making GWT look good...

2010-08-11 Thread Kevin Qiu
+1 for Vaadin. Their widgets are very polished and professional. GXT and SmartGWT are fine but they're too desktop-looky, not Web2.0 looky... On Mon, Aug 9, 2010 at 4:03 PM, marius.andreiana wrote: > Hi Chi, > > On Aug 9, 10:23 pm, Chi H wrote: > > * Pagination is the standard solution to th

Re: GWT security

2010-08-11 Thread Peter Simun
Hi Stefan, of course, client side code could never be secured! AcrIS security fully depends also on securing the RPC services (on the server side, client side security is an complementary security - some kind of nice to have security) The goal is: if the user does not have rights to see some parts

Re: Static CSS rules reference in UiBinder xml

2010-08-11 Thread Thomas Broyer
On 5 août, 20:30, Thamizharasu S wrote: > Hi, > > I have started a new project on GWT. I have some basic question on > CSS. I have a css file which has been referred directly in the HTML > file (Main html file for this project) > > Now I am trying to have ui binder xml for each view. I want to r

compile report

2010-08-11 Thread ben fenster
can anyone tell me why when i compile without compile report flag the compilation finishes ok and when i use the flag the compilation gets stuck at the end after all the permutation is finished here is the report: Compiling 42 permutations Compiling permutation 0... Compiling permuta

Re: css bullets with sprites ?

2010-08-11 Thread Thomas Broyer
On 4 août, 16:57, Ed wrote: > Anybody any idea how to use gwt sprites with bullets  in css? >  Normally you would use gwt sprites in css like this: > > @sprite ul.bulletSimple li { >   gwt-image: "bulletSimple"; >   } > > But this will cause that GWT adds the width and height according to > the i

Re: GWT security

2010-08-11 Thread Stefan Bachert
Hi Peter, I had just a glance at acris. Acris is talking about a client side part. No mechanism which depends on client side code could be secure! So I would suspect acris to be a misconsception. At the moment I do not spend time to exactly find out what is wrong with acris. Stefan Bachert htt

DateBox locals messed up with GWT 2.1 MS2

2010-08-11 Thread Christian Goudreau
I have a small issue since updating to GWT 2.1 MS2, I have to write my dates MM/JJ/ while I had and want to write them in the format JJ/MM/ in earlier versions. I tried to force the local, didn't change anything. I was just wondering if there's anything that changed that I didn't see. Tha

Re: History and/or Place

2010-08-11 Thread Thomas Broyer
On 8 août, 23:44, jaybose wrote: > Some background... > > This link discusses using the History concept in GWT to manage history > and navigation > -http://code.google.com/webtoolkit/articles/mvp-architecture.html#history > > This link gives more detail on the History concept > -http://code.go

Re: Upgrade from 1.5.3 to 2.x

2010-08-11 Thread Bhaskar
we have upgraded GWT 1.7 to GWT 2.0.3... just we added new GWT in Google web tool kit in Eclipse IDE..( in preferences). On Wed, Aug 11, 2010 at 7:03 PM, Fernando wrote: > I did the migration from 1.6.x to 2.0.x and it was pretty much > straightforward, just a couple deprecated elements (listen

Re: GWT security

2010-08-11 Thread Peter Simun
Luis, why do you think that there is no security there? Please, read the article again and carefully, or go on the wiki pages: http://code.google.com/p/acris/wiki/Security Peter On 11. Aug, 14:04 h., Luis Daniel Mesa Velasquez wrote: > I don't see anything about the encryption used in the RPC c

Re: GWT security

2010-08-11 Thread Ladislav Gazo
I don't think that security is just about encrypting RPC calls. And as cokol said if encrypted RPC stream is the only concern it should go through HTTPs. The purpose of acris-security is to integrate server side security with GWT client, propagating authentication and authorization "things" (like a

Re: Upgrade from 1.5.3 to 2.x

2010-08-11 Thread Fernando
I did the migration from 1.6.x to 2.0.x and it was pretty much straightforward, just a couple deprecated elements (listeners -> handlers), but before that, from 1.5.x to 1.6.x, it seems that they ran into some trouble... On 11 ago, 09:37, cupakob wrote: > HI *, > > we have an application, which i

Re: Excessive number of property descriptors

2010-08-11 Thread Fernando
split it into multiple files On 11 ago, 02:39, "G. Vaaler" wrote: > I got the following just now trying to GWT-compile for testing: > > gwtc: >       [java] Compiling module com.dataloy.webtest2.TestApp >       [java]    Scanning for additional dependencies: jar:file:*** >       [java]       Comp

Excessive number of property descriptors

2010-08-11 Thread G. Vaaler
I got the following just now trying to GWT-compile for testing: gwtc: [java] Compiling module com.dataloy.webtest2.TestApp [java]Scanning for additional dependencies: jar:file:*** [java] Computing all possible rebind results for 'org.gwt.beansbinding.core.client.util.GWT

No tag for 2.0.4 in SVN

2010-08-11 Thread Karel Piwko
Hi, I haven't been able to find the tag for 2.0.4 at http://google-web-toolkit.googlecode.com/svn/tags/2.0.4/. Could you create it and specify the revision number of http://google-web-toolkit.googlecode.com/svn/release/2.0 or another branch the tag was created from? Thanks, Karel -- You recei

Instantations gwt-builder

2010-08-11 Thread markomina
Instantations had gwt-builder which I evaluated some years ago. When evaluation/commercial version will be available? -- 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-tool...@googlegroups.com.

Change font-size on window resize

2010-08-11 Thread René
I'm building a game application that is intended to fully occupy a browser window. This means that when a user resizes the window, the application has to resize as well. This would be straightforward if the application only consisted of panels with images, but in my case I also need text to scale.

Re: (BUG) -- Uncaught exception escaped

2010-08-11 Thread cokol
hum, this assertion seems to be wanted, what did u do to cause the error? i mean seems like there is an event firing which causes this error isnt it? On 11 Aug., 14:29, Santosh kumar wrote: > Hi, > this is the BUG which i see when i work with this module .. > please can any one help me to fix thi

More woes with IE + Client(Image) Bundles

2010-08-11 Thread Sean
I have a widget that dynamically makes medals. What it does is takes the place they are in (1st,2nd...) and gets the right color background medal from a ClientBundle, then using the same Client Bundle it creates the number from the ClientBundle, which has the #'s 0-9 in it. If it's 10, it grabs 1 a

Re: exception with Gwt and Hibernate

2010-08-11 Thread cokol
do you rpc objects to the client? maybe it cannot find the id of the object when unmarshalled on the server? On 11 Aug., 12:50, Shakun Sachdeva wrote: > Pls help me with the below exception.. > > --- > --

Upgrade from 1.5.3 to 2.x

2010-08-11 Thread cupakob
HI *, we have an application, which is build with GWT 1.5.3. Is it possible to upgrade to the newest GWT version? Is there any howto, how to make the upgrade? Thanks in advance! S. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post

Re: GWT security

2010-08-11 Thread cokol
there is no reason to secure it, since decryption logic would be in javascript - thus public accessible, so better to use https ;) On 11 Aug., 14:04, Luis Daniel Mesa Velasquez wrote: > I don't see anything about the encryption used in the RPC call to the > userservice... so it's just a fancy 3rd

(BUG) -- Uncaught exception escaped

2010-08-11 Thread Santosh kumar
Hi, this is the BUG which i see when i work with this module .. please can any one help me to fix this this BUG. 17:47:16.937 [ERROR] [TaxCategory] Uncaught exception escaped java.lang.AssertionError: A widget that has an existing parent widget may not be added to the detach list at com.google

Re: gwt rpc & application scope

2010-08-11 Thread cokol
why not? do you want to put the whole application scope on wire or what do you mean why is should interfere? On 11 Aug., 13:20, Thomas Van Driessche wrote: > Hi All, > > Is it possible to put something in the application scope of the server > where the gwt app is deployed? > > The app uses rpc. >

Re: GWT security

2010-08-11 Thread Luis Daniel Mesa Velasquez
I don't see anything about the encryption used in the RPC call to the userservice... so it's just a fancy 3rd party RPC call, no security there... On Aug 10, 3:20 am, Peter Simun wrote: > Hi all, > > I just wanted to share with you the article about security in GWT > application.http://java.dzone

Re: GWT and Map dynamic loading

2010-08-11 Thread Eric Ayers
That error message doesn't look familiar. Where do you see the message? Are you running in development mode or web mode? If you want to dynamically load the Google Maps API, you can use the gwt-google-apis maps library Maps.loadMapsApi() method: http://gwt-google-apis.googlecode.com/svn/javadoc

gwt rpc & application scope

2010-08-11 Thread Thomas Van Driessche
Hi All, Is it possible to put something in the application scope of the server where the gwt app is deployed? The app uses rpc. kind regards -- 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

exception with Gwt and Hibernate

2010-08-11 Thread Shakun Sachdeva
Pls help me with the below exception.. Hi I am working on Gwt with Hibernate at backend and am having this exception. Can anyone help me in this that why I

gwt voices problem

2010-08-11 Thread mariyan nenchev
Hi, I need to play simple wav file with gwt voices. But i have problem (may be with plugins)... Here is what i do: // construct sound final SoundController sc = new SoundController(); sound = sc.createSound(Sound.MIME_TYPE_AUDIO_BASIC, ServiceUtils.getClientResource().cue().getUrl()); // onClic

Re: Displaying date in format dd/mm/yy

2010-08-11 Thread cokol
why dont you try :D but yes, it will... regards, On 11 Aug., 11:38, Santosh kumar wrote: > Hi Shakun, > I want to display this date in the flextable as one of the column for the > list of rows. > is your snippet will help me ?? > > > > > > On Wed, Aug 11, 2010 at 1:12 PM, Shakun Sachdeva wrote

Re: Displaying date in format dd/mm/yy

2010-08-11 Thread Santosh kumar
Hi Shakun, I want to display this date in the flextable as one of the column for the list of rows. is your snippet will help me ?? On Wed, Aug 11, 2010 at 1:12 PM, Shakun Sachdeva wrote: > Hi, > You can see the below snippet.. > Hope it helps... > > private void initDateFormat() > { >

Re: Deserialization on the Client / Browser

2010-08-11 Thread cokol
update: ok, got the reason for that - wrong magic number for the class type :( I've provided some source which differs from original class by having dummy API implementation, I dont believe this should make signature change...? On 11 Aug., 11:18, cokol wrote: > hi folks, > > i am using standard r

Deserialization on the Client / Browser

2010-08-11 Thread cokol
hi folks, i am using standard rpc calls but the client fails to deserialize the response with error "could not deserialize" - it here a way to debug that deserialization process on the client from within eclipse? -- You received this message because you are subscribed to the Google Groups "Goog

Re: why we probably won't use GWT for a large UI project

2010-08-11 Thread cokol
hi, goods thoughts you had, but dont treat GWT as a framework, Google doesnt do it either :-) Its "just" a toolkit or better yet, a JS compiler with some tooling around. And being just a toolkit is more powerful than create yet another throw-away ajax framework! There're plenty wonderful ajax fram

Re: Using piriti 0.4.1

2010-08-11 Thread Harald Pehl
At the end of the day both GWT and Piriti use the browsers internal XMLParser. I would suggest to map the XML using Piriti and see if the performance is ok for you. - Harald On 11 Aug., 09:06, Deepak Singh wrote: > Hi Harald, > > XML size is larger one as it is the result of available hotels or

Re: Displaying date in format dd/mm/yy

2010-08-11 Thread Shakun Sachdeva
Hi, You can see the below snippet.. Hope it helps... private void initDateFormat() { DateUtil.setShortDateDisplayFormatter(new DateDisplayFormatter() { public String format(Date date) { if(date == null) return null; final DateTimeFormat da

Re: Displaying date in format dd/mm/yy

2010-08-11 Thread Prashant Hegde
See if this helps http://google-web-toolkit.googlecode.com/svn/javadoc/1.5/com/google/gwt/i18n/client/DateTimeFormat.html Thanks Prashant On 11-08-2010 12:49, Santosh kumar wrote: Hi, After rpc cal i am getting the date from datastore which was stored in some of the kind, but i want to dis

GWT and Map dynamic loading

2010-08-11 Thread Vincent COROLLEUR
Hello, In my application, users can choose between two different map : google map or OpenLayers. I'd like to load dynamically the chosen one by loading the corresponding script (in this exemple google map). I tried this (in the EntryPoint) : ScriptElement script1 = Document.get()

Re: why we probably won't use GWT for a large UI project

2010-08-11 Thread Stefan Bachert
Hi marius, using REST, SOAP, JSON directly from the browser client is always insecure. This is because the browser client has to know the credentials. Either these services are not protected at all, or your credentials are likely to be stolen. When you need a minimum of security and privacy, your

Displaying date in format dd/mm/yy

2010-08-11 Thread Santosh kumar
Hi, After rpc cal i am getting the date from datastore which was stored in some of the kind, but i want to display that date in the format dd/mm/yy and the time also. Please can anyone help me to make over this task. -- Thanks & Regards *S a n t o s h k u m a r . k* -- You received this messa

Re: Using piriti 0.4.1

2010-08-11 Thread Deepak Singh
Hi Harald, XML size is larger one as it is the result of available hotels or flight on a particular date. So what is the best way to parse you suggest. You mean "Anyway the XML is parsed using the browsers native XML parsrer" is about the parser used by GWT internally ? On Wed, Aug 11, 2010 at 1