Re: Official tutorial of how to create GWT module?

2010-08-05 Thread rudolf michael
http://code.google.com/webtoolkit/doc/1.6/tutorial/create.html http://code.google.com/webtoolkit/doc/1.6/tutorial/create.htmlif you have the GWT Eclipse plugin installed then all you you need to do is New Google application project, add the project name and package and hit the finish button as

Re: i18n translations

2010-08-05 Thread aditya sanas
i can help u for marathi and hindi. -- Aditya On Thu, Aug 5, 2010 at 5:40 AM, igor mejia igorme...@gmail.com wrote: if you can i can help you with spanish 2010/8/4 ale aleee...@gmail.com Hi everybody, I'm finishing to develop a web application with GWT + GAE, and I want to publish in

Re: instance of Servlet in web.xml

2010-08-05 Thread lam
Hi, Thank you for answereing Currently google app engine. Does it matter? On Aug 4, 6:00 pm, igor mejia igorme...@gmail.com wrote: what server have you have? 2010/8/4 lam lama.gh...@gmail.com Hi, I need to get and instance of the servlet specified in web.xml. I have a main running in

Re: Official tutorial of how to create GWT module?

2010-08-05 Thread hezjing
Hmmm ... I have developed some GWT applications, and I'm thinking to move the common functionalities into modules (or libraries). What is the steps to create these common modules, and then shared by the GWT applications? On Thu, Aug 5, 2010 at 2:13 PM, rudolf michael roud...@gmail.com wrote:

Re: Official tutorial of how to create GWT module?

2010-08-05 Thread andreas
Not sure about an official tutorial... BUT, just have a look at other GWT modules (look into the GWT jars or for example gwt-dnd, whatever...): Modules include: - the source (IMPORTANT: not only class files, the java files!) - the module descriptor (*.gwt.xml) - any static resources you want to

Re: instance of Servlet in web.xml

2010-08-05 Thread jocke eriksson
I would say RMI is your only option to call methods directly. But to fill the queue you could use any transfer protocol. 2010/8/5 lam lama.gh...@gmail.com Hi, Thank you for answereing Currently google app engine. Does it matter? On Aug 4, 6:00 pm, igor mejia igorme...@gmail.com wrote:

Re: i18n translations

2010-08-05 Thread jocke eriksson
I can help you with swedish 2010/8/5 aditya sanas 007aditya.b...@gmail.com i can help u for marathi and hindi. -- Aditya On Thu, Aug 5, 2010 at 5:40 AM, igor mejia igorme...@gmail.com wrote: if you can i can help you with spanish 2010/8/4 ale aleee...@gmail.com Hi everybody, I'm

Re: i18n translations

2010-08-05 Thread ale
Yes! Thanks. I write you a mail! On 5 Ago, 02:10, igor mejia igorme...@gmail.com wrote: if you can i can help you with spanish 2010/8/4 ale aleee...@gmail.com -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Re: i18n translations

2010-08-05 Thread ale
Great! I'll write you a mail. Excuse the ignorance, I am ashamed, but Hindi and Marathi languages are Right-to-Left? thanks On 5 Ago, 09:05, aditya sanas 007aditya.b...@gmail.com wrote: i can help u for marathi and hindi. -- Aditya On Thu, Aug 5, 2010 at 5:40 AM, igor mejia

Re: login/logout/remember

2010-08-05 Thread fermierul
To me it seems there is a problem with your approach. It looks like PadroesSession is a singleton class per entire server application, and it holds only one request and session a time, while in a multi-client application you will have a session for each client connection. This means that: - if

Re: instance of Servlet in web.xml

2010-08-05 Thread Shawn Brown
I need to get and instance of the servlet specified in web.xml. I have a main running in the same JVM as the servlet. I think you need to understand GAE. I don't think you know what JVM you are running in GAE and that it can be killed at any time and that what your client sends may be handled

Re: Wave Demise.........sad day for GWT

2010-08-05 Thread monkeyboy
Does anybody know if they will include some (or all) of the widgets we have seen in Wave to GWT? Wave has some pretty cool widgets. On Aug 5, 4:10 am, retro retrofit.br...@gmail.com wrote: Well one great news is INSTANTIATIONS...I am pretty sure their GWT designer team has some

