Linking multiple GWT applications in hosted mode

2009-01-14 Thread kungfoo
I have two separate GWT applications where one application has a link to the other. How do I get hosted mode to run the other application when the link is clicked? My initial solution was to inherit the GWT application that was being linked. This allowed for the application's main html file

Re: Linking multiple GWT applications in hosted mode

2009-01-14 Thread Thomas Broyer
On 14 jan, 11:59, kungfoo chris.k...@gmail.com wrote: I have two separate GWT applications where one application has a link to the other. How do I get hosted mode to run the other application when the link is clicked? My initial solution was to inherit the GWT application that was being

Re: Linking multiple GWT applications in hosted mode

2009-01-14 Thread kungfoo
Thanks! I will give this a try. On Jan 14, 5:31 am, Thomas Broyer t.bro...@gmail.com wrote: On 14 jan, 11:59, kungfoo chris.k...@gmail.com wrote: I have two separate GWT applications where one application has a link to the other. How do I get hosted mode to run the other application when

[gwt-contrib] code review requested for 1.6 - refactor hosted mode classes to ease future merges into trunk

2009-01-14 Thread John Tamplin
causes problems for OOPHM. This change could be made just to trunk, but then future changes in the hosted mode classes (which seems likely) will make merges more painful than they need to be. This also includes the rename of BootStrapPlatform methods already made in trunk (this will cause merge

[gwt-contrib] Re: code review requested for 1.6 - refactor hosted mode classes to ease future merges into trunk

2009-01-14 Thread John Tamplin
()) { - System.err.println(You must use a Java 1.5 runtime to use GWT Hosted Mode on Mac OS X.); - System.exit(-1); -} - -LowLevelSaf.init(); -// Ensure we were started with -XstartOnFirstThread -if (!hasStartOnFirstThreadFlag(LowLevelSaf.getProcessArgs())) { - System.err.println(Invalid

Re: Hosted Mode Configuration Question

2009-01-13 Thread sjn...@gmail.com
everyone, Just a note that you would probably want to use hosted mode with the -noserver option before bulking up the server-side on the embedded Tomcat server. A few reasons to do this: 1) The embedded Tomcat server is somewhat custom built, meaning you can't expect everything that would work

Re: Unable to open web app in hosted mode

2009-01-12 Thread olivier FRESSE
files run perfectly fine in hosted mode. On Sat, Jan 10, 2009 at 12:55 AM, Sahil Dave sahil.dav...@gmail.comwrote: Hi.. i am getting the following errors in console while trying to open web app in hosted mode Locking assertion failure. Backtrace: #0 /usr/lib/libxcb-xlib.so.0 [0xb4c4f7c7

Re: Unable to open web app in hosted mode

2009-01-12 Thread Sahil Dave
On Mon, Jan 12, 2009 at 4:15 PM, olivier FRESSE olivier.fre...@gmail.comwrote: Hard to help you with so few informations :-) Anyway, it looks like you're using linux. I don't know what's your distro, but first, check your java installation. You hava a JDK installed in /home/sahil/jdk1.6.0,

Re: Unable to open web app in hosted mode

2009-01-11 Thread Sahil Dave
Does anyone know what this error is..? whenever i create a new project, the default files run perfectly fine in hosted mode. On Sat, Jan 10, 2009 at 12:55 AM, Sahil Dave sahil.dav...@gmail.com wrote: Hi.. i am getting the following errors in console while trying to open web app in hosted

Re: Hosted Mode Configuration Question

2009-01-09 Thread Sumit Chandel
Hello everyone, Just a note that you would probably want to use hosted mode with the -noserver option before bulking up the server-side on the embedded Tomcat server. A few reasons to do this: 1) The embedded Tomcat server is somewhat custom built, meaning you can't expect everything that would

Unable to open web app in hosted mode

2009-01-09 Thread Sahil Dave
Hi.. i am getting the following errors in console while trying to open web app in hosted mode Locking assertion failure. Backtrace: #0 /usr/lib/libxcb-xlib.so.0 [0xb4c4f7c7] #1 /usr/lib/libxcb-xlib.so.0(xcb_xlib_unlock+0x31) [0xb4c4f891] #2 /usr/lib/libX11.so.6(_XReply+0x254) [0xb4feb494] #3

Fresh install, blank page in hosted mode

