We have experience on GWT since we have been developed from scratch
two GWT apps into tomcat.
What are the main things we need to consider in order to debug the
application without the GWT development Shell because we don't have
the services that provides embedded tomcat in JBoss like (JNDI, EJB,
Connection Pools, etc.).
Thanks in advance.
Kind regards.
-jason
We've configured shell on eclipse ( needs some time to do it ), for
jboss you'll need something like this:
-port 8080 -noserver -out ProjectPath /Web context
For fastly developement, we don't recreate every time the war file. We
deploy once one time, and every GWT change we make GWT output compiled
on jboss temp directory ( the directory generated every time you
deploy a war on jboss ), that's more eficient and fastly.
I'll recomend to compile GWT for only one browser client ( on
development )
You'll need some directive on gwt.xml file ( GWT project )
<set-property name="user.agent" value="gecko"/>
Or like a java directive
-Dgwt.property.user.agent=gecko
If you want to take a look of our configuration look at this url
The compilation GWT script ( deploy on project path or on jboss tmp )
http://openkm.cvs.sourceforge.net/openkm/openkm/generate.sh?view=markup
The Shell on eclipse ( and other configuration like run script from
eclipse )
http://openkm.cvs.sourceforge.net/openkm/openkm/extra_eclipse_configuration/
Really Jboss + GWT + Eclipse combination it's great and fastly
developing when you've got the fine configuration for it.
Hope it could be useful
On Aug 30, 1:08 am, Jaec <joel.espin...@gmail.com> wrote:
> In my company we're planning to use GWT with an existing J2EE
> application, with almost all enterprise application stuff could have,
> EJB, filters, persistence framework, controller servlet, etc.
>
> We have experience on GWT since we have been developed from scratch
> two GWT apps into tomcat.
>
> What are the main things we need to consider in order to debug the
> application without the GWT development Shell because we don't have
> the services that provides embedded tomcat inJBosslike (JNDI, EJB,
The last link was specially what we need because Eclipse is the IDE
that we use. Another helpful information was that we need to create an
ant task and deploy the static content generated by GWT directly into
JBoss.
Best regards.
On Sep 4, 4:18 am, "cse.vis...@gmail.com" <cse.vis...@gmail.com>
wrote:
> http://techforb.blogspot.com/2007/09/gwt-with-extenal-application-ser...