Re: instance of Servlet in web.xml

2010-08-05 Thread lam
How would I do it if I was running on a different server, Jetty or Tomcat? Thank you for answering On Aug 5, 11:18 am, Shawn Brown big.coffee.lo...@gmail.com wrote: I need to get and instance of the servlet specified in web.xml. I have a main running in the same JVM as the servlet. I think

CalendarService application showing total meeting from Google Calendar

2010-08-05 Thread ichi
Hai, I'm a newbie trying this piece of code to show the total schedule we have from Google Calendar, I've already import several package and put the necessary jar files in Reference Library, But I still have several things error. Could you tell me what I miss? I put the error message in the line

Re: instance of Servlet in web.xml

2010-08-05 Thread lam
I need to fill a queue on the server. I wanted to do it in two ways, 1) what I asked about 2) have the main start the server and fill the queue from that instance(I don't know how to do this -- working on it) What should I do?? I am calling the devMode.main from a main class, not launching as

Re: instance of Servlet in web.xml

2010-08-05 Thread lam
I need to fill a queue on the server. I wanted to do it in two ways, 1) what I asked about 2) have the main start the server and fill the queue from that instance(I don't know how to do this -- working on it) What should I do?? I am calling the devMode.main from a main class, not launching as

Re: instance of Servlet in web.xml

2010-08-05 Thread lam
I need to fill a queue on the server. I wanted to do it in two ways, 1) what I asked about 2) have the main start the server and fill the queue from that instance(I don't know how to do this -- working on it) What should I do?? I am calling the devMode.main from a main class, not launching as

Re: Browser cache issue

2010-08-05 Thread shahid
Ok I have checked and I can see that the nocache.js is being cached by the browser. How do I make it so it doesn't cache that ? On Aug 4, 7:51 pm, André Moraes andr...@gmail.com wrote: GWT does the so-called perfect-cache. Since everything is compiled and the script files is generated by

Instantiate composite on the server side

2010-08-05 Thread Stephan T
For several reasons I need to instansiate a Composite on the server side that is in the client package. Is it possible? Now I think I'm getting class not found exception when trying... -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

Re: Browser cache issue

2010-08-05 Thread André Moraes
That depends on what webserver your are using. Read the docs on how to configure Cache-Control and ETag for static files. Hope it helps, -- André Moraes Analista de Desenvolvimento de Sistemas andr...@gmail.com http://andredevchannel.blogspot.com/ -- You received this message because you are

About Runtime.exec()

2010-08-05 Thread Yingwei HU
Would anybody like to tell me how to recall existed .exe in server- side? Where to add these codes? I can not use runtime.exec(command). Thank you very much. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email

How to integrate an open source web app into a GWT application

2010-08-05 Thread Anita
Hi, I’m new on GWT and i’m trying to do something but don´t know how…. My app has 2 panels (HorizontalSplitPanel and VerticalSplitPanel), in a way that i have my window divided in 3 parts. In each part i want 3 differents app to be runing. One of them is an open source web app, written in

Re: i18n translations

2010-08-05 Thread Константин Ксенофонтов
ale, send a file. i will help you with russian in several days if you want. 2010/8/5 ale aleee...@gmail.com: Hi everybody, I'm finishing to develop a web application with GWT + GAE, and I want to publish in multiple languages. The application is about sport, and the message file is about

Error on establishing RPC in connecting database

2010-08-05 Thread CLEE
I am new in GWT and I wrote a program which initate a RPC to connect to database. I tried it in Eclipse Host mode. However, it produces the following error and I have no idea how it is related to FilePermission problem. I would like to know if someone can help me to figure it out the problem (is

404 Error on RPC Call

2010-08-05 Thread CLEE
I am new in GWT and I tried to create an application on testing RPC. It prompts 404 Error (RequestURI=sample/myService) in Host Mode of Eclipse. Can anyone help me? Below are my codes. Thank you very much. **Sample.java *** (Client program to call RPC) public

com.google.gwt.user.client.rpc.InvocationException:

2010-08-05 Thread burricall
Hi folks. I was programming my first GWT application. Now I have the following error message : com.google.gwt.user.client.rpc.InvocationException: The strange part is that after the colon no additional information about the error is mentioned. Description: 1) From the client I call a rpc

relative urls in html retrieved by RequestBuilder

2010-08-05 Thread Ezequiel Block
Hi list, Question, once I do retrieve an html page from server using RequestBuilder and showing it inside a HTMLPanel relative url paths like IMG src=./images/somepic.jpg wont work. the path definition in html file is ok from the point of view of html file location, but not from current browser

GWT is it fully compatible with ie6 ?

2010-08-05 Thread Nicolas KONDRATEK
Hi, I write an application in GWT, but I find many differences between IE 7/8 and IE6. Gwt is it fully compatible with ie6 ou Google stop IE6 support ? Thanks you. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

Does GWT support HTML5???

2010-08-05 Thread Faraj khasib
I am final year University student and planning to do something like GWT but exports output will be html5 It will support doing games also 2d and 3d in Java and the compiled version will be html5 AS So i was wondering has Google done something similar to that ??? -- You received this message

Re: Wave Demise.........sad day for GWT

2010-08-05 Thread Steve Wart
Holy smokes, first SpringSource acquires GemStone, now this. Did someone in Silicon Valley suddenly figure out that Smalltalk is cool? :) FWIW, I've had far more success getting JSON to work with Smalltalk and GWT than we ever had with 13 years of Java and XML. Coincidence? On Wed, Aug 4, 2010

