main.css on hosted mode

2009-10-04 Thread Sergey Elin
Hi, Just found GWT completely ignores my main.css in hosted mode. If I give any other name to the file, for example app.css - everything is ok... --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web To

Re: Security problem while connecting MySQL using JDBC in GWT hosted mode

2009-10-04 Thread rjcarr
I'm not familiar with your specific errors but I use tomcat to connect to a jndi database and because of this I use the 'noserver' switch when running in hosted mode. This way GWT doesn't start its own server but uses the tomcat I already have running. On Oct 3, 10:52 am, Eh

Security problem while connecting MySQL using JDBC in GWT hosted mode

2009-10-04 Thread Ehsan
solve this proble, something like this : grant codeBase "file:${catalina.home}/webapps/-" { permission java.net.SocketPermissexactly where ion "192.168.12.81:3306", "connect"; }; but I dont know I should apply this change ??? please explain solution for both h

GWT 1.7.1 Hosted mode 500 error when calling external web service

2009-10-01 Thread rusty
Hi All, I'm trying to call a web service in my back end java code when it's running in hosted mode. Everything loads fine, the GWT RPC call works and I can see it on the server, then as soon as it tries to call an external web service (using jax-ws) the jetty falls over with a Inter

Re: Firefox in GWT hosted mode

2009-10-01 Thread Raul.Vadillo
The next step was include the swt.jar in the classpath. Now the error is different and appears at the hosted console: [ERROR] No instantiable browser widget class could be found java.lang.ClassNotFoundException: com.google.gwt.dev.shell.mac.BrowserWidgetSaf at java.net.URLClassLoader$1.ru

Re: Firefox in GWT hosted mode

2009-10-01 Thread Raul.Vadillo
Ok, something was wrong in my tests. Now I try again putting the gwt- dev-oophm.jar in the classpath of the run configuration. But now the problem is different, it throws the next error: java.lang.NoClassDefFoundError: org/eclipse/swt/widgets/Layout Caused by: java.lang.ClassNotFoundException: or

Re: Firefox in GWT hosted mode

2009-10-01 Thread Raul.Vadillo
Thank for your reply. I didn't now anything about oophm. I can't make Firefox as navigator for hosted mode with the few information i found about that. I've folowed this http://code.google.com/p/google-web-toolkit/wiki/UsingOOPHM installing the Firefox 3.5 plugin and then i have

Run in hosted mode and web.xml

2009-09-30 Thread ATom
I use GWT with laste version of mojo gwt-maven-plugin. When I run app in hosted mode via mvn gwt:run all app resources, generated source, META-INF and WEB-INF/classes and lib are created in war directory and then run Jetty. But problem is that web.xml is not copied to war/WEB- INF and server part

Re: Hosted Mode very slow on Mac

2009-09-30 Thread John Patterson
Cheers, I have now replaced the Google launch with a standard Java launch and the Hosted Mode UI no longer freezes and the CPU usage is much better. So it seemed to be due to the frozen hosted mode UI. This problem would not effect you if you are not running from trunk. 2009/10/1 Dominik Steiner

Re: Hosted Mode very slow on Mac

2009-09-30 Thread Dominik Steiner
t and thus being able to track down the exact point that is causing that problem. HTH Dominik On 30 Sep., 03:42, jd wrote: > Hi, > > I am using gwt trunk with Eclipse on a os x leopard and find that the > hosted mode is almost too slow to use.  For example, clicking on a > S

Re: Firefox in GWT hosted mode

2009-09-30 Thread Venkatesh Babu
Are you trying out of process hosted mode? If so, you should apply the oophm plugin to your firefox. One of the links to the plug-in: http://code.google.com/p/google-web-toolkit/source/browse/branches/oophm/plugins/xpcom/prebuilt/oophm-xpcom.xpi Hope this helps. -Venkatesh On Wed, Sep 30, 2009

Firefox in GWT hosted mode

2009-09-30 Thread Raul.Vadillo
First of all, I use Windows XP, Eclipse and GWT 1.7. Really I can't use Firefox as navigator in GWT hosted mode? I was searching about it in Google and don't find a response. Somebody can explain me this? If not yet, will be avaiable in next GW

Hosted Mode very slow on Mac

