Re: GWT 2.5 RC1 Is Here!

2012-07-10 Thread dodo dard
Finally it's here :)

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/baR9Dmbx71QJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Can I do this with GWT..?

2012-04-05 Thread dodo dard
You should use HTML 5 Canvas, wrapped with GWT (I believe there is 
possibility there) Look at : www.html5bydemo.com how to use HTML5

Le mardi 3 avril 2012 11:11:15 UTC+2, Carsten a écrit :
>
> I am a beginner and try to find out if what I want to do is possible 
> with GWT and how one should do it: 
>
> 1. load a font and render words (possibly rotated) on the screen 
> 2. animate drawn objects like words, e.g. make them 'fly' from one 
> side of the screen to the other. 
> 3. do transformation operations on 'shapes', like translation, 
> rotation, scale. 
>
> Maybe somebody knows GWT apps  which are capable of 
> some of the features I mentioned above? 
>
> What would you use to load fonts, render words on the screen, rotate 
> words and render them and do animations? 
>
> HTML5 Canvas? CSS animations? 
>
> This are only keywords I found using Google but I don't know how it 
> will look in action and what is possible or not. A few links to web 
> apps that are capable of the features I mentioned above (build on GWT 
> or possible to build with GWT) would be really helpful 
>
> Thanks, 
> Carsten

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/TKM0zbWb-yYJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: code splitting question

2012-04-05 Thread dodo dard
Hello,

It depends on the dependency between your module. The best way to deal with 
code splitting is to start it. And than you can analyse each your code 
splitting combination. Google provide the tools to do that.

Sincerely
Bowie

==
www.html5bydemo.com

Le jeudi 5 avril 2012 08:59:14 UTC+2, HamsterofDeath a écrit :
>
> hi there,
>
> my gwt app it getting pretty big, so i looked into code splitting - but it 
> looks like magic to me in non trivial cases.
> i have about 20 gwt modules, and all entry points implement an abstract 
> entry point:
>
> public void onModuleLoad() {
> this.LOGGER.info("initializing module");
>  try {
> initModule();
> } catch (Throwable t) {
>  this.LOGGER.info("error while initializing module");
> ErrorHandling.handleEverything(t);
>  }
> }
>
> if i put gwt.runasync around "initModule", will every module be compiled 
> into its own js source file? if not, how can i achieve that? so i have to 
> change every implementation of "initmodule"?
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/5V8aXKYub64J.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: How to get text from textarea as html

2012-03-30 Thread dodo dard
Where do you want to write ? If is in the HTML directly you must to replace 
the new line character and the space character with appropriate html code. 

Check this out :

http://code.cside.com/3rdpage/us/newLine.html
http://code.cside.com/3rdpage/us/space.html 

Hope this help,

Bowie
==
http://www.html5bydemo.com

Le jeudi 29 mars 2012 22:33:10 UTC+2, Deepak Singh a écrit :
>
> Hi,
>
> I have a Textarea and i want to get the text written from this in the same 
> same format as user has entered.
> Means, with spaces and line breaks same as user has entered.
> How can i achieve this ?
>
> Currently it gives the text without line breaks with textarea.getText().
>
> Thanks
> Deepak Singh
>  

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/K0w1By5GZzAJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: How to get page state

2012-03-29 Thread dodo dard
To add another tutorial website www.html5bydemo.com :)
You can find webstorage there

