Re: Gilead 1.3

2010-01-13 Thread philippe
I said that I was talking about the context of standard business applications. IBatis is certainly very useful in highly technical. But in a functional context, iBatis does not object-oriented programming. On 13 jan, 15:26, Matt Moriarity wrote: > Ok that is simply not true. There are cases where

Re: Working with XML on client side

2010-01-13 Thread UJ
I have no clue about the purpose of getting unique hashcode but it would be nice if you can define a custom method getHashcode() in your client code which generates a hashcode (int) based on contents (text or attributes or children) of the node. This will generate the same hashcode each time even a

Re: MultiWordSuggestOracle and HTML display

2010-01-13 Thread Fazeel Kazi
Doesn't look like you can do it. Even I had some customizations for this class. And I couldn't even do it with extending MultiWordSuggestOracle. So the only way out was recoding the entire class as per my requirements (recoding a few methods, rest of the stuff was just copy-pasted) Maybe you will n

Re: SmartGWT?!

2010-01-13 Thread Open eSignForms
This makes sense since it's reasonable to expect that for LGPL code. Don't use Hibernate, but many libraries distributed as JARs can do this easily as they don't get mixed into the source code such that you can put a new version in by just replacing the JAR and not needing any recompile of the orig

Re: SmartGWT?!

2010-01-13 Thread Sanjiv Jivan
SmartGWT has had the same clause since for a long time now. Read the actual license file - COPYING.html that is included in the SmartGWT distribution. http://code.google.com/p/smartgwt/source/browse/trunk/distro-source/core/src/COPYING.html Since most of us are not lawyers, second guessing whats

Re: GWT 2.0 Dev Mode in Eclipse when using external server - CLIENT-CERT

2010-01-13 Thread Yaakov
On Jan 13, 2:02 pm, Chris Ramsdale wrote: > On Wed, Jan 13, 2010 at 11:48 AM, Yaakov wrote: > > Hi, > > > Just started using GWT 2.0, etc... > > > I was successful in deploying the same web app to an external server > > and just added: > > ?gwt.codesvr=localhost:9997 > > > Eclipse in its "Devel

Re: SmartGWT?!

2010-01-13 Thread Open eSignForms
Well, I'm not a lawyer either, but I assume you are referencing the clause in Section 4 about combined works (the app you develop that uses GWT plus some LGPL GWT library): "You may convey a Combined Work under terms of your choice that, taken together, effectively do not restrict modification of

Re: Problem with AjaxLoader and AJAX Feed API

2010-01-13 Thread FKereki
I think you are forgetting to substitute $doc for document. Good luck! F.Kereki -- 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

Re: TabLayoutPanel...

