Is there any reason I shouldn't be able to launch the visual builder from one of the samples?
I successfully imported the built-in-ds project from smartgwtee-2.5 into Eclipse and it runs with no problem (other than the warnings about it wanting to copy all of the .jars).
Just to confirm, I followed these directions to make sure the sample file had everything set up like it should.
I copied the code from the FAQ to make a Visual Launcher button to the top of the onModuleLoad() method, which of course causes a button to appear above the built-in-ds app.
Clicking the button attempts to launch the visual builder, but only ends up opening a blank browser window at http://127.0.0.1:8888/builtinds/tools/visualBuilder/index.jsp
I don't know what to make of this. Is there a problem with Jetty?
I successfully imported the built-in-ds project from smartgwtee-2.5 into Eclipse and it runs with no problem (other than the warnings about it wanting to copy all of the .jars).
Just to confirm, I followed these directions to make sure the sample file had everything set up like it should.
I copied the code from the FAQ to make a Visual Launcher button to the top of the onModuleLoad() method, which of course causes a button to appear above the built-in-ds app.
Clicking the button attempts to launch the visual builder, but only ends up opening a blank browser window at http://127.0.0.1:8888/builtinds/tools/visualBuilder/index.jsp
Code:
=== 2011-08-22 19:41:00,046 [l0-0] INFO RequestContext - URL: '/builtinds/tools/visualBuilder/index.jsp', User-Agent: 'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.20) Gecko/20110803 Firefox/3.6.20': Moz (Gecko) with Accept-Encoding header === 2011-08-22 19:41:00,046 [l0-0] DEBUG LoadISCTag - isomorphicURI not specified in tag, defaulting to: ../../../builtinds/sc/ === 2011-08-22 19:41:00,046 [l0-0] WARN LoadISCTag - isc.moduleLoadOrder does not include user-selected modules: [DBConsole] - placing these modules last in the load order. [WARN] /builtinds/tools/visualBuilder/index.jsp java.lang.NullPointerException at org.apache.jasper.runtime.JspWriterImpl.write(JspWriterImpl.java:335) at org.apache.jsp.builtinds.tools.visualBuilder.index_jsp._jspService(index_jsp.java:158) at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94) at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324) at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292) at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236) at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) at org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:487) at org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1097) at com.isomorphic.servlet.CompressionFilter.doFilter(CompressionFilter.java:259) at org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1088) at org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:360) at org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216) at org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:181) at org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:729) at org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:405) at org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:152) at org.mortbay.jetty.handler.RequestLogHandler.handle(RequestLogHandler.java:49) at org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:152) at org.mortbay.jetty.Server.handle(Server.java:324) at org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:505) at org.mortbay.jetty.HttpConnection$RequestHandler.headerComplete(HttpConnection.java:829) at org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:513) at org.mortbay.jetty.HttpParser.parseAvailable(HttpParser.java:211) at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:380) at org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:395) at org.mortbay.thread.QueuedThreadPool$PoolThread.run(QueuedThreadPool.java:488)
Comment