I'm developing an GWT + AppEngine app. All works well except when I run it in dev mode the app is not visible to machine on local network.
Even on local machine http://localhost:8080/app is working, while http://192.168.x.x:8080/app is not available.
Any thoughts how to fix this?
...
Hi
Could someone tell me what I need to do to enable Guava support in GWT.
I have downloaded Guava R07 and in there there are the following two files:
guava-r07.jar
guava-r07-gwt.jar
I have a few questions regarding this:
Where do these files go? I am guessing that the standard Jar is made available to my IDE for coding, and that...
Hi to everybody :)
Im starting making an application with GWT. Now, i use the AbsolutePanel widget to describe a "div". After this, i create a label (should be a span?), i add to this panel and i apply a css class to the div.
this is the code :
public void onModuleLoad() {
AbsolutePanel contenitore = new AbsolutePanel();
final...
Greetings,
I'm using GWT and trying to set an href to a file uri (to a network share) and insert it into a cell of a FlexTable and can't seem to make it work.
I have inspected the dynamic anchor in chrome (inspector) and the format is correct but nothing happens when I click on it.
I have tried setting through an Anchor, HTML objec...
What is the 'best' server-side technology on Linux to use with Google Web Toolkit & why? I'd like opinions about:
JSF and other Java based server technologies
Rails
Django
PHP
...
I'm pretty new with EJB's and GWT but I've been using Java for a little while.
My question is: How do I get GWT and EJB's running all together on eclipse? I keep getting pretty severe memory issues with it all together. It consumes 600mb of VM and 200mb of mem and every other operation I do (i.e. open a .java file or build), it crashes ...
The Data Presentation Widgets in GWT 2.1 seem to have it all sewn up: model, view and presenter. So how does all of this data presentation goodness fit in with MVP? For example; how might I associate presenter (aka Activity) instances with the nodes of a CellTree? And is that even something that I should be trying to do?
EDIT (elaborati...
Hi Guyz,
I am using Eclipse 3.6 and jboss 4.2
I've created Enterprise Application with two modules, EJB and WEB.
I have converted the WEB module into GWT application (and added necessary files - html and css)
The problem is, when I need to Inject either the Remote or Local interfaces in the GWTServiceImpl servlet using the @EJB annota...
I'm using GWT as web development framework. I need to access some REST services from my GWT client code. Also I need to parse JSON (or maybe XML) which is response format of these services. Which is the best way for this problem?
Thanks in advance.
...
If I set the client locale in a GWT application by inserting the following line into the header of the main html/jsp file:
<meta name="gwt:property" content="locale=af_ZA">
This works nicely client side and I can make use of the built in i18n support for GWT.
But how can I read this locale again from the server side. I have tried usi...
Does Vaadin or SmartGWT support RTL in their provided widgets/themes?
Thanks
...
Hi
I have some JAR file, I need to reference it from GWT Source package.
How can I accomplish that? should I create module and inherit it?
Thanks
...
Good afternoon,
I'm developing a google-earth web application, where users can use the desktop Google Earth program to perform searches.
One problem I'm running into is that, when the Internal Browser tries to hit a GWT page I have written, with parameters in it, the Internal Browser seems to just drop the second set of parameters.
As...
hi,
i created a widget, say MyBox, which has many other widgets. i have to use that widget on different page, however on different page, the size of the widget is different, on some page it's smaller, on other page it's bigger. Just wonder is there any way in GWT to zoom in & out the widget? Thanks
...
I'm really struggling with a choice between the GWT Tree widget, which has been a part of GWT for ages; or the new CellTree, which is introduced by GWT 2.1.
The tree I want to present to the user is not particularly large, but I am very concerned about responsiveness.
The data at the nodes of the tree will be editable. By clicking on a...
Possible Duplicate:
How to find out about the User Agent in GWT
I am trying to write browser specific code. Is there a GWT API to find out which browser the client is using?
...
Hey hey :-)
ps: I'm novice with hibernate search
This is the morning question.
I got one application running with gwt+hibernate.
I need to add hibernate search in the application.
I took care of this application but all the system was already in place and running.
I can see on the entity level, that no @id annotation is used to defin...
I'm trying to get a list of all contacts within my Google Apps domain.
To do so I'm using the Scribe-Java library (http://github.com/fernandezpablo85/scribe-java) within my GWT application.
String resp= "";
OAuthService service= new ServiceBuilder ()
.provider (GoogleApi.class).apiKey ("my-domain.com").apiSecret ("my-secret").scope (...
Hi,
I have a problem. I created a PopupPanel and have shown it. Now the problem is i want to hide it after 1 minute. Can u suggest me, Please........ But one more thing, In that one minute process should not be stopped or pause.
Thanks,
Vara Kumar PJD
...
I wrote a small GWT app that includes a websocket servlet. I installed jetty-hightide 7.1.6 on my ubuntu 10.04 server and I cannot access the websocket servlet. However I can access it no problem when running on my local machine for testing. I didn't do any configuration to jetty I simply dropped the war file for the GWT app into the web...