2010-01-13 Thread Deanna Bonds
Not if you followed that link. Here is the example code from it public class TabPanelExample implements EntryPoint { public void onModuleLoad() { // Create a tab panel with three tabs, each of which displays a different // piece of text. TabPanel tp = new TabPanel(); tp.add(new

Re: TabLayoutPanel...

2010-01-13 Thread Stine Søndergaard
But is TabLayoutPanel not the new TabPanel? :/ -- 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+unsu

Re: SmartGWT?!

2010-01-13 Thread Paul Robinson
Open eSignForms wrote: > If you need the widgets now, SmartGWT seems like a fine solution, and > the LGPL is a nice license if you don't otherwise need their > server-side/enterprise features. IANAL, but I will not touch any LGPL library for use in my GWT apps. I believe LGPL is written in such a

Re: SmartGWT?!

2010-01-13 Thread ckendrick
On Jan 12, 3:43 pm, Open eSignForms wrote: > If you need the widgets now, SmartGWT seems like a fine solution, and the > LGPL is a nice license if you don't otherwise need their > server-side/enterprise features. Pure GWT just doesn't have those grids and > such yet, but it sounds like the basics

Re: Charset Problem

2010-01-13 Thread Jeff Schwab
nacho wrote: Hi, i want to put a link like this: Hyperlink lnkBackToInbox = new Hyperlink("« Back to Inbox", "#"); but when i put the link in the hosted page i get the following: � Back to Inbox Could you just use the HTML entity for the symbol, rather than the actual code-point? new Hy

Re: Different solution for deprecated event.getTarget()?

2010-01-13 Thread Thomas Broyer
On 13 jan, 21:42, Youngster wrote: > I can't find out how to replace the deprecated event.getTarget(). > I have the following code: > > @Override >         public void onBrowserEvent(Event event) { >                 Element target = event.getTarget(); >                 if (DOM.eventGetType(event

Re: TabLayoutPanel...

2010-01-13 Thread Deanna Bonds
Use TabPanel, not TabLayoutPanel. http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/com/google/gwt/user/client/ui/TabPanel.html That should make things easier. On Jan 13, 4:52 pm, Stine Søndergaard wrote: > Hmm... let me see... is something like this at all a right approach? :] > > public

Re: TabLayoutPanel...

2010-01-13 Thread Stine Søndergaard
Hmm... let me see... is something like this at all a right approach? :] public class Test implements EntryPoint { public final void onModuleLoad() { TabLayoutPanel mainTabs = new TabLayoutPanel(40, Style.Unit.PX); mainTabs.add(new HTML("Page A"), new MyTab("images/a.jpg", "Tab

Re: TabLayoutPanel...

2010-01-13 Thread Deanna Bonds
Can you ask a specific question about where you are are getting hung. Maybe some code of what you are trying to do. On Jan 13, 4:41 pm, Stine Søndergaard wrote: > I must be stupid... I simply don't get how I do it!!! >D At least not > without having my code end up as a big mess and mixture of obj

Re: TabLayoutPanel...

2010-01-13 Thread Stine Søndergaard
I must be stupid... I simply don't get how I do it!!! >D At least not without having my code end up as a big mess and mixture of objects and plain HTML... hmm... -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send e

Re: Double.isNaN vs $wnd.isNaN(v)

2010-01-13 Thread Chris Lercher
I wouldn't bet on it. At least when it comes to comparing NaNs, this can be tricky even within Java, see http://publicobject.com/2009/11/floating-point-equality.html I tend to avoid such tests, if at all possible. Otherwise the only option is to read the specs very carefully (and hope that there a

Re: TabLayoutPanel...

2010-01-13 Thread mariyan nenchev
Hi, i also suggest to use TabPanel, not TabLayoutPanel. Here is simple example of how to create customized one with tab bar = text + image. It also supports changing the image of the selected tab: public class ImagedTabPanel extends DecoratedTabPanel { public ImagedTabPanel() { supe

Re: TabLayoutPanel...

2010-01-13 Thread Deanna Bonds
TabBar is part of the TabPanel, which is a composite. That probably would be easier to work with. On Jan 13, 3:53 pm, Stine Søndergaard wrote: > ... first issue! >D How can I use a TabBar in connection with a > TabLayoutPanel? :} -- You received this message because you are subscribed to the G

Custom widgets and extended properties

2010-01-13 Thread myapplicationquestions
Hi All, I am trying to develop a custom widget, the behaviour of which can be controlled by external properties. For example this is what i want to do 1) create a new project 2) develop a simple widget which has 2 buttons YES and NO. the custom widgets have flags that say displayyes displayno by

Re: TabLayoutPanel...

2010-01-13 Thread Stine Søndergaard
... first issue! >D How can I use a TabBar in connection with a TabLayoutPanel? :} -- 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, s

Re: TabLayoutPanel...

2010-01-13 Thread Stine Søndergaard
Thank you, Deanna :) I will follow your advices right away and see were it takes me! I might be back!! ;) -- 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 unsubsc

Re: TabLayoutPanel...

2010-01-13 Thread Deanna Bonds
Are you using a TabBar http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/com/google/gwt/user/client/ui/TabBar.html You can add html directly into each tab. But for what you are doing I might consider the icon as a background image to a div with the text offset. Best way I have found to get

Is GQuery planned to be integrated with GWT.

2010-01-13 Thread Deanna Bonds
After last years google io I expected to see GQuery on the roadmap. Looks like a great core piece to help create our own composites without requiring everything to be a gwt object. Is this (still) planned? -- You received this message because you are subscribed to the Google Groups "Google Web

TabLayoutPanel...

