[no subject]

2013-04-13 Thread stefan bachert
-- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this group, send email to

Re: Question for GWT users who use Maven

2010-12-14 Thread Stefan Bachert
Hi, just as an easy trick. Take Spring Roo and build a GWT project. Spring Roo is maven based. Just copy anything you like and need into your project. Regards Stefan Bachert http://wwwapp.de http://gwtworld.de On 13 Dez., 13:35, koma k...@koma.be wrote: This is the last thing I'll say about

Undo/Redo for web applications

2010-12-13 Thread Stefan Bachert
Hi, I implemented undo/redo for web-based database applications. Are there some companies who want to incorporate this great feature into their products? If yes, get in contact with me. The current implementation is session based and is using GWT. Stefan Bachert wwwApp UG stefan.bach

mvn plugin

2010-11-28 Thread Stefan Bachert
Hi, I am about to switch to maven. Using gwt-maven-plugin.1.3.2 It looks strange to me that the goal install does not include a gwt:compile. Has someone any idea why? Stefan Bachert http://gwtworld.de -- You received this message because you are subscribed to the Google Groups Google Web

maven and GWTTestCase

2010-11-28 Thread Stefan Bachert
Hi, running a GWTTestCase needs com.google.gwt.dev.cfg.Condition. On the other hand, gwt-dev should not be a dependency of the project. Looks like a deadlock. Does anyone know a trick anyway? Stefan Bachert http://gwtworld.de -- You received this message because you are subscribed

Re: Request order

2010-11-21 Thread Stefan Bachert
, that nothing guaranties, that servlet requests are executed in the same order as they are send from browser. Meanwhile I did some locking/check to enforce the order. I had hoped that someone knows an easy solution, may be some configuration entry. However, topic solved. Stefan Bachert http://gwtworld.de

Re: Request order

2010-11-20 Thread Stefan Bachert
, too!) gwt-dispatch lacks other problems. It produces too much communication and latency. When the server is working with transactions, any action will require one transaction, which slows down the server performance, too. So gwt-dispatch is not a good choice for a high performance systems. Stefan

Re: How to kill a GWT request which has not yet completed

2010-11-20 Thread Stefan Bachert
Hi, why not just ignoring the answer in certain cases? Stefan Bachert http://gwtworld.de On 19 Nov., 20:47, Sunit Katkar sunitkat...@gmail.com wrote: I Googled and also this group but could not find an answer. Here is the use case: 1) User enters a value in a textfield and clicks Submit

Re: How does HTML5 change the way we write GWT apps ?

2010-11-20 Thread Stefan Bachert
service from the servlet. Than the app can control whether and how such accesses may be cached. Stefan Bachert http://gwtworld.de On 19 Nov., 20:21, zixzigma zixzi...@gmail.com wrote: Hello Everyone, I have been reading about HTML5, and impressive improvements it brings. I was wondering how do you

Re: Request order

2010-11-19 Thread Stefan Bachert
to run on multiple servers, OK, not a GWT topic) Stefan Bachert http://gwtworld.de On 18 Nov., 17:34, Jeff Chimene jchim...@gmail.com wrote: On Thu, Nov 18, 2010 at 9:18 AM, Stefan Bachert stefanbach...@yahoo.dewrote: Hi, I am doing undo/redo. Therefore it is mandatory to handle all requests

Re: eclipse crash bum bang

2010-11-19 Thread Stefan Bachert
to my earlier experiences, it is a matter of time, until the next crash will happen. Stefan Bachert http://gwtworld.de On 15 Nov., 17:22, Sunit Katkar sunitkat...@gmail.com wrote: Which version of Eclipse are you using? On which OS? I have been using Eclipse 3.6 Helios with JDK 1.6 update 21

Re: Request order

2010-11-18 Thread Stefan Bachert
Hi, I am doing undo/redo. Therefore it is mandatory to handle all requests on the server in the same order to be able to replay it. Stefan Bachert http://gwtworld.de On 17 Nov., 10:37, Jeff Chimene jchim...@gmail.com wrote: Hi Stefan: What problem are you trying to solve? On Wed, Nov 17

Re: Request order

2010-11-18 Thread Stefan Bachert
or not. When there is no easy feature to support this, than the easiest thing is to number any requests from client and execute them only in order. (Maybe be abused as attack detection, too) Stefan Bachert http://gwtworld.de On 17 Nov., 11:09, ep eplisc...@googlemail.com wrote: batch them

Request order