2009-01-08 Thread rbrich
is Starting HTTP on port . However, the hosted mode browser comes up and it is totally blank. No errors in console or shell window. I am not new to Eclipse or GWT, however I haven't used it since 1.4. This is a freshly installed computer that I am trying 1.5 on. Is there somewhere else I could

Re: Fresh install, blank page in hosted mode

2009-01-08 Thread jian li
already, so I tried to launch. The only message in the shell window is Starting HTTP on port . However, the hosted mode browser comes up and it is totally blank. No errors in console or shell window. I am not new to Eclipse or GWT, however I haven't used it since 1.4. This is a freshly installed

Re: Fresh install, blank page in hosted mode

2009-01-08 Thread rbrich
projectCreator and applicationCreator, then imported into Eclipse. It has some Hello Word code already, so I tried to launch. The only message in the shell window is Starting HTTP on port . However, the hosted mode browser comes up and it is totally blank. No errors in console or shell window

Re: Integrating other frameworks into hosted mode

2009-01-07 Thread Sumit Chandel
Hi Joe, Alternatively, you can use hosted mode with the -noserver option to use your own backend to produce and serve your HTML files. GWT hosted mode will still work to debug your GWT client-side code as well. Using hosted mode with the -noserver option: http://code.google.com/docreader/#p

Hosted mode rendering differently when compared to compiled build.

2009-01-07 Thread hortitude
I have a very simply app that just has a StackPanel. When I look at it in the hosted mode the font is huge. When I compile and put it on a server the font renders smaller. I have checked the server version with Chrome, IE7, and Firefox 3. All 3 of these display it the same way -- which

Re: Hosted Mode Configuration Question

2009-01-06 Thread sjn...@gmail.com
To answer my own question, existing web.xml files work fine with hosted mode. I was able to setup log4j, jdom, my singleton and other third party server side configuration by just copying the config into the generated GWT web.xml in ./tomcat/webapss/ROOT/WEB-INF/web.xml and I created

Re: Hosted Mode Configuration Question

2009-01-06 Thread Joe Cole
. On Jan 7, 2:07 pm, sjn...@gmail.com nichols_sc...@yahoo.com wrote: To answer my own question, existing web.xml files work fine with hosted mode. I was able to setup log4j, jdom, my singleton and other third party server side configuration by just copying the config into the generated GWT web.xml

[gwt-contrib] code review requested for 1.6 - hosted mode speedups

2009-01-06 Thread John Tamplin
The attached patch, relative to releases/1.6 at r4381, improves hosted mode performance by caching frequently referenced data. The cost is a few hundred kilobytes of memory for a large GWT application and provides refresh speedups of approximately 14% (with similar time savings for hosted mode

[gwt-contrib] Re: code review requested for 1.6 - hosted mode speedups

2009-01-06 Thread Scott Blum
LGTM. On Tue, Jan 6, 2009 at 4:09 PM, John Tamplin j...@google.com wrote: The attached patch, relative to releases/1.6 at r4381, improves hosted mode performance by caching frequently referenced data. The cost is a few hundred kilobytes of memory for a large GWT application and provides

[gwt-contrib] Re: code review requested for 1.6 - hosted mode speedups

2009-01-06 Thread John Tamplin
On Tue, Jan 6, 2009 at 5:16 PM, Scott Blum sco...@google.com wrote: LGTM. Thanks, committed to 1.6 at r4382. -- John A. Tamplin Software Engineer (GWT), Google --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors

Re: GWT hosted mode in infinity loop when debugging

2009-01-05 Thread tony,benbrahim
Had the same problem, in my case, the hang was 5 minutes of 50% CPU, since the project is barely started (3000 LOC) A full rebuild fixed the problem Tony --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web

Re: Cannot run GWT application in hosted mode

2008-12-28 Thread basil
The problem was caused by the (!) mark in the GWT path (D:\!Devel\gwt- windows-1.5.3\). I've changed the path and the problem is solved now. The life is much easier now :) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

Re: Cannot run GWT application in hosted mode

2008-12-27 Thread ArunDhaJ
Hi Basil, Its good that you got some trace messages, which could be used to locate the error. In my case I really struggled a lot as there were no traces available... I worked a bit on your problem. Few more clarity would enable to analyze more on it. Is this the only log got generated???

Re: Cannot run GWT application in hosted mode

2008-12-27 Thread basil
I appreciate your reply, Arun. Is this the only log got generated??? Because I suspect few logs should be available between Propery 'catalina.base' and Could not find messages. When I run the shell script with the -logLevel DEBUG option, I get a few more log records: [INFO] Starting HTTP on

Cannot run GWT application in hosted mode

2008-12-26 Thread basil
I am facing exactly the same problem as ArunDhaJ reported in http://groups.google.co.nz/group/Google-Web-Toolkit/browse_thread/thread/f6a17b3812e7efd/1a90aa9d56d46948?lnk=gstq=%22bad+request%22# I do the following: 1. Create a test GWT application: applicationCreator.cmd -out Test

Re: J2EE and debug in hosted mode

2008-12-17 Thread olivier
, and the link he gives is enough to eventually get you there, but there is one thing you have to do in your GWT code or it will never work. Your RPC servlets all have a setServiceEntryPoint() call that is made to tell them where they hookup. By default in hosted mode the GWT runtime will tell your

GETting a request to another server from hosted mode while debugging (whitelist?)

2008-12-17 Thread dduck
RequestException e) { throw new RuntimeException(e); } } Is the ANY way that I can make hosted mode on my development machine allow this request despite the single-origin policy? If not, I have to live with at much slowed down build/test cycle... Sincerely