2010-01-13 Thread Stine
Hello :) I am still struggling with getting familiar with GWT ':] Right now I am trying to create a tab panel where each tab contains both an icon and a text describing what can be found at the attached page. Maybe it does not sound of much!! But to me it is not that clear how the tabs should be

Different solution for deprecated event.getTarget()?

2010-01-13 Thread Youngster
I can't find out how to replace the deprecated event.getTarget(). I have the following code: @Override public void onBrowserEvent(Event event) { Element target = event.getTarget(); if (DOM.eventGetType(event) == Event.ONCLICK) { for (

Charset Problem

2010-01-13 Thread nacho
Hi, i want to put a link like this: Hyperlink lnkBackToInbox = new Hyperlink("« Back to Inbox", "#"); And in my hosted page i have the following line: also i tried with but when i put the link in the hosted page i get the following: � Back to Inbox What i'm missing? -- You received this

Re: Changing mouse cursor during rpcservice is working

2010-01-13 Thread Alexander
Hope this helps http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/36dda5ad164987c6?pli=1 2010/1/13 ojay > Hi, > > I have two panels and if I press a button in the right panel then some > stuff will be done on the server and then the other panel will be > filled with data. No

Re: deRPC issues

2010-01-13 Thread Chris Ramsdale
@Mike (either one), do you have a small test project that reproduces these issues? If so, would you mind sending it to me? Thanks, Chris On Tue, Jan 5, 2010 at 2:12 PM, MikeN wrote: > Hi, > > I think I've found two issues in the new deRPC code, but I would like > some confirmation before spammi

Re: Debugging css selector problem in UIBuilder

2010-01-13 Thread John Huss
look at the html -> head -> style tag On Jan 13, 12:52 pm, huherto wrote: > I am using the inspector in Chrome. But I cannot see why a css > selector is not working for a specific tag. Is there a way to see how > the is translated from the chrome browser? -- You received this message because yo

Issue with RootLayoutPanel vs RootPanel and quirks mode

2010-01-13 Thread Stuart
Different renderings based on RootLayout or RootPanel and DOCTYPE. Background - UI is programmatically created (no UiBinder) - VerticalPanel in the center of a DockPanel holds 3 widgets. Only one of them is to show at a time. Turn one on, turn the others off, etc. - Depending on the combination of

Re: Development mode - refresh is not enough to see my changes!

2010-01-13 Thread Stine Søndergaard
Hello Dazza :) Ehm, I am afraid I cannot find anything similar in my Intellij IDEA :/ But that is no guarantee that it is not there! Hmmm... Thanks for your input!! :) -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group,

Re: GWT 2.0 Dev Mode in Eclipse when using external server - CLIENT-CERT

2010-01-13 Thread Chris Ramsdale
On Wed, Jan 13, 2010 at 11:48 AM, Yaakov wrote: > Hi, > > Just started using GWT 2.0, etc... > > I was successful in deploying the same web app to an external server > and just added: > ?gwt.codesvr=localhost:9997 > > Eclipse in its "Development Mode" tab showed that FF connected and > everything

Re: DialogBox issue with IE

2010-01-13 Thread Memo Sanchez
. -- 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, vi

Re: Development mode - refresh is not enough to see my changes!

2010-01-13 Thread Dazza
When using development mode in Eclipse, there is a reload web app button in the development mode tab of the GWT plugin. When I have made changes to the app, I often have to hit the reload web app button and then refresh in the browser. This is very quick. I don't know how Development Mode works

Debugging css selector problem in UIBuilder

2010-01-13 Thread huherto
I am using the inspector in Chrome. But I cannot see why a css selector is not working for a specific tag. Is there a way to see how the is translated from the chrome browser? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this

Re: Development mode - refresh is not enough to see my changes!

2010-01-13 Thread Stine Søndergaard
Yup, I am just using a link elem! Will do some research on ClientBundle and CssResource right away though! :P Thank you so much for the tip! :) -- 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

Re: Development mode - refresh is not enough to see my changes!

2010-01-13 Thread Matt Moriarity
Depends how you are using your stylesheet. I had these problems when I was simply using a link element on the main HTML page. However, my problems went away when I switched to using ClientBundle and CssResource. On Jan 13, 1:12 pm, Stine Søndergaard wrote: > Would be so nice to know if I am the o