2010-11-17 Thread Stefan Bachert
Hi, I need to get any requests from my browser client in the same order on the server side. implementing SingleThreadModel would not solve this requirement. synchronizing HttpSession may fail on 3 or more requests. Any ideas how to achive this? Stefan Bachert http://gwtworld.de -- You

GXT, smartGWT and Co

2010-11-15 Thread Stefan Bachert
Hi, to which degree does framework which are on the top of GWT, follows GWT and support new features? - smartGWT ? MVP ? Cell Widgets ? RequestFactory - GXT ? MVP ? Cell Widgets ? RequestFactory - mosaic ? MVP ? Cell Widgets ? RequestFactory .. more ? Stefan

Re: All I Want for Christmas is a powerful Widget Library from Google !

2010-11-15 Thread Stefan Bachert
GWT. Each year I had to change app due to API-change on concept level! This kind of unstableness may be a reason why companies are hesitating to use GWT. Stefan Bachert http://gwtworld.de -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group

Re: GWT DockLayoutPanel vs CSS Float

2010-11-15 Thread Stefan Bachert
Hi, I don't think you get the same results. You get similar results. It depends what exactly you need. Probably the easiest is two try both and watch the different behavior in the extremes Stefan Bachert http://gwtworld.de On 14 Nov., 21:21, zixzigma zixzi...@gmail.com wrote: Hello Everyone

eclipse crash bum bang

2010-11-15 Thread Stefan Bachert
Hi, it happens again (see topic and other weird modication of the projects) and it is very frustrating. Are Netbeans or IntelliJ a real alternative to eclipse? What are your experiences? Stefan Bachert http://gwtworld.de P.S: I am using SVN, GWT and JPA at the moment -- You received

Spring Roo and GWT

2010-11-03 Thread Stefan Bachert
) a waste of time. Stefan Bachert http://gwtworld.de -- 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. To unsubscribe from this group, send email to google-web-toolkit

Re: Role based Security in GWT: how to implement ?

2010-11-01 Thread Stefan Bachert
client based security concept (basing on annotation or what else) is just a misconception. The server is the only place where security can apply. But GWT is mainly a client side topic. Authentication based security or roles based security will never be a GWT (client) topic Stefan Bachert http

Re: GWT-Platform spring integration

2010-10-27 Thread Stefan Bachert
Hi, you could play with Spring Roo. My last try with Roo was not successful with non trivial cases, however, Spring Roo probably does generate the best Spring integration (but using aspectJ) Stefan Bachert http://gwtworld.de On 25 Okt., 23:47, tc camec...@gmail.com wrote: Does anyone have

Re: What Major Companies Use GWT???

2010-10-26 Thread Stefan Bachert
a tool uses GWT but this is not really published. XWiki, Magnolia CMS for example Stefan Bachert http://gwtworld.de -- 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

Re: GWT as a Desktop App (no browser !)

2010-10-23 Thread Stefan Bachert
question Stefan Bachert http://gwtworld.de On 22 Okt., 22:52, mattlf matthieu.lab...@gmail.com wrote: Hi I need to create a Desktop App. It can not be a browser App as this App should be the only App available. Is it possible for a  GWT App to run outside the browser (on a different runtime

Re: Compile with different color themes

2010-10-22 Thread Stefan Bachert
Hi Andreas, Your question does not make clear how you want to change the color values. Surely you can change the value in css and recompile, but this is probably not what you want Stefan Bachert http://gwtworld.de On 21 Okt., 09:48, Andreas Köberle koebe...@gmail.com wrote: Is there a way

Re: GWT post security on RPC

2010-10-13 Thread Stefan Bachert
is alway limited Stefan Bachert http://gwtworld.de On 13 Okt., 15:29, JuDaC judac2...@gmail.com wrote: hi Folks!!!    I'm having a serious problem with security using RPC. I'm using HTTPS (through SSL), but unfortunately the attacker was able to get the RPC request in text plain easily

Re: One HTML per App?

2010-10-08 Thread Stefan Bachert
Hi, other web approachen are in general doing linked web documents. GWT is an AJax/JavaSCript web application approach. This means you start with one page and modify it programmatically. However, even a GWT war may hold more the one html starter page (for different cases). Stefan Bachert http

Re: Vulnerabilities in GWT applications

2010-09-29 Thread Stefan Bachert
pair of professional eyes, you may contact me. Your site is one hour from my site. Stefan Bachert http://gwtworld.de On 28 Sep., 13:29, Basdl b...@cirosec.de wrote: Hello, I'd like to find vulnerabilities in my GWT applications. Thus, I prepared an example application with SQL injection