viewing server log in eclipse

2010-08-05 Thread newguy
Hi I'm using GWT App engine in eclipse. I have come across a problem when I tried to connect to the database. I think probably there is some code causing error at the server side and GWT displays com.google.gwt.user.client.rpc.StatusCodeException: The call failed on the server; see server log

Re: Setting a height in % within a 'rounded-corners' panel

2010-08-05 Thread Johannes Lehmann
Admittedly this was a bit unclear in my description: I had used layout panels and inside them, a decorator panel. Apparently it is a given with HTML and CSS that a height within a table cell is ignored. So in my situation, the table cell has the correct 100% height, but it doesn't seem possible

Re: GWT Confluence Plugin

2010-08-05 Thread mk
There was one a nice article about this topic from the creators of the Confluence Taskdock Plugin (that is built using GWT) http://open.taskdock.com/display/confluence/Developing+a+GWT+Application+for+Confluence but the link is dead now. David Peterson from Customware has released a support

Re: Server support for speed traces in GWT 2.1

2010-08-05 Thread Steve Wart
Thanks Chris - I'll check these out. I'm working on a very complex legacy app with an elaborate mechanism for collecting timing data, so it will be fun to see how I can merge it into the awesome speedtracer UI. Cheers Steve On Wed, Aug 4, 2010 at 1:32 PM, Chris Conroy con...@google.com wrote:

Re: Problems extending CalendarView

2010-08-05 Thread ctasada
I did it in my code without too much problems, but I agree with you that's quite annoying. Steps: 1.- Create a new package in your code: com.google.gwt.user.datepicker.client Copy the DefaultCalendarView.java from the GWT repository (I'm not sure which version I used, but was the one from 2.0)

Re: instance of Servlet in web.xml

2010-08-05 Thread igor mejia
Well you can use spring to configure the queues and in that way you can have comunications whit the server i make something like that whit WAS i have 2 queues and i meke the conections throw jndi and when i run my app in devmode i use i connection standalone and it works very well this is my

Re: Instantiate composite on the server side

2010-08-05 Thread Mikael Couzic
Sounds like you violated the SRP principle... If I got it right, Composite depends on the DOM, which doesn't exist server-side, so I don't think it is possible. A solution would be to encapsulate the functionnality you want to use server-side in a POJO. Your composite would then delegate to the

Re: i18n translations

2010-08-05 Thread ale
Of course I want!!! Thank you! On 5 Ago, 10:47, Константин Ксенофонтов phone0...@gmail.com wrote: ale, send a file. i will help you with russian in several days if you want. 2010/8/5 ale aleee...@gmail.com: Hi everybody, I'm finishing to develop a web application with GWT + GAE, and I

Re: How to build a rules-based form controller for a dyn. form in GWT