2009-09-30 Thread jd
Hi, I am using gwt trunk with Eclipse on a os x leopard and find that the hosted mode is almost too slow to use. For example, clicking on a StackLayoutPanel header to change panels causes both Firefox and Safari to freeze and the CPU pegs close to 100% for about 10 seconds. Is this unusual or

Re: Does FileUpload/FormPanel not work in hosted mode?

2009-09-25 Thread Davis Ford
This subtle difference did the trick -- thanks! On Thu, Sep 24, 2009 at 5:07 PM, David Durham wrote: > > You already called: > >   formPanel.setWidget(flexTable) > > then you called: > >> // vPanel is from superclass which extends Composite >> vPanel.add(flexTable); >> vPanel.add(errorLabel); >>

Re: Refresh is not working on Hosted mode and in IE

2009-09-25 Thread Parvez Shah
as per the issue if it works for firefox then we can rule out. History object creating problem. what abt logs are you getting any error logs in hosted mode. error log will be silent if you have server side issue, but that should not also be your problem as it works for the first time, so GET is

Re: Refresh is not working on Hosted mode and in IE

2009-09-25 Thread mars1412
so first your app is loaded in IE - everything's fine then you press the browsers refresh button and get a blank page? On Sep 24, 7:31 pm, Rahul bhatt wrote: > HI > > I am using GWT and GXT to develop a rich application. I get blank page > while refreshing home page in Hoste

Re: Does FileUpload/FormPanel not work in hosted mode?

2009-09-24 Thread David Durham
You already called: formPanel.setWidget(flexTable) then you called: > // vPanel is from superclass which extends Composite > vPanel.add(flexTable); > vPanel.add(errorLabel); > vPanel.add(formPanel); adding the flexTable, and adding the formPanel, try removing the call to add(flexTable) and

Re: Does FileUpload/FormPanel not work in hosted mode?

2009-09-24 Thread Davis Ford
> Well, you're not going to get the file data out of request parameters. >  Take a look at this doc on commons-fileupload: > > http://commons.apache.org/fileupload/streaming.html Hi Dave, I modified the servlet to follow the same code snippet on the commons fileupload page. The only difference h

Re: Does FileUpload/FormPanel not work in hosted mode?

2009-09-24 Thread David Durham
On Thu, Sep 24, 2009 at 3:03 PM, Davis Ford wrote: > > Yep -- first we tried just reading http servlet request params, and > then we imported commons file upload -- still no luck. > > I breakpoint it and I can also inspect the full HTTP header for the > POST.  I don't think the problem is on the

Re: Does FileUpload/FormPanel not work in hosted mode?

2009-09-24 Thread Davis Ford
Yep -- first we tried just reading http servlet request params, and then we imported commons file upload -- still no luck. I breakpoint it and I can also inspect the full HTTP header for the POST. I don't think the problem is on the server side. The problem I think is the client code since we a

Re: Does FileUpload/FormPanel not work in hosted mode?

2009-09-24 Thread David Durham
> Like I said, the form calls the remote servlet (NOT a GWT-RPC servlet) > -- this is a standard servlet.  I breakpoint in the servlet method, > and request.getParameters( ) is always null. > > The form posts no content.  Any ideas why? What are you using on the server to parse the multipart requ

Re: I'm running Win 7 and IE8, but hosted mode runs in IE7

2009-09-24 Thread ky
happy : ) Thanks again Thomas : ) On Sep 24, 2:21 am, Thomas Broyer wrote: > On 24 sep, 00:36, ky wrote: > > > > > Hmm. I've added the meta tag but hosted mode still doesn't render in > >IE8. This is what the top of my main HTML page looks like: > >

Re: Does FileUpload/FormPanel not work in hosted mode?

2009-09-24 Thread Davis Ford
Here is the code snippet anyway: private FlexTable flexTable = new FlexTable(); private final Label uploadLabel = new Label("Upload Document:"); private final Label errorLabel = new Label(); private final FileUpload fileUpload = new FileUpload(); private final Button uploadButton = new Button();

Re: Refresh is not working on Hosted mode and in IE

2009-09-24 Thread Rahul bhatt
any clue it seems to be very basic issue Please help it is quite critical for me Regards Rahul On Sep 24, 10:31 am, Rahul bhatt wrote: > HI > > I am using GWT and GXT to develop a rich application. I get blank page > while refreshing home page in Hosted mode as well as wi

Does FileUpload/FormPanel not work in hosted mode?