Re: Chat with GWT

2010-09-22 Thread Stefan Bachert
on COMET if you want to make a chat app) Just follow the stockwatcher sample and you get the necessary information. http://code.google.com/intl/de-DE/webtoolkit/doc/latest/tutorial/clientserver.html Stefan Bachert http://gwtworld.de On 21 Sep., 05:07, Victor Machado victor_...@hotmail.com wrote

[] or ArrayList

2010-09-21 Thread Stefan Bachert
Hi, What are the pros and cons for arrays using either a) [] b) ArrayList in GWT, especially in RPC? Stefan Bachert http://gwtworld.de -- 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

Re: How could we know if GWT project will continue to be maintained by Google?

2010-09-14 Thread Stefan Bachert
a further option. And by the way, Google Wave will not be closed, but no more offered the actual way. However, it is not very likely for google to close GWT. But even when, the big user base will probably continue to develop GWT. Stefan Bachert http://gwtworld.de On 13 Sep., 09:48, marius.andreiana

Wave in a Box

2010-09-09 Thread Stefan Bachert
Google will make a subset of Google Wave as Wave in a Box open source. Does anyone have seen any source code yet? Analyzing the current Wave code looks like Wave consists of a total own but not GWT core widget set. Does some one know more? Stefan Bachert http://gwtworld.de -- You received

Re: Running gwt js on second server

2010-08-26 Thread Stefan Bachert
this) Stefan Bachert http://gwtworld.de On 22 Aug., 19:38, Pieter pieter.vandenb...@gmail.com wrote: I have created a basic basic gwt application running on ServerA. Now I want a designer to be able to write his own style sheet for the application but not touch the source code.  So I created an html

Re: font-size doesn't increase but in Word does it

2010-08-26 Thread Stefan Bachert
Hi, the code look not wrong but incomplete. Which html is really produced? Does it work on standard conforming browsers like chrome/ff/safari? Stefan Bachert http://gwtword.de On 24 Aug., 16:12, Ricardo.M ricardo.mar...@gmail.com wrote: I open Microsoft Word and write a text Hello World

Re: Is Roo ready for a prime time?

2010-08-24 Thread Stefan Bachert
Hi, depends when you will go to production. I wont use neither for projects which are going to production in the next 6-9 month Stefan Bachert http://gwtworld.de On 23 Aug., 23:29, Gal Dolber gal.dol...@gmail.com wrote: I am planning to start a project with the gwt 2.1(trunk) and roo. Am I

Re: Why not put FooService and FooServiceAsync in one file?

2010-08-24 Thread Stefan Bachert
project for server code with the same package. This does not mean I recommend to do so, but to state it would be impossible is just wrong. Stefan Bachert http://gwtworld.de On 23 Aug., 15:36, Greg Dougherty dougherty.greg...@mayo.edu wrote: Stefan, You can put the *,shared package in both

Re: Why not put FooService and FooServiceAsync in one file?

2010-08-22 Thread Stefan Bachert
And, IIUC, you CAN'T put the client and server code in the same package. Greg Hi Greg, shared code IS running on both sides. It it easier to separate when code is in different packages. Stefan Bachert http://gwtworld.de -- You received this message because you are subscribed

Re: mobilescrollpanel entry point?

2010-08-22 Thread Stefan Bachert
Hi, there is no need for widgets to have an entry point. Your app need an entry point. Stefan Bachert http://gwtworld.de On 20 Aug., 15:37, asianCoolz second.co...@gmail.com wrote: i try to use mobilescrollpanel in my project. in my project, i put inherits name=com.google.gwt.mobile.Mobile

Re: Reusing GWT Localization in Server Side Code

2010-08-21 Thread Stefan Bachert
Hi Maxim, all localisation should be done on client side in a clean architecture, even notifications. Localisation is presentation logic which belongs to the client Server should only hold persistence and business logic. Send error/warning/information codes plus parameters to the client. Stefan

Re: Reusing GWT Localization in Server Side Code

2010-08-20 Thread Stefan Bachert
Hi, you may consider to use the localized property files with the classical resource bundle However, localisation is a presentation topic which in general should be cover on client side. The server should be in general not locale aware. (no permutation selection) Stefan Bachert http

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

2010-08-16 Thread Stefan Bachert
to be taken into account. And there are still many people which MUST use ISDN (128Kbit!) When doing only projects for internal use, vaadin may be sufficient but don't try to put it on the internet. Stefan Bachert http://gwtworld.de On 15 Aug., 19:39, Steve Wart st...@wart.ca wrote: I guess it depends

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

