popup window

2020-10-20 Thread Benjamin Cuthbert
all, does anyone have an example of a popup window that opens a new browser window. I would like to dock and existing widget outside of the current browser window. -- _This message, including any attachments, may include private, privileged and confidential information and is intended

Re: Emulating CompletableFuture with Promise

2017-09-06 Thread Benjamin DeLillo
I decided to package this up in a standalone library so it can be used until such time that it makes it into a GWT release. https://github.com/OneGeek/GWT-CompletableFuture On Monday, September 5, 2016 at 4:47:10 AM UTC-4, Andrei Korzhevskii wrote: > > I guess you need to super-source this class

Re: Project structure in IntelliJ

2016-03-01 Thread Benjamin Tillman
ns.com/support/ > (hey, you paid for their product after all!) > > On Monday, February 29, 2016 at 7:21:44 PM UTC+1, Benjamin Tillman wrote: >> >> Maybe I'm just missing something, but I can't find a way to stray from >> IntelliJ's suggested package structure fo

Project structure in IntelliJ

2016-02-29 Thread Benjamin Tillman
Maybe I'm just missing something, but I can't find a way to stray from IntelliJ's suggested package structure for GWT apps (see this link ). For example, if I have an application organised using a standard Maven directory layou

Re: JsInterop question ...

2015-08-24 Thread Benjamin Tillman
Any chance of reply? If it's a bad question I'm happy to hear that as well, just so I know I'm thinking about this the wrong way. Regards, Ben. On Wednesday, 1 July 2015 05:30:17 UTC+10, Benjamin Tillman wrote: > > Hey everyone, just a quick question regarding JsInterop:

JsInterop question ...