2009-09-24 Thread Davis Ford
We have looked over the code again and again that submits the form info, and don't see any issue with it. We get a POST to the servlet we created to receive the multipart form params, but the parameters are always null. We have set the name of the widgets we want posted (i.e. textBox.setName("s

Refresh is not working on Hosted mode and in IE

2009-09-24 Thread Rahul bhatt
HI I am using GWT and GXT to develop a rich application. I get blank page while refreshing home page in Hosted mode as well as with Internet Explorer. this works fine when I use Fire fox every thing works fine Please help Regards Rahul

Re: I'm running Win 7 and IE8, but hosted mode runs in IE7

2009-09-24 Thread Thomas Broyer
On 24 sep, 00:36, ky wrote: > Hmm. I've added the meta tag but hosted mode still doesn't render in > IE8. This is what the top of my main HTML page looks like: > > http://www.w3.org/ > TR/html4/strict.dtd"> > > > > > > > > >  

Re: I'm running Win 7 and IE8, but hosted mode runs in IE7

2009-09-23 Thread alex.d
as far as i know GWT uses an IE7 mode of your internet explorer when in hosting mode. i don't think you can change that by setting some meta tag. what you can do is using oophm. On 24 Sep., 00:36, ky wrote: > Hmm. I've added the meta tag but hosted mode still doesn't render

Re: I'm running Win 7 and IE8, but hosted mode runs in IE7

2009-09-23 Thread ky
Hmm. I've added the meta tag but hosted mode still doesn't render in IE8. This is what the top of my main HTML page looks like: http://www.w3.org/ TR/html4/strict.dtd"> . . . Is something wrong with that? On Sep 23, 3:03 pm, Thomas Broyer wrote: > On 23

Re: I'm running Win 7 and IE8, but hosted mode runs in IE7

2009-09-23 Thread Thomas Broyer
On 23 sep, 23:11, ky wrote: > I used the Google Eclipse Plugin to create a new GWT 1.7.1 project, > ran it in Hosted Mode, and to my surprise, when I press "Send" in the > Web Application Start Project, I receive the following: > > Server replies: > Hello, GWT User

I'm running Win 7 and IE8, but hosted mode runs in IE7

2009-09-23 Thread ky
I used the Google Eclipse Plugin to create a new GWT 1.7.1 project, ran it in Hosted Mode, and to my surprise, when I press "Send" in the Web Application Start Project, I receive the following: Server replies: Hello, GWT User! I am running jetty-6.1.x. It looks like you are using: M

Re: Using annotation throws ClassNotFoundException in hosted mode

2009-09-23 Thread Sumit Chandel
Hi Thomas, You should double-check that the annotation you're using is on the hosted mode launch configuration classpath. Hope that helps, -Sumit Chandel On Thu, Sep 17, 2009 at 6:12 AM, Thomas Ardal wrote: > > Hi > > I've implementing a GWT-RPC service, which works fine

Re: Lost runtime exceptions when in hosted mode

2009-09-23 Thread Trevis
> > Hm, i think that tieTYE's question is more along the lines of is there > > something like the doUnexpectedFailure(Throwable t) in the client > > (which i'd like to know as well) > > > Trevis > > > On Sep 22, 8:25 pm, tieTYT wrote: > > > When I

Re: Lost runtime exceptions when in hosted mode

2009-09-23 Thread Sripathi Krishnan
thing like the doUnexpectedFailure(Throwable t) in the client > (which i'd like to know as well) > > Trevis > > On Sep 22, 8:25 pm, tieTYT wrote: > > When I'm in hosted mode, if my client code throws a runtime exception, > > it seems to be swallowed and not reported. For exam

Re: Lost runtime exceptions when in hosted mode

2009-09-23 Thread Trevis
Hm, i think that tieTYE's question is more along the lines of is there something like the doUnexpectedFailure(Throwable t) in the client (which i'd like to know as well) Trevis On Sep 22, 8:25 pm, tieTYT wrote: > When I'm in hosted mode, if my client code throws a runtime exc

Re: Lost runtime exceptions when in hosted mode

2009-09-23 Thread tieTYT
I appreciate the help. I'm talking about a runtime exception from client code while in hosted mode. These exceptions are silent for me. How can I at least be informed that an error occurred? On Sep 23, 10:11 am, Venkatesh Babu wrote: > If you client code has try catch blocks to c