2010-08-15 Thread Stefan Bachert
://demo.vaadin.com/Calc Click a number and it tooks 300ms until the calc will display it. This latency is a direct consequence of choosing the poor old architecture. Stefan Bachert http://gwtworld.de On 10 Aug., 09:02, Nathan Wells nwwe...@gmail.com wrote: I would look into vaadin. We just looked

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

2010-08-15 Thread Stefan Bachert
): a) caching service results b) accessing services needing credentials not known by the user. The extra layer may improve performance and latency when used adequat. Stefan Bachert http://gwtworld.de PS: I never argue with obscurity regarding security, meaning I agree with you, it is a poor idea

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

2010-08-14 Thread Stefan Bachert
a concrete list of sites which is under your control. Stefan Bachert http://gwtworld.de On 11 Aug., 18:46, marius.andreiana marius.andrei...@gmail.com wrote: 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

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

2010-08-11 Thread Stefan Bachert
, your gui browser client should only talk via GWT-RPC to a GWT-server under your control which gathers all data from REST, SOAP or JSON services. Stefan Bachert http://gwtworld.de On 10 Aug., 04:27, marius.andreiana marius.andrei...@gmail.com wrote: Hi, We're working on a large project, which has

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

Re: What happen with Google Web Toolkit Developer Plugin Firefox Linux

2010-08-08 Thread Stefan Bachert
Hi, you may need to use an other version of firefox. I could not download for 3.5.9 (shiretoko), too. But 3.6.8 does work. There is still no support for chrome on linux. Stefan Bachert http::/gwtworld.de Inquiries for professional GWT support are welcome. I am sorry, I won't do free personal

Re: Does GWT support HTML5???

2010-08-07 Thread Stefan Bachert
project may sufficient enough. Stefan Bachert http::/gwtworld.de Inquiries for professional GWT support are welcome. I am sorry, I won't do free personal support. On 5 Aug., 10:19, Faraj khasib faraj...@gmail.com wrote: I am final year University student and planning to do something like GWT

Re: Making GWT look good...

2010-08-07 Thread Stefan Bachert
. The best would be an inline and immediate creation with undo/redo support. However, this is not so easy to achieve. However, I agree, the sample is better as the general experience on the web. Stefan Bachert http::/gwtworld.de Inquiries for professional GWT support are welcome. I am sorry, I won't do

Re: How to integrate GWT app into an Existing Project ? (Details Inside)

2010-08-07 Thread Stefan Bachert
the server. From existing application written for JSP only the backend part namely persistence and business logic is reusable but not JSP/ Controller stuff Stefan Bachert http::/gwtworld.de Inquiries for professional GWT support are welcome. I am sorry, I won't do free personal support. On 5

Re: use differed binding to create different views for different user roles

2010-08-01 Thread Stefan Bachert
(aka buttons) Stefan Bachert http::/gwtworld.de Inquiries for professional GWT support are welcome. I am sorry, I won't do free personal support. On 1 Aug., 08:57, avi.yaf...@gmail.com avi.yaf...@gmail.com wrote: I am trying to figure out what is the best practice, to create different views

Re: Google Web Toolkit JavaScript Vs hand Crafted JavaScript benchmark

2010-08-01 Thread Stefan Bachert
someone comes up with an appropriate GWT project) Stefan Bachert http::/gwtworld.de Inquiries for professional GWT support are welcome. I am sorry, I won't do free personal support. On 26 Jul., 17:38, Ciarán ciaran.mccann@gmail.com wrote: Hey everyone I am really interested in GWT for a project I

Re: Ecryption best practices (server side, client side, password handling)?

2010-08-01 Thread Stefan Bachert
, may be to a similar service using the same approach! Any attacker could substitude the browser and code when he has a legal access to the service. So he can get the encryption algo and apply it to other users. The only thing which is under your control is the server. Stefan Bachert http

Re: All my modules MUST be compiled together - a bug or a feature?

2010-07-31 Thread Stefan Bachert
Hi Alec, GWT needs to work on the source code because it just takes what your app really needs. But what is your problem supplying source, too? In the end you propose to use JavaScript as second source code. This would doubling code and errors without having any advantage. Stefan Bachert http

Re: Cache on Client

