Re: Deploying GWT application on a web server

2017-07-19 Thread Thomas Broyer
Just replace gwt-exporter's @Export with JsInterop annotations: https://docs.google.com/document/d/10fmlEYIHcyead_4R1S5wKGs1t2I7Fnp_PaNaa7XTEk0/edit?usp=sharing On Wednesday, July 19, 2017 at 8:47:00 AM UTC+2, Frank wrote: > > https://github.com/manolo/gwt-exporter/wiki/Exporting-GWT-to-JS > >

Re: Deploying GWT application on a web server

2017-07-19 Thread Frank
https://github.com/manolo/gwt-exporter/wiki/Exporting-GWT-to-JS Op dinsdag 18 juli 2017 17:00:00 UTC+2 schreef ta...@leadsemantics.com: > > Thanks, Rodolfo. > > Actually what I required is? > I want to write a function sum(a,b) in java using GWT. > Ater compiling the code it will generate

Re: Deploying GWT application on a web server

2017-07-18 Thread tarak
Thanks, Rodolfo. Actually what I required is? I want to write a function sum(a,b) in java using GWT. Ater compiling the code it will generate javascript code. where can i find the javascript code or function sum(a, b)? Can I use that javascript code alone in another nodejs project? Thanks.

Re: Deploying GWT application on a web server

2017-07-18 Thread Ignacio Baca Moreno-Torres
You can deploy the generated app in whatever web server you choose. For example, those pom.xml are configured to deploy to github site https://github.com/ibaca/rxbreakout-gwt/ https://github.com/ibaca/rxsnake-gwt/blob/master/pom.xml This is a bit more complex, but it deploys the app with source

Re: Deploying GWT application on a web server

2017-07-18 Thread Rodolfo Raya
Hi, Yes, you can use Eclipse Jetty instead of Tomcat. See http://www.eclipse.org/jetty/ Regards, Rodolfo -- Rodolfo M. Raya rmr...@maxprograms.com Maxprograms http://www.maxprograms.com On Tue, Jul 18, 2017 at 6:15 AM wrote: > Can I deploy the

Re: Deploying GWT application on a web server

2017-07-18 Thread tarak
Can I deploy the code generated by GWT other than Tomcat web server? On Tuesday, November 23, 2010 at 4:42:01 PM UTC+5:30, Noor wrote: > > Hi, > I have read the documentation on deployment but I have not yet figured > how to deploy an gwt app on web server. Can someone explain me how to > do

Re: Deploying GWT application on a web server

2010-11-24 Thread Lukasz
If you don't need any server-side logic, then you just need to put the compiled java-script files and other resources (like images, css and stuff) on a normal webserver. On 23 Nov., 17:02, Kenneth Jacker khjac...@gmail.com wrote: Then make a WAR archive  (archive the war folder within your

Re: Deploying GWT application on a web server

2010-11-24 Thread hazy1
Um..the RPC implementations are servlet class file in the war. Have you even tried it? On Nov 23, 11:43 am, Noor baken...@gmail.com wrote: But only the client sides files are compiled to javascript then what happens to the server files, such as the a server file for handling rpc services --

Re: Deploying GWT application on a web server

2010-11-24 Thread Kenneth Jacker
On Nov 24, 8:44 am, Lukasz l.plotni...@googlemail.com wrote: If you don't need any server-side logic, then you just need to put the compiled java-script files and other resources (like images, css and stuff) on a normal webserver. OK, that sounds reasonable. I just thought there might be a

Re: Deploying GWT application on a web server

2010-11-24 Thread Dee Ayy
I just found out GWT Designer is now free from Google and am taking another look at GWT. On Eclipse 3.5 Galileo, I've installed via Install New Software, GWT Plugin (Plugin; SDK's), and GWT Designer (GWT Designer; GWT Designer Editor; Infrastructure) -- all the items. Following the GWT Designer

Deploying GWT application on a web server

2010-11-23 Thread Noor
Hi, I have read the documentation on deployment but I have not yet figured how to deploy an gwt app on web server. Can someone explain me how to do so assume the default application created with eclipse: that is the server implementation in a package and the field verifier which is used by the

Re: Deploying GWT application on a web server

2010-11-23 Thread Carlos Morell
Hi, I think that you have to deploy a war file with all your web app. Read this blog, maybe it answer your better than me hehehe http://blog.elitecoderz.net/gwt-and-tomcat-create-war-using-eclipse-to-deploy-war-on-tomcat/2009/12/ :) 2010/11/23 Noor baken...@gmail.com Hi, I have read the

Re: Deploying GWT application on a web server

2010-11-23 Thread Lukasz
Just compile the project using the eclipse Google - Compile option. Then make a WAR archive (archive the war folder within your project folder) and deploy it e.g. on tomcat (copy the archive to tomcat's webapps directory). After tomcat discovered the new war and auto-deployed it, you're ready to

Re: Deploying GWT application on a web server

2010-11-23 Thread Noor
what about the server implementation files?? -- 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 unsubscribe from this group, send email to

Re: Deploying GWT application on a web server

2010-11-23 Thread Noor
Ok, I have undertand where to place the war folder. Now in case, I am using an RPC where and how the file be placed because the serve file are .java -- 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: Deploying GWT application on a web server

2010-11-23 Thread Alex Nederlof
Hi, What always works for me is just copying the war folder to the Tomcat webapp folder. Don't forget to press GWT-compile button first. 1. Don't forget to add the required libraries to the WEB-INF/lib folder or else it won't work. 2. Don't forget to change absolute path names to required

Re: Deploying GWT application on a web server

2010-11-23 Thread Kenneth Jacker
Then make a WAR archive  (archive the war folder within your project folder) and deploy it e.g. on tomcat (copy the archive to tomcat's webapps directory). After tomcat discovered the new war and auto-deployed it, you're ready to go and can access the app via browser. What if the

Re: Deploying GWT application on a web server

2010-11-23 Thread Noor
But only the client sides files are compiled to javascript then what happens to the server files, such as the a server file for handling rpc services -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to