2010-08-05 Thread salk31
Hello Alessandro, I doubt you are going to find much more off the shelf to solve the use case you have. If I had similar spec to you (complicated interactive registration that needs to happen on the client) then GWT seems like a good fit. Depends a bit how often your registration fields and

RE: Does GWT support HTML5???

2010-08-05 Thread Feldman, Nir (48Upper)
Not that I know but you should write components for GWT that will generate the correct HTML5 elements. -Original Message- From: google-web-toolkit@googlegroups.com [mailto:google-web-tool...@googlegroups.com] On Behalf Of Faraj khasib Sent: Thursday, August 05, 2010 11:20 AM To: Google

Re: How to disable menu items?

2010-08-05 Thread Alan Hadsell
On Aug 4, 10:48 pm, Magnus alpineblas...@googlemail.com wrote: How is the mechanism when extending the standard styles? My experience is that own styles are overwritten by standard.css. Take a look at the menu sample app, contained in the gwtlib project.

Re: GWT + Hibernate + MySQL + Tomcat + Ant + Log4j + SVN; is this possible all together?

2010-08-05 Thread Yau
Yes, of course you can. That's what my project was used to me. But now I have switched to jetty from tomcat as the default app server in eclipse is jetty. And once in a blue moon, there is some subtle difference between jetty and tomcat which makes it so hard to debug. GWT is NOT only for

Re: Load GWT SerializationPolicy

2010-08-05 Thread Yau
I followed this example. And the simple answer to your question is to copy the rpc file to a simple name under your classpath. e.g. myservice.rpc http://www.techhui.com/profiles/blogs/simpler-and-speedier-gwt-with So long if you don't change the class names of the objects which pass through

Get week number from a Date object

2010-08-05 Thread Glimpse
Hello all, I'd like to know if there is an easy way to get the week number from a Date object. In pure Java, the Calendar class does the trick via a call to get(Calendar.WEEK_OF_YEAR); but the Calendar class is not available in GWT. Any idea? -- You received this message because you are

servercontext and GWT

2010-08-05 Thread lam
Hi, Can you use server context with GWT?? If I define a servlet in the web.xml file and then add a server context, can I access the server instance from another class? How could I do this? Thank you -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Anyone know of any Android History token problems?

2010-08-05 Thread darkflame
I've noticed the browser on my Android phone doesn't seem to fire some history events for my little online game; http://lostagain.nl/Jarg%20Demo/AMemorableDay/AMemorableDay.html (In a desktop browser like Chrome or Opera clicking the links is exactly like entering text in the box, but on my HTC

Re: GWT is it fully compatible with ie6 ?

2010-08-05 Thread darkflame
GWT does an amazing job with IE6 compatibility. It irons out most of the browser differences completely. For the most part things just work. Don't expect performance very good though. Also, I have had problems with using hash tags in iFrames under IE6, but thats not really gwt's fault. On Aug 5,

Re: servercontext and GWT

2010-08-05 Thread jocke eriksson
I think you are on the wrong track here. Create a URLConnection to the servlet and send your data as a string, then convert that string to objects or use a MVC framework like struts or stripes that will do that for you. 2010/8/5 lam lama.gh...@gmail.com Hi, Can you use server context with

Component/Widget swapping technique (accessible v convenience v beta)

2010-08-05 Thread dhartford
Hey all, Checking to see if someone has already solved this challenge -- You have a widget/component, like a table of data you display. The data content will always be consistent. But, you may have users who want to identify that they want the: *WCAG accessible version of the table. or

Re: Wave Demise.........sad day for GWT

2010-08-05 Thread darkflame
The sad part is, its the Wave Federation Protocol that was the big thing and the real alternative to Facebook. I worry now is that we might well get a rebranding Buzz in a few years, but the hopes of an open decentralized system are just gone. Email will be all we ever have. I do appreciate a lot

Please help - GWT application will not load in IE!

2010-08-05 Thread Xandel
Hi there, Can somebody please assist me - I have spent the last 3 months writing a GWT application and I cannot get it to work in Internet Explorer. It's my first GWT application. It works fine in Firefox and Chrome. In internet explorer it just doesn't load up. Here are some details: I am

Re: Wave Demise.........sad day for GWT