Le jeudi 29 mars 2012 03:25:20 UTC+2, Michael Allan a écrit :
>
> Jens said:
> > You don't have that many options if you have to reload your site:
> > 
> > - store your state in the URL if possible (GWT's Place feature can help 
> you 
> > do so, you don't have to use MVP/Activities)
> > - store it using HTML 5 Web Storage (browser 
> > support: http://caniuse.com/#search=web storage)
> > - store it in cookies (only if you want to support IE6/7 and you can't 
> > store the state in the URL).
>
> Here's an example of both Web Storage and cookies for persisting
> state: http://zelea.com/project/votorola/s/gwt/stage/Stage.java
>
> It's running here.  The black linkbar at the top uses it:
> http://zelea.com/w/User:Frank-FlippityNet/Sys/p/sandbox
>
> -- 
> Michael Allan
>
> Toronto, +1 416-699-9528
> http://zelea.com/
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/spiAcwC5bQQJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Web app design with GWT

2012-03-29 Thread dodo dard
You confused me with word design as style :)
But is a good article

Bowie
=
www.html5bydemo.com

Le jeudi 29 mars 2012 09:52:54 UTC+2, Mike Dee a écrit :
>
> I've been working with GWT for 6+ months now.  I don't have much 
> interaction with other GWT developers.  Thankfully, this group has 
> been helpful in getting up to speed.  I've built many traditionally 
> designed web apps (JSP, PHP, etc). With GWT the way I design a web app 
> is a little different.  Would appreciate feedback. 
>
>
> http://mdichi.wordpress.com/2012/03/29/web-app-design-with-google-web-toolkit-gwt/
>  
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/vdijdja7HZoJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT Performance : Good or Bad ?

2012-03-28 Thread dodo dard
Finally, I've made my application faster.

The idea is not using GridRenderer and prepared the model in the server. 
For example I write  in the server than 
create an Image object in the client. Like I said, the target application 
is IE8 (not very performance), and by doing this I managed to reduce the 
grid loading time to almost a half.

Hope this help.

Sincerely,

Bowie

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/OheIURNk64AJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Code Coverage : How to configure cobertura and selenium with Gwt Client project for code coverage

2012-03-28 Thread dodo dard
I've work with GWT and Selenium separately, But to make Selenium 
work, basically you have set and unique id to the component that you want 
to test.  But then for Cobertura, I dont know

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/Zk0JsB6ysD8J.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT Performance : Good or Bad ?

2012-03-27 Thread dodo dard
Hi Nino,

Is a catalog application type, you search, list and modify products.
I have to precise some points : 
- my application will be used largely by IE8.
- Not all the screen have a performance problem.
- There is some :
  - screen that contains : 75 input form, 3 grids (well I have warned my 
client about not using to much components in one page).
  - A grid with 23 columns that contains at least 10 GridRenderer (well I'm 
working at it now by using less GridRenderer) .

Regards


>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/j_Gkpwxio6cJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT Performance : Good or Bad ?

2012-03-27 Thread dodo dard
Stevko,

Yes I'm aware of that too, but I think is not the problem with caching, is 
more about how many DOM object generated by GXT.
For a simple row in a grid, GXT will produce : a *div ,a  table,a  tbody, a 
tr, a td. *And is not only with the Grid.
I think that makes GXT heavier than GWT.

Bowie

>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/ZJMxBR_zDC8J.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT Performance : Good or Bad ?

2012-03-27 Thread dodo dard
Thanks Frank, 

I think that too, GXT make pretty component but very expensive and very big.
Btw I found an interesting website :  http://gxtvsgwt.appspot.com/ after 
looking at your anwser.



Le mardi 27 mars 2012 13:54:52 UTC+2, Frank a écrit :
>
> GXT and SmartGWT have bad performance imo.
> Better to write your own widgets (which takes a lot of time) using vanilla 
> GWT and make them perform better.
> That is what we did and our GWT projects have very high performance.
>
> Op dinsdag 27 maart 2012 11:55:14 UTC+2 schreef dodo dard het volgende:
>>
>> Helo,
>>
>> I've got friends complaining about GWT/GXT (GWT Ext) performances, well I 
>> notice that if we put to many component with GXT, there will be a certain 
>> waiting time (3-4s) before it got completely loaded. They said that is 
>> better to write the application directly with Javascript that may I'm not 
>> agreed 100%. So guys, is there any solution, best practice, limitation or 
>> restriction using GXT/GWT ? Or it can't be helped ?
>>
>> Honestly is fun using GWT/GXT, but I'm looking a performance solution too.
>>
>> Regards,
>> Bowie
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/Gv4FqFlTRqEJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



GWT Performance : Good or Bad ?

2012-03-27 Thread dodo dard
Helo,

I've got friends complaining about GWT/GXT (GWT Ext) performances, well I 
notice that if we put to many component with GXT, there will be a certain 
waiting time (3-4s) before it got completely loaded. They said that is 
better to write the application directly with Javascript that may I'm not 
agreed 100%. So guys, is there any solution, best practice, limitation or 
restriction using GXT/GWT ? Or it can't be helped ?

Honestly is fun using GWT/GXT, but I'm looking a performance solution too.

Regards,
Bowie

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/z2WivZfhUOsJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: getUrl does not return image.

2012-03-26 Thread dodo dard
You should give more info about this problem, what is not working is 
unclear to me.

Regards,
Bowie
=
www.html5bydemo.com

Le dimanche 25 mars 2012 00:01:18 UTC+1, stymie a écrit :
>
> I have the following code and it does not seem to be working. Not sure 
> what the trouble might be though? 
>
>
> if(soundImage.getUrl().equals(​GWT.getModuleBaseURL()+"/​soundOn.png")){ 
> Window.alert("YEP IT DOES"); 
> soundImage.setUrl("soundOff.​png"); 
> setSound("off"); 
> }else{ 
> soundImage.setUrl("soundOn.​png"); 
> setSound("on"); 
> }

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/GDuFeeOVXOEJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: LocalStorage not working in HTML5 app

2012-03-21 Thread dodo dard
You can test and look how to use HTML5 in : www.html5bydemo.com

Le mardi 13 mars 2012 02:49:59 UTC+1, stymie a écrit :
>
> I am using phonegap to wrap a HTML5 app. I am using GWT's localstorage 
> mechanism. When I add this to my project I just get a blank page. But 
> if I remove the localstorage code it works. It does work just fine in 
> my desktop browser however, but once I put it on the phone Blank 
> Page. 
>
> Is there some problems with GWT local storage on Mobile?


Le mardi 13 mars 2012 02:49:59 UTC+1, stymie a écrit :
>
> I am using phonegap to wrap a HTML5 app. I am using GWT's localstorage 
> mechanism. When I add this to my project I just get a blank page. But 
> if I remove the localstorage code it works. It does work just fine in 
> my desktop browser however, but once I put it on the phone Blank 
> Page. 
>
> Is there some problems with GWT local storage on Mobile?

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/miqvw_k4iRYJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: rpc call

2012-03-19 Thread dodo dard
No I think there is no method that can do that, the RPC is asynchronous. 
You should create a callback and retrieveData in the callback instead.

Bowie
=
www.html5bydemo.com 

Le lundi 19 mars 2012 04:22:52 UTC+1, tong123123 a écrit :
>
> as gwt has no java pattern class and so I want to use server validation, 
> at first, my code is 
> if (!validate()_{
>
> }else{
>   retrieveData();
> }
>
> the validate() method is only client side validation first, but now I need 
> add rpc server validation test, so I think if the server validation rpc 
> call is non-blocking, then maybe 
> there is server validation error, but the client side code already run to 
> the else part and run retrieveDate(), any method to ensure the validate() 
> method is completed before retrieveData() is called?
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/a9Xh7NFlwxoJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Playing video with Gwt

2012-03-16 Thread dodo dard
You can create a wrapper that call javascript API of HTML5 Video.
Look how you can do it in www.html5bydemo.com video section.

Le vendredi 16 mars 2012 10:39:41 UTC+1, Ahmet Dakoglu a écrit :
>
> Anyone can give a suggestion on how to play video files within  Gwt beside 
> Flash ?, So far i ' ve tried bst player and 
> http://code.google.com/p/gwt-html5-video/
>
> On Thu, Mar 15, 2012 at 9:12 PM, Sebastian Gurin wrote:
>
>> tipically flash based video players will only support the flv and mp3 
>> (audio) formats, regards
>>
>> On Thu, 15 Mar 2012 18:40:00 +0200
>> Ahmet Dakoglu  wrote:
>>
>> > Hi All,
>> >
>> >I am trying to play video files and i decided to use bst player, it 
>> is
>> > ok with YouTubePlayer with given url but i can not play such as, .avi ,
>> > .mpeg ,mpg files which are on my local drive. I serve them in a servlet 
>> to
>> > VLCPlayer and FlashMediaPlayer of bst player but it does not work too.
>> >
>> > What am missing here and what can else be used for playing video files 
>> in
>> > gwt ?
>> >
>> >
>> > --
>> > *Ahmet DAKOĞLU*
>> >
>> > --
>> > You received this message because you are subscribed to the Google 
>> Groups "Google Web Toolkit" group.
>> > To post to this group, send email to 
>> google-web-toolkit@googlegroups.com.
>> > To unsubscribe from this group, send email to 
>> google-web-toolkit+unsubscr...@googlegroups.com.
>> > For more options, visit this group at 
>> http://groups.google.com/group/google-web-toolkit?hl=en.
>> >
>>
>>
>> --
>> Sebastian Gurin 
>>
>> --
>> You received this message because you are subscribed to the Google Groups 
>> "Google Web Toolkit" group.
>> To post to this group, send email to google-web-toolkit@googlegroups.com.
>> To unsubscribe from this group, send email to 
>> google-web-toolkit+unsubscr...@googlegroups.com.
>> For more options, visit this group at 
>> http://groups.google.com/group/google-web-toolkit?hl=en.
>>
>>
>
>
> -- 
> *Ahmet DAKOĞLU*
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/0IzTx2UreukJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT PORTLET

2012-03-16 Thread dodo dard
Follow this tutorial, is within the liferay website :

http://www.liferay.com/web/guest/community/wiki/-/wiki/Main/How+to+build+a+GWT+Portlet+in+Liferay
 

Give us the feedback if there is something you dont understand.

=
www.html5bydemo.com

Le jeudi 15 mars 2012 11:33:29 UTC+1, Nitheesh Chandran a écrit :
>
> As you people suggested i have created liferay portlet and its 
> working. My actual requirement is to display the portlet in my GWT 
> application in response to a user event. I mean if i click a 
> button ,the portlet should come. How to get this portlet in my GWT 
> application ?? should i follow the same steps above ? 
>
> On Mar 13, 9:18 pm, Joseph Lust  wrote: 
> > You could also use Ext GWT. It has out of the box working examples of 
> > portlets in GWT. I found it quite simple to implement. 
> > 
> > http://www.sencha.com/examples/pages/portal/portal.html 
> > 
> > Sincerely, 
> > Joe 
> > 
> > 
> > 
> > 
> > 
> > 
> > 
> >

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/4fZRC6twOVoJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Client Server StockWathcer Sample Program

2012-03-16 Thread dodo dard
Can you give us more clues, you can find the log in your appspot admin 
dashboard.

Regards,
Bowie

=
www.html5bydemo.com


Le jeudi 15 mars 2012 21:59:17 UTC+1, Andri Firstianto a écrit :
>
> Dear All, 
>
> i try the sample program StockWatcher with client server communication 
> - RPC. 
>
> when at the development stage, it looks like okas the server 
> response by giving the stockprice. 
>
> but when deploy it using Google App Eng...to myapplication : 
> stockwatcherxx.appspot.comthe program got error 500. 
>
> please help and guide further. 
>
> TIA

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/l6OloaMDThUJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: how to link with page in gwt without update history stack?

2012-03-14 Thread dodo dard
I don't know if we can do that, because when one click on a link, browser 
native implementation is  to update history stack. It doesn't go through 
GWT.



www.html5bydemo.com


Le mardi 13 mars 2012 22:29:14 UTC+1, mars a écrit :
>
> hi, 
>
> my gwt page has link within itself, like normal html page 
> B 
> point to 
>   
> B 
>
> within the same page, but i don't want to update the 
> history stack by appending '#b' to the end of url. how can 
> i do that? I used anchor instead of hyperlink. 
>
> thanks. 
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/ouIoz4Eh84AJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: File download and Exception handling using a servlet.

2012-03-14 Thread dodo dard
Well I found something interesting related to this.

Try to look at this.
https://groups.google.com/forum/?fromgroups#!topic/google-web-toolkit/5TePQVFsSfg
 


=
www.html5bydemo.com

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/pyveSVxbmssJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT add JARS

2012-03-14 Thread dodo dard
Hello Vincenz,

Yes you can put those jar into a server. Depends on what server that you 
use, for example if you using tomcat you can put it into 'common/lib' 
(depends on tomcat version).
So look at your server specification.

Dodo

==
www.html5bydemo.com  

Le mardi 13 mars 2012 21:06:51 UTC+1, Vincenz Mössenböck a écrit :
>
> Hello, 
> I'm a student at the HTL Wels and I'm trying to learn myself some GWT. I 
> brought everything running, but there is still st what really annoyes me. I 
> always have to copy all the jars like hibernate jars and postgresql jars to 
> the Webinf .lib folder. Is there a way where I can add these jars to a 
> server or st i just can t find where to put them.
> Can somebody pls help me?
>  
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/rWO94PV0KKEJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: File download and Exception handling using a servlet.

2012-03-14 Thread dodo dard

>
> Hi Appien
>

Ho do you call the servlet ?

 
http://www.html5bydemo.com/  

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/WeXfqz5OpVgJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: RichTextArea height size

2012-03-14 Thread dodo dard
The height of an html textarea is define by number of colonne, not the
content of the area it self.
So I think you cant not set it with 100%, try with pixel.

Dodo


www.html5bydemo.com

On Mar 13, 1:17 pm, Saik0  wrote:
> Hi @all,
>
> why could i change the width of the RichTextArea with css but not the
> height? What i'm missing :-\ ?
>
> Source:
> RichTextArea area = new RichTextArea();
> area.setSize("100%", "100%");

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT PORTLET

2012-03-12 Thread dodo dard
I'm just repeating what @Viktor said :
1) Create your portlet (without GWT)

If you don't know how to create a portlet, it is a big question : you
should looking for a proper portlet tutorial.
It cannot be answer in the email like that.

Use Spring MVC for example, it can help you to do that.

http://static.springsource.org/spring/docs/2.0.x/reference/portlet.html

And then ..
2) Add a GWT in your portlet body by putting :