2010-07-27 Thread Stefan Bachert
. Even a browser cache is no security hit as long the user account of the operating system is not shared. Stefan Bachert http::/gwtworld.de Inquiries for professional GWT support are welcome. I am sorry, I won't do free personal support. On 27 Jul., 09:08, Joyce joyc...@gmail.com wrote: Hi. I

Re: Another Ajax Crawling question, is #! acceptable rather then just #! ?

2010-07-24 Thread Stefan Bachert
Hi, when others are as confused as me than you will get no qualified answer You are talking about PHP, url, google and sometimes it sounds that you are talking about Google Webmaster Tools. ( != GWT = Google Webtool Kit) Stefan Bachert http::/gwtworld.de Inquiries for professional GWT support

Re: GWT app looks ugly in IE6

2010-07-23 Thread Stefan Bachert
Hi to all, There is no need for jsni. http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/com/google/gwt/user/client/Window.Navigator.html Window.Navigator.getNavigator() should do the job. a link to the download page(s) of modern browser may be useful, too. Stefan Bachert http

Re: Can you use GWT with the spring framework (spring mvc)?

2010-07-23 Thread Stefan Bachert
Hi, but aware Spring Roo 1.1.0M1 is not useable at all. Not even in a very protected environment. I have seen there is a M2 release now, but I did not tried, yet. Stefan Bachert http::/gwtworld.de Inquiries for professional GWT support are welcome. I am sorry, I won't do free personal support

Re: Sizing TabLayoutPanel (replacing TabPanel)

2010-07-22 Thread Stefan Bachert
Hi, i recently wrote somewhat similar . TabPanel are using table, the total size is defined by its children. TabLayoutPanel are user position:absolute, the size is defined either explicitly or by its parent. Stefan Bachert http::/gwtworld.de Inquiries for professional GWT support

Re: remove old javascript file

2010-07-22 Thread Stefan Bachert
Hi, caching is controlled by the container. THere is no general way to configure it. On Jetty you have to extend web.xml On Apache you have to configure some .conf or .htaccess On GAE there is an appconfig Stefan Bachert http::/gwtworld.de Inquiries for professional GWT support are welcome. I

Re: GWT app looks ugly in IE6

2010-07-22 Thread Stefan Bachert
. (If not already done) Stefan Bachert http::/gwtworld.de Inquiries for professional GWT support are welcome. I am sorry, I won't do free personal support. On 21 Jul., 18:11, Magnus alpineblas...@googlemail.com wrote: Hi, my GWT app works great under current browsers, but it looks ugly under IE6

Re: Can you use GWT with the spring framework (spring mvc)?

2010-07-22 Thread Stefan Bachert
Hi, we had hane this discussion already this year. In general any Spring GUI technique does not make sense with GWT. Even Spring Roo is doing either Spring MVC or GWT. Stefan Bachert http::/gwtworld.de Inquiries for professional GWT support are welcome. I am sorry, I won't do free personal

Re: remove old javascript file

2010-07-21 Thread Stefan Bachert
existing. Stefan Bachert http::/gwtworld.de due to recent cases, I am sorry, I won't do free personal support. inquiries for professional GWT support are welcome. On 20 Jul., 23:13, bhomass bhom...@gmail.com wrote: I found a number of conflicting comments concerning this. And, even

Re: AJAX of type GET ( and not POST)?

2010-07-21 Thread Stefan Bachert
secure. (However, I consider most recent GWT-RPC to be save against CSRF/XSRF) Stefan Bachert http::/gwtworld.de due to recent cases, I am sorry, I won't do free personal support. inquiries for professional GWT support are welcome. On 20 Jul., 18:51, mk munna.kaka.ch...@gmail.com wrote

Re: GWT response is allowing only boolean value in IE

2010-07-21 Thread Stefan Bachert
Hi Raj, this is probably a problem with GWT-Ext. I never experienced such a problem on pure GWT Stefan Bachert http::/gwtworld.de due to recent cases, I am sorry, I won't do free personal support. inquiries for professional GWT support are welcome. On 20 Jul., 16:57, rajendra dasari

Re: Upload Maximum Size file giving Memory Out of rage error

2010-07-21 Thread Stefan Bachert
(java-applet, flash, WebDAV..) Stefan Bachert http::/gwtworld.de due to recent cases, I am sorry, I won't do free personal support. inquiries for professional GWT support are welcome. On 20 Jul., 15:40, rajendra dasari rajendra.a...@gmail.com wrote: Hi , Thanks for giving suggetion

Re: support F5 to load current page