2010-08-05 Thread Chris Ramsdale
Thanks for all of the responses, even the criticism is highly beneficial. In regard to the Wave announcement, we're certainly sad, but do realize that many features (Code Splitting, SOYC, another spin on MVP+GWT) were born out of the experiment. Where possible, we're definitely interested in

Re: GWT is it fully compatible with ie6 ?

2010-08-05 Thread lineman78
This is a misconception about GWT. It gives you the tools to handle IE6 problems, but it doesn't completely protect you from all of IE6's problems. The built in widgets do a pretty good job at dealing with IE problems and the layout panels do promise to act the same on all browsers, but the

Re: Need Help!!!About the difference between smartgwt and gwt for component Window

2010-08-05 Thread lineman78
You need to enable modality in the smartGwt window: winModal.setIsModal(true); winModal.setShowModalMask(true); On Aug 4, 8:41 pm, JIE SUN sunjie1...@gmail.com wrote: Hi guys: I had difficult to set up a smartgwt window as sam functionality as the one in gwt. Basically, I just need to click

Who knows how to execute native code in server-side

2010-08-05 Thread 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 can I do to solve this problem? Thank you. -- You received this message because you are subscribed to

Re: Please help - GWT application will not load in IE!

2010-08-05 Thread Katharina Probst
Maybe it's just me, but it's kind of hard to tell from your description what could be wrong. I do see that you're using RootPanel mixed with LayoutPanel. Try adding the LayoutPanels to the RootLayoutPanel (something like RootLayoutPanel.get().add(myMainLayoutPanel)). Also, I assume you compiled

Re: How to build a rules-based form controller for a dyn. form in GWT

2010-08-05 Thread A.Augustini
Hello Sam: First of all, thanx a lot for your reply. If I had similar spec to you (complicated interactive registration that needs to happen on the client) then GWT seems like a good fit. Yes indeed, your spec is comparable mine: I've to build an *ordering form* with injected rules, which are

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

2010-08-05 Thread Chirayu Diwan
Hi Everyone, I'm a novice at GWT, started working on it in internship and its now coming to an end. I was asked as my internship assignment to make with GWT, the client- side of this huge project they have for internal usage. This project's client-side had been in 'HTML+JSP' till now. Now, I

Re: GWT is it fully compatible with ie6 ?

2010-08-05 Thread darkflame
Put it this way, I very rarely have to browser sniff in my code, and I've done some fairly extensive gwt products that run on IE6. I think your underestimating just how much it compensates for ie's problems, even with normal widgets. While you can certainly manually take advantage of Deferred

Static CSS rules reference in UiBinder xml

2010-08-05 Thread Thamizharasu S
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 refer the css rules directly in the ui binder xml file.

Re: GWT is it fully compatible with ie6 ?

2010-08-05 Thread lineman78
I don't disagree with you. Google provides implementations that work well in almost all configurations EXCEPT the panels. People expect the layout panels to act the same in all browsers and they don't. In most cases they are just extensions of a table. If you don't want to think about any

Any Good GWT Photo Uploaders?

2010-08-05 Thread GKotta
Are there any good GWT photo uploader applications out there? The app that I am making involves users uploading as many as 150 photos. So I was wondering if there are any GWT photo uploaders that can handle that many photo uploads all at once. Thanks -- You received this message because you are

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

2010-08-05 Thread lineman78
If you are using app engine, I don't think this is possible. I have successfully made native calls in glassfish though using System.load(), but you need to add the library path to the native lib classpath in the admin console. Also, you will run into the problem where the library is loaded by

relative urls in html retrieved by RequestBuilder

2010-08-05 Thread Ezequiel Block
Hi list, I'm retrieving an html page from server using RequestBuilder and showing it inside a HTMLPanel, this works ok, but relative url paths like IMG src=./images/some.jpg defined in html file wont work. the path definition in html file is ok from the point of view of html file location, but

Re: i18n translations

2010-08-05 Thread Fernando
I can help you with portuguese (from Brazil). On 5 ago, 10:55, ale aleee...@gmail.com wrote: Of course I want!!! Thank you! On 5 Ago, 10:47, Константин Ксенофонтов phone0...@gmail.com wrote: ale, send a file. i will help you with russian in several days if you want. 2010/8/5 ale

Re: i18n translations