==
http://www.html5bydemo.com/

On Mar 10, 8:43 am, Nitheesh Chandran 
wrote:
> Can you tell me more specifically ? I want to create a portlet then
> integrate that with GWT app. How to create portlet ,then how to
> integrate it with gwt app ?
>
> On Mar 9, 3:26 pm, Nitheesh Chandran 
> wrote:
>
>
>
>
>
>
>
> > Sorry gwt-portlet.jar
>
> > On Mar 9, 3:20 pm, Nitheesh Chandran 
> > wrote:
>
> > > Hello ,
> > > I want to create portlet using GWT. I searched in the Internet and
> > > downloaded get-portlet.jar. But the hello world app failed. Is there
> > > any other way for creating portlet in GWT. ? Helps will be
> > > appreciated. Thanks in advance.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: File download and Exception handling using a servlet.

2012-03-12 Thread dodo dard
Helo,

Well it is a delicate subject to handle. There is no default method to
deal with the error result.
A way to approach this, is by testing the servlet response. The
fastest is to make sure that there is no "ERROR CODE" (404, 503 ...)
in resultHtml.
But this make your application depends on your servlet container
implementation. If you can rewritte your ServletReponse, then you can
decide your own error code and how to handle it.

Hope this help you,
Bowie

http://www.html5bydemo.com/

