Re: JavaScriptException in hosted mode (Win XP - IE6)

2009-03-12 Thread Vitali Lovich
T. dupont.nico...@gmail.com wrote: Mmm, it looks my Element was null. Strange that it doesn't throw a NullPointerException instead. On 12 mar, 16:29, Miles T. dupont.nico...@gmail.com wrote: Hi all, I have an issue which randomly happens in hosted mode in Windows XP (IE6) when calling

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

2009-03-11 Thread wiltonj
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 are subscribed to the Google Groups Google Web Toolkit group. To post to this group

[gwt-contrib] Setting DataSource (JNDI) in GWT 1.6 (hosted mode - Jetty)

2009-03-11 Thread wiltonj
Hi, How to setting DataSource in GWT 1.6 (Hosted mode - Jetty)? Hoping for some guidance. Thanks Regards, Wilton --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

Re: GWT with JPA not working in hosted mode

2009-03-10 Thread grishag
I have tested with the new GWT release and it does work. Thank you for your help Bruno. On Mar 10, 8:49 am, noon bruno.marches...@gmail.com wrote: Hi all, After some investiation, I confirm that the issue was onGWTside (and especially in CompilingClassLoader.findClass method). I write was

Re: gwt hosted mode in netbeans 6.5

2009-03-09 Thread mibtar
hi, i get this error when i tried debug mode: debug-connect-gwt-shell: ** Unable to find a usable Mozilla install ** You may specify one in mozilla-hosted-browser.conf, see comments in the file for details. /home/mibtar/NetBeansProjects/webapps/WebApplication1/nbproject/build- gwt.xml:34: The

Re: GWT with JPA not working in hosted mode

2009-03-09 Thread noon
: inherits name='net.sf.gilead.emul.java5.ejb3.Ejb3'/ To my surprise my hosted mode with the -noserver option started working. So, I'm a bit confused now. Do I need to keep this line in my configuration or not? What exactly does it do? I was under the impression that it was there to make

gwt hosted mode in netbeans 6.5

2009-03-08 Thread mibtar
is there a way to use hosted mode in netbeans 6.5? like in eclipse. --~--~-~--~~~---~--~~ 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

Re: gwt hosted mode in netbeans 6.5

2009-03-08 Thread Jason Morris
If you run the project in debug mode you'll get GWT hosted mode automatically. Bare in mind 2 additional things that netbeans will do: 1) start the debugger as well (which I find very useful) 2) start your real external Tomcat instance as the server Hope that helps. //J mibtar wrote

Re: GWT with JPA not working in hosted mode

2009-03-06 Thread noon
this line from my gwt.xml file just to see what it would do: inherits name='net.sf.gilead.emul.java5.ejb3.Ejb3'/ To my surprise my hosted mode with the -noserver option started working. So, I'm a bit confused now. Do I need to keep this line in my configuration or not? What exactly does it do? I

Re: GWT 1.6 - setting up eclipse launcher for hosted-mode with external jars

2009-03-06 Thread Vitali Lovich
I dunno - it works for me. The lib directory is only for deployment. Check the classpath of your run configuration to make sure that your lib is actually on the class path. On Thu, Mar 5, 2009 at 5:21 AM, Jerome jerome.mil...@gmail.com wrote: I am migrating a projet from GWT 1.5 to 1.6.

Re: GWT 1.6 - setting up eclipse launcher for hosted-mode with external jars

2009-03-06 Thread Markus Knittig
On 03/05/2009 11:21 AM, Jerome wrote: Is there any way I could force Jetty to behave like Tomcat before and see my external jars where they are (or am I doiong something wrong)?. This issue is fixes in r4944. See http://code.google.com/p/google-web-toolkit/issues/detail?id=3435 Best

Re: GWT with JPA not working in hosted mode

2009-03-05 Thread noon
use your favorite servlet container as server for your gwt shell. regards, Gede sutarsa 2009/3/3 grishag grigori.gold...@gmail.com Hi, I have a problem running GWT in hosted mode using JPA annotated domain classes. I can compile my project to JavaScript, package it up in a war

GWT 1.6 - setting up eclipse launcher for hosted-mode with external jars