2010-08-05 Thread nino ekambi
I can help with german and french i u want Am 05.08.2010 21:42 schrieb Fernando spiderkens...@gmail.com: I can help you with portuguese (from Brazil). On 5 ago, 10:55, ale aleee...@gmail.com wrote: Of course I want!!! Thank you! On 5 Ago, 1... -- You received this message because you are

MacBook ok for GWT development?

2010-08-05 Thread jones34
I have a 3 1/2 year old MacBook with 6GB RAM that I use for GWT development. Everything works great except that I don't even attempt to do client-side test automation because it is s painfully slow. The startup overhead for server side testing is a little annoying but certainly bearable. I'm

Re: MacBook ok for GWT development?

2010-08-05 Thread nino ekambi
Hi i also hav one question. Ist there a gwt development plugin for safari on mac? Thc. Am 05.08.2010 21:45 schrieb jones34 ljw1...@gmail.com: I have a 3 1/2 year old MacBook with 6GB RAM that I use for GWT development. Everything works great except that I don't even attempt to do client-side

Re: CalendarService application showing total meeting from Google Calendar

2010-08-05 Thread Fernando
the problem is the CalendarService import check if it is the right one and also your gdata library version On 5 ago, 06:06, ichi ichi8...@gmail.com wrote: Hai, I'm a newbie trying this piece of code to show the total schedule we have from Google Calendar, I've already import several package and

Re: relative urls in html retrieved by RequestBuilder

2010-08-05 Thread Ezequiel Block
Upsss... sorry for double posting, I thought my first post was not received by list... On Aug 5, 4:20 pm, Ezequiel Block ezequiel.bl...@gmail.com wrote: Hi list, I'm retrieving an html page from server using RequestBuilder and showing it inside a HTMLPanel, this works ok, but relative url

Re: MacBook ok for GWT development?

2010-08-05 Thread Professor Vagner
https://dl-ssl.google.com/gwt/plugins/safari/gwt-dev-plugin.dmg -- O PLANETA É O MEU PAÍS, E A CIÊNCIA É A MINHA RELIGIÃO ! INDO AO INFINITO E ALÉM... !! -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send

Re: MacBook ok for GWT development?

2010-08-05 Thread Christian Goudreau
Nah, but there's one for firefox ! I'm using a macbook and it rocks :) On Thu, Aug 5, 2010 at 4:12 PM, Professor Vagner professorvag...@javaneses.com wrote: https://dl-ssl.google.com/gwt/plugins/safari/gwt-dev-plugin.dmg -- O PLANETA É O MEU PAÍS, E A CIÊNCIA É A MINHA RELIGIÃO ! INDO AO

Re: Problems extending CalendarView

2010-08-05 Thread ctasada
You can also take a look to my blog for more details and full code http://ctasada.blogspot.com/2010/08/gwt-extend-datepickercalendarview.html On 5 ago, 15:43, ctasada ctas...@gmail.com wrote: I did it in my code without too much problems, but I agree with you that's quite annoying. Steps:

Re: Get week number from a Date object