On Mar 12, 11:19 am, Appien  wrote:
> Hi guys,
>
> In my GWT application the user can download a PDF file by using a servlet.
> To start the download I create in GWT a hidden Frame Object which calls the
> servlet. The happy workflow path works great however I want give the user
> some feedback when generating the PDF file fails. Since the result of the
> servlet call gets ‘printed’ in the Frame object, the printed exception also
> appears in the hidden Frame and not e.g. by a popup for the user.
>
> Unfortunately I don’t see a way so the servlet throws directly exceptions
> to the AsyncCallback of GWT.
>
> I’ve the following pseudo code for handling my exception.
>
> My questions are the following:
> - Is this the right way to do exception handling for servlet exceptions in
> GWT?
> - If not, which approach should I use for this?
>
> Many thanks for all the help!
>
> Albert

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: GWT & Spring

2012-03-12 Thread dodo dard
Hi,

You can also try this framework, I never had a change to use it, but a
friend of mine already used and its works pretty well :

http://code.google.com/p/spring4gwt/




==
http://www.html5bydemo.com/

On Mar 9, 8:27 pm, Akram Moncer  wrote:
> @Filippo De Luca
> i undersand what u mean but i'm a beginner in dévloppment so can u
> give me a tutorial or a video that can show me how can i exactelly do
> to integrate spring and GWT , thinks.
>
> 2012/3/9, Filippo De Luca :
>
>
>
>
>
>
>
>
>
> > Usually I implement the Service interface in a Spring bean, and I write the
> > RemoteServlet implementation delegating all method to the Spring bean.
> > Because the servlet is outside Spring transactional demarcation. You an
> > also use threadlocal to pass request and response to the Spring bean (as
> > GWT do).
>
> > On Friday, March 9, 2012 3:33:19 AM UTC, Xybrek wrote:
>
> >> On 3/8/2012 11:33 PM, Akram Moncer wrote:
> >> > hello everybody;
>
> >> > can some one help me and give me how can i create webapp with spring
> >> > framwork on back-end and GWT on front-end ?
>
> >> > --
> >> > Akram MONCER
> >> > Personne
>
> >> > --
> >> > You received this message because you are subscribed to the Google
> >> > Groups "Google Web Toolkit" group.
> >> > To post to this group, send email to
> >> > google-web-toolkit@googlegroups.com.
> >> > To unsubscribe from this group, send email to
> >> > google-web-toolkit+unsubscr...@googlegroups.com.
> >> > For more options, visit this group at
> >> >http://groups.google.com/group/google-web-toolkit?hl=en.
>
> >> In most cases, Spring code is in the GWT RPC (server-side code). Best
> >> approach would be through maven, also you might want to use Spring STS
> >> Plugin if you are using Eclipse.
>
> >> If you are able to have your GWT project a "Spring nature" then on your
> >> GWT RPC code, you can apply the standard Spring codes, i.e
> >> in your ServiceImpl code you can override:
>
> >> @Override
> >> public void init() ...
> >> {
> >>   super.init();
> >>   WebApplicationContext ctx =
> >> WebApplicationContextUtils.getWebApplicationContext(getServletContext());
> >>   // Beans
> >>   dao = (MyDao)ctx.getBean("myDao");
> >> }
>
> >> @Override
> >> public void doSomething() {
> >>   String something = dao.getSomething(...);
> >> }
>
> >>  From here, you can use the beans to do something your app need to
> >> accomplish.
>
> >> Of course you should fix your applicationContext.xml and web.xml which
> >> you can easily search the web on how to do this.
>
> >> This is just the basic way to integrate GWT and Spring, as the topic is
> >> very broad, you can integrate other complex things like Spring
> >> authentication etc.
>
> >> Hope this helps.
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Google Web Toolkit" group.
> > To view this discussion on the web visit
> >https://groups.google.com/d/msg/google-web-toolkit/-/_fMVfXDgoaoJ.
> > To post to this group, send email to google-web-toolkit@googlegroups.com.
> > To unsubscribe from this group, send email to
> > google-web-toolkit+unsubscr...@googlegroups.com.
> > For more options, visit this group at
> >http://groups.google.com/group/google-web-toolkit?hl=en.
>
> --
> Akram MONCER
> Personne

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: IE 8 and status code error 12030 - 12152 Options IE 8 and status code error 12030 - 12152 Options IE 8 and status code error 12030 - 12152 Options