Re: Lost runtime exceptions when in hosted mode

2009-09-23 Thread Venkatesh Babu
is method gets called whenever an exception escapes your method. You > can > > log the stacktrace/message in this method. > > > > --Sri > > > > 2009/9/22 tieTYT > > > > > > > > > When I'm in hosted mode, if my client co

Re: Lost runtime exceptions when in hosted mode

2009-09-23 Thread tieTYT
thod gets called whenever an exception escapes your method. You can > log the stacktrace/message in this method. > > --Sri > > 2009/9/22 tieTYT > > > > > When I'm in hosted mode, if my client code throws a runtime exception, > > it seems to be swallowed

Re: Lost runtime exceptions when in hosted mode

2009-09-22 Thread Sripathi Krishnan
Override the doUnexpectedFailure(Throwable t) method in your RPC Servlet. This method gets called whenever an exception escapes your method. You can log the stacktrace/message in this method. --Sri 2009/9/22 tieTYT > > When I'm in hosted mode, if my client code throws a runtim

Lost runtime exceptions when in hosted mode

2009-09-22 Thread tieTYT
When I'm in hosted mode, if my client code throws a runtime exception, it seems to be swallowed and not reported. For example, if I put a "throw new NullPointerException()" at the end of a method. I can use the debugger to find the exact line that's throwing the exception b

Re: Plugin Hosted Mode failing to resolve import java.net.* on Macintosh

2009-09-21 Thread ken
with GWT, so I'm > > here to check that out.  Here's what I've run into: > > - > > I seem to have an issue with the Google Plugin Hosted Mode and > > java.net on a Mac OS X 10.5.8. > > I have Eclipse Galilio with: > >    Google

Re: Plugin Hosted Mode failing to resolve import java.net.* on Macintosh

2009-09-21 Thread Venkatesh Babu
roblem (full details below) on the > AppEngine/Java list; a response there from Jason Parekh (also added > here at end) suggested that there may be problems with GWT, so I'm > here to check that out. Here's what I've run into: > - > I seem to have an is

Plugin Hosted Mode failing to resolve import java.net.* on Macintosh

2009-09-21 Thread kbowe...@gmail.com
I seem to have an issue with the Google Plugin Hosted Mode and java.net on a Mac OS X 10.5.8. I have Eclipse Galilio with: Google App Engine Java SDK 1.2.5 Google Plugin for Eclipse 3.5 Google Web Toolkit SDK 1.7.0 I created a new default GWT/AppEngine project (both checked) named TestO

Using annotation throws ClassNotFoundException in hosted mode

2009-09-17 Thread Thomas Ardal
Hi I've implementing a GWT-RPC service, which works fine when called from GWT client. One of the methods in GWT-RPC have an annotation, which I've created. In hosted mode, I get the following error: java.lang.ClassNotFoundException: mynamespace.MyAnnotation at java.net.URLCla

Re: Setting DataSource (JNDI) in GWT 1.6 (hosted mode - Jetty)

2009-09-16 Thread Christian
The project classpath is not used for the > internal jetty server. > > I made a description in my blog (in german): > > http://curtstech.blogspot.com/2009/07/gwt-16-hosted-mode-internen-jet... > > -Henning > > On 5 Jun., 18:59, Mark wrote: > > > > > Hi

Re: Running Hupa in Hosted Mode

2009-09-14 Thread Daniel Jue
place a breakpoint on an interesting line of the projects' code (not 3rd party code) and then run the hosted mode in debug, then step through it and see what the values are. In this case, putting a breakpoint here: IMAPFolderView.java:77 should do it. This is how I found out the config.properties

Re: Running Hupa in Hosted Mode

2009-09-14 Thread Daniel Simons
ons wrote: > Now the properties file is loading correctly, however, the following error > occurs when running in hosted mode: > > [ERROR] Unable to load module entry point class org.apache.hupa.client.Hupa > (see associated exception for details) > com.google.gwt.core.client.JavaScr

Re: Running Hupa in Hosted Mode

2009-09-14 Thread Daniel Simons
Now the properties file is loading correctly, however, the following error occurs when running in hosted mode: [ERROR] Unable to load module entry point class org.apache.hupa.client.Hupa (see associated exception for details) com.google.gwt.core.client.JavaScriptException: (Error): Invalid

Re: Cookies not available in Hosted Mode