2009-03-05 Thread Jerome
I am migrating a projet from GWT 1.5 to 1.6. The server-side of my project uses my project classes and a number of external jars (that are located for example in my maven local repository). With GWT 1.5, having these jars in the classpath defined in the launcher was enough to have the embedded

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 or less identical to: http

Re: GWT with JPA not working in hosted mode

2009-03-05 Thread grishag
Thanks for the link to the Gilead forum. As per your discussion there, I removed this line from my gwt.xml file just to see what it would do: inherits name='net.sf.gilead.emul.java5.ejb3.Ejb3'/ To my surprise my hosted mode with the -noserver option started working. So, I'm a bit confused now

Re: GWT with JPA not working in hosted mode

2009-03-05 Thread grishag
Thanks for the link to the Gilead forum. As per your discussion there, I removed this line from my gwt.xml file just to see what it would do: inherits name='net.sf.gilead.emul.java5.ejb3.Ejb3'/ To my surprise my hosted mode with the -noserver option started working. So, I'm a bit confused now

Re: GWT with JPA not working in hosted mode

2009-03-04 Thread Arthur Kalmenson
and see if hosted mode launches with the JPA annotations? Then add the Gilead library, see if it works, then add the GXT library and see if it works. -- Arthur Kalmenson On Tue, Mar 3, 2009 at 5:57 PM, grishag grigori.gold...@gmail.com wrote: It's strange but I'm not running with the embedded

Re: GWT with JPA not working in hosted mode

2009-03-04 Thread noon
. We use JPA annotated beans on the client side all the time and all of them have CascadeType. We don't use either Gilead or GXT, so it might have something to do with those libraries. Can you try to create small sample project without those libraries and see if hosted mode launches with the JPA

Re: GWT with JPA not working in hosted mode

2009-03-04 Thread sutarsa giri
Hi, you may need to take a look at -noserver option when running your gwt shell. with this, you could use your favorite servlet container as server for your gwt shell. regards, Gede sutarsa 2009/3/3 grishag grigori.gold...@gmail.com Hi, I have a problem running GWT in hosted mode using JPA

Re: GWT with JPA not working in hosted mode

2009-03-04 Thread grishag
shell. with this, you could use your favorite servlet container as server for your gwt shell. regards, Gede sutarsa 2009/3/3 grishag grigori.gold...@gmail.com Hi, I have a problem running GWT in hosted mode using JPA annotated domain classes. I can compile my project to JavaScript

Re: GWT with JPA not working in hosted mode

2009-03-03 Thread Arthur Kalmenson
Hmm, have you checked the classpath you use for your GWTCompile and hosted mode launching in Ant? Make sure they're the same. Hosted mode works fine with JPA annotations here (although we do use Maven). It looks like it might be a classpath issue. -- Arthur Kalmenson On Mon, Mar 2, 2009 at 9

Re: GWT with JPA not working in hosted mode

2009-03-03 Thread noon
Mode to take it into account - Only the embedded hosted mode fails, web mode is ok. Regards Bruno On 3 mar, 15:38, Arthur Kalmenson arthur.k...@gmail.com wrote: Hmm, have you checked the classpath you use for your GWTCompile and hosted mode launching in Ant? Make sure they're the same

Re: GWT with JPA not working in hosted mode

2009-03-03 Thread grishag
this exception. Why gwt emulation not working when running in hosted mode but works during compiling beats me. Thanks for your help. On Mar 4, 5:19 am, noon bruno.marches...@gmail.com wrote: Some more precisions, since this is a recurrent issue related in Gilead forum :     - The offending annotation

Re: GWT with JPA not working in hosted mode

2009-03-03 Thread grishag
this exception. Why gwt emulation not working when running in hosted mode but works during compiling beats me. Thanks for your help. On Mar 4, 5:19 am, noon bruno.marches...@gmail.com wrote: Some more precisions, since this is a recurrent issue related in Gilead forum :     - The offending annotation

Re: Conditional Breakpoints in Hosted Mode

