Re: Plugin fails to connect to hosted mode server

2010-12-21 Thread a...@mechnicality.com
inialises stuff and logs to the console). But when I go to the browser and try to connect, it throws the failed to connect to the hosted mode error. Actually, it fails to connect to any of the other servlets I had written as well. On Dec 21, 9:11 pm, "a...@mechnicality.com" wrote:

Re: Plugin fails to connect to hosted mode server

2010-12-21 Thread a...@mechnicality.com
art up servlet that inialises stuff and logs to the console). But when I go to the browser and try to connect, it throws the failed to connect to the hosted mode error. Actually, it fails to connect to any of the other servlets I had written as well. On Dec 21, 9:11 pm, "a...@mechnicality.com

Re: Plugin fails to connect to hosted mode server

2010-12-21 Thread Sethu
have another project that I had developed which suffers from the > > same problem. This project works fine on the PC that is running XP (32 > > bit). But when I move to the 64 bit win 7 machine, the server starts > > up (i have a start up servlet that inialises stuff and logs to the

Re: Plugin fails to connect to hosted mode server

2010-12-22 Thread Glenn Davies
mple project. > > > I have another project that I had developed which suffers from the > > > same problem. This project works fine on the PC that is running XP (32 > > > bit). But when I move to the 64 bit win 7 machine, the server starts > > > up (i have a start

Re: Plugin fails to connect to hosted mode server

2010-12-22 Thread Glenn Davies
...and it turns out that there's a simple answer. We use a hosts file entry (e.g. app.local.com) which resolves to 127.0.0.1 so we can use a development SSL certificate on all dev machines. Although this host is 127.0.0.1, you need to add app.local.com to the list of allowed hosts in the Chrome

Re: Plugin fails to connect to hosted mode server

2010-12-22 Thread Sethu
Unfortunately I dont have an entry in my hosts file. I added a localhost 127.0.0.1 for an extra measure and tried and still got the same error. Does anyone know why this is happening? The plug ins on chrome, firefox, and IE all of them consistently give me the same error. On Dec 22, 7:53 pm, Glen

Re: Plugin fails to connect to hosted mode server

2010-12-22 Thread Chris Conroy
You don't need to add entries for localhost since those are allowed by default. When you get the error do you see the GWT toolbox turn gray? Click it, then click "Update Your Configuration". It will autofill the options page with the host it detected and you can add it to your whitelist. Once adde

Re: Plugin fails to connect to hosted mode server

2010-12-22 Thread Sethu
Hi Chris, I did what you told me. I added both 127.0.0.1 and localhost to the allowed hosts in the GWT plugin of chrome. Actually it says you need to add one only if you are doing some cross machine debugging. I am connecting from localhost only. Not sure what more to do. I have started up tomcat

Re: Plugin fails to connect to hosted mode server

2010-12-24 Thread Sethu
Not seeing any alternative. I have raised an issue for this http://code.google.com/p/google-web-toolkit/issues/detail?id=5815 On Dec 23, 8:17 am, Sethu wrote: > Hi Chris, > > I did what you told me. I added both 127.0.0.1 and localhost to the > allowed hosts in the GWT plugin of chrome. Actually

Re: Plugin fails to connect to hosted mode server

2011-01-19 Thread Aim
I also have upgraded my application to GWT 2.1.1 and plugin on chrome has started failing. Although it's working on IE. Strange as most of the time it's IE which is trouble maker :) Thanks, On Dec 24 2010, 9:20 am, Sethu wrote: > Not seeing any alternative. I have raised an issue for > thishttp

Re: Plugin fails to connect to hosted mode server

2011-01-19 Thread Aneublav
*PLEASE MAKE SURE NO PROPRIETARY, SENSITIVE OR PRIVATE INFORMATION IS SENT/POSTED HERE* if you dont mind and have no restrictions on sending some debugging data, you may want to: open a command line shell (cmd.exe) as admin and run: netstat -ano > info.txt netsh advfirewall firewall show rule n

[REPOST] Performance issues with Google Chrome in hosted mode

2011-02-10 Thread almeidap
[Sorry for posting this multiple times, either my messages are still blocked after 2 weeks or they have been lost...] I'm experiencing important performance issues when running/debugging our application in hosted mode under Google Chrome. After some benchmark tests, it seems that Chrome is

Exception in GWT/GAE app only in hosted mode

2011-02-23 Thread Sergey Frizen
Hi all! I have a problem launching my app only in hosted mode. On GAE server all works fine. This is a code of service implementation: / package com.jsoft.frontoffice.server; import java.util.Date; import java.util.logging.Logger; import

Re: GWT hosted mode does not work in FF4

2011-03-25 Thread Chris Conroy
raded my FF to FF4 today and GWT hosted mode crashes with the > message "[ERROR] [bam] - Failed to create an instance of > 'net.bookedin.bam.client.BAM' via deferred binding " > > How can I fix this? > > Thanks, > > -- > You received this message because you

Re: Odg.: Re: How to speed up Hosted mode

2011-04-18 Thread Paul Stockley
I am not sure runAsync would make any difference to dev mode. I think all the code still has to be compiled each time. -- 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.co

Re: Odg.: Re: How to speed up Hosted mode

2011-04-18 Thread mike b
I just remembered one other major difference between my environment and my coworker's... I downloaded the gwt 2.2 code branch from google and compiled it with only ie6 and gecko1_8 enabled. (see UserAgent.gwt.xml in gwt-user.jar) Maybe async will help you compile only what has changed, rather

Re: Odg.: Re: How to speed up Hosted mode

2011-04-18 Thread DaveC
I might be on the wrong track but have you checked the temp directory where java writes out files (on windows xp it's something like c:/ documents and settings//*user*/localsettings) I regularly (once a week) have to clear tens of thousands of files and GBs of data otherwise eclipse (and lotus

Re: Odg.: Re: How to speed up Hosted mode

2011-04-18 Thread Jeff Larsen
Lotus notes ouch! -- 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 from this group, send email to google-web-toolkit+unsubscr...@googlegroups.com.

Re: Odg.: Re: How to speed up Hosted mode

2011-04-19 Thread jaga
I noticed that if the temp directory wasn't cleared Eclipse took longer and longer to start up. Up to 10 minutes. I wrote a simple script which runs every boot to clear out the offending files. I am not sure if this affects the compilation performance or not. On Apr 18, 9:24 pm, Jeff Larsen wrote

Re: Odg.: Re: How to speed up Hosted mode

2011-04-19 Thread DaveC
I've also noticed that moving from a GWT 1.7 version of building apps to the 2.1 way (UiBinder CellWidgets etc) makes a noticable difference... (less java/ecmascript code I guess). On Apr 18, 9:24 pm, Jeff Larsen wrote: > Lotus notes ouch! -- You received this message because you are subscr

Re: Odg.: Re: How to speed up Hosted mode

2011-04-19 Thread Palo G.
The main problem is that every time when hosted mode is started all classes are loaded. When you refresh hosted mode and your classes doesn't implement Serializable then these classes will be realoaded even when they were not modified. I don't really now if this will work for GWT hosted

Re: additional web application on hosted mode jetty server

2011-04-29 Thread khiem nguyen
if u dont want to debug both of them at the same time, i think the quickest way is to deploy it in an separate servlet-container On Fri, Apr 29, 2011 at 3:39 PM, cri wrote: > we have a web application that's separate from our gwt web > application. the gwt web application makes server calls (res

Re: additional web application on hosted mode jetty server

2011-04-29 Thread Juan Pablo Gardella
See http://docs.codehaus.org/display/JETTY/Maven+Jetty+Plugin the section Running Multiple Webapps 2011/4/29 cri > we have a web application that's separate from our gwt web > application. the gwt web application makes server calls (rest) to this > separate application. can anyone tell me how m

Can't read from web.xml in Hosted Mode (GWT 2.3)

2011-08-25 Thread Allen Holub
Has anyone managed to successfully read an from web.xml in Hosted Mode (using Jetty). I believe that it's actually possible, but I sure can't get it to work. If you've worked through this issue, and could provide step-by-step instructions for what I need to do, I'd b

how to prevent hosted mode on external production servers?

2011-09-20 Thread Stevko
Could it be as simple as removing the hosted.html file from the deployment? -- 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 from this group, send emai

right-click (ctrl left-click) terminates hosted mode browser

2008-08-30 Thread Chris Tomlinson
GWT-Designer 5.1.0.200808300232, GWT 1.5.2, Eclipse 3.4, Mac OS X 10.5.4 If I right-click (ctrl left-click) anywhere on the hosted mode browser the hosted mode is terminated with the following in the Eclipse console widow: > 2008-08-30 16:35:29.723 java[4131:80f] [Java CocoaCompon

Invalid version number "null" when using the hosted mode

2008-09-02 Thread Noé
Hi, I've got a problem to update the version 1.4 to version 1.5 using Eclipse. I followed the upgrade guide. It's works fine when I'm using the GWT compiler. But when I use the hosted mode, the log in the GWT Dev Shell say: "[ERROR] Invalid version number "null"

Re: GWT 1.5.2 Hosted Mode Browser Error on Linux

2008-09-11 Thread daniel.z
Really nobody experiencing something like that or knowing what is going on? On 9 Sep., 17:34, "daniel.z" <[EMAIL PROTECTED]> wrote: > I'm getting the following error when trying to launch an freshly > created gwt application in hosted mode with gwt 1.5.2. Everyth

Re: GWT 1.5.2 Hosted Mode Browser Error on Linux

2008-09-11 Thread Thomas Broyer
On 11 sep, 14:31, "daniel.z" <[EMAIL PROTECTED]> wrote: > Really nobody experiencing something like that or knowing what is > going on? Googling for "XPCOM error 2147221164" gave among other things: http://www.eclipse.org/swt/faq.php#browserlinux telling it could be that your firefox is statica

Re: GWT 1.5.2 Hosted Mode Browser Error on Linux

2008-09-11 Thread daniel.z
MOZILLA_FIVE_HOME is set to an installation of XULRunner. And as everything works fine with GWT 1.5.0 I expect that my installation generally is ok but something has changed between 1.5.0 and 1.5.2. I tried to find out using gwt subversion repository, but I did not find a 1.5.2 tag there. :( On 1

Re: GWT 1.5.2 Hosted Mode Browser Error on Linux

2008-09-12 Thread Thomas Broyer
On 11 sep, 17:03, "daniel.z" <[EMAIL PROTECTED]> wrote: > MOZILLA_FIVE_HOME is set to an installation of XULRunner. And as > everything works fine with GWT 1.5.0 I expect that my installation > generally is ok but something has changed between 1.5.0 and 1.5.2. I > tried to find out using gwt sub

Re: GWT 1.5.2 Hosted Mode Browser Error on Linux

2008-09-14 Thread daniel.z
Obviously I had to open my eyes :) But I did not find anything that I could explain the described behavior with. :( On 12 Sep., 11:24, Thomas Broyer <[EMAIL PROTECTED]> wrote: > On 11 sep, 17:03, "daniel.z" <[EMAIL PROTECTED]> > wrote: > > > MOZILLA_FIVE_HOME is set to an installation of XULRunne

Re: how to clear cache on windows hosted mode

2008-09-23 Thread Ian Bambury
9/23 mooreds <[EMAIL PROTECTED]> > > Hi folks, > > I am looking for how to clear the hosted mode browsers cache. In > particular, I'm interested in clearing out the CSS and script tag > content--I'm using some dynamic JSON that I want to make sure is not > cached.

Re: how to clear cache on windows hosted mode

2008-09-23 Thread mooreds
Hi Ian, Thanks for the response; I am on Windows. To be more specific, I'm pulling data in from another server via JSONP in the manner described in this article: http://code.google.com/support/bin/answer.py?answer=65632&topic=11368 I've found that the

StockWatcher works in hosted mode but not after deployment

2008-10-09 Thread townsend
I just did the StockWatcher tutorial. My code is identical to the StockWatcher code except the project is called gwtMyProject and the application is called MyApplication. The issue is that it works when running in hosted mode but after running the compile command and opening the page in Firefox

Newbie question - GWT not creating files in Hosted mode.

2008-10-09 Thread fancyplants
C bits included. I created that and it worked fine. When I try to run the application in hosted mode, the HTML loads, but I get the error: [WARN] Resource not found: com.app.gwt.client.Main.nocache.js; (could a file be missing from the public path or a tag misconfigured in module com.app.gwt.Main.

Re: GWT 1.5.2 Hosted Mode Browser Error on Linux

2008-10-19 Thread Mobee
5:34 pm, "daniel.z" <[EMAIL PROTECTED]> wrote: > I'm getting the following error when trying to launch an freshly > created gwt application in hosted mode with gwt 1.5.2. Everything > works fine when using 1.5.0's GWTShell. > > [ERROR] The

Compiling for one browser and also supporting hosted mode

2008-10-22 Thread Chris Mcnally
laces the specific UserAgent.gwt.xml file in the classpath and compiles. One type of UserAgent.gwt.xml file might include This works fine, but when the application is run in hosted mode I get the following error if I only defined the user.agent property with a single browser: [ERROR] Unable t

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 mo

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
pplied 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 are subscribed to the Google G

Re: CSS font size not working in hosted mode

2008-10-27 Thread Ian Bambury
t; 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, though. > > > > Ian > > > > http://examples.roughian.com > > > --~-

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 G

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 th

Re: CSS font size not working in hosted mode

2008-10-27 Thread sibiquin
Also updated to GWT 1.5.3 just in case it was a known bug... but no dice. On Oct 27, 4:52 pm, "Ian Bambury" <[EMAIL PROTECTED]> wrote: > Actually, even with the theme, font-size set with > button.getElement().getStyle().setProperty("fontSize", > "20pt"); works for me. > What OS are you on? > > Ia

Re: CSS font size not working in hosted mode

2008-10-27 Thread Ian Bambury
Well, there would seem to be 2 possibilities: 1) It's getting overridden 2) It's not getting picked up try putting this in your HTML .gwt-Button { font-family: Courier New; font-size: 50pt !important; } and see if the !important makes a difference Ian --~--~-~--~---

Re: CSS font size not working in hosted mode

2008-10-28 Thread sibiquin
I added the tag you suggested to the 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 what

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 get

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 E

Re: GWT hosted mode in infinity loop when debugging

2008-10-31 Thread mikedshaf...@gmail.com
t 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 (ok, after 3

Re: GWT 1.5.2 Hosted Mode Browser Error on Linux

2008-11-05 Thread Tyler
ri. > > On Sep 9, 5:34 pm, "daniel.z" <[EMAIL PROTECTED]> > wrote: > > > I'm getting the following error when trying to launch an freshly > > created gwt application in hosted mode with gwt 1.5.2. Everything > > works fine when using 1.5.0&#x

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

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

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
> com.google.gwt.sample.stockwatcher.StockWatcher to my local tomcat > webapps/StockWatcher folder. > > Now I am able to see StockWatcher running on my local tomcat server on > the hosted mode. However, when I typed in a stock symbol, I got > another error: > > /StockWatcher/stoc

Re: Code Splitting / GWT.runAsync (Web mode vs. Hosted Mode)

2011-10-13 Thread Jens
The only difference between hosted and web mode is that in hosted mode GWT.runAsync() acts synchronously. A code like: void onLoginSuccessful() { doBeforeAppStart(); GWT.runAsync( // load app and start app in onSuccess() ) doAfterAppStart(); } will behave differently in hosted and web

Re: Code Splitting / GWT.runAsync (Web mode vs. Hosted Mode)

2011-10-13 Thread Kevin Jordan
Yeah, in hosted mode it just goes directly into the onSuccess callback whereas in web mode it has to download the piece of javascript needed for that point and so that requires it to do it asynchronously which means anything else inside your function where you call runAsync will be executed while

Re: Code Splitting / GWT.runAsync (Web mode vs. Hosted Mode)

2011-10-13 Thread Salman Hemani
Thanks guys, I am going to give that a shot tonight! On Oct 13, 2:59 pm, Kevin Jordan wrote: > Yeah, in hosted mode it just goes directly into the onSuccess callback > whereas in web mode it has to download the piece of javascript needed > for that point and so that requires it

Re: Code Splitting / GWT.runAsync (Web mode vs. Hosted Mode)

2011-10-13 Thread Salman Hemani
in Jordan wrote: > > > > > > > > > Yeah, in hosted mode it just goes directly into the onSuccess callback > > whereas in web mode it has to download the piece of javascript needed > > for that point and so that requires it to do it asynchronously which > > m

Re: Code Splitting / GWT.runAsync (Web mode vs. Hosted Mode)

2011-10-13 Thread Yurgis
cache" feature of the compiler. On 10/13/11, Salman Hemani wrote: > Thanks guys, I am going to give that a shot tonight! > > On Oct 13, 2:59 pm, Kevin Jordan wrote: >> Yeah, in hosted mode it just goes directly into the onSuccess callback >> whereas in web mode

Re: Hosted mode memory leaks - am I missing something?

2011-11-08 Thread Rob
; > I'm sure I'm not the only person who has ever thought that it might be > possible to use Java-based heap profiling tools to look for memory > leaks in GWT-based applications, but in practice this has turned out > to be a little frustrating because at least based on my naive &

Re: Problems using JavaMail within hosted mode in Eclipse

2013-10-09 Thread Fatheranderson Ffather
Hello i faced with problem: javax.mail.NoSuchProviderException: smtp at javax.mail.Session.getService(Session.java:798) under running application in hosted mode. Can you give advise to me on fix this issue? but I cant understand how to add special

Re: Problems using JavaMail within hosted mode in Eclipse

2013-10-09 Thread Ari Luoma
Sorry, but I haven't used Maven and can't help you with that. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.c

Re: Problems using JavaMail within hosted mode in Eclipse

2012-09-25 Thread Ari Luoma
Hi, I am running to the same issue. Have you found solution for this? -Ari -- 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/-/O9etU2hkeNMJ. To po

Re: Problems using JavaMail within hosted mode in Eclipse

2012-09-25 Thread Ari Luoma
Hi, I was having the same problem and found solution. 1. Go to Run configurations. 2. Classpath 3. Add mail.jar from your WEB-INF\lib to the Bootstrap entries 4. Make it first. Thats it. If that doesn't help, also try to add activation.jar. -Ari Luoma torstai, 21. kesäkuuta 2012 13.39.39 UTC+3

Re: Replace Jetty with Resin in Eclipse hosted mode

2012-10-18 Thread Senyuan, Wang
you could run the GWT project with external server; On Friday, October 19, 2012 4:56:19 AM UTC+8, Carl Whalley wrote: > > Anyone had success with this? I can add the resin server, but when I try > to add the gwt project to it I just get "There are no resources that can be > added to the server".

Re: log4j in hosted mode swallows Spring and Hibernate statements

2008-12-03 Thread Au Lai Seong
eb02 > 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 GWT > application, but we're missing the ones from Spring and Hibernate > albeit the log4j config seems to be corre

Re: log4j in hosted mode swallows Spring and Hibernate statements

2008-12-03 Thread marcelstoer
On Dec 3, 4:54 pm, marcelstoer <[EMAIL PROTECTED]> wrote: > Inhttp://groups.google.com/group/Google-Web-Toolkit/browse_thread/threa... > an issue was raised (but not solved apparently) that we're seeing here > too. > > In hosted mode we're only seeing the

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 is

How to debug my entire web app in hosted mode

2009-01-16 Thread chandraj...@gmail.com
I want my entire legacy app to be run from the hosted mode so that I can debug the front end code(java). Currently if I deploy to tomcat and attach a Remote debugger I can't debug the GWT code because they are now html & JS. I want a way to debug GWT working within the full application

Re: No GwtCompiler option to turn off hosted mode support

2009-01-20 Thread Adam T
Hej Jörn, What "JavaScript code that is hosted mode specific" are you refering to? You should only get the minimal code necessary for each web browser to run your application as the standard. //Adam On 20 Jan, 14:57, 1jkoch <1jk...@gmx.de> wrote: > Hi, > > my GWT

Re: No GwtCompiler option to turn off hosted mode support

2009-01-20 Thread 1jkoch
n is called from two if statements (also within the .js) that have hosted-mode specific code inside. This is not much code we're talking about but still superfluous if you run you app only in web mode. Thanks for your quick reply, Jörn --~--~-~--~~~---~--~~ You

Re: No GwtCompiler option to turn off hosted mode support

2009-01-20 Thread Adam T
urn false; >     } >   } > > This operation is called from two if statements (also within the .js) > that have hosted-mode specific code inside. > > This is not much code we're talking about but still superfluous if you > run you app only in web mode. > > Thanks for your

Re: No GwtCompiler option to turn off hosted mode support

2009-01-20 Thread 1jkoch
Ah ok thanks. I think now I'm getting the picture. I'm a bit reluctant to modify a generated file but I guess that's what it takes. I'm not concerned about the actual code size - the fact that the hosted mode stuff is unavoidable is what bothers me. Anyway, thanks for the hin

Re: JDBC realm for form-based authentication in hosted mode

2009-02-02 Thread cschoett
ation in hosted > mode? Hosted mode and form-based authentication work just fine, but > our JDBC realm isn't picked up by Tomcat? > > -Marcel --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google

Re: JDBC realm for form-based authentication in hosted mode

2009-02-02 Thread marcelstoer
On Jan 30, 6:39 pm, marcelstoer wrote: > How do you use a JDBC realm for form-based authentication in hosted > mode? Hosted mode and form-based authentication work just fine, but > our JDBC realm isn't picked up by Tomcat? I have the realm configured in //tomcat/conf/gwt/ loca

Re: JDBC realm for form-based authentication in hosted mode

2009-02-04 Thread Sumit Chandel
Hello everyone, I'm not very familiar with JDBC realm, but for starters, are you using hosted mode with the -noserver option (i.e., running hosted mode with your own custom Tomcat server that has JDBC realm configured?). Cheers, -Sumit Chandel On Mon, Feb 2, 2009 at 5:04 AM, marcelstoer

Re: JDBC realm for form-based authentication in hosted mode

2009-02-08 Thread marcelstoer
On Feb 5, 2:22 am, Sumit Chandel wrote: > Hello everyone, > I'm not very familiar with JDBC realm, but for starters, are you using > hosted mode with the -noserver option (i.e., running hosted mode with your > own custom Tomcat server that has JDBC realm configured?). No, I

Re: JDBC realm for form-based authentication in hosted mode

2009-02-11 Thread ceaser
A question I have is where do I place the database driver jar? --~--~-~--~~~---~--~~ 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 u

How to enable logging in tomcat lite during hosted mode

2009-02-12 Thread farrukh.n...@gmail.com
I am new to GWT and did not find answer to my question in archives. I would like to be able to configure tomcat lite so it generates the tomcat log as is the case by default in normal tomcat. At the moment I am not sure where the tomcat lite files are located and what I need to change to enable

Disable caching of HTTP requests in hosted mode (1.5.3 windows)

2009-03-05 Thread zeo
Hi! I wonder if it's possible to disable the caching of HTTP (GET) requests in hosted mode? In web mode (Opera and Firefox) there's no caching. I haven't tried IE or Chrome yet though. I don't want to add any unique identifier to the URL. The code I'm using is more o

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

2009-03-12 Thread Nicolas Wetzel
5:16 AM, wiltonj wrote: > > Hi, > How to setting DataSource in GWT 1.6 (Hosted mode - Jetty)? > > Hoping for some guidance. > > Thanks & Regards, > Wilton > > > > --~--~-~--~~~---~--~~ You received this message because you

GWT Hosted Mode SSL on Ubuntu 8.04 - need help please!

2009-03-15 Thread ross
ot make any progress on my GWT app right now because of problems with hosted mode. My GWT app uses the google data API, which means I have to redirect to AuthSub which is a secure connection. When I first tried the redirect after upgrading to Ubuntu 8.0.4 I got the problem described here: http

GWT 2.0: Plugin failed to connect to hosted mode server

2009-12-22 Thread Yuval
odesvr=10.0.0.1:9997 I was expecting to view the default page normally, but it turned out that only the static elements of the web page (the headline "Web Application Starter Project" and label "Please enter your name:") were displayed. After a while, a message box pops up: &quo

Re: Add parameter to hosted mode URL with GWT 2.0

2010-01-05 Thread Thomas Broyer
On 5 jan, 17:41, Kees wrote: > Hi there, > > I have a GWT 2.0 project and, when in production, this standalone app > will always be called with a parameter in the URL. Now for development > purposes I would like to always start the hosted mode (Jetty) with a > certain pa

Re: Re: GWT Intigration with existing project .... Hosted mode issues.

2010-01-06 Thread girishrathod
for few weeks now ( not full time , of course) Definitely ... there should be some help available which I'm not able to find, I'm currently like beating around the bushes to make progress. If anyone knows , please forward me any articles where there is some guideline regarding inte

Re: Trivial JSNI scneario results in ClasscastException (hosted mode only)

2010-03-09 Thread Thomas Broyer
eropplayentrypoint::callGwtJs2Impleme > ntation(); >         }-*/; > >         public void callGwtJs2Implementation(){ >                 Window.alert("Here was clicked"); >         } > > When I start in hosted mode and click the link, I see the following in > the FireBug console: > uncaught

Re: Trivial JSNI scneario results in ClasscastException (hosted mode only)

2010-03-09 Thread Eric
tation(); > >         }-*/; > > >         public void callGwtJs2Implementation(){ > >                 Window.alert("Here was clicked"); > >         } > > > When I start in hosted mode and click the link, I see the following in > > the FireBug conso

Cannot launch Google Web Toolkit Hosted Mode applications in Vista

2009-03-17 Thread Rohit Patnaik
When I try to launch Google Web Toolkit hosted mode applications on Windows Vista, I get the following error: [WARN] Failed to write: C:\Windows\system32\tomcat\webapps\ROOT\WEB-INF \web.xml java.io.FileNotFoundException: C:\Windows\system32\tomcat\webapps\ROOT \WEB-INF\web.xml (The system

Re: GWT hosted mode ubuntu 8.10 - does not show content

2009-03-22 Thread Jeremiah Elliott
group for the details. -Jeremiah Elliott On Sun, Mar 22, 2009 at 4:51 PM, jakob.ga...@gmail.com < jakob.ga...@gmail.com> wrote: > > Hi, > > After reading, searching and trying, I still can't get hosted mode to > work on my system. > > The shell starts just fine

Re: GWT hosted mode ubuntu 8.10 - does not show content

2009-03-23 Thread jakob.ga...@gmail.com
Hi, I am running 32 only since my hardware does not support 64 bit. The hosted mode starts but doesnt render the page (in this case, the "click me" button). I've tried everything I could find in these forums. I've also tried installing the GWT 1.6, in which case I get an &quo

Problem with getting response from server only in hosted mode.

2009-03-29 Thread nicopozo
Hi all, I need some help, I'm working with GTW and using some Struts classes. The thing is that when I compile the GWT code and run it on my server, it works ok. But if I try to do it in hosted mode, I don't retrieve any response. I tried everything I could imagine as a problem but

Re: GWT hosted mode ubuntu 8.10 - does not show content

2009-03-30 Thread Crusoe
Same exact problem here. Any solutions yet? On Mar 23, 12:42 am, "jakob.ga...@gmail.com" wrote: > Hi, > > I am running 32 only since my hardware does not support 64 bit. > The hosted mode starts but doesnt render the page (in this case, the > "click me" but

Re: GWT hosted mode ubuntu 8.10 - does not show content

2009-03-30 Thread Vitali Lovich
problem here. Any solutions yet? > > On Mar 23, 12:42 am, "jakob.ga...@gmail.com" > wrote: >> Hi, >> >> I am running 32 only since my hardware does not support 64 bit. >> The hosted mode starts but doesnt render the page (in this case, the >> "c

Re: GWT hosted mode ubuntu 8.10 - does not show content

2009-03-30 Thread Crusoe
.com" > wrote: > > > Hi, > > > I am running 32 only since my hardware does not support 64 bit. > > The hosted mode starts but doesnt render the page (in this case, the > > "click me" button). I've tried everything I could find in these > &g

Re: GWT hosted mode ubuntu 8.10 - does not show content

2009-03-30 Thread Hugo Garcia
m running 32 only since my hardware does not support 64 bit. > The hosted mode starts but doesnt render the page (in this case, the > "click me" button). I've tried everything I could find in these > forums. I've also tried installing the GWT 1.6, in which case I get an

Re: does com.google.gwt.dev.Compiler need to run prior to hosted mode?

2009-04-13 Thread Vitali Lovich
No, you don't need it for hosted mode. The only reason to have that would be to ensure that you are actually writing compilable code (just because it runs under hosted mode doesn't mean it'll compile to Javascript). Generally though, you don't do that since you want a fas

Re: does com.google.gwt.dev.Compiler need to run prior to hosted mode?

2009-04-13 Thread Jeff Chimene
On 04/13/2009 01:24 PM, Vitali Lovich wrote: > No, you don't need it for hosted mode. The only reason to have that > would be to ensure that you are actually writing compilable code (just > because it runs under hosted mode doesn't mean it'll compile to > Javasc

Re: does com.google.gwt.dev.Compiler need to run prior to hosted mode?

2009-04-13 Thread pohl
27;m still at a loss in my attempt to understand exactly what conditions are necessary to get this much-promised "fast turnaround" in hosted mode. If I stop the debugger and debug my project again (even if I make absolutely no changes to the source code) the GWTCompiler runs again. Is

Re: does com.google.gwt.dev.Compiler need to run prior to hosted mode?

2009-04-13 Thread Jeff Chimene
observation, to copy those resources to the > server. > > I'm still at a loss in my attempt to understand exactly what > conditions are necessary to get this much-promised "fast turnaround" > in hosted mode. If I stop the debugger and debug my project again > (

<    4   5   6   7   8   9   10   11   12   13   >