2009-09-14 Thread Anca
Hi, 10x for the reply. I don't use Google App. The problem appears when I run my application in Hosted Mode. I have a page that stores the username&password in cookies and I expect to retrieve them from cookies at next login (Hosted Mode is open during repeated login/logouts). On clie

Re: Running Hupa in Hosted Mode

2009-09-13 Thread Norman Maurer
Hi Daniel, your prolly missed to adjust your run configuration. Check the README.txt file included in Hupa trunk. From the README.txt: - If you want to run hupa in hosted mode be sure to add the following line as "vm argument" in the Run configuration: -Dhupa.config.file=${p

Running Hupa in Hosted Mode

2009-09-13 Thread Daniel
In my attempt to run hupa in hosted mode I receive the following error. Could anyone provide some direction as to what may be going on here? [WARN] Failed startup of context com.google.gwt.dev.shell.jetty.JettyLauncher $webappcontextwithrel...@dab19a{/,C:\Documents and Settings\dsimons

How to reference images in CSS to see them in hosted mode?

2009-09-11 Thread Jaroslav Záruba
I have a background-image image defined in CSS. The image is not known in my Java code, I do only assign a CSS class-name. When I compile my project the image is OK, but in hosted mode the image doesn't show up. What is the proper way of referencing (or a proper place to put) such images i

Re: Hosted mode windows position

2009-09-10 Thread Sumit Chandel
Hi Andrey, As Sri mentioned, Out-of-Process Hosted Mode will solve this problem once it ships in the next major release. Please see Issue #2846 (link below) to keep of updates on this issue. Issue #2846: http://code.google.com/p/google-web-toolkit/issues/detail?id=2846 <http://code.google.co

Re: Hosted mode browser to permit self-signed server certs?

2009-09-10 Thread Mike Grayson
Thanks, I'll take a look. On Thu, Sep 10, 2009 at 2:58 AM, Paul Robinson wrote: > > Have you tried OOPHM? (assuming it's the browser itself that's causing > your problem) > > > Mike Grayson wrote: > > Hi all, > > > > I'm trying to use GWT-

Re: Cookies not available in Hosted Mode

2009-09-10 Thread 徐恒飞
you mean session? at you project :war/WEB-INF/appengine-web.xml add this: true 2009/9/10 Anca > > Hi, > > When I run my GWT application in Hosted Mode, I'm unable to retrieve > cookies that I previously set. I also compiled the application using > Compile/Browse button

Re: Hosted mode browser to permit self-signed server certs?

2009-09-10 Thread Paul Robinson
Have you tried OOPHM? (assuming it's the browser itself that's causing your problem) Mike Grayson wrote: > Hi all, > > I'm trying to use GWT-RPC in hosted mode to make client requests > against a remote (Weblogic) server. The remote server only accepts > HTTPS con

Cookies not available in Hosted Mode

2009-09-10 Thread Anca
Hi, When I run my GWT application in Hosted Mode, I'm unable to retrieve cookies that I previously set. I also compiled the application using Compile/Browse button in the Hosted Mode, run it in Chrome and the result is the same: i couldn't even find them in the browser's list of

Hosted mode browser to permit self-signed server certs?

2009-09-10 Thread Mike Grayson
Hi all, I'm trying to use GWT-RPC in hosted mode to make client requests against a remote (Weblogic) server. The remote server only accepts HTTPS connections and identifies itself with a self signed cert. Unfortunately it appears the hosted mode browser doesn't accept self signed se

Hosted Mode - Keyboard Shortcuts?

2009-09-08 Thread Geoffrey Wiseman
Are there keyboard shortcuts in the hosted mode browser? In particular, for 'Refresh'? ⌘R doesn't do the trick in OS X. I haven't had a lot of luck searching for GWT hosted mode browser keyboard shortcuts in general. There's not

Re: Hosted mode Caching problem

2009-09-08 Thread Rahul
mlDoc11 to > > check attributes and tags and > > display the contents > > > If I delete A.xml from the folder i get an error "Uncaught exception > > escaped" because there is no file in the folder. If i paste the file i > > still get the old value the one

Re: Running hosted mode + weblogic

2009-09-08 Thread Rajeev Dayal
Hi, The "www" directory has been replaced with the "war" directory. It should be located as a peer of your "src" directory. If you're using the Google Plugin for Eclipse, your directory must be named "war". Otherwise, you can specify the location of the "war" directory via the -war argument. Ra

Re: Hosted mode Caching problem

2009-09-08 Thread Frank Argueta
file i > still get the old value the one was in the beginning. If i copy the > contents of A.xml to B.xml and then run it (changing the > Requestbuilder to A.xml to B.xml) I see in my hosted mode that the > file is get from the server (because its the first time and not > cached) and then i see the

Re: Hosted mode Caching problem

2009-09-08 Thread Rahul
ml to B.xml and then run it (changing the Requestbuilder to A.xml to B.xml) I see in my hosted mode that the file is get from the server (because its the first time and not cached) and then i see the change in the values Thanks for helping me, if theres any more information you require please tel

Re: Hosted mode Caching problem

2009-09-08 Thread ThomasWrobel
e able to have no > caching when i deploy my application on the web server(Apache tomcat) > > What about when i am developing my application and testing in the > google webtoolkit hosted mode? > > On Sep 6, 12:01 pm, ThomasWrobel wrote: > > > > > Have you tried us

Re: Hosted mode Caching problem

2009-09-08 Thread Rahul
Hi, Thanks for the reply I believe( i havent tired it yet) with this i would be able to have no caching when i deploy my application on the web server(Apache tomcat) What about when i am developing my application and testing in the google webtoolkit hosted mode? On Sep 6, 12:01 pm

Re: Hosted mode windows position

2009-09-08 Thread Sri
You should stop using the hosted mode browser, and start using the oophm plugin. It gives you the same features of hosted mode browser within firefox. This should solve your annoying problem. On Sep 7, 10:40 am, Andrey wrote: > Hello! > > Is there any way to restore previous ho

Hosted mode windows position

2009-09-07 Thread Andrey
Hello! Is there any way to restore previous hosted mode windows position and size. Every time I start a hosted mode server I need to: 1. move hosted mode server window to the second monitor; 2. expand hosted mode browser, because it opens very small by default. It would be much better if they

Re: Hosted mode Caching problem

2009-09-06 Thread ThomasWrobel
not to be cached) Assumeing your sever is apache. On Sep 4, 5:02 pm, Rahul wrote: > Hi, > I am reading an file A.xml each time and modifying it and saving it on > my server. Now how can  the browser or the hosted mode that the file > has been changed, because whenever it sees that the

Running hosted mode + weblogic

2009-09-04 Thread ToddP
We just upgraded from GWT 1.5.3 to 1.7. In Eclipse's debugger, we used to have a "Program arguments:" of "- out target/www http://localhost:7001/mysite"; in the Debugger's configuration. This allowed the app to run on WebLogic until it hit the GWT modules. GWT 1.7 eliminated the "-out" parm.

Hosted mode Caching problem

2009-09-04 Thread Rahul
Hi, I am reading an file A.xml each time and modifying it and saving it on my server. Now how can the browser or the hosted mode that the file has been changed, because whenever it sees that the name of the file is same i.e. A.xml it never gets from the server, it just shows the content in it

Re: Hosted mode hangs on localhost... [SOLVED]

2009-09-04 Thread Pietro Marrone
blow away the "eclipse" directory. > Then, try running the app again. > > Rajeev > > On Thu, Sep 3, 2009 at 6:37 AM, Pietro Marrone wrote: > > > > > Hi, I'm using "Google Plugin for Eclipse" to create the "Web > > Application Starter Project&

Re: hosted mode trouble

2009-09-03 Thread Nathan Wells
5";)); > > > Honestly, I don't know if I'm using the Jetty server. How do I tell? I > > have no app engine configured in Eclipse. > > > When I debug my GWT project in Eclipse response.getStatusCode() comes > > back as 0 (zero) > > When I add -no

Re: hosted mode trouble

2009-09-03 Thread sidkdbl07
Wow, its funny how in one split moment, epiphany can hit! Thank you Jeff! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to google-web-toolkit@googlegrou

Re: hosted mode trouble

2009-09-03 Thread Jeff Chimene
engine configured in Eclipse. > > When I debug my GWT project in Eclipse response.getStatusCode() comes > back as 0 (zero) > When I add -noserver to the run configuration, the GWT hosted mode > browser doesn't display my page... it seems to just sit there empty. > > I hope

Re: Hosted mode hangs on localhost...

2009-09-03 Thread Rajeev Dayal
2009 at 6:37 AM, Pietro Marrone wrote: > > Hi, I'm using "Google Plugin for Eclipse" to create the "Web > Application Starter Project". > Unfortunately the project hangs on hosted mode, exactly only the > static content appear while the input type and the butto

Hosted mode hangs on localhost...

2009-09-03 Thread Pietro Marrone
Hi, I'm using "Google Plugin for Eclipse" to create the "Web Application Starter Project". Unfortunately the project hangs on hosted mode, exactly only the static content appear while the input type and the button are missing. this is the hosted mode relavant log: [D

Re: hosted mode trouble

2009-09-02 Thread Jeff Chimene
On 09/02/2009 03:42 PM, sidkdbl07 wrote: > > The output of my php is a JSON object (see below). Shouldn't I be able > to just call the php file? Are you using the builtin Jetty server? It doesn't have a php engine. --~--~-~--~~~---~--~~ You received this message

Re: hosted mode trouble

2009-09-02 Thread sidkdbl07
ck as 0 (zero) When I add -noserver to the run configuration, the GWT hosted mode browser doesn't display my page... it seems to just sit there empty. I hope this clears up what I'm trying to accomplish. --~--~-~--~~~---~--~~ You received this message becau

Re: hosted mode trouble

2009-09-02 Thread sidkdbl07
The output of my php is a JSON object (see below). Shouldn't I be able to just call the php file? Here is my php code: getMessage()."\n"); } $data = $metar->getWeather("CYBW", "Metric"); $icon = $metar->getWeatherIcon($data['condition'], $data['clouds'], $data['wind'], $data['temperature'],51.0

Re: hosted mode trouble

2009-09-02 Thread Jeff Chimene
On 09/02/2009 02:44 PM, sidkdbl07 wrote: > > I want to call a php file on my server to provide a weather service. > When I'm running in hosted mode, response.getStatusCode() gives 0 > (zero). Is there a way to make this work in hosted mode? Are you using hosted mode -noser

hosted mode trouble

2009-09-02 Thread sidkdbl07
I want to call a php file on my server to provide a weather service. When I'm running in hosted mode, response.getStatusCode() gives 0 (zero). Is there a way to make this work in hosted mode? public class IMFPanelWeather extends Composite { private VerticalPanel table

Re: Hosted-mode - how to set the Jetty URL?

2009-09-02 Thread Thomas Broyer
On 2 sep, 11:26, "tedlief...@gmail.com" wrote: > I am trying to work through the getting started tutorial.  I am on a > mac with Atempo live-update that is already running on and as a > result the hosted mode jetty server can't start properly.  How do I > confi

Hosted-mode - how to set the Jetty URL?

2009-09-02 Thread tedlief...@gmail.com
I am trying to work through the getting started tutorial. I am on a mac with Atempo live-update that is already running on and as a result the hosted mode jetty server can't start properly. How do I configure the hosted mode to use a different

Re: New Windows Update Causing Hosted Mode Failure - GWT 1.5

2009-09-01 Thread DuoCentillion
Nevermind. After a proper reset, it works fine again. Half installed Windows Updates can be fatal to GWT I guess. On Aug 31, 10:18 pm, Joseph M wrote: > Has anyone experienced a strange Windows or IE security error when > trying to start their GWT hosted mode (I am still using G

Re: Quick fix for broken hosted mode with Snow Leopard 10A380 on x86_64

2009-09-01 Thread Bruno
Thanks for the life saver. Bruno On 14 août, 18:15, johnw188 wrote: > I zipped my 1.5 directory. Just expand it to /System/ > Library/Frameworks/JavaVM.framework/Versions/ > > http://files.me.com/johnwelsh/pn6hua > > --John > --~--~-~--~~~---~--~~ You received

Re: Hosted mode hanging 4 out of 10times

2009-08-31 Thread Sumit Chandel
t; > - how do I connect to convert is JDBC ResultSet into ArrayList > - how do I execute DOS commands > - how do I convert XML to PDF > - how do I format XML on the server > - why xml manipulations fails on server > - hosted mode hangs because I did something screwy on my server an

New Windows Update Causing Hosted Mode Failure - GWT 1.5

2009-08-31 Thread Joseph M
Has anyone experienced a strange Windows or IE security error when trying to start their GWT hosted mode (I am still using GWT 1.5). Instead of hosted mode starting normally I get a Windows Blue Shield Security Question whether to Open or Save the html. Save tries to open the same URL in Firefox

Re: Hosted mode hanging 4 out of 10times

2009-08-31 Thread Sumit Chandel
Hi gaillard, Similar to how Ian is trying to troubleshoot Rahul's problem, you'll have to cut bits out of your code until you can consistently get hosted mode started up correctly. Also, could you try running a simple "Hello, World" style application in hosted mode

Re: Hosted mode hanging 4 out of 10times

2009-08-29 Thread gaill...@audemat.com
Core2duo but failed sometime on Atom 330. I know Atom 330 is somewhat slow and not really adapted to code with windows+eclipse+GWT+jetty but very usefull to test applications on low end final env. I think some parts on GWT hosted mode doesn't wait enough for

Re: Hosted mode hanging 4 out of 10times

2009-08-28 Thread Ian Bambury
DBC ResultSet into ArrayList > - how do I execute DOS commands > - how do I convert XML to PDF > - how do I format XML on the server > - why xml manipulations fails on server > - hosted mode hangs because I did something screwy on my server and > here's my sample code : >

Re: Hosted mode hanging 4 out of 10times

2009-08-28 Thread Frank Argueta
erver - why xml manipulations fails on server - hosted mode hangs because I did something screwy on my server and here's my sample code : <> I realize you are a helpful bunch of smart guys, but imagine if every Java beginner starts posting such questions on the GWT forum. The traffic on

Re: Hosted mode hanging 4 out of 10times

2009-08-28 Thread Rahul
ResultSet into ArrayList > - how do I execute DOS commands > - how do I convert XML to PDF > - how do I format XML on the server > - why xml manipulations fails on server > - hosted mode hangs because I did something screwy on my server and > here's my sample code : > <

Re: Hosted mode hanging 4 out of 10times

2009-08-28 Thread Rahul
ok Frank, how do you want me to address the issue Certainly there's is some communication gap between us. I understood the last time you said and i was at fault and i accept that. My hosted mode works 6 out of 10 times should i just give my client code? and no server code at all? On A

Re: Hosted mode hanging 4 out of 10times

2009-08-28 Thread Ian Bambury
u are the most up-to-date, active and comprehensive > user of > > > GWT > > > > > > out of the 20,000 of us here - I'm not, so I check the issue > > > tracker). > > > > > > > > Coming up with a simple example to demonstrate your problem is >

Re: Hosted mode hanging 4 out of 10times

2009-08-28 Thread Ian Bambury
2009/8/28 Isaac Truett > > Ian, > > Yes, the name did not escape my notice. But I do find reference to it > as a surname, probably of Spanish origin. Why not give him the benefit > of the doubt? Because he's only posted 4 times and his previous comment to Rahul was "Perhaps you should learn Ja

Re: Hosted mode hanging 4 out of 10times

2009-08-28 Thread Isaac Truett
; > > > server might >> >> > > > be). >> >> >> >> > > > In this kind of situation, I'd say that the first stop is the >> >> > > > issue >> >> > > tracker. >> >> > > > Pretty

Re: Hosted mode hanging 4 out of 10times

2009-08-28 Thread Ian Bambury
> out of the 20,000 of us here - I'm not, so I check the issue > tracker). > >> > >> > > > Coming up with a simple example to demonstrate your problem is the > next > >> > > > step. If you take a copy of your problem project and cut it do

Re: Hosted mode hanging 4 out of 10times

2009-08-28 Thread Isaac Truett
nd up with a good, reproducible example of the >> > > > problem. But if your experience is anything like mine, you'll cut out >> > > > one >> > > > bit which can't possibly cause the problem and discover that the >> > > > probl

Re: Hosted mode hanging 4 out of 10times

2009-08-28 Thread Frank Argueta
gt; > > one > > > > bit which can't possibly cause the problem and discover that the problem > > > > goes away. And then you have a Peter Glaze 'Doh!' moment (don't worry if > > > you > > > > didn't get that 'Peter Glaze&

Re: hosted mode stucks, debugger does not work...

2009-08-28 Thread jaimon
; > > Jaimon wrote: > > > hi all, > > > i am new to the GWT world, i have started to do the tutorial > > > (StockWatcher) and everything wasworkingwell and pretty easy till i > > > got to the point of where: > > > > 1) my hosted

<    2   3   4   5   6   7   8   9   10   11   >