2009-03-02 Thread Sean
on the print line. On Mar 2, 9:21 am, Evan Ruff evan.r...@gmail.com wrote: Hey guys, Quick question: Do conditional breakpoints work in Hosted Mode? I can't seem to get them to work properly in Eclipse. Basically, the debugger fires the breakpoint EVERY time, not just when the condition

How is it possible to override the Same Origin Policy in Hosted mode?

2009-03-02 Thread Ian Bambury
1.6 seems to have introduced this as a new 'feature' for IE in hosted mode and it means I can't run PHP on a server on a different port. Now I seem to remember that the only reason it comes up is because Google coded it in, so how do I override it and get back to where I was in 1.5? Any ideas

Re: How is it possible to override the Same Origin Policy in Hosted mode?

2009-03-02 Thread Ian Bambury
Don't worry - sorted :-) Ian http://examples.roughian.com 2009/3/2 Ian Bambury ianbamb...@gmail.com 1.6 seems to have introduced this as a new 'feature' for IE in hosted mode and it means I can't run PHP on a server on a different port. Now I seem to remember that the only reason it comes

GWT with JPA not working in hosted mode

2009-03-02 Thread grishag
Hi, I have a problem running GWT in hosted mode using JPA annotated domain classes. I can compile my project to JavaScript, package it up in a war and run it on a server no problem but I can't do the same in hosted mode. Really annoying, without hosted mode development is really slow. Here

[gwt-contrib] Re: Classloader issue running Hosted mode from Eclipse with Maven managed dependencies

2009-02-26 Thread nicolas de loof
I've found an (ugly ?) workaround by adding xercesImpl in the bootstrap classpath and setting the javax.xml.parsers.SAXParserFactory system property. With this config the plugin can assume the SAX parser to be used in hosted mode - not very pleasant as the user can't configure it's own, but fixes

[gwt-contrib] Re: Classloader issue running Hosted mode from Eclipse with Maven managed dependencies