2010-08-05 Thread ctasada
AFAIK the only way is calculating it yourself public static int calendarWeekIso(final Date inputDate) { int thursdayDay = 4 + firstDayOfWeek; Date thisThursday = new Date(inputDate.getYear(), inputDate.getMonth(),

Re: Reflection: Get Variable Name

2010-08-05 Thread Ian Petersen
At run time, it's impossible. At compile time, you use the generator API. Back in the GWT 1.5 time frame it wasn't well documented but that may have changed since. Ian On Thu, Aug 5, 2010 at 1:42 PM, Maurice Nee lyden...@gmail.com wrote: How can I get a variable's name in GWT? How can I get

Re: GWT + Hibernate + MySQL + Tomcat + Ant + Log4j + SVN; is this possible all together?

2010-08-05 Thread Sanky
Oh really!!! that s great.This message boost up my confidence. I am trying to create a whole setup. Would you help me if I may need? On Aug 4, 6:33 am, Fernando spiderkens...@gmail.com wrote: Yes, I did a project a few months ago with everything you listed except, maybe, Hibernate I say maybe

Re: GWT + Hibernate + MySQL + Tomcat + Ant + Log4j + SVN; is this possible all together?

2010-08-05 Thread nino ekambi
How do you guys are getting a gwt app to work like a standalone app ? greets 2010/8/5 Sanky 74.san...@gmail.com Oh really!!! that s great.This message boost up my confidence. I am trying to create a whole setup. Would you help me if I may need? On Aug 4, 6:33 am, Fernando

Database and GWT

2010-08-05 Thread Diego Venuzka
Hi! After some hours without sleep to solve my compilation problem, i stop in another problem. I'll need to insert data in database, and how GWT can help with this? Or i can insert using the tradicional method with Java? Thanks =) -- Diego Venuzka -- You received this message because you are

Re: i18n translations

2010-08-05 Thread ale
I miss French! I'll send you a mail! thanks On 5 Ago, 21:45, nino ekambi jazzmatad...@googlemail.com wrote: I can help with german and french i u want Am 05.08.2010 21:42 schrieb Fernando spiderkens...@gmail.com: I can help you with portuguese (from Brazil). On 5 ago, 10:55, ale

Re: Reflection: Get Variable Name

2010-08-05 Thread Maurice Nee
Thanks for the reply. Generators seem like a lot to swallow. I'm trying to introspect a set of DTO's that I want to marshall to and from a database. I would like to be able to make use of the convention over configuration principle and have my DTO class names = table names in the database and have

Re: i18n translations

2010-08-05 Thread ale
Thanks, I wrote you. On 5 Ago, 21:42, Fernando spiderkens...@gmail.com wrote: I can help you with portuguese (from Brazil). On 5 ago, 10:55, ale aleee...@gmail.com wrote: Of course I want!!! Thank you! On 5 Ago, 10:47, Константин Ксенофонтов phone0...@gmail.com wrote: ale, send a

Re: Database and GWT

2010-08-05 Thread Maurice Nee
You have a couple of options: 1. Hibernate (or some other ORM tool) 2. JDBC 3. PHP and JSON Be prepared, the Hibernate learning curve is substantial. If you use Eclipse, you will need to install a slew of plugins for integrating Hibernate and whichever build tool you pefer, (Maven, Ant, etc.).

Re: Database and GWT

2010-08-05 Thread Maurice Nee
Sorry for the broken link. Here you go http://code.google.com/webtoolkit/articles/using_gwt_with_hibernate.html On Aug 5, 6:20 pm, Maurice Nee lyden...@gmail.com wrote: You have a couple of options: 1. Hibernate (or some other ORM tool) 2. JDBC 3. PHP and JSON Be prepared, the Hibernate

Re: Any Good GWT Photo Uploaders?

2010-08-05 Thread t.dave
try gwtupload. http://code.google.com/p/gwtupload/ i'm not sure if it can handle uploading 150 files simultaneously but it has multiple upload capability. as well, there's a separate mailing list specific to that for questions. On Aug 5, 1:43 pm, GKotta guruko...@gmail.com wrote: Are there

Re: Database and GWT

2010-08-05 Thread charlie
Don't forget iBATIS, I love this tool. Straight SQL mapped to pojo's , with iBator to reverse enginer your tables for you. Only badside is there's not much documentation, you'll need a book if you're new to it. On Thu, Aug 5, 2010 at 5:23 PM, Maurice Nee lyden...@gmail.com wrote: Sorry for

Re: Reflection: Get Variable Name

2010-08-05 Thread Maurice Nee
Also, it seems like people have made GWT Reflection Frameworks. I found one named GWT Reflection. Then there's gwt-ent or SmartGWT I guess. Any thoughts on using one of these routes? On Aug 5, 6:06 pm, Maurice Nee lyden...@gmail.com wrote: Thanks for the reply. Generators seem like a lot to

Re: Reflection: Get Variable Name

2010-08-05 Thread Ian Petersen
As GWT is client-side only it has no direct access to any SQL database (modulo whatever I don't know about client-side storage in HTML5) so generating SQL in GWT is either a waste of time or a security hole waiting to happen. Your server should definitely not be trusting SQL generated on the

Deserialization of the JSON to JAXB annotated JPA pojo's on the client side.

2010-08-05 Thread Marcin Misiewicz
Hi In my app I have JAX-RS webservices which are producing JSON response from JPA entities annotated by JAXB. I wonder is there any clever and automated way to deserialize JSON response back to JPA entities on the client side. I know that gwt comes with capabilities to manually deserialize json

Deprecation Bonanza

2010-08-05 Thread Brian
After coming back to a gwt project after about a year, holy cow, what the heck happened -- a ton has been deprecated: http://google-web-toolkit.googlecode.com/svn/javadoc/2.1/deprecated-list.html The page lists many classes will be removed in 2.0, but as the 2.1M2 build I picked up, they're still

I don't understand why this style won't work

2010-08-05 Thread Jose Luis Estrella Campaña
Hello there ! I'll keep this Question as simple as I can, just for today... I'm using UiBinders, and I've got this Widget which I want to be centered, so I'm using the margin selector, but I does not work. Here's my code Snippet: !DOCTYPE ui:UiBinder SYSTEM

add mouse handlers for document body?

2010-08-05 Thread Randy S.
I'd like to add a MouseMoveHandler and MouseUpHandler to the document's body, but haven't discovered how. Thanks in advance to anyone who can answer this. -- Randy -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

Re: Stack Panel change handlers

2010-08-05 Thread Jero
Hello! I have the same problem..but i found this can not implementd.. can body help me please!!! :) public class StackComponent extends StackLayoutPanel implements HasChangeHandlers { public StackComponent(Unit unit) { super(unit); } @Override public void showWidget(Widget widget) {

Re: ExceptionInInitializerError during an RPC call.

2010-08-05 Thread spierce7
Nevermind. Someone helped me figure this out. The problem was that my new class that was in the shared package was extending VerticalPanel, a non-serializable object. Obviously an issue. On Aug 5, 8:42 pm, spierce7 spier...@gmail.com wrote: I'm getting an error while trying to save an object to

Mysql Connector/J

2010-08-05 Thread Maurice Nee
Can someone explain to me how to get JDBC to connect to MySQL in my GWT project. Where do I put the mysql-connector-java jar? In war/WEB- INF/lib? What connection url would I have to supply to the DriverManager to connect to the database in development mode using the embedded jetty server? --

Re: Database and GWT

2010-08-05 Thread t.dave
iBATIS sounds interesting so i just looked it up... has support been discontinued as of june 2010? there's something on the top of the page saying it's been put in apache's attic, which is not something i'm familiar with but it doesn't sound promising. On Aug 5, 5:26 pm, charlie

Re: Reflection: Get Variable Name

2010-08-05 Thread Ian Petersen
Ah, that changes things. When you said DTOs, I assumed you were using GWT RPC, which requires a Java-based server side. If you want to do that then, yes, you need a servlet container. I haven't worked with GWT in nearly two years, though, so I don't know what's changed with RPC since then.

CellTree question

2010-08-05 Thread Henry HO
how do your set the child cells of the celltree to not have the little triangle next to the cell? i noticed the celltree in the bikeshed Expense Report the parent cells have the little triangles but the children do not. i tried turning off selection in the child nodes but they still have the

[gwt-contrib] Re: Public: Add default validators for the standard constraints. (issue735801)

2010-08-05 Thread nchalko
http://gwt-code-reviews.appspot.com/735801/diff/20002/26058#newcode35 user/test/com/google/gwt/validation/client/constraints/GwtCompileTest.java:35: ListClass? temp = new ArrayListClass?(12); 12 != 13. Any real reason to set the size here? No, removed. The real issue, is the test should be

[gwt-contrib] Re: Removed trim in ValueBoxBase, forcing parsers to handle trim()ing. (issue738801)

2010-08-05 Thread rjrjr
LGTM Nice! Thanks for the test. http://gwt-code-reviews.appspot.com/738801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r8467 committed - Fix for issue 1813: RootPanel.get(id) fails to set 'position:relative'...

2010-08-05 Thread codesite-noreply
Revision: 8467 Author: fre...@google.com Date: Mon Aug 2 22:47:54 2010 Log: Fix for issue 1813: RootPanel.get(id) fails to set 'position:relative' and 'overflow:hidden' Adds a development mode only GWT.log() warning message when an instance of AbsolutePanel inserts a non-statically

  1   2   >