Hosted mode sleeps forever and never starts on Eclipse 3.4.1

2008-12-16 Thread Chris Mcnally
I'm having a problem running hosted mode in Ecilpse. Just the shell window opens and then it seems to sleep forever and never starts the browser on Eclipse 3.4.1. I've had this issue with both GWT 1.5.3 and 1.5.2. Sometimes it runs fine, other times it never starts. I never had this issue

Re: J2EE and debug in hosted mode

2008-12-15 Thread olivier FRESSE
the GWTShell process in the J2EE one. Regards, 2008/12/14 gregor greg.power...@googlemail.com The simplest is to run hosted mode with the -noserver flag. Then you deploy your EAR with your Ant script once and run debug your GWT client code in hosted mode just hitting the refresh button as you

Re: J2EE and debug in hosted mode

2008-12-15 Thread jos
they hookup. By default in hosted mode the GWT runtime will tell your GWT application that the app server is on localhost so you need to override that by changing the following code which should be in your onModuleLoad() method. The code example below is in my deployment setup, when I'm debugging

Re: J2EE and debug in hosted mode

2008-12-14 Thread Bandesz
Thx for the answer, but I need an exact howto, how can I debug the whole J2EE application with Hosted Mode using Glassfish and Netbeans. As I said, I searched a lot and haven't found a good description. Bandesz On Dec 8, 4:34 am, gregor greg.power...@googlemail.com wrote: couple of approaches

Re: J2EE and debug in hosted mode

2008-12-14 Thread gregor
within IDEA that starts up JBoss inside IDEA and connects to it for debugging purposes on port 8787 (IDEA conveniently knows how to do this). Then I start the GWT module in hosted mode also in debug. As a result the whole stack is running in debug and break points can be set anywhere. It looks like

Re: J2EE and debug in hosted mode

2008-12-14 Thread Bandesz
I wrote it wrong, not the debug is the problem, I just want to run the enterprise application (EJB+Web) in Hosted Mode, I wrote debugging because hosted mode runs if I debug the web application. If I understand correctly, the build-gwt.xml is responsible for the hosted mode. If I run the ent

Re: J2EE and debug in hosted mode

2008-12-14 Thread gregor
The simplest is to run hosted mode with the -noserver flag. Then you deploy your EAR with your Ant script once and run debug your GWT client code in hosted mode just hitting the refresh button as you go. On Dec 14, 5:01 pm, Bandesz band...@blog.hu wrote: I wrote it wrong, not the debug

JSESSIONID cookie in hosted mode

2008-12-11 Thread markus.ecker
Hi! When I run GWT in hosted mode, no JSESSIONID cookie is sent to the browser. Do I have to tune the configuration files to enable the session cookie ? Thanks, Markus --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

Re: GWT hosted mode in infinity loop when debugging

2008-12-11 Thread Alex Epshteyn
, maticpetek maticpe...@gmail.com wrote: Hello,    I'm developing one project in GWT for more then a year now. Of course I add new code all the time. But one week ago debug mode stop working. When I run my project in Eclipse in debug mode, GWT hosted mode is started but then java process start using

Re: GWT hosted mode in infinity loop when debugging