2010-07-20 Thread Stefan Bachert
Hi Ahmed, try Window.location.reload() Stefan Bachert http::/gwtworld.de due to recent cases, I am sorry, I won't do free personal support. inquiries for professional GWT support are welcome. On 20 Jul., 06:13, Ahmed Shoeib ahmedelsayed.sho...@gmail.com wrote: i want to reload current page

Re: Docklayout / Fixed size

2010-07-20 Thread Stefan Bachert
Hi Julien, there are at least two ways. a) use the old DockPanel b) Measure the size of your content before adding to DockLayoutPanel. Measuring is somewhat tricky. You have to put the testee in an already attached element. Stefan Bachert http::/gwtworld.de due to recent cases, I am sorry

Re: GWT response is allowing only boolean value in IE

2010-07-20 Thread Stefan Bachert
Hi Raj, this does not look like GWT. Do you use GXT (GWT-Ext)? Stefan Bachert http::/gwtworld.de due to recent cases, I am sorry, I won't do free personal support. inquiries for professional GWT support are welcome. On 20 Jul., 07:24, raj rajendra.a...@gmail.com wrote: Hi All, I am new

Re: Cache static data?

2010-07-20 Thread Stefan Bachert
Hi, Html5 supports caching and databases. However, only modern browsers support Html5 When this data changes for all users, consider to recompile your app bi-weekly with new datas. Stefan Bachert http::/gwtworld.de due to recent cases, I am sorry, I won't do free personal support. inquiries

Re: GWT UI spacing issue

2010-07-20 Thread Stefan Bachert
Hi, I guess this is an firefox issue not an GWT issue. Stefan Bachert http::/gwtworld.de due to recent cases, I am sorry, I won't do free personal support. inquiries for professional GWT support are welcome. On 20 Jul., 03:30, vbhansaly vbhans...@gmail.com wrote: Hi, I have designed a GWT

Re: Can we go project like www.blockbuster.com using GWT ?

2010-07-19 Thread Stefan Bachert
, JPA, hibernate what you like Stefan Bachert http://gwtworld.de On 18 Jul., 19:18, mrjayarajj mrjayar...@gmail.com wrote: I am doing a RD on choosing the technology,framework etc.. I understand some benefits of gwt but still my client expect to do project simillar towww.blockbuster.com please

Re: How do I make alternative style sheets for IE7 etc. in GWT?

2010-07-19 Thread Stefan Bachert
there is the need to extent the list of browser, you can do so. However, you have to supply a javaSCript code to detect the browser and more browsers means more compilation time. It is up to your needs which efforts makes sense. Stefan Bachert http://gwtworld.de -- You received this message because you

Re: How to find correctly the client's locale?

2010-07-19 Thread Stefan Bachert
Hi, the startup code detects the locale. As documented in stockwatcher demo, you could either supply a locale in the url (query parameter) or put it into host page as a fixed value Stefan Bachert http://gwtworld.de On 19 Jul., 10:19, Sorinel C scristescu...@hotmail.com wrote: I have used

Re: DeferredCommand. When should an RPC use it?

2010-07-19 Thread Stefan Bachert
problem. The first call to a method chaining command is also scheduling the finishing method. Stefan Bachert http://gwtworld.de On 16 Jul., 20:33, alan alan.sny...@gmail.com wrote: I'm trying to understand when an RPC call should use a DeferredCommand, when is should include an addPause and when

Re: How do I make alternative style sheets for IE7 etc. in GWT?

2010-07-18 Thread Stefan Bachert
Hi, ClientBundle with CssResource supports conditional styles. See docu http://code.google.com/intl/de-DE/webtoolkit/doc/latest/DevGuideClientBundle.html#Conditional_CSS Stefan Bachert http://gwtworld.de On 16 Jul., 15:52, sythiar s...@emeraldlake.net wrote: I'm a complete beginner to GWT

Re: Widget for long text?

2010-07-18 Thread Stefan Bachert
Hi Magnus, I never had have this case. I would try two approaches a) You can play with nodes. There is a insert after functionality http://google-web-toolkit.googlecode.com/svn/javadoc/2.1/com/google/gwt/dom/client/Node.html b) open an iframe and write into the document. Neither tried Stefan

Re: network data per second

2010-07-16 Thread Stefan Bachert
Hi, one Mbps might be too high. here in germany there are still a lot people only having 128 KBits/s (ISDN). before anything! Stefan Bachert http://gwtworld.de On 15 Jul., 22:39, mk munna.kaka.ch...@gmail.com wrote: Any idea how much actual data we can send per second over boradband