2015-06-30 Thread Benjamin Tillman
Hey everyone, just a quick question regarding JsInterop: how is it proposed to manage javascript functions that can potentially take more than one type of parameter? For example, take the websocket interface : @JsType(prototype = "WebSoc

Re: IntelliJ and debugging Javascript issues

2015-05-29 Thread Benjamin Tillman
I guess it was just bad timing on my part to start playing with this yesterday as opposed to me doing something wrong. See this IntelliJ issue which will be fixed next release. Regards, Ben. On Saturday, 30 May 2015 02:00:16 UTC+10, Jens wrote

IntelliJ and debugging Javascript issues

2015-05-29 Thread Benjamin Tillman
Hello everyone, I've just installed a fresh copy of IntelliJ (14.1) and wanted to test Super Dev Mode out (GWT 2.7.0). Everything seems to be working fine except that any breakpoints I set in IntelliJ are not working. I'm really not sure what information is going to help solve this issue, so le

Re: GSS migration: mixin definition for a transition with multiple transition-property

2015-04-20 Thread Benjamin V.
Yes, that works. But it is a bit unintuitive as I have multiple different transitions properties in one stylesheet. So I have to define multiple similiar property variables which are all only used once. Am Montag, 20. April 2015 15:55:22 UTC+2 schrieb Jens: > > Does it work if you create a cons

GSS migration: mixin definition for a transition with multiple transition-property

2015-04-20 Thread Benjamin V.
Hello, I am currently migrating a GWT project to use new GSS features. But I am struggling in finding a mixin definition for a transition with multiple transition property. Old CSS code before GWT 2.7 was: .class { transition: literal("opacity .5s linear 0s, visibility 0s linear .5s"); -we

Re: I need java.util.Collections synchronized classes.

2015-02-07 Thread Benjamin DeLillo
You place it wherever you want in your source tree, usually at src/emul or src/super I think. So you'd have src/emul/java/util/Collections.java Then add to your gwt.xml file. Someone else can help fill in the details I've missed, I'm a little fuzzy on the specifics of how the path gets resolv

Strange Behavior from scheduleIncremental

2014-12-30 Thread Benjamin DeLillo
Browser: Firefox 25 GWT: 2.5 I'm changing the implementation of a scatterchart I have to update incrementally to avoid the slow script warning. I've successfully implemented this using Scheduler.scheduleIncremental. However, there is one oddity I'd like to better understand: The chart is only u

Re: How to dynamically load css style in GWT-based application

2014-09-02 Thread Benjamin Cuthbert
uot;screen" is revealed. > > On Tuesday, September 2, 2014 3:56:56 AM UTC-4, Benjamin Cuthbert wrote: >> >> Hi Yuri, >> >> How do you make the call to the server? via the onModuleLoad? >> >> On Tuesday, January 15, 2013 6:52:57 PM UTC, Yuri C wrote: >&

Re: How to dynamically load css style in GWT-based application

2014-09-02 Thread Benjamin Cuthbert
Hi Yuri, How do you make the call to the server? via the onModuleLoad? On Tuesday, January 15, 2013 6:52:57 PM UTC, Yuri C wrote: > > I have 2 CSS loaders. > One relies on tags. This is the preferred way to load CSS as long > as you don't need to be notified when the stylesheet is loaded. > Ano

Re: Development Mode will not be supported in Firefox 27+

2014-02-25 Thread Benjamin Bitdiddle
Would anyone like to follow up the last comment on the bugzilla thread, where a FF dev claims that: Most C++ JSAPI usage in extensions can in fact be replaced by a combination of privileged script and the debugger APIs > > I assume we wouldn't be seeing this thread if that was really true as you

Re: How to load a JRE-dependent/non-compile-mode-supported class in GWT Dev Mode

2014-02-25 Thread Benjamin Bitdiddle
On Tuesday, February 25, 2014 3:19:29 AM UTC-6, Thomas Broyer wrote: > > > > On Tuesday, February 25, 2014 8:53:39 AM UTC+1, Benjamin Bitdiddle wrote: >> >> For a particular GWT module, I'm able to solve a problem in compiled mode >> by manipulating the JS

Re: How to load a JRE-dependent/non-compile-mode-supported class in GWT Dev Mode

2014-02-25 Thread Benjamin Bitdiddle
the right arguments, and then require that any class B that a user writes to extend A override myClone(). However, I don't think I can require that.) On Tuesday, February 25, 2014 3:19:29 AM UTC-6, Thomas Broyer wrote: > > > > On Tuesday, February 25, 2014 8:53:39 AM UTC+1, Benjamin B

How to load a JRE-dependent/non-compile-mode-supported class in GWT Dev Mode

2014-02-25 Thread Benjamin Bitdiddle
For a particular GWT module, I'm able to solve a problem in compiled mode by manipulating the JS object representing the Java object. (Specifically, I need to clone the object, so I simply create a new JS object, copy the properties from the original JS object, and assign a new hash value.) I'

Re: Create ImageResource from URL derived from DB?

2013-12-15 Thread Benjamin Possolo
This is not what ImageResource was designed for. ImageResource is part of ClientBundle and is intended for bundling images into a single sprite map to reduce the number of network requests between the user's browser and your server. The artifacts are generated at compile time. If you want to de

Animate CellList (adding and removing objects via ListDataProvider)

2013-11-12 Thread Benjamin Tillman
Is it possible to animate a CellList when a new object is added to or removed from the list wrapped by a ListDataProvider? At the moment, the item just instantly appears, but since I'm using the CellList as a menu, I'd like to make it a little more obvious that a menu item is now available/unav

Determining dependencies for split points

2013-10-14 Thread Benjamin Klein
In my GWT application, I have several split points. In the compile report, it says that a certain class has some code loaded in split point 1 and some code loaded in split point 5. How do I find out what is causing the code to load from split point 5? -- You received this message because you are

Re: GWT.create conference - call for presentations

2013-07-06 Thread Benjamin Possolo
Hey Joonas, I currently live in San Diego but am considering a relocation to San Francisco so either way, it should be possible for me to attend the conference in SF. I built this website http://markteplace.styleguise.net entirely in core GWT (running on GAE + java) and I use a lot of the "fanc

Re: I/O 2013 - GWT Sessions?

2013-05-19 Thread Benjamin Possolo
I think a GWT conference would be great as well. It would probably make more sense to occur somewhere on the west coast though since it is much closer to silicon valley. The San Diego Convention Center is always a great place for conventions. -- You received this message because you are subscri

Re: The app is not loading in Safari?

2013-05-02 Thread Benjamin Possolo
Try completely deleting the safari browser cache, cookies, history, etc. then verify you have all the latest safari updates. I'm guessing u have some deferred binding issue as well but if not, the above may kickstart the browser. -- You received this message because you are subscribed to the

Re: GWT dev plugin for Chrome 21.0.1180.60 m not installing

2013-02-07 Thread Benjamin Possolo
First off, what a nightmare it is just to get the plugin working on chrome. the chrome store kept failing to install the plugin with a worthless error message. So i defaulted back to my old habit of opening the chrome extensions tab and then dragging the CRX file directly onto the browser. But th

Re: Ultimate GWT + GAE + Datanucleus + Eclipse + Maven Guide

2013-01-12 Thread Benjamin Possolo
Awesome! The archetype is a great idea! -- 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/-/3WD1o_VWBOoJ. To post to this group, send email to googl

Re: Ultimate GWT + GAE + Datanucleus + Eclipse + Maven Guide

2013-01-10 Thread Benjamin Possolo
Thank you! It took me quite a while. Does your project have a similar setup? -- 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/-/mBjcQcdru1AJ. To p

Re: ByteBuffer to String

2013-01-07 Thread Benjamin Possolo
ByteBuffer is not supported in GWT client code as documented here https://developers.google.com/web-toolkit/doc/latest/RefJreEmulation#Package_java_io so you should re-evaluate whatever you are doing with those first. I dont know if that google library you are using for the charsets class works g

Re: GWT application runtime memory size is too large (client side)

2013-01-07 Thread Benjamin Possolo
+1 to this code splitting will be the biggest improvement you can make. if you are using activities/places then it is easy to introduce split points around every activity (using AsyncProxy). If your UiBinder templates are innefficiently written then it will impact memory a lot. prefer using HTM

Re: How to center an Image?

2013-01-07 Thread Benjamin Possolo
an element is, by default, an inline element (as opposed to a block element). That means you can simply use the following css property to center it: .myImage { text-align: center; } the image will be centered within the simple panel. -- You received this message because you are subscr

Ultimate GWT + GAE + Datanucleus + Eclipse + Maven Guide

2013-01-07 Thread Benjamin Possolo
-gae-maven.html Benjamin -- 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/-/_UD2VBmwUH8J. To post to this group, send email to google-w

Re: how to add meta tag in the header's page [with uibinder ?]

2012-12-31 Thread Benjamin Possolo
Here is an example for setting the description meta element public static void setMetaDescription(String description){ NodeList nodes = Document.get().getElementsByTagName("meta"); for( int i = 0; i < nodes.getLength(); i++ ){ MetaElement meta = (MetaElement)nodes.getItem(i); if( "descriptio

Re: execute priority ServletContextEvent handler and static block

2012-12-31 Thread Benjamin Possolo
do not put code in a static block in your servlet context listener. the context initialized method is guaranteed to be called exactly once for a servlet context listener before any of your servlets are initialized -- You received this message because you are subscribed to the Google Groups "Goo

Re: GWT Crawlable (SEO)

2012-12-31 Thread Benjamin Possolo
Jan you seem to be kind of trolling; duplicate thread created 5 days ago by yourself and you clearly didnt bother to use the search feature but I will answer anyways Just copy the filter I wrote: https://groups.google.com/forum/#!topic/google-web-toolkit/aBt-QCCQkKY On Thursday, December 2

Re: The Future of GWT Report 2012 Published

2012-12-04 Thread Benjamin DeLillo
There's a mention about "very good tools for automated tests, such as Jucikito" but Google doesn't find anything for Jucikito, is there a typo? I'd love to know what this "very good tool" is exactly. On Tuesday, December 4, 2012 6:19:05 AM UTC-5, Joonas Lehtinen wrote: > > *The GWT community hav

Re: rpc serialization without the rpc

2012-11-02 Thread Benjamin Possolo
Correct me if I am wrong but it sounds like your idea will only have one advantage over a traditional caching layer on the server: avoiding serialization costs. You will still have deserialization costs which are likely a lot more time consuming since they happen in javascript in the browser ve

Re: Cross field validation on client

2012-10-31 Thread Benjamin Possolo
I am not familiar with the GWT Validation framework. I'm not really sure why people use it considering vanilla GWT supports JSR303 (the documentation is pretty bad admittedly). Using plain GWT you would have a class-level validation annotation: @Target(ElementType.TYPE)@Retention(RetentionPolicy

Re: Destroy a widget

2012-10-31 Thread Benjamin Possolo
I can't really understand what you are asking or saying. If you want the widget to remain visible but to stop receiving events, do what Jens said: suppress the event handling logic in the event handler. If you want the widget to stop being visible and to stop receiving events, just do what I sai

Re: how to pass a String[] array in the declarative UI

2012-10-31 Thread Benjamin Possolo
You are trying to add logic to your UiBinder XML file which is not what it is intended to do. View-specific logic goes in the java code. Just do it in the constructor or if you are caching your views (which is good for performance) in a dedicated method that can be called before the view is ren

Re: ListDataProvider.addDataDisplay() and setRowData

2012-10-29 Thread Benjamin Possolo
ListDataProvider wraps a list collection. It allows you to modify the wrapped collection and to automatically propagate those changes to the UI. If you do not use the ListDataProvider (and just call setRowData()) directly, then you will need to call setRowData() whenever you make changes to you

Re: GWT vs SmartGWT

2012-10-29 Thread Benjamin Possolo
I recommend straight GWT for almost everything. The other frameworks just add abstractions on top of GWT that confuse things a lot more. Designing screens: UI Binder Client-side validation: Editor framework + JSR303 validation using HibernateValidator 4.0.2GA Performance: AsyncProxy, ClientBundl

Re: Destroy a widget

2012-10-29 Thread Benjamin Possolo
Sorry there is a typo there. GWT.getRoot().add(panel); should be RootPanel.get().add(panel); -- 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/-/U6

Re: Destroy a widget

2012-10-29 Thread Benjamin Possolo
I presume by uibinder owner you mean your HelloWorld class overrides the onEvent() method, is that correct? I also presume that you have some other component that is using the HelloWorld objects and attaching them to the view. For example, in your EntryPoint: HelloWorld h1 = new HelloWorld(); H

Re: caching background image

2012-10-29 Thread Benjamin Possolo
If you can, use a ClientBundle. That will ensure the background image only gets downloaded once with the rest of your image resources and the spritemap produced by the client bundle should be cached by the browsers. create an interface called AppImages that extends ClientBundle (class must be i

Re: Can't get Google Crawler to index my GWT-based site no matter what I do. Help!

2012-10-29 Thread Benjamin Possolo
It looks like that may have done the trick. I am not 100% certain if it was that because my app engine log files are showing a ton of traffic from the google bot yesterday at night. either way, thanks for finding that major mistake. googling "site:marketplace.styleguise.net" is now finally show

Re: Can't get Google Crawler to index my GWT-based site no matter what I do. Help!

2012-10-29 Thread Benjamin Possolo
On Monday, October 29, 2012 4:28:11 AM UTC-7, Gonzalo Ferreyra Jofré wrote: > Hello, > the hashbang is inverted (!#) in your URLs in the xml. Should be this way > #! > Try switching the position of the hash > Oh wow! big mistake on my behalf. thank you for catching that!! i wonder if that will

Re: Can't get Google Crawler to index my GWT-based site no matter what I do. Help!

2012-10-28 Thread Benjamin Possolo
On Sunday, October 28, 2012 7:28:05 AM UTC-7, ant...@gmail.com wrote: > Your URLs could be further improved if you go through the proposal in > http://carlosaguayo.posterous.com/html5-history-in-gwt > > Was i in your position, i would do the above and then generate a > sitemap.xml for search eng

Re: Can't get Google Crawler to index my GWT-based site no matter what I do. Help!

2012-10-28 Thread Benjamin Possolo
On Sunday, October 28, 2012 7:28:05 AM UTC-7, ant...@gmail.com wrote: > Your URLs could be further improved if you go through the proposal in > http://carlosaguayo.posterous.com/html5-history-in-gwt > Was i in your position, i would do the above and then generate a > sitemap.xml for search engin

Re: Can't get Google Crawler to index my GWT-based site no matter what I do. Help!

2012-10-28 Thread Benjamin Possolo
d filter for handling crawlability. I have a very similar one albeit slightly optimized. /** * Special filter that adds support for Google crawling as outlined here * ({@link https://developers.google.com/webmasters/ajax-crawling/docs/getting-started} * * @author Benjamin Possolo */ public

Can't get Google Crawler to index my GWT-based site no matter what I do. Help!

2012-10-27 Thread Benjamin Possolo
I am unable to get my GWT-based site to be indexed by Google no matter what I do. My URLs all look like this: http://marketplace.styleguise.net/#!/home http://marketplace.styleguise.net/#!/new-listings http://marketplace.styleguise.net/#!/item/172001 http://marketplace.styleguise.net/#!/about

Re: How to make ValueBoxEditorDecorator error message positionate to the right?

2012-10-27 Thread Benjamin Possolo
Add a style name to your decorator div element. i call mine "textBoxDecorator" then use the following css selectors: .textBoxDecorator div:first-child { float: right; } .textBoxDecorator div:last-child { float: left; } .textBoxDecorator::after { content: ""; display:

Re: GWT Dev Plugin broke (Chrome/mac osx)

2012-10-15 Thread Benjamin Possolo
Reverting to Chrome 21 worked for me but the fact that Google Chrome auto-updates means I always have to use this browser and I can never quit the browser either. This is so stupid. Google, please allow users to easily disable auto-update for christ's sake. Its ridiculous that we always have to

Re: Local data cache when using AsyncDataProvider (CellTable)

2012-10-02 Thread Benjamin D.
Hello, 1)Your use of AsyncDataProvider seems interesting to me but I have a few questions. My Celltable also use sorting. But then when you change sorting order the same method (onRangeChange) is called as when you change page. Problem is that the behavior must be different: when I change page

Re: Java 7

2012-09-25 Thread Benjamin Wolff
Hi, sorry for gravedigging, but the title of this thread seems suitable. Since Java 6 reaches its End-Of-Life cycle at the beginning of next year, does the GWT team has concrete plans to support Java 7? See: http://www.oracle.com/technetwork/java/eol-135779.html Cheers, Ben -- You received t

AutoBean Category Implementation Inheritance

2012-07-19 Thread Benjamin DeLillo
When using AutoBean Categories Given: I have two interfaces, A and B B extends A I have a Category class for each, ACategory and BCategory I have an @Category annotation on my ObjectFactory for each Question: will the AutoBean produced by factory.b() have the methods i

Re: To any Editors Gurus: I could use some ListEditor use help for the GWT demo I've made...

2012-02-11 Thread Benjamin Seber
Thanks for all your stuff Brandon! I also got stuck with the Editor Framework over the last days... And I still have one problem... ListEditor#getList#remove does not really work if you use constraint annotations. AbstractRequestContext#create puts the entity in a map. But it will never be remo

Re: SubmitCompleteEvent.getResults() is null in devmode

2011-12-06 Thread Benjamin Seber
Thank you, Thomas. As so often, i've found a posting on stackoverflow after i asked here... http://stackoverflow.com/questions/7476420/gwt-blobstore-error-calling-createuploadurl Will try things out tomorrow. -- You received this message because you are subscribed to the Google Groups "Google

SubmitCompleteEvent.getResults() is null in devmode

2011-12-05 Thread Benjamin Seber
Hi, I'd like to upload an image and get it's serving URL through GAE ImagesServiceFactory. I've found this tutorial: http://ikaisays.com/2010/09/08/gwt-blobstore-the-new-high-performance-image-serving-api-and-cute-dogs-on-office-chairs/ Deployed on GAE it works perfectly. But running locally in

entry point being ignored

2011-07-14 Thread Benjamin
Hi All, I was happily coding away in IntelliJ and moved a large chunk of code into another module, and then added that module to my main GWT project as a dependency. Everything works perfectly in dev mode when I run the debugger etc. When I deploy to app engine it's as if my Entry Point module is

Re: RemoteService referencing another RemoteService

2011-05-06 Thread Benjamin S.
What do you exactly mean by dependeny injection? Might you have a little example for me? On 5 Mai, 16:30, Juan Pablo Gardella wrote: > In server side is plain Java. Use of DI can help you > > 2011/5/5 Benjamin S. > > > > > > > > > I have multiple RemoteServic

RemoteService referencing another RemoteService

2011-05-05 Thread Benjamin S.
I have multiple RemoteServices in my project. Now I need to call a method from another RemoteService, so a RemoteService should call another RemoteService. I tried to create the service with GWT.create, but this seems only possible on clientside. Is this somehow possible? -- You received this mes

Re: GWT Validator

2010-10-22 Thread Benjamin Papez
dator will be suitable. I was wrapping the JCR nodes with DynaBeans before, but AFAIK this is not possible with GWT as Java reflection is not supported on client side and would need to be dealt with while compiling. So, it looks quite complex. Regards, Benjamin On 21 Okt., 01:23, Nick Chalko wrote:

GWT Validator

2010-10-20 Thread Benjamin Papez
GWT validation needs real bean classes. 2.) We are using GWT 2.0.4, can your work also be used with this version or do we need to wait and upgrade to a future version ? Regards, Benjamin -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" gro

Re: My app - shameless plug :-)

2010-02-14 Thread Benjamin
e.google.com/p/yourProject > > > Duong Batien > > DBGROUPS and BudhNet > > > On Sun, 2010-02-14 at 06:48 -0800, Benjamin wrote: > > > Hi Cris, thanks! > > > > To be honest, i've been working on a data historian for over 6 years > > > in one

Re: My app - shameless plug :-)

2010-02-14 Thread Benjamin
Hi Cris, thanks! To be honest, i've been working on a data historian for over 6 years in one form or another. I always ran into problems with either scalability or delivery. Always ended up having to tell a client they needed to build a huge server to run my code - and i was just another expensive

Re: username/password when using GAE

2010-02-13 Thread Benjamin
John, I put a lot of time putting together this blog posting to consolidate the process of authenticating a client to app engine - the sample i posted definitely works - it's tailored for Android clients but i hope it helps you - all about getting the auth token. http://javagwt.blogspot.com/2009/

My app - shameless plug :-)

2010-02-13 Thread Benjamin
Hey Guys, Well i'm pretty much ready to release my app engine / GWT app to the world so i thought i would put out a quick post about the Beta to you guys. I've worked for 12 years in the process control / manufacturing industry and I've done a lot of work with Data Historians - these are huge sys

NT User name

2009-11-19 Thread Benjamin
A little stuck on this today, there are some posts on the subject but the seem outdated. I'm building a web app using GWT the is running internally on a JBOSS Server. I need to get the user name of the current user logged into the XP Workstation (via Active Directory) who is viewing the web site.

Re: rpc serialization problem

2009-10-26 Thread Benjamin
I'm passed these problems now - a couple of things i learned when creating object and storing in data nucleus for later retrieval over an RPC call - Most importantly, if you are returning a complex object (like one with a list of another type of object) you need to return a copy, not the object d

Problem using PagingScrollTable

2009-10-09 Thread benjamin strappazzon
Hi group, I'm looking for a simple piece of code which shows how to use PagingScrollTable from GWT incubator. Especially I'd like to understand how TableModel and TableDefinition work? I've looked at the documentation on GWT incubator web site but it is still in progress and I didn't find the in

Re: rpc serialization problem

2009-10-06 Thread Benjamin
I'm struggeling with this now - did you guys solve it? I have a simple client class that will be a parent in a simple parent-child relationship. If i add an ArrayList property to the parent class (i don't even have to decorate it as persistant) i get EVERE: [1254861190636000] javax.servlet.Serv

Re: How to handle Multiple Modules at run time?

2009-09-23 Thread benjamin strappazzon
I group, Just for information, I carry out a study on integrating GWT on an home made framework and I have the same issue. Application written with the framework can be quite huge and I'm wondering if it'is possible to load module on demand? On 23 sep, 04:12, ak wrote: > Depending on user selec

SVG in a Canvas

2009-09-18 Thread Benjamin
Has anyone had any luck displaying an SVG in a GWTCanvas? I want to let my users upload an SVG file and have it display after i change some of the objects on the server. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Grou

Reading a file on the server

2009-09-11 Thread Benjamin
Hey guys - this has been driving me nuts all day. Should be simple. My GWT project works with data on a SQL server and I use the MS SQL jdbc drivers. I want to keep my connection string in a configuration file instead of hardcoded in the java. (in my old .net days i would use the web.config) 1