Re: Development mode - refresh is not enough to see my changes!

2010-01-13 Thread Stine Søndergaard
Would be so nice to know if I am the only one who does not know how to avoid a restart of development mode every time I make a change in my CSS file. :} -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email

Re: deRPC - any documentation available?

2010-01-13 Thread Dominik Steiner
Thanks Chris for the quick reply, that was exactly what i needed. Hi, some documentation is at the bottom of http://code.google.com/webtoolkit/doc/latest/DevGuideServerCommunication.html -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group

Re: Prevent class conversion when compiling modules

2010-01-13 Thread Chris Lercher
For Hibernate there's Gilead, which provides an @ServerOnly annotation ( http://code.google.com/webtoolkit/articles/using_gwt_with_hibernate.html ). Maybe there exists a similar solution for TopLink? Also, have you actually tried the transient keyword? The DevGuide ( http://code.google.com/webtoo

Re: Eclipse plugin for GWT 1.7

2010-01-13 Thread Keith Platfoot
Hi Sanjay, The latest version of the plugin (1.2) is still backwards-compatible with GWT 1.7.1. You can find the update site URL on the plugin's Quick Start page: http://code.google.com/eclipse/docs/getting_started.html Keith On Wed, Jan 13, 2010 at 2:15 AM, Sanjay wrote: > Is there a locati

Re: deRPC - any documentation available?

2010-01-13 Thread Chris Lercher
Hi, some documentation is at the bottom of http://code.google.com/webtoolkit/doc/latest/DevGuideServerCommunication.html -- 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.c

Re: MVP Architecture source code?

2010-01-13 Thread Adligo
Also I converted my MVC example project to MVP recently; http://cvs.adligo.org:80/viewvc/gwt_util_demo/ Cheers, Scott On Jan 12, 1:51 pm, Chris Ramsdale wrote: > http://code.google.com/webtoolkit/doc/latest/tutorial/projects/Contac... > > > > On Mon, Jan 11, 2010 at 11:42 PM, Ralph wrote: >

Re: Eclipse, hosted mode, maven dependencies