Re: Caution: SmartGwt loadup size is big

2010-07-15 Thread Stefan Bachert
Hi, this is the major problem using a javascript wrapper instead of a real GWT based library. However, even a poor designed GWT library may (but should not) run into this problem due to poor dependencies. (Everthing depends on everthing) Stefan Bachert http://gwtworld.de On 15 Jul., 01:22, mk

Re: Possible to access GWT-RPC serializer?

2010-07-15 Thread Stefan Bachert
Hi Sekhar, this is my first thought. Just use JSON. Then you can use eval to read it. However, I do not know any method to export a object to json string. But this should not be too complicated to do yourself, or lookout for such a library Stefan Bachert http://gwtworld.de On 15 Jul., 01:34

Re: Client session

2010-07-15 Thread Stefan Bachert
Hi, I am not sure what you mean with client side sessions? Do you mean to pass the HttpSession (maybe just the id) to the client side? But for what reason? It is already there. Either due to url-rewriting or by cookie. Stefan Bachert http://gwtworld.de On 9 Jul., 19:48, mk munna.kaka.ch

Re: Qt for Mobile Application Development for Education v1.0 Beta

2010-07-15 Thread Stefan Bachert
Hi, I do not see any relevance to this forum? Could someone help me? Stefan Bachert http::/gwtworld.de On 15 Jul., 03:54, James Baker james.baker...@gmail.com wrote: A really comprehensive knowledge enhancing training material from Forum Nokia, you guys should check out!! This training

Re: Get session object from ID sent in RCP

2010-07-15 Thread Stefan Bachert
=1351 Stefan Bachert http://gwtworld.de On 14 Jul., 11:04, Torch kurian...@gmail.com wrote: The LoginSecurity FAQ says we must always send the session ID in the RCP. I am using the standard servlet sessions. After login I send the session ID back to the client. In subsequent RPCs the client

Re: Client OR mapping

2010-07-12 Thread Stefan Bachert
is a prerequisite Stefan Bachert http://gwtworld.de On 9 Jul., 20:22, mk munna.kaka.ch...@gmail.com wrote: How do you maintain rich OR mapping in client. For example CUSTOMER has many ORDERS and each ORDER has many ITEMS. Now GWT makes DIFFERENT ajax calls wherein CUSTOMER, ORDER, ITEM are loaded

Re: GWT server design

2010-07-12 Thread Stefan Bachert
Hi, in general a full AJAX web application (as GWT is one) do generate much less load on the server then classical web technology which are rendering a complete gui on each request. My estimates let expect that a server could drive 10-50 time more clienta when using GWT. Stefan Bachert http

Re: TablayoutPanel - how to align tabs on right (top)

2010-07-12 Thread Stefan Bachert
Hi, Did you want to support a rtl language? When yes, try to switch to it. Some widget support it. Stefan Bachert http://gwtworld.de On 11 Jul., 13:46, Akshay Kumar kumar.aks...@gmail.com wrote: I am using TabLayoutPanel (in UiBinder xml), and the tab handles ( headers) are by default

Re: Storing passwords: jBcrypt vs Jasypt

2010-07-11 Thread Stefan Bachert
Hi, I use java.security.MessageDigest in a simple class converting a string (password) to a hashed string using SHA. If SHA becomes too weak, I could easily change to better algos. Stefan Bachert http://gwtworld.de On 11 Jul., 12:49, sbrombo sbro...@gmail.com wrote: Hi everyone, I'm

Re: cross platform css

2010-07-10 Thread Stefan Bachert
browser. Stefan Bachert http://gwtworld.de On 10 Jul., 12:18, asianCoolz second.co...@gmail.com wrote: which cross platform css do you folks using with gwt?  reset,blueprint, 960..?   which one recommended ? -- You received this message because you are subscribed to the Google Groups Google Web

Re: Google's Way ! reinventing the wheel

2010-07-10 Thread Stefan Bachert
from server. This has at least 3 drawbacks a) It is slow b) It does not check whether a constant is used at all c) It may be a security whole. There are enough good reasons to do i18n not exactly like java does. I feel quite confortable with GWT i18n. Stefan Bachert http://gwtworld.de On 10

Re: Make a Banner rotator whit ClientBundle or Java Script Nativ, what do you recomended?

