I am using the released version of SmartGWT 2.5 evaluation. Our target is JBoss EAP 6, but while we wait we are using AS 7 which is what it will be based on.
I would like to be able to use the SDK tools on this server, however everytime I try to launch the Visual Builder I always get the same error that /WEB-INF/iscTaglib.xml cannot be found. Going through the SmartClient documentation I found that JBoss AS 4 is the last supported version for SmartClient. Understanding that SmartGWT's java server is really SmartClient I am wondering what exactly is different in JBoss since version 4. It appears that many of you're dependencies are a bit outdated. The taglib declares its version 1.1 although the current release is 2.0. JBoss AS 7 provides Apache's Http Components libraries which replace commons-httpclient, that your software depends on, however trying to use the new libraries results in runtime exceptions. This is easily remedied by adding the commons-httpclients library as a module to JBoss AS 7, and declaring a dependency to it. What I am hoping is that perhaps fixing the SDK tools is an easy fix as well.
Here is what I have in code:
sgwt.gwt.xml
Clearly looking at the stacktrace this is not a SmartGWT issue but an issue with the JSP servlet not understanding where to be looking for the file. I found that in JBoss 6 the file could successfully be found if placed in root.war/WEB-INF. AS 7 however has no root.war to speak of...but clearly somehow it does not understand that it needs to be looking under the context of the sgwt.war. I have been trying for many hours to sort this one out so any help you could provide would be greatly appreciated.
I would like to be able to use the SDK tools on this server, however everytime I try to launch the Visual Builder I always get the same error that /WEB-INF/iscTaglib.xml cannot be found. Going through the SmartClient documentation I found that JBoss AS 4 is the last supported version for SmartClient. Understanding that SmartGWT's java server is really SmartClient I am wondering what exactly is different in JBoss since version 4. It appears that many of you're dependencies are a bit outdated. The taglib declares its version 1.1 although the current release is 2.0. JBoss AS 7 provides Apache's Http Components libraries which replace commons-httpclient, that your software depends on, however trying to use the new libraries results in runtime exceptions. This is easily remedied by adding the commons-httpclients library as a module to JBoss AS 7, and declaring a dependency to it. What I am hoping is that perhaps fixing the SDK tools is an easy fix as well.
Here is what I have in code:
sgwt.gwt.xml
Clearly looking at the stacktrace this is not a SmartGWT issue but an issue with the JSP servlet not understanding where to be looking for the file. I found that in JBoss 6 the file could successfully be found if placed in root.war/WEB-INF. AS 7 however has no root.war to speak of...but clearly somehow it does not understand that it needs to be looking under the context of the sgwt.war. I have been trying for many hours to sort this one out so any help you could provide would be greatly appreciated.
Comment