2008-12-11 Thread Alex Epshteyn
On Oct 31, 2:42 pm, maticpetek maticpe...@gmail.com wrote: Hello, I'm developing one project in GWT for more then a year now. Of course I add new code all the time. But one week ago debug mode stop working. When I run my project in Eclipse in debug mode, GWT hosted mode is started

Re: URL that is launced in Hosted Mode

2008-12-08 Thread Jason Essington
does GWT.getHostPageBaseURL() help you out any? -jason On Dec 6, 2008, at 3:50 PM, funwithgwt wrote: Hi, Question 1: My URL in hosted mode looks like this: http://localhost:/com.mywebsite.MyBlog/MyBlog.html I would like the application to be launced in hosted mode so that it looks

J2EE and debug in hosted mode

2008-12-07 Thread Bandesz
(or in ejb-jar.xml), but the error stays. (I see now that it's a dead end) If I debugging the enterpise project, everythings works except the hosted mode. I searched a lot, but I can't make this work, please help. Thanks, Bandesz --~--~-~--~~~---~--~~ You received

Re: J2EE and debug in hosted mode

2008-12-07 Thread gregor
-toolkit-doc-1-5s=google-web-toolkit-doc-1-5t=FAQ_HostedModeNoServer 2) You can run your RPC servlets in hosted mode Tomcat instance leaving your session beans on Glassfish with a bit more work. You need to use trad JNDI to try for a local reference to your session beans, and if that fails go

URL that is launced in Hosted Mode

2008-12-06 Thread funwithgwt
Hi, Question 1: My URL in hosted mode looks like this: http://localhost:/com.mywebsite.MyBlog/MyBlog.html I would like the application to be launced in hosted mode so that it looks like this: http://localhost:/MyBlog.html I have multiple modules. When I deploy these modules I

Re: URL that is launced in Hosted Mode

2008-12-06 Thread Ian Bambury
] Hi, Question 1: My URL in hosted mode looks like this: http://localhost:/com.mywebsite.MyBlog/MyBlog.html I would like the application to be launced in hosted mode so that it looks like this: http://localhost:/MyBlog.html I have multiple modules. When I deploy these modules I

log4j in hosted mode swallows Spring and Hibernate statements

2008-12-03 Thread marcelstoer
In http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/1870ed6575c95f7b/dd6dc12a67feeb02?lnk=gstq=log4j+hosted+spring#dd6dc12a67feeb02 an issue was raised (but not solved apparently) that we're seeing here too. In hosted mode we're only seeing the log statements from our own

Re: log4j in hosted mode swallows Spring and Hibernate statements

2008-12-03 Thread Au Lai Seong
(but not solved apparently) that we're seeing here too. In hosted mode we're only seeing the log statements from our own GWT application, but we're missing the ones from Spring and Hibernate albeit the log4j config seems to be correct. It doesn't make a difference if I set the root logger

Re: How to run a signed java applet in hosted mode of gwt??

2008-12-02 Thread mon3y
a double tuck, reverse somersault with a half twist.then maybe) HTH, ; ) On Dec 2, 12:22 pm, ship [EMAIL PROTECTED] wrote: hi, In my application, i want to run a signed java applet in hosted mode, this signed java applet is running succesfully in browser mode but when i run it on hosted mode

How to run a signed java applet in hosted mode of gwt??

2008-12-02 Thread ship
hi, In my application, i want to run a signed java applet in hosted mode, this signed java applet is running succesfully in browser mode but when i run it on hosted mode it gives errors. Currently i am using gwt-1.4.62. Pl try to resolve this problem

Re: How to run a signed java applet in hosted mode of gwt??

2008-12-02 Thread kilkenny
://code.google.com/p/google-web-toolkit/issues/detail?id=283 Regards, Adrian -- http://code.google.com/p/gwtai/ On 2 Dez., 11:22, ship [EMAIL PROTECTED] wrote: hi, In my application, i want to run a signed java applet in hosted mode, this signed java applet is running succesfully in browser

Re: How to run signed applet in hosted mode and other inside

2008-12-01 Thread Martin Trummer
in www folder then it works fine but when i run through hosted mode it gives error:cannot load class sun/plugin/ JavaRunTime.the bridge was installed at c:\PROGRA~1\JAVA\JRE1.6.0 but the class is not there modify the registry key to reflect the new bridge location.something like