2009-02-26 Thread nicolas de loof
To make things a little clearer, here is how I understand the way classloader are built by Hosted mode : bootClasspath gwt-dev |_ HostedMode |_ Hosted Browser | |_ Jetty Embedded |_ WebApplicationClassLoader WEB-INF/lib/* How does Jetty access

[gwt-contrib] Re: Classloader issue running Hosted mode from Eclipse with Maven managed dependencies

2009-02-26 Thread nicolas de loof
to avoid such costy setup. Nicolas On Thu, Feb 26, 2009 at 2:38 PM, nicolas de loof nicolas.del...@gmail.comwrote: To make things a little clearer, here is how I understand the way classloader are built by Hosted mode : bootClasspath gwt-dev |_ HostedMode |_ Hosted Browser

[gwt-contrib] Re: Classloader issue running Hosted mode from Eclipse with Maven managed dependencies

2009-02-26 Thread nicolas de loof
could be integrated into hosted mode ? Cheers, Nicolas On Thu, Feb 26, 2009 at 4:55 PM, nicolas de loof nicolas.del...@gmail.comwrote: I tested the create exploded webapp structure in maven plugin before creating lauch configurations strategy. I can launch the hosted browser but this has

[gwt-contrib] Re: Classloader issue running Hosted mode from Eclipse with Maven managed dependencies

2009-02-26 Thread nicolas de loof
I finally found an acceptable solution by : - using a test webapp structure in src/test/webapp so that I can register simplified (mock) GWT-RPC servlet implementations and not require my full webapp to test in hosted mode (can still use noserver for that) - creating the exploded WAR

[gwt-contrib] Re: Classloader issue running Hosted mode from Eclipse with Maven managed dependencies

2009-02-26 Thread John Tamplin
configuration, ... etc Running such complex server side components with hosted mode is easy with noserver, as we can setup the adequate servlet container. But with hosted mode jetty I fall into classloaders issues (jetty expect my libs to be in WEB-INF/lib, but they are set in eclipse launch classpath

[gwt-contrib] Re: Classloader issue running Hosted mode from Eclipse with Maven managed dependencies

2009-02-26 Thread nicolas de loof
I fully agree about the noserver option when some server-side setup is required. I myself consider the hosted-mode server only for UI testing with mock gwt-RPC servlets. The issue here with maven integration is that even the simpliest server setup (only RPC RemoteServlet with no dependency on any

[gwt-contrib] Re: Classloader issue running Hosted mode from Eclipse with Maven managed dependencies

2009-02-26 Thread Scott Blum
efficient on the server if we generated bytecode instead of using reflection so heavily. That being said, I do want to address specific pain points like this XML validation problem. I repro'd this locally and you can trigger the problem in a straight up hosted mode launch merely by putting Xerces

[gwt-contrib] Classloader issue running Hosted mode from Eclipse with Maven managed dependencies

2009-02-25 Thread nicolas de loof
Hi I'm testing the Eclipse lauch configuration generated by the gwt-maven-plugin for gwt 1.6. My webapp project has many dependencies managed as an Eclipse classpath-container (thanks to m2eclipse plugin). Running the lauch file I get a classpath issue : 16:57:29,331 ERROR [log.invoke0](?) failed

[gwt-contrib] Re: Classloader issue running Hosted mode from Eclipse with Maven managed dependencies

2009-02-25 Thread Scott Blum
I've seen this before. The workaround is to put a copy of Xerces into your WEB-INF/lib. What's weird is that on my system, the default SAX parser factory is in the com.sun.* namespace, which lives in the bootstrap ClassLoader and works fine. I wonder why your default SAX parser factory is

[gwt-contrib] Re: Classloader issue running Hosted mode from Eclipse with Maven managed dependencies

2009-02-25 Thread nicolas de loof
As I said my application has many other libs, including xerces (and spring, hibernate, aspectJ ...) so there is MANY reason for me to have another SAX parser in my classpath. The issue here is that in my case I can manually put the parser in web-inf/lib, but the maven plugin is expected to

[gwt-contrib] Re: Classloader issue running Hosted mode from Eclipse with Maven managed dependencies

2009-02-25 Thread Scott Blum
I take your point. In the general case, server side dependencies need to be copied into WEB-INF/lib. Otherwise, the server code won't be able to access it. I can see how an XML parser might be a special case where the servlet container could be reasonably expected to provide it. Toby, do you

[gwt-contrib] Re: Classloader issue running Hosted mode from Eclipse with Maven managed dependencies

2009-02-25 Thread Toby Reyelts
I'm not sure I have all the context here, but as a guiding principle, Jetty should be able to parse the XML files of web applications (web.xml, tag libraries, etc...) regardless of whatever XML libraries are or are not bundled with the webapp. This means: 1) Jetty should never use XML libraries

[gwt-contrib] Re: Classloader issue running Hosted mode from Eclipse with Maven managed dependencies

2009-02-25 Thread Sami Jaber
MyCustomJettyLauncher This is not very smooth, but that works. Scott, maven is widely used by many folks out there, constraining ressources to be loaded from WEB-INF/lib doesn't make sense in Dev mode. Especially when you have many classes. The hosted mode should be able to use the classes passed from the command line

Re: Trouble With GWT-RPC On Development Server - Works in Hosted Mode

2009-02-24 Thread Allahbaksh Asadullah
Hi, If you check the URL it is GnetsProject//ReportService instead of GnetsProject/ReportService. Before your ReportService Async check whether it is in Depolyed mode or in hosted mode using GWT.isScript and depending upon that form the url. Regards, Allahbaksh Mohammedali Asadullah, http

Re: Trouble With GWT-RPC On Development Server - Works in Hosted Mode

2009-02-24 Thread Mike Monette
You made no mention of what's in your web.xml file. You'll need to create servlet and servlet-mapping entries in your web.xml file for your servlet. The servlet entry in your gwt.xml file only works for hosted mode. Superman859 wrote: I am having some trouble connecting to server with GWT-RPC

GlassPanel problem in Hosted mode and IE.

2009-02-20 Thread ramesh chiluveri
Hai All, I developed an application using GlassPanel.I want to show a Login Dialogbox on top of the Glass Panel. I used gwt-incubator1.5 jar file to use gray background effect. It is working in fine in mozilla firefox and chroome but not in IE and Hosted mode. If i have opened two IE

Re: Hosted Mode crashes when embedding applet

2009-02-19 Thread El Mentecato Mayor
I don't think this is a bug. It's just one of the drawbacks of rapid prototyping/development that hosted mode provides. You see, hosted mode uses this custom browser (the GWT Shell) that is not really running in a normal mode; it's drawing your html elements directly from your Java code

Re: Hosted Mode crashes when embedding applet

2009-02-19 Thread Martin Trummer
, DAve smith.davi...@gmail.com wrote: Thanks! Is there a bug filed with Sun or Google that I can track? El Mentecato Mayor wrote: Yes, this is a known problem. Hosted mode doesn't support applets (not running a real html/javascript page), so you'll have to test your applet integration

Out of process hosted mode succesfully on linux , better hosted mode speed , no compatibility problems with old mozilla , lower memory usage

2009-02-19 Thread Rene
Hi , just want to tell linux hosted mode users , that I am running oophm without problems , or I can say with far less problems than before. I used gwt from itmill oophm package . Tryed to compile myself , itmils compiled package works for me better though. Just instaled plugin to firefox

Re: Hosted Mode crashes when embedding applet

2009-02-18 Thread DAve
Thanks! Is there a bug filed with Sun or Google that I can track? El Mentecato Mayor wrote: Yes, this is a known problem. Hosted mode doesn't support applets (not running a real html/javascript page), so you'll have to test your applet integration on web-mode only. I do something like

Re: Hosted Mode crashes when embedding applet

2009-02-17 Thread El Mentecato Mayor
Yes, this is a known problem. Hosted mode doesn't support applets (not running a real html/javascript page), so you'll have to test your applet integration on web-mode only. I do something like this: if (GWT.isScript()) { // running on web mode applet = new AppletPanel(); } else

Hosted mode not reflecting css or other changes

2009-02-17 Thread Damon
I am using GWT 1.5.3 from within Eclipse, and am puzzled by how files are getting copied to the directory specified by the GWTShell -out option. Here's my setup: My eclipse run configuration runs GWTShell with arguments: -noserver -out xquery/www -port 6200 StockWatcher.xqy (note the .xqy file

Re: Hosted mode not reflecting css or other changes

2009-02-17 Thread satya
May be the following links will help you http://code.google.com/docreader/#p=google-web-toolkit-doc-1-5s=google-web-toolkit-doc-1-5t=DevGuideRPCDeployment http://code.google.com/docreader/#p=google-web-toolkit-doc-1-5s=google-web-toolkit-doc-1-5t=FAQ_HostedModeNoServer Regards, Satya On Feb

Hosted Mode crashes when embedding applet

2009-02-16 Thread DAve
I'm writing a GWT app that embeds a Java applet (for legacy reasons). Whenever I try to run it in Hosted Mode, the host browser crashes, so I have to compile it and load it in a real browser, slowing down my development process and preventing me from using the step-through debugger

Re: How to enable logging in tomcat lite during hosted mode

2009-02-13 Thread Adligo
Well to start with what do you mean by normal, and default. If your referring to Log4j or ApacheCommons logging which I believe Tomcat uses you probably just need to copy the config files (log4j.properties or log4j.xml, or commons_logging.properties or some combination of them) into the

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

How to debug overlay types in hosted mode ?

2009-02-11 Thread Eduardo Guardiola
I have many JSONValues casted to an extended JavaScriptObject (Overlay type). How can i debug the fields from these objects ? In hosted mode eclipse debugger says only that it is a hostedmodereferece. Any help ? --~--~-~--~~~---~--~~ You received this message

NoClassDefFoundError in hosted mode

2009-02-11 Thread Gilles QUERRET
the server. In this case, any user connected receives a notification when a new user connects (so if 200 users are connected, 200 messages are sent). In hosted mode, I sometimes get this exception in an already connected session when a new user connects. Note that only one session receives this message (I've

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

Re: GWT Hosted Mode Application not working in eclipse 3.4 on Mac OS X 10.5.5

2009-02-09 Thread Don Ruby, RD
, DonRuby, RD donald.r...@mindspring.com wrote: Please help!  When I attempt to run / debug a GWT Hosted Mode Application in eclipse on Mac OS X, the browser pops up for a second and then closes.  Nothing shows up in console.  This is very similar to an old issue 1792  from 2007.  I have the JVM

Re: How to debug my entire web app in hosted mode

2009-02-09 Thread chandrajeet
...@gmail.com wrote: What did you do ? On Jan 20, 10:15 am, chandraj...@gmail.com chandraj...@gmail.com wrote: Awesome. I got it working. I love the Hosted mode now. On Jan 20, 10:50 am, chandraj...@gmail.com chandraj...@gmail.com wrote: Hi Алексей, I followedhttp

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

2009-02-08 Thread marcelstoer
On Feb 5, 2:22 am, Sumit Chandel sumitchan...@google.com 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

Error in RPC call in weblogic server, works fine in hosted mode and tomcat server

2009-02-06 Thread Poorna
) at weblogic.servlet.internal.ServletRequestImpl.run (ServletRequestImpl.java:1366) at weblogic.work.ExecuteThread.execute(ExecuteThread.java:200) at weblogic.work.ExecuteThread.run(ExecuteThread.java:172) This error comes only when I deploy the war in weblogic server. In hosted mode

Re: JVM crash in hosted mode

2009-02-05 Thread Florian
provider's page through an https connection, hosted mode browser crashes. --~--~-~--~~~---~--~~ 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

Re: Hosted Mode not refreshing

2009-02-05 Thread gemmasilvers
I figured this out and I'm sad to say it was user error *sigh*. My NetBeans classpath configuration for running the app in Hosted Mode included an *old* version of the app's source and build directories, so naturally, the hosted mode shell was interpreting the old code, not my updated code

Re: Hosted Mode not refreshing

2009-02-04 Thread gemmasilvers
. I had FF and IE on the machine and was clearing the FF cache but Hosted Mode uses IE. Once I cleared IE's cache, updated code! I hope this is helpful.http://groups.google.com/group/Google-Web-Toolkit/msg/700aeb86f40482de On Feb 3, 7:28 am, gemmasilvers gemmasilv...@googlemail.com wrote

Re: Hosted Mode not refreshing

2009-02-04 Thread Danny Schimke
wrote: Hi - I am new to GWT and had a similar issue as I was going through one of the tutorials. For me, anyway, I was clearing the wrong browser cache. I had FF and IE on the machine and was clearing the FF cache but Hosted Mode uses IE. Once I cleared IE's cache, updated code! I

Re: Hosted Mode not refreshing

2009-02-04 Thread gemmasilvers
, anyway, I was clearing the wrong browser cache. I had FF and IE on the machine and was clearing the FF cache but Hosted Mode uses IE. Once I cleared IE's cache, updated code! I hope this is helpful. http://groups.google.com/group/Google-Web-Toolkit/msg/700aeb86f40482de On Feb 3, 7

Re: JVM crash in hosted mode

2009-02-04 Thread vitaka
I have exactly the same problem. I am developing a web application that allows users log in with OpenID, and when user is redirected to his provider's page through an https connection, hosted mode browser crashes. --~--~-~--~~~---~--~~ You received this message

Re: Hosted Mode not refreshing

2009-02-04 Thread CJ
cache. I had FF and IE on the machine and was clearing the FF cache but Hosted Mode uses IE. Once I cleared IE's cache, updated code! I hope this is helpful. http://groups.google.com/group/Google-Web-Toolkit/msg/700aeb86f40482de On Feb 3, 7:28 am, gemmasilvers gemmasilv

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 mar

[gwt-contrib] Hosted mode compiled JavaScript output directory

2009-02-04 Thread Alexandre Walter Pretyman
Hello GWT Devs, thanks for the great library! I noticed that the hosted mode in the trunk allows the user to specify the war directory in which a directory with the module name will be created and the JavaScript files will be generated, but I found no way to explicitly set which exact directory

[gwt-contrib] Re: Hosted mode compiled JavaScript output directory

2009-02-04 Thread Scott Blum
wrote: Hello GWT Devs, thanks for the great library! I noticed that the hosted mode in the trunk allows the user to specify the war directory in which a directory with the module name will be created and the JavaScript files will be generated, but I found no way to explicitly set which exact

Hosted Mode not refreshing

2009-02-03 Thread gemmasilvers
Hello all, I've inherited a GWT app from a colleague and am currently attempting to develop it further - but unfortunately I'm getting stuck with Hosted Mode. No matter how many times I clear the browser cache, click refresh on the hosted mode browser, or shout, the parts I've updated don't

Re: Hosted Mode not refreshing

2009-02-03 Thread Lupo
Hi - I am new to GWT and had a similar issue as I was going through one of the tutorials. For me, anyway, I was clearing the wrong browser cache. I had FF and IE on the machine and was clearing the FF cache but Hosted Mode uses IE. Once I cleared IE's cache, updated code! I hope

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

2009-02-02 Thread cschoett
authentication 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 Web Toolkit group

Re: Hosted mode on Linux doesn't load Google Maps API through company proxy

2009-02-02 Thread Eric Ayers
Did you try setting the 'http_proxy' and/or 'HTTP_PROXY' environment variable? The embedded hosted mode is a modified version of Mozilla 1.7. Here's an interesting post gleaned from the internet: http://forums.remote-exploit.org/showthread.php?t=11520 On Mon, Feb 2, 2009 at 7:09 AM, Stefan

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

2009-02-02 Thread marcelstoer
On Jan 30, 6:39 pm, marcelstoer mar...@frightanic.com 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 /my_Eclipse_project

Hosted mode on Linux doesn't load Google Maps API through company proxy

2009-02-02 Thread Stefan Hübner
Hi all, I couldn't find much hints on the list - maybe it's just happening here? We're developing an app which incorporates the Maps API. My problem is that GWT hosted mode gets stuck when connecting to maps.google.com. Running the app in web mode works fine, though. I'm guessing

Re: JVM crash in hosted mode

2009-02-01 Thread Florian
After deployment it works just fine so I guess its a problem with the hosted mode. --~--~-~--~~~---~--~~ 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

Re: JVM crash in hosted mode

2009-02-01 Thread Florian
After deployment it works just fine so I guess its a problem with the hosted mode. --~--~-~--~~~---~--~~ 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

Re: SOP, 1.5.3, *not* hosted mode ...

2009-01-30 Thread Brice
Has anyone else run into this? I am going to be working on a number of similar client-side only projects and I would hate to be stuck at 1.5.2 for all eternity ... Is there an open issue for this already? Not for hosted mode, but compiled mode? Thanks! On Jan 29, 11:41 am, Brice bdr

JDBC realm for form-based authentication in hosted mode

2009-01-30 Thread marcelstoer
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? -Marcel --~--~-~--~~~---~--~~ You received this message because you are subscribed

Re: JVM crash in hosted mode

2009-01-29 Thread Florian
I am currently using 1.5.3 I added the gwt-log to the xml: !-- Add gwt-log support, default level `DEBUG` -- inherits name=com.allen_sauer.gwt.log.gwt-log-DEBUG / set-property name=log_RemoteLogger value=ENABLED / set-property name=log_WindowLogger value=ENABLED / The code: Log.debug(The

Re: My own SSL server in Hosted Mode

2009-01-29 Thread Thomas Broyer
On 23 jan, 19:29, Arend van der Veen arend.vanderv...@gmail.com wrote: However, I would like to develop using hosted mode with https.  Is this possible or is this a limitation of GWTShell. As I already said many times here, we're successfully using a proxy servlet in hosted mode. Hosted

SOP, 1.5.3, *not* hosted mode ...

2009-01-29 Thread Brice
in hosted mode, but soon after I get something working, I compile and load up my static HTML/.js in target browsers (IE, Safari, Firefox, etc.). With 1.5.3, what I found is that in compiled mode, IE 6, Safari 3.x, Firefox 3.x all work fine ... they can load the XML data file, no worries. Worked in hosted

Re: JVM crash in hosted mode

2009-01-28 Thread olivier FRESSE
never seen that... What's your GWT version, and can you post the log trace ? 2009/1/27 Florian florian.hueb...@psi.ch Hello everyone, Whenever I try to run or debug my JVM crashes when GWT development browser tries to access a https page. Probably the credentials are missing butt a crash

JVM crash in hosted mode

2009-01-27 Thread Florian
Hello everyone, Whenever I try to run or debug my JVM crashes when GWT development browser tries to access a https page. Probably the credentials are missing butt a crash seems to be a rather odd reaction to that... Anybody ever noticed some similar problems? best regards Florian

My own SSL server in Hosted Mode

2009-01-23 Thread Arend van der Veen
Hi All, I have a number of restful web services (not Java based) that I need to develop client-side functionality for using GWT. To access these restful web services I setup my own Apache server to use in hosted mode. I initially configured it using http and everything worked create. However

Re: How to debug my entire web app in hosted mode

2009-01-20 Thread Алексей Циунчик
-windows-xxx.jar, gwt-dev-windows-xxx.jar (or analogs depending on your platform). Start this configuration (Application in hosted mode should be opened) 2009/1/19 chandraj...@gmail.com chandraj...@gmail.com Hi All, I tried doing these steps for gwt 1.5. But I can't get the debugger up

No GwtCompiler option to turn off hosted mode support

2009-01-20 Thread 1jkoch
Hi, my GWT app only runs in web mode when deployed on a production server. So I'd like to get rid of all JavaScript code that is hosted mode specific. I had hoped for a GWTCompiler option to deactivate hosted mode support but did not find any. Does anybody know, if there's still a way to build

Re: How to debug my entire web app in hosted mode

2009-01-20 Thread chandraj...@gmail.com
my GWT code from the hosted mode. My web.xml has a bunch of Servlets. servlet servlet-nameServletRedirector/servlet-name servlet-classorg.apache.cactus.server.ServletTestRedirector/ servlet-class /servlet servlet servlet-nameServletTestRunner/servlet-name

GWT Hosted Mode Application not working in eclipse 3.4 on Mac OS X 10.5.5

2009-01-20 Thread Don Ruby, RD
Please help! When I attempt to run / debug a GWT Hosted Mode Application in eclipse on Mac OS X, the browser pops up for a second and then closes. Nothing shows up in console. This is very similar to an old issue 1792 from 2007. I have the JVM option - XstartOnFirstThread set in Cypal Studio

Re: How to debug my entire web app in hosted mode

2009-01-20 Thread chandraj...@gmail.com
Awesome. I got it working. I love the Hosted mode now. On Jan 20, 10:50 am, chandraj...@gmail.com chandraj...@gmail.com wrote: Hi Алексей, I followedhttp://wiki.apache.org/tomcat/FAQ/Developing#rdto enable Remote debugging with tomcat. If I create a Remote Java Application I can debug my

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 app only runs in web mode when

Re: No GwtCompiler option to turn off hosted mode support

2009-01-20 Thread 1jkoch
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 received this message

Re: No GwtCompiler option to turn off hosted mode support

2009-01-20 Thread Adam T
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 received this message because you are subscribed

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 hint re OBFUSCATED flag

Re: GWT Hosted Mode Application not working in eclipse 3.4 on Mac OS X 10.5.5

2009-01-20 Thread Don Ruby, RD
Ruby On Jan 19, 11:21 pm, Don Ruby, RD donald.r...@mindspring.com wrote: Please help!  When I attempt to run / debug a GWT Hosted Mode Application in eclipse on Mac OS X, the browser pops up for a second and then closes.  Nothing shows up in console.  This is very similar to an old issue 1792

Re: How to debug my entire web app in hosted mode

2009-01-19 Thread chandraj...@gmail.com
Hi All, I tried doing these steps for gwt 1.5. But I can't get the debugger up at my breakpoints. How do I refer the eclipse debugger to debug the hosted mode app. I ran the shell.cmd with -noserver -out %~dp0\www %* http://localhost:8082/myproject/MyApp/MyApp.html I created a Remote Java

Re: How to debug my entire web app in hosted mode

2009-01-18 Thread Lex
Hello You may find answer here: http://code.google.com/support/bin/answer.py?answer=55200 On Jan 17, 3:20 am, chandraj...@gmail.com chandraj...@gmail.com wrote: 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

<    8   9   10   11   12   13   14   15   >