2011-12-22 Thread dodo dard
Hi Khan

I would like to say good job on your complete analyse of the problem.
Well we have this problem too in our project. But it only occurred in
production because of their network latency nature.

Have you managed to reproduce it during the test ? If you have, how do
you do that ?

Regards.

On Dec 14, 6:01 pm, Khan  wrote:
> The status code in the error is the status code returned by IE after
> our application client (browser) submits a post request. Besides the
> status code 12031, we've also experienced codes, 12030,12152, etc.
> These codes are returned from the Windows Internet application
> programming (WinInet) API from windows OS. Here is a 
> linkhttp://support.microsoft.com/kb/193625to see all about the WinInet
> error codes. Most of these error translate to something like 'client
> connection with the server is terminated'. Below is a screen shot of
> what I saw debugging using HTTPWatch. This error is not reproducible
> at will but is commonly reproducible after few minutes of activity on
> the web. This only happens with IE ( so far all versions). Supposed to
> be fixed in later version of IE.
>
> I can't cut and paste the image here from HTTP Watch but I will type
> it
> 00:00:51.411   2.230  0  POST  ERROR_HTTP_INVALID_SERVER_RESPONSE
> *      https://domainname/contextroot/remote/event
> Notice the  '0' as the size of the content , the error message and
> the  * for the content type for this request that failed.
>
> IE browser is running into issues with the HTTP 1.1 keep alive and
> persistent connection feature. HTTP persistent connection is the
> feature to reuse the same TCP connection to send and receive multiple
> HTTP requests/response. For more detail 
> seehttp://en.wikipedia.org/wiki/HTTP_persistent_connection. The
> connection could be open or keep alive by a set amount of time defined
> by the web server and ours is set to 10 seconds in our environments.
> Given that there is a known bug in IE which causes the body from the
> POST requests to go missing if the server reset the connection -the
> problem may be happening when a POST request is made right before the
> keep-alive time-out expires and there is a slight network latency -
> the web server will reset the connection and force IE to resend the
> request. This time IE will forget to send the body(See size 0 above)
> but will still send the old content-length in the Header (see sent
> header below). This makes the server waiting for the body to arrive
> until a read time-out occurs and eventually we get the error. You may
> read this explanation also 
> herehttp://www.eggheadcafe.com/software/aspnet/35848769/xmlhttprequest-po...
> . Also this issue causes random error 500 in Apache server 
> (seehttp://www.experts-exchange.com/Software/Server_Software/Web_Servers/...
> ) and we've also experienced issues with random error 500 - this could
> be the same cause.
>
> Header information for the above failed request* (Request-Line) POST /
> MyRx/remote/event HTTP/1.1
> Accept */*
> Accept-Encoding gzip, deflate
> Accept-Language en-us
> Cache-Control no-cache
> Connection Keep-Alive
> Content-Length 398 - *notice this content length
> Content-Type text/x-gwt-rpc; charset=utf-8
> 
> ...
>
> Solution options
> Increase the web server keep alive time out. This may have an adverse
> side effect on request throughput of the web server. Generally set for
> a value between 5-10. We increased it to 20 without any adverse
> effect.
> Inject the KeepAlive:none parameter in the header for long running
> requests
> Some retry mechanism to identify these failed requests and resubmit
> them without user knowledge
> Hope IE fixes this issue some time.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Css Calendar using GWT

2010-07-25 Thread dodo dard
Hello,

I would like to present my new gwt-application, css-calendar. If you
know zen garden, the idea of my application is the same. I'm hoping
that people will join to my cause and share their css design through
this application.

And I would like also your opinion of this application.
You can test it in :
http://css-calendar.appspot.com/

Thanks in advance

-- 
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+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Multi-Watch GWT

2010-06-07 Thread dodo dard
Hello,

Thx for the interest, yes you can add some video in youtube by copying
embeded video. But not only youtube but others too (dailymotion etc).

2010/6/7 mariyan nenchev 

> I think it is possible to add youtube videos. Just go to some video in
> youtube right click and copy embeded video.
>
> --
> 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+unsubscr...@googlegroups.com
> .
> For more options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>

-- 
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+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Multi-Watch GWT

2010-06-07 Thread dodo dard
Hello,

I would like to show you my project MultiWatch GWT : 
http://multi-watch.appspot.com/

It use GWT / GAE technology.

Please give me your opinion about this project. It isn't final yet,
because I'm waiting feedback from user.

Thanks.

-- 
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+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.