2010-07-10 Thread Stefan Bachert
are loaded. the rotation just contains 2 images. When the next image is loaded, put it to the rotation. Go on until all images are loaded. Stefan Bachert http://gwtworld.de On 9 Jul., 19:04, Jero jero.carr...@gmail.com wrote: Hi Stefan!  Sorry but I am new to the Web world. It is possible to nest

Re: GWT roadmap: easier use of REST?

2010-07-10 Thread Stefan Bachert
fully supporting GWT) To mashup to any service from browser looks only attractive at the first glance. It would be a security disaster. No browser vendor will allow this. Stefan Bachert http://gwtworld.de -- You received this message because you are subscribed to the Google Groups Google Web

Re: Detecting browser in GWT 2.0.3

2010-07-09 Thread Stefan Bachert
;-) This is no problem when all data is send as soon as possible to the server. Stefan Bachert http://gwtworld.de On 9 Jul., 02:01, SanjeevG sanjeev.g...@gmail.com wrote: Hi, I am working on an application that uses GWT 2.0.3 and GXT 2.2.0. I have implemented the onClose method

Re: ImageResource Sprites and RepeatStyle.Horizontal/Vertical generating massive images

2010-07-09 Thread Stefan Bachert
Hi Dave, 163000x300 pixel is extreme. I see two causes a) you have such a lot images. Than I would try for splitting up the ClientBundle b) GWT has a bug which causes huge images as a result. Maybe a) puts the compiler in a more stable state Stefan Bachert http://gwtworld.de On 9 Jul., 13:55

Re: application wide events

2010-07-09 Thread Stefan Bachert
Hi, look for comet, long polling, server push. There are projects on this topic on code.google.com (gwt-comet) Stefan Bachert http://gwtworld.de On 8 Jul., 19:22, keneiken anh...@gmail.com wrote: Hi, suppose we are working with the sample gwt contacts app., and there are 2+ users using

Re: GWT RPC with Adobe AIR 2

2010-07-09 Thread Stefan Bachert
Hi, GWT RPC is just an HTTP POST. From this point of view it should be possible. However, GWT RPC is passing an id in the headers which is changing every compile. So you must simulate this, too. Stefan Bachert http://gwtworld.de On 9 Jul., 00:20, Gurufaction gurufact...@gmail.com wrote: How do

Re: HOW to add markers to an static image ?

2010-07-09 Thread Stefan Bachert
Hi Bruno, there is no way to manipulate an image directly. However, you may try to put an transparent image with ticks over the map. Stefan Bachert http://gwtworld.de On 9 Jul., 11:39, Bruno Lopes bruno.lourenco.lo...@gmail.com wrote: Hellos, I would like to add markers to a static image

Re: GWT roadmap: easier use of REST?

2010-07-09 Thread Stefan Bachert
Hi Marius, I guess directly supporting RESTful/Soap does not make much sense because of SOP and other security topics. At this time I would recommend always to use GWT-RPC to communicate. From the server SOP does not apply and you can access any webservice you like. Stefan Bachert http

Re: Make a Banner rotator whit ClientBundle or Java Script Nativ, what do you recomended?

2010-07-09 Thread Stefan Bachert
Hi Jero, in this case I just would use classical http. I dont think that ClientBundle gives you a real advantages on banner ads. img src=http://.../ Stefan Bachert http://gwtworld.de On 9 Jul., 05:28, Jero jero.carr...@gmail.com wrote: Hello Stefan, really I do not like having to recompile

Re: Image setUrl and setResources IE8 JavaScriptException

2010-07-09 Thread Stefan Bachert
not to change the strategy at the right limit. So increasing (or reducing if you have an idea) the size of the image may help. (Does it works with the original .png?) For debugging just compile with output style: detailed. This gives you an idea of the position in your java code. Stefan Bachert http

Re: Managing DB Sessions/connection with GWT + Hibernate

2010-07-09 Thread Stefan Bachert
-client). GWT is a real client-server model. There is no lazy loading in client/ browser possible. I use JPA with hibernate but session handling is done by JPA/eclipse link. Stefan Bachert http://gwtworld.de On 8 Jul., 17:26, ialexei iale...@gmail.com wrote: Hi, What is the best practice to manage

Re: Does these books still compatible with the new GWT ?

2010-07-08 Thread Stefan Bachert
. My personal approach, just buy one and then use this forum and the original docu. Stefan Bachert http://gwtworld.de On 8 Jul., 10:33, Rachmat Kukuh R. rku...@gmail.com wrote: I have a plan to buy these books: 1. GWT in Practice [Manning, 2008] 2. Pro Web 2.0 Application Development with GWT

  1   2   3   >