When I deploy GWT project to production, hosted.html contains links to external URLs.

2014-03-14 Thread Sergey Kamenev
Our tester are not happy about this line in hosted.html: loadIframe(http://gwt.google.com/missing-plugin;); Can I deploy so that hosted.html does not contain such lines? Thank you. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: When I deploy GWT project to production, hosted.html contains links to external URLs.

2014-03-14 Thread Jens
You don't have to deploy that file at all. You only need to deploy it if you want to debug your production server. Not sure if you can tell GWT to generate the hosted.html file differently. But of course you can modify it yourself before deployment. -- J. -- You received this message because

Re: deploy gwt project

2010-05-30 Thread pankaj
I think that the files under the war directory *should* be in a standard webapp structure. Just make sure that the .css file is referenced correctly relative to the file it is called in. Although, I have used Maven, in this blog post:

Re: deploy gwt project

2010-05-29 Thread leslie
*Resolved*. I got it. I just did some additional work on my hosting server, deleted old files, redeployed etc and it's working now. The only oddity is that the background color is showing up white. In eclipse it's blue as the stylesheet instructs. But outside of eclipse the background color

Re: deploy gwt project

2010-05-29 Thread aditya sanas
that is good cheers -- Aditya On Sat, May 29, 2010 at 5:08 PM, leslie web...@me.com wrote: *Resolved*. I got it. I just did some additional work on my hosting server, deleted old files, redeployed etc and it's working now. The only oddity is that the background color is showing up

deploy gwt project

2010-05-28 Thread leslie
I'm developing a GWT application inside of Eclipse. I would like to deploy my application to a remote server online. Could anyone explain to me or point me in the direction of online instructions as to how to do this? What I've done so far is to copy the directory called war that is generated

Re: deploy gwt project

2010-05-28 Thread aditya sanas
As far as i understand when we had deploy our application into apache we had copied *content from war not war folder. * and no need to create war file using that command i.e. if ur apps name is 'demoapp' then create 'demoapp' folder inside webapps and put that content frm war inside this folder

Re: deploy gwt project

2010-05-28 Thread leslie
aditya sanas, Hi, Thank you for your reply. I've essentially done what you have suggested but in a different way. That is, I took the contents of the war directory and included them in the war file that I created. When I deploy the war file, Tomcat auto expands the file into a directory which

Re: deploy gwt project

2010-05-28 Thread leslie
I managed to allow the css file to render on the local deployment simply by removing the comment tags from around the link tag in the html file. That was easy enough. So now I am able to view and run my war file on my local machine, my own tomcat instance, but when I view the page online after

Re: deploy gwt project

2010-05-28 Thread leslie
My local version information is the following : GWT 2.0.3 Tomcat 6 Eclipse 3.5 Galileo working on Mac OS X. Java 5 -- 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-tool...@googlegroups.com. To

how to deploy gwt project on sun server

2009-04-29 Thread o26ur
Hi, I have to run my gwt project on a sun server.But I don't know how to do it.Are there any tutorial, any documant or any example of how to deploy a gwt project on a sun server. Thanks. Best Regards. ozgur okka --~--~-~--~~~---~--~~ You received this message

Re: Deploy GWT Project to Tomcat

2008-10-16 Thread Michi_de
I solved the problem by adding all the class files from /bin to / classes in WEB-INF Its working for me now. Thanks anyways! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Deploy GWT Project to Tomcat

2008-10-14 Thread Michi_de
Hi! I'm actually trying to deploy my very first GWT Project StockWatcher, just like in the tutorial i found on googles website. I can deploy my .war to the tomcat and visit the page. But when it comes to servlets, the server is throwing exceptions. So here is the code, i copied everything from