2010-01-13 Thread Keith Platfoot
Hi Milan, Currently, there are some known incompatibilities between Maven and the Google Eclipse plugin, including the WEB-INF/lib issue you ran into. However, we are planning on improving things with the next release, and have just posted a survey on the groups (Maven users survey

GWT 2.0 Dev Mode in Eclipse when using external server - CLIENT-CERT

2010-01-13 Thread Yaakov
Hi, Just started using GWT 2.0, etc... I was successful in deploying the same web app to an external server and just added: ?gwt.codesvr=localhost:9997 Eclipse in its "Development Mode" tab showed that FF connected and everything is great. Now, my real app uses CLIENT-CERT as its authentication

Changing mouse cursor during rpcservice is working

2010-01-13 Thread ojay
Hi, I have two panels and if I press a button in the right panel then some stuff will be done on the server and then the other panel will be filled with data. Now I am searching how I can change the mouse cursor when I called the rpc and change it back on the rpc success method. Can somebody tell

Re: GWT 2.0 books

2010-01-13 Thread ANDRES BRUN
Something in Spanish!! On Wed, Jan 13, 2010 at 1:34 PM, mariyan nenchev wrote: > > Something in english? > On Wed, Jan 13, 2010 at 5:35 PM, Stine Søndergaard > wrote: > >> Sounds great with a book!! >> -- >> You received this message because you are subscribed to the Google Groups >> "Google Web

Maven users survey

2010-01-13 Thread Keith Platfoot
Hi folks, For the next release of the Google Plugin for Eclipse, we're planning on making a few tweaks to make life easier for Maven users. That's right: we've seen the stars on the issue tracker, and have decided it's time to act. I would say, "we feel your pain", but the problem is, we don't. Wh

Code Splitting + Cache forever

2010-01-13 Thread Chris Lercher
Hi, I'm thinking about using Code Splitting a little differently from the normal use case: What if I could take a bunch of large classes that basically never change - like e. g. HashMap and HashSet - and split them out into a fragment that can be cached forever. This fragment's MD5 sum shouldn't c

Re: GWT 2.0 books

2010-01-13 Thread mariyan nenchev
Something in english? On Wed, Jan 13, 2010 at 5:35 PM, Stine Søndergaard wrote: > Sounds great with a book!! > -- > 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 maps: multiple maps InfoWindow problem

2010-01-13 Thread Eric Ayers
I was thinking to recreate it with a small yet complete example so we can understand fully what's going on. For example, you said in your last post that you had 2 map instances which isn't apparent from your code snippet. On Wed, Jan 13, 2010 at 10:40 AM, morfeusys wrote: > Yes, I try to recrea

Re: GWT Group spam this morning

2010-01-13 Thread mariyan nenchev
It is this evening for some of as actually :) On Wed, Jan 13, 2010 at 5:49 PM, Chris Ramsdale wrote: > Most of you probably noticed a flood of emails from "postoffice" this > morning (actually Yahoo's mail hosting service). The root cause of > this were email digests that were failing to a specif

Working with XML on client side

2010-01-13 Thread NoPain
Hi, all I have the following piece of code: import com.google.gwt.xml.client.*; Document myDoc=XMLParser.parse(myXML); for (int i=0;i<10;i++) { Window.alert("Hashcode="+ myDoc.getFirstChild().hashCode()); } Output: Hashcode=3 Hashcode=4 Hashcode=12 So, what do i see is that ea

GWT Group spam this morning

2010-01-13 Thread Chris Ramsdale
Most of you probably noticed a flood of emails from "postoffice" this morning (actually Yahoo's mail hosting service). The root cause of this were email digests that were failing to a specific account. After being queued up for a fair amount of time, the sends fail out for good and a response (in t

deRPC - any documentation available?

2010-01-13 Thread Dominik Steiner
Hi, I've been reading about deRPC on some other posts, but so far haven't been able to find any documentation about this new RPC implementation, can someone point me into the right direction? And what is the opinion about deRPC? Is it ready to be used? What are the advantages over the former RPC?

Re: GWT maps: multiple maps InfoWindow problem

2010-01-13 Thread morfeusys
Yes, I try to recreate it - you can see the piece of code in my first post. But this problem occurs when I try to create and open window on the second map. On Jan 13, 6:08 pm, Eric Ayers wrote: > I don't think you can use an infowindow from one map and pass it to another. >  I suggest you recreat

Re: GWT 2.0.0 FreeBSD Port, GWT Developer Plugin for Firefox FreeBSD port and Eclipse plugin installation instructions

2010-01-13 Thread Paul MERLIN
Tap tap ! -- 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 o

Eclipse plugin for GWT 1.7

2010-01-13 Thread Sanjay
Is there a location where I can get the eclipse plugin for GWT 1.7. I just happened to delete it from eclipse in the process of upgrading to 2.0. -- 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-we

Re: GWT 2.0 books

2010-01-13 Thread Stine Søndergaard
Sounds great with a book!! -- 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

UnsupportedClassVersionError: com/google/gwt/user/tools/WebAppCreator

2010-01-13 Thread Viksul
Hello Folks, I am new to GWT and trying to create a basic web application using GWT2.0. I am seeing the following error when running the webAppCreator command. I used both jdk.15 & jdk1.6. Can someone help me fix this? Exception in thread "main" java.lang.UnsupportedClassVersionError: com/ google/

Prevent class conversion when compiling modules

2010-01-13 Thread Warpitaly
Greetings, we're developing a large JEE6 application that relies on JPA/TopLink2 to serialize its entities. A subset of such entities is required in the GWT front-end. e.g., let's name: entities.A -> one of the entities: @Entity public class A implements Serializable{ [...] int num; } entitie

GWT RPC with Command Pattern Sample

2010-01-13 Thread Patrick Gumball
Hallo everyone, I'm coding a GWT 2.0 app with Gilead 1.3 + Hibernate and after watching Ray Ryan best practice video I decided to try to implement all my RPCs with the Command Pattern. I don't want to link to gwt-dispatch or other libraries that uses GIN\GUICE but I couldn't get it working without

Re: GWT 2.0.0 FreeBSD Port, GWT Developer Plugin for Firefox FreeBSD port and Eclipse plugin installation instructions

2010-01-13 Thread ketan mulay
Hi Antonin, How can I get the same plugin for firefox in windows? Thanks, Ketan On Jan 11, 12:19 am, Antonin Bonte wrote: > Hi > > GWT Installation > = > > Extract gwt.tar.bz2 to /usr/ports/java/ > Extract xpi-gwt-dev-plugin.tar.bz2 to /usr/ports/www > cd /usr/ports/java/gwt > sudo make

Re: Cannot install GWT Eclipse plug-in

2010-01-13 Thread wildcat
Running Linux Mint 8 ran into the same problem. Including (http://download.eclipse.org/releases/galileo) helped. Checked the SDK box and the Plugin box (from Google). Took a while for everything to install and had to restart eclipse. Did not have to do this on XP a couple of months ago. Go figure

Integration with jboss server and GWT hosted mode

2010-01-13 Thread abhay singh
Hi I Have two modules in my project one is using jsp Pages for UI and another one is using gwt when i changes in gwt code ,i need to compile all code and after compilation deploy on jboss server its take more than 120 seconds . can any body give me an idea that i have run my gwt code in hosted mod

Using ChangeHandler for validation

2010-01-13 Thread Chris
Hi! I'm using two textboxes A and B. They have a dependency between them: as A gets bigger, B gets lower (A= C-B; B= A+C) In the background is a transport object which gets updates. So textBoxA->onChange is setting textBoxB->Value and to->setA; to->setB if textBoxB is changed its the almost same:

Re: GWT 2.0 books

2010-01-13 Thread Idris
Even I would like to see much work on UI Binder side. This will easy soo many processes. On Dec 15 2009, 12:01 am, cmcg wrote: > Great - how much of an emphasis are you going to place on UiBinder? > > On Dec 2, 5:30 pm, FKereki wrote: > > > Personally, I'm authoring a book on GWT 2.0 for Addison

Eclipse, hosted mode, maven dependencies

2010-01-13 Thread milan
Hi, we've started adapting gwt in our company as our new GUI layer and we have some issues, especially in development mode. I would also refer to this thread(http://groups.google.com/group/google-web-toolkit/ browse_thread/thread/f505610b3bc1ca17/dfe298d08e8bca13? lnk=gst&q=eclipse+hosted+mode+mav

Generate messages from not default file.

2010-01-13 Thread Krzysztof
Hi. I want to generate message from not default file. Is this possibile? For example I have interface MyMessages and I want to user file SomeMessages.properties as a source. File: MyMessages.java public interface MyMessages extends Messages{ @Key("aaa.message1") public String message1(); }

Getting information from XML File

2010-01-13 Thread jendoubi walid
Hi, I am working on a little project based on a logging screen and displaying some information to the user if the log was a success. I used this code to make the log screen: http://www.dariusz-borowski.com/wp/?p=20 But instead of writing the username and password in LoggingServiceImpl I want to

Re: GWT Incubator Status Update and Schedule

2010-01-13 Thread Deanna Bonds
Happy to see these getting promoted to GWT. Can you make sure they use code splitting so there isn't an extra overhead with them being included? On Jan 12, 4:19 pm, Gabriel Guerrero wrote: > +1 For at least doing another release compatible with gwt 2, I use the > FastTree and the PagingScrollTab

Returned mail: User unknown

2010-01-13 Thread postoffice
The original message was received at 2010-01-13 07:16:02 -0800 from postoffice.(null) [10.0.0.1] - The following addresses had permanent fatal errors - -Transcript of session follows - ... while talking to postoffice.(null).: >>> RCPT To: <<< 550 5.1.1 unknown or illegal al

Returned mail: User unknown

2010-01-13 Thread postoffice
The original message was received at 2010-01-13 07:16:02 -0800 from postoffice.(null) [10.0.0.1] - The following addresses had permanent fatal errors - -Transcript of session follows - ... while talking to postoffice.(null).: >>> RCPT To: <<< 550 5.1.1 unknown or illegal al

Returned mail: User unknown

2010-01-13 Thread postoffice
The original message was received at 2010-01-13 07:16:02 -0800 from postoffice.(null) [10.0.0.1] - The following addresses had permanent fatal errors - -Transcript of session follows - ... while talking to postoffice.(null).: >>> RCPT To: <<< 550 5.1.1 unknown or illegal al

Returned mail: User unknown

2010-01-13 Thread postoffice
The original message was received at 2010-01-13 07:16:02 -0800 from postoffice.(null) [10.0.0.1] - The following addresses had permanent fatal errors - -Transcript of session follows - ... while talking to postoffice.(null).: >>> RCPT To: <<< 550 5.1.1 unknown or illegal al

Returned mail: User unknown

2010-01-13 Thread postoffice
The original message was received at 2010-01-13 07:16:02 -0800 from postoffice.(null) [10.0.0.1] - The following addresses had permanent fatal errors - -Transcript of session follows - ... while talking to postoffice.(null).: >>> RCPT To: <<< 550 5.1.1 unknown or illegal al

Returned mail: User unknown

2010-01-13 Thread postoffice
The original message was received at 2010-01-13 07:16:01 -0800 from postoffice.(null) [10.0.0.1] - The following addresses had permanent fatal errors - -Transcript of session follows - ... while talking to postoffice.(null).: >>> RCPT To: <<< 550 5.1.1 unknown or illegal al

Returned mail: User unknown

2010-01-13 Thread postoffice
The original message was received at 2010-01-13 07:16:01 -0800 from postoffice.(null) [10.0.0.1] - The following addresses had permanent fatal errors - -Transcript of session follows - ... while talking to postoffice.(null).: >>> RCPT To: <<< 550 5.1.1 unknown or illegal al

Returned mail: User unknown

2010-01-13 Thread postoffice
The original message was received at 2010-01-13 07:16:01 -0800 from postoffice.(null) [10.0.0.1] - The following addresses had permanent fatal errors - -Transcript of session follows - ... while talking to postoffice.(null).: >>> RCPT To: <<< 550 5.1.1 unknown or illegal al

Returned mail: User unknown

2010-01-13 Thread postoffice
The original message was received at 2010-01-13 07:16:01 -0800 from postoffice.(null) [10.0.0.1] - The following addresses had permanent fatal errors - -Transcript of session follows - ... while talking to postoffice.(null).: >>> RCPT To: <<< 550 5.1.1 unknown or illegal al

Returned mail: User unknown

2010-01-13 Thread postoffice
The original message was received at 2010-01-13 07:16:01 -0800 from postoffice.(null) [10.0.0.1] - The following addresses had permanent fatal errors - -Transcript of session follows - ... while talking to postoffice.(null).: >>> RCPT To: <<< 550 5.1.1 unknown or illegal al

Returned mail: User unknown

2010-01-13 Thread postoffice
The original message was received at 2010-01-13 07:16:01 -0800 from postoffice.(null) [10.0.0.1] - The following addresses had permanent fatal errors - -Transcript of session follows - ... while talking to postoffice.(null).: >>> RCPT To: <<< 550 5.1.1 unknown or illegal al

Returned mail: User unknown

2010-01-13 Thread postoffice
The original message was received at 2010-01-13 07:16:01 -0800 from postoffice.(null) [10.0.0.1] - The following addresses had permanent fatal errors - -Transcript of session follows - ... while talking to postoffice.(null).: >>> RCPT To: <<< 550 5.1.1 unknown or illegal al

Returned mail: User unknown

2010-01-13 Thread postoffice
The original message was received at 2010-01-13 07:16:01 -0800 from postoffice.(null) [10.0.0.1] - The following addresses had permanent fatal errors - -Transcript of session follows - ... while talking to postoffice.(null).: >>> RCPT To: <<< 550 5.1.1 unknown or illegal al

Returned mail: User unknown

2010-01-13 Thread postoffice
The original message was received at 2010-01-13 07:16:01 -0800 from postoffice.(null) [10.0.0.1] - The following addresses had permanent fatal errors - -Transcript of session follows - ... while talking to postoffice.(null).: >>> RCPT To: <<< 550 5.1.1 unknown or illegal al

Returned mail: User unknown

2010-01-13 Thread postoffice
The original message was received at 2010-01-13 07:16:01 -0800 from postoffice.(null) [10.0.0.1] - The following addresses had permanent fatal errors - -Transcript of session follows - ... while talking to postoffice.(null).: >>> RCPT To: <<< 550 5.1.1 unknown or illegal al

Returned mail: User unknown

2010-01-13 Thread postoffice
The original message was received at 2010-01-13 07:16:01 -0800 from postoffice.(null) [10.0.0.1] - The following addresses had permanent fatal errors - -Transcript of session follows - ... while talking to postoffice.(null).: >>> RCPT To: <<< 550 5.1.1 unknown or illegal al

Returned mail: User unknown

2010-01-13 Thread postoffice
The original message was received at 2010-01-13 07:16:01 -0800 from postoffice.(null) [10.0.0.1] - The following addresses had permanent fatal errors - -Transcript of session follows - ... while talking to postoffice.(null).: >>> RCPT To: <<< 550 5.1.1 unknown or illegal al

Returned mail: User unknown

2010-01-13 Thread postoffice
The original message was received at 2010-01-13 07:16:01 -0800 from postoffice.(null) [10.0.0.1] - The following addresses had permanent fatal errors - -Transcript of session follows - ... while talking to postoffice.(null).: >>> RCPT To: <<< 550 5.1.1 unknown or illegal al

Returned mail: User unknown

2010-01-13 Thread postoffice
The original message was received at 2010-01-13 07:16:01 -0800 from postoffice.(null) [10.0.0.1] - The following addresses had permanent fatal errors - -Transcript of session follows - ... while talking to postoffice.(null).: >>> RCPT To: <<< 550 5.1.1 unknown or illegal al

Returned mail: User unknown

2010-01-13 Thread postoffice
The original message was received at 2010-01-13 07:16:01 -0800 from postoffice.(null) [10.0.0.1] - The following addresses had permanent fatal errors - -Transcript of session follows - ... while talking to postoffice.(null).: >>> RCPT To: <<< 550 5.1.1 unknown or illegal al

Returned mail: User unknown

2010-01-13 Thread postoffice
The original message was received at 2010-01-13 07:16:01 -0800 from postoffice.(null) [10.0.0.1] - The following addresses had permanent fatal errors - -Transcript of session follows - ... while talking to postoffice.(null).: >>> RCPT To: <<< 550 5.1.1 unknown or illegal al

Returned mail: User unknown

2010-01-13 Thread postoffice
The original message was received at 2010-01-13 07:16:01 -0800 from postoffice.(null) [10.0.0.1] - The following addresses had permanent fatal errors - -Transcript of session follows - ... while talking to postoffice.(null).: >>> RCPT To: <<< 550 5.1.1 unknown or illegal al

Re: DockLayoutPanel sample code

2010-01-13 Thread Stine Søndergaard
Yup, I read that somewhere, thanks :) I have included a... http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";> But that really does not help me with all the styling! :8 To style for instance a TabLayoutPanel I only find a subset of the relevant style classes in the JavaDoc don't I? What about t

Re: GWT maps: multiple maps InfoWindow problem

2010-01-13 Thread Eric Ayers
I don't think you can use an infowindow from one map and pass it to another. I suggest you recreate the info window for each separate map instance. On Tue, Jan 12, 2010 at 5:06 PM, morfeusys wrote: > Thanks for your answer! The code crashes only if the first map with > the same code was initial

Re: GWT RPC calls run in a separate thread on the server??

2010-01-13 Thread drunningw
Thanks Alex, for the info. I am pretty clueless as to how app servers actually work. Guess I need to do some homework. ;=) -Danny On Jan 13, 7:31 am, Alex wrote: > The app server probably has a thread pool and is reusing threads from > the pool rather than creating new ones for each new reque

Re: My IE plugin doesn't work...

2010-01-13 Thread Ian Bambury
Well, this was reported as an error and supposedly fixed. I'd search the whole computer to see where it's gone and try that path. Ian http://examples.roughian.com 2010/1/13 Haydar > Thanks a lot. oophm.dll was missing when I looked at the path you > mentioned. > > On 13 Ocak, 15:40, Ian Bambu

  1   2   >