Re: Slow compiler - can I generate minimal set of files for hosted mode only (esp. serialization policy files)?

2008-12-01 Thread Arthur Kalmenson
complex I run the GWT shell with -noserver (after deploying all the necessary things on the server). Now most of the time I don't actually every need the client-side JavaScript because after redeploying my app I go straight to hosted mode. Is there a way to make the GWT compiler only generate

How to run signed applet in hosted mode and other inside

2008-11-28 Thread avd
a javascript file in that i wrote a function that function called the java function that lives in applet class files,when i run applet through html file by simple clicking in www folder then it works fine but when i run through hosted mode it gives error:cannot load class sun/plugin/ JavaRunTime.the

Slow compiler - can I generate minimal set of files for hosted mode only (esp. serialization policy files)?

2008-11-27 Thread Christian Mallwitz
complex I run the GWT shell with -noserver (after deploying all the necessary things on the server). Now most of the time I don't actually every need the client-side JavaScript because after redeploying my app I go straight to hosted mode. Is there a way to make the GWT compiler only generate

Re: Newbie question - GWT not creating files in Hosted mode.

2008-11-26 Thread fancyplants
Doh, thanks Thomas, schoolboy error! On Oct 10, 9:24 am, Thomas Broyer [EMAIL PROTECTED] wrote: On 9 oct, 13:24, fancyplants [EMAIL PROTECTED] wrote: [WARN] Resource not found: com.app.gwt.client.Main.nocache.js; (could a file be missing from the public path or a servlet tag

Re: using Jetty for hosted mode?

2008-11-26 Thread rakesh wagh
check this: http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/604aec6b7460c133/419baa6d8488eaa6?hl=enlnk=gstq=jetty#419baa6d8488eaa6 On Nov 25, 4:07 am, Juan Backson [EMAIL PROTECTED] wrote: Hi, Does anyone know how to change GWT default servlet engine to Jetty? Any

using Jetty for hosted mode?

2008-11-25 Thread Juan Backson
Hi, Does anyone know how to change GWT default servlet engine to Jetty? Any suggestion will be greatly appreciated. Thanks, JB --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to

Re: Debugging on hosted mode using different Tomcat server

2008-11-20 Thread Isaac Truett
Sounds like the application isn't deployed on your tomcat server. Did you confirm that it deployed successfully? On Wed, Nov 19, 2008 at 11:27 PM, Jas199931 [EMAIL PROTECTED] wrote: Hi, All: I have Tomcat running locally on port 8080. In order to debug code on hosted mode using my local

Re: Debugging on hosted mode using different Tomcat server

2008-11-20 Thread Jas199931
Thank you for the hint. In fact, I was confused when I read your comment at the first time. Why should we deploy the application if we just want to debug on the hosted mode? Later on, when I read the online tutorial carefully, it seems that the following statement implies that we need to deploy

Re: Debugging on hosted mode using different Tomcat server

2008-11-20 Thread Isaac Truett
much easier than copying files around by hand. On Thu, Nov 20, 2008 at 4:26 PM, Jas199931 [EMAIL PROTECTED] wrote: Thank you for the hint. In fact, I was confused when I read your comment at the first time. Why should we deploy the application if we just want to debug on the hosted mode

Re: GWT Gadget, running in hosted mode with -noserver option

2008-11-19 Thread Eric Ayers
Hey Bob, I am not sure if I ever tried using hosted mode debugging under Windows (I develop mainly on Mac Linux). I tracked this to this windows specific part of the BrowserWidgetIE6.java: private static void setIntProperty(IDispatch frameWnd, String propName, int intValue

Re: GWT Gadget, running in hosted mode with -noserver option

2008-11-19 Thread Eric Ayers
+jat,scottb Bob didn't have any suggestions on this one. -- Forwarded message -- From: Eric Ayers [EMAIL PROTECTED] Date: Wed, Nov 19, 2008 at 11:33 AM Subject: Re: GWT Gadget, running in hosted mode with -noserver option To: Google-Web-Toolkit@googlegroups.com, BobV [EMAIL

Debugging on hosted mode using different Tomcat server

2008-11-19 Thread Jas199931
Hi, All: I have Tomcat running locally on port 8080. In order to debug code on hosted mode using my local Tomcat server instead of the embedded GWT tomcat server, I followed the instruction given online ((http:// code.google.com/docreader/#p=google-web-toolkit-doc-1-5s=google-web- toolkit-doc-1

Re: Cookies in hosted mode won't go away

2008-11-18 Thread Eros
On Nov 17, 7:21 pm, yunhui song [EMAIL PROTECTED] wrote: Cookies.removeCookie(userId) doesn't work  here too. I use expire time to remove it, it works. Great, thanks for the tip! E --~--~-~--~~~---~--~~ You received this message because you are subscribed to

GWT Gadget, running in hosted mode with -noserver option

2008-11-18 Thread [EMAIL PROTECTED]
I am trying to run a GWT Gadget in hosted mode with the -noserver option, but when I run I keep getting the following error: [ERROR] Failure to load module 'com.chordiant.gwt.helloworld.HelloWorldGadget' java.lang.RuntimeException: No such property __gwt_module_id

Cookies in hosted mode won't go away

2008-11-17 Thread Eros
Hi, I can't get rid of cookies in hosted mode. I wrote a userId cookie using: Cookies.setCookie(userId, userId); and now I can't remove it. I tried the following: - Cookies.removeCookie(userId); - restarting the hosted mode - Eclipse - Project - Clean... - restarting Eclipse - removing www

Re: Cookies in hosted mode won't go away

2008-11-17 Thread Eros
I finally managed to get rid of the cookie: I had set it to expire in 14 days, so I set the system time 30 days in the future and it finally worked. Still there's gotta be a way of getting rid of unwanted cookies in hosted mode, is this a bug? (or maybe a feature

Re: Cookies in hosted mode won't go away

2008-11-17 Thread yunhui song
, Sammi On Mon, Nov 17, 2008 at 9:50 AM, Eros [EMAIL PROTECTED] wrote: Hi, I can't get rid of cookies in hosted mode. I wrote a userId cookie using: Cookies.setCookie(userId, userId); and now I can't remove it. I tried the following: - Cookies.removeCookie(userId); - restarting

No errors displayed after failures in hosted mode, just http://localhost:8888

2008-11-17 Thread just marvin
My OSX (10.5.1) system suddenly stopped working at all with GWT. Downloading a fresh install and running any of the samples (e.g., Mail- shell) brings up the GWTShell and then WebKit browser, but the browser simply displays http://localhost: (not the URL for the Mail app). I can run with

[gwt-contrib] Re: IFrameTemplate.js broken for noserver hosted mode in trunk

2008-11-11 Thread Scott Blum
Lex is going to take a look at this, it was part of the runAsync changes. On Tue, Nov 11, 2008 at 1:47 AM, Cameron Braid [EMAIL PROTECTED] wrote: hosted.html expects the querystring to contain only the module strongName where as it curently contains strongName + .cache.html IFrameTemplate.js

Re: Blank page in Hosted Mode

2008-11-10 Thread Blaise
Hi again, Thanks Chandel for the reply. I will try to clarify some things: I didn't upgrade all my projects to gwt-1.5.3. I only created a new project (just for testing) using gwt-1.5.3. The old projects all are still using gwt-1.4. Only one of my projects shows a blank page in hosted mode

Re: Blank page in Hosted Mode

2008-11-07 Thread Sumit Chandel
. Other than that, I would need a bit more info to figure out what's going on. Perhaps some details on how the project and your hosted mode run configuration are setup? Hope that helps, -Sumit Chandel On Tue, Nov 4, 2008 at 6:36 AM, Blaise [EMAIL PROTECTED] wrote: Hi, I have a project that I created

Blank page in Hosted Mode

2008-11-04 Thread Blaise
Hi, I have a project that I created long time ago using projectCreator and applicationCreator with Eclipse and GWT 1.4. The project used to work perfectly in both hosted and web mode. Today I tried to open it, it shows a blank page in hosted mode same thing in web mode. The page loads faster

Re: Padding in hosted mode

2008-11-04 Thread Sumit Chandel
Hi Hez, Here are a couple of questions that should help figure out what's going on: 1) Which browser are you using when running in web mode (where the CSS styles are working)? Compare that to the browser that is being used in hosted mode (IE for WIndows, FF for Linux and Safari for Mac

Hosted Mode Profiler

2008-11-03 Thread jagadesh
Hi Guys i want to test my get application as how much memory it is using , objects created in hosted mode. much like a java profiler . how can i do that in gwt hosted mode. can any one sort me out. thank u --~--~-~--~~~---~--~~ You received this message because

GWT hosted mode in infinity loop when debugging

2008-10-31 Thread maticpetek
Hello, I'm developing one project in GWT for more then a year now. Of course I add new code all the time. But one week ago debug mode stop working. When I run my project in Eclipse in debug mode, GWT hosted mode is started but then java process start using 100% CPU time and takes infinity time

Re: GWT hosted mode in infinity loop when debugging

2008-10-31 Thread mikedshaf...@gmail.com
code all the time. But one week ago debug mode stop working. When I run my project in Eclipse in debug mode, GWT hosted mode is started but then java process start using 100% CPU time and takes infinity time (ok, after 30 minutes I kill the process). If i run my project in run mode, everything

Hosted mode for production?

2008-10-31 Thread javawizard2539
will involve custom libraries (in particular, the Java Cryptography Architecture) to an extent that it is not feasible for me to use RPC. What I'm wondering is, is it possible to use the hosted mode in a production environment, specifically in an embedded server? I'm using embedded Jetty

Re: HTTPRequest, hosted mode, and the whitelist

2008-10-29 Thread zemi
OSX) I get the PHP JSON output that I expect. I also get the output I expect if I paste it into the hosted mode browser, as long as I put it the site's URL into thewhitelist. If I compile the project, and then load the project's HTML file into my browser, that also loads the GWT output

Re: Project won't run in hosted mode?

2008-10-28 Thread walden
Michael, The only part of your console log that's remotely germain is this part: debug: And then you've left us with absolutely no idea what that target even does. How could anyone know what's gone wrong? Walden On Oct 27, 5:57 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, I have

Re: CSS font size not working in hosted mode

2008-10-28 Thread sibiquin
I added the style tag you suggested to the head section of the HTML. The font family displayed correctly, but the size has no effect. As another experiment I installed Eclipse and GWT 1.5.3 on another machine and it works fine there - both machines are Windows XP Pro SP2. I have no clue as to

Re: CSS font size not working in hosted mode

2008-10-28 Thread Ian Bambury
Don't bite my head off, but you *are* amending the right html file aren't you? It's personal experience talking here :-) It might also be worth (before the next suggestions) clearing out the IE cache, and deleting any /bin/ and /tomcat/ and /www/ directories in any other projects that might be

Re: CSS font size not working in hosted mode

2008-10-28 Thread Ian Bambury
Running out of ideas, here. I have had a really strange situation - I can't really remember now, memory or a crash or something - nothing like you're getting - and I'd even rebuilt the machine (not because of that problem) and *still* got it. The someone said that certain combinations of Java and

Re: CSS font size not working in hosted mode

2008-10-27 Thread Ian Bambury
Are you using the standard theme and it is being applied further down the cascade thus overriding your font-size? Not that is should be different in hosted mode, though. Ian http://examples.roughian.com --~--~-~--~~~---~--~~ You received this message because you

Re: CSS font size not working in hosted mode

2008-10-27 Thread sibiquin
, but in the default size (about 12pt, I think). This is driving my crazy...! On Oct 27, 3:38 pm, Ian Bambury [EMAIL PROTECTED] wrote: Are you using the standard theme and it is being applied further down the cascade thus overriding your font-size? Not that is should be different in hosted mode

Re: CSS font size not working in hosted mode

2008-10-27 Thread Ian Bambury
Actually, even with the theme, font-size set with button.getElement().getStyle().setProperty(fontSize, 20pt); works for me. What OS are you on? Ian http://examples.roughian.com --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

Re: CSS font size not working in hosted mode

2008-10-27 Thread sibiquin
I am on Windows XP, nothing special. Running GWT 1.5.2. I did notice this discussion item from a few weeks ago: http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/90bf0b54b0293cf9 So I removed the inherits tag from the app gwt.xml and it made no difference. Also tried the

Project won't run in hosted mode?

2008-10-27 Thread [EMAIL PROTECTED]
Hi, I have been developing a project over the past few months; but today I’ve noticed that I am unable to debug the project. When attempting to launch into debug, the project compiles successfully, but the hosted window does not appear? The console displays: Building jar:

Re: Project won't run in hosted mode?

2008-10-27 Thread Amit Dhingra
I had faced similar problem... Heres the reply I had received for something similar I have done the following... Java Application Main Project: try5 Main class: com.google.gwt.dev.GWTShell Arguments Program arguments: -out www eu.future.earth.gwt.MainDemoApp/MainDemoApp.html

Re: Hosted mode breaks with empty script tag

2008-10-25 Thread Thomas Broyer
/ This causes the hosted mode browser to not execute the module. And I guess not only the Hosted Mode, as this is not valid HTML (but looks more like XHTML, which IE doesn't know what to do with). If you're sending this fragment as text/html, you're wrong. See also: http://hixie.ch/advocacy/xhtml http

A strange query regarding hosted mode, and web mode

2008-10-24 Thread Ajay Garg
Hi all. I am facing a strange problem. I am working on an application, that should display a tree of datra fetched from the server. Instead, when working with IE6 web mode, the application throws :: 'null' is null or not an object jsp error, while when I run in hosted mode, no such error

Re: A strange query regarding hosted mode, and web mode

2008-10-24 Thread Ajay Garg
Hi all. Found the problem. Actually, it was the String.equalsIgnoreCase being invoked on a null object (I found this after painfully running eclipse in debug mode for 2 hrs, checking line by line :-(. Anyhow, a bigger question : there was no exception thrown in hosted mode, that could tell abt

Hosted mode breaks with empty script tag

2008-10-24 Thread jlw
Ok. So I've written a web application with GWT where the page is dynamically generated from XML within a servlet. When serialized out, it produces a script element such as: script language=javascript src=com.module.Test.nocache.js / This causes the hosted mode browser to not execute the module

Re: Hosted mode breaks with empty script tag

2008-10-24 Thread walden
/ This causes the hosted mode browser to not execute the module. As a workaround, I create the script element: script language=javascript src=com.module.Test.nocache.js // placeholder /script This keeps the XML serializer from reducing the script element down to an empty tag as in the first

Unable to run a separate module in hosted mode on oc4j

2008-10-23 Thread Anti
Hello, Thanks for your help. I have been working on my application for a while deploying directly on oc4j, that was a happy world, but today I had to run the application in hosted mode and got the next exception: [ERROR] Unable to find type 'org.eagle.app.docUpload.client.DocUpload' (you can

Re: Deferred binding result type gone after refresh in hosted mode

2008-10-21 Thread Ivo
Hi Sumit, I was being unclear: with 'a bit of caching in the Generator' I meant 'a bit of caching in _my_ Generator extension'. I originally added the caching in an attempt to shorten the compile time, as I noticed the generator was called a many times for the same classes. It didn't actually

Re: Hosted Mode and setFocus()/setTabIndex()

2008-10-21 Thread jbdhl
I files an issue (#3008) about both setTabIndex() and setFocus(). You might take a look at it. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: Hosted Mode and setFocus()/setTabIndex()

2008-10-21 Thread jbdhl
I have filed an issue (#3008) on this. Take a look. --~--~-~--~~~---~--~~ 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@googlegroups.com To unsubscribe

Re: Deferred binding result type gone after refresh in hosted mode

2008-10-20 Thread Ivo
Sumit Chandel [EMAIL PROTECTED] wrote: Could you send us some code to try to reproduce the error? There are a few things that have changed from 1.4.62 to 1.5.2, but we haven't seen this kind of error and would need to reproduce it to find out what's going on. I will try to produce a minimal

Re: Hosted Mode and setFocus()/setTabIndex()

2008-10-20 Thread jbdhl
Should I file an issue in the issue tracker about this problem? --~--~-~--~~~---~--~~ 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@googlegroups.com To

Re: Hosted Mode and setFocus()/setTabIndex()

2008-10-20 Thread Geraldo Lopes
Issue 712: Tab key does not change widget focus in Linux GWT Shell. Reported by ted.andrews, Feb 20, 2007 Same for me on gwt 1.5.3 centos 5, java version 1.6.0_05 Java(TM) SE Runtime Environment (build 1.6.0_05-b13) Java HotSpot(TM) Client VM (build 10.0-b19, mixed mode, sharing) On 20

Re: Hosted Mode and setFocus()/setTabIndex()

2008-10-20 Thread Geraldo Lopes
Issue already opened since Feb, 20 2007 Issue 712: Tab key does not change widget focus in Linux GWT Shell. Issue very annoying, plz vote for resolution On 20 out, 07:25, jbdhl [EMAIL PROTECTED] wrote: Should I file an issue in the issue tracker about this problem?

<    9   10   11   12   13   14   15   >