Hi there.
I developed one web-application and made a .war file which works fine. This application contains Java Beans, JSP and servlet.
Now, I have started using Jbuilder X (Endterprise ed) (Trial version) and I need to do some further development based on the same project.
PROBLEM --> How can I deploy my current web-application on JBuilder and use it for further development where it can let me DEBUG used components.
SOME INFORMATION --> per my understanding so far with JBuilder, I need to create a web module which sort of creates the environment for web application and on top of that I can DEBUG my application components.
I created such a web Module, but now when I try to run my web-application with newly created Runtime Configuration, it consistently gives me following error ---
ERROR -->
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
C:\jbuilderx\jdk1.4\bin\javaw -classpath "C:\jbuilderx\thirdparty\jakarta-tomcat-4.0.6-LE-jdk14\bin\bootstrap.jar;C:\jbuilderx\jdk1.4\lib\tools.jar" -Dcatalina.home="C:/jbuilderx/thirdparty/jakarta-tomcat-4.0.6-LE-jdk14" org.apache.catalina.startup.Bootstrap -config "C:\Documents and Settings\Niravs\jbproject\Newixreg\Tomcat\conf\server8080.xml" start
HttpConnector Opening server socket on all host IP addresses
Starting service Tomcat-Standalone
Apache Tomcat/4.0.6
WebappLoader[/ixregWebModule]: Deploying class repositories to work directory C:\Documents and Settings\Niravs\jbproject\Newixreg\Tomcat\work\ixregWebModule
WebappLoader[/ixregWebModule]: Deploy JAR /WEB-INF/lib/bcprov-jdk14-122.jar to C:\Documents and Settings\Niravs\jbproject\Newixreg\ixregWebModule\WEB-INF\lib\bcprov-jdk14-122.jar
WebappLoader[/ixregWebModule]: Deploy JAR /WEB-INF/lib/crypt.jar to C:\Documents and Settings\Niravs\jbproject\Newixreg\ixregWebModule\WEB-INF\lib\crypt.jar
WebappLoader[/ixregWebModule]: Deploy JAR /WEB-INF/lib/jaxen-full.jar to C:\Documents and Settings\Niravs\jbproject\Newixreg\ixregWebModule\WEB-INF\lib\jaxen-full.jar
WebappLoader[/ixregWebModule]: Deploy JAR /WEB-INF/lib/jstl.jar to C:\Documents and Settings\Niravs\jbproject\Newixreg\ixregWebModule\WEB-INF\lib\jstl.jar
WebappLoader[/ixregWebModule]: Deploy JAR /WEB-INF/lib/ojdbc14.jar to C:\Documents and Settings\Niravs\jbproject\Newixreg\ixregWebModule\WEB-INF\lib\ojdbc14.jar
WebappLoader[/ixregWebModule]: Deploy JAR /WEB-INF/lib/saxpath.jar to C:\Documents and Settings\Niravs\jbproject\Newixreg\ixregWebModule\WEB-INF\lib\saxpath.jar
WebappLoader[/ixregWebModule]: Deploy JAR /WEB-INF/lib/servlet-api.jar to C:\Documents and Settings\Niravs\jbproject\Newixreg\ixregWebModule\WEB-INF\lib\servlet-api.jar
WebappLoader[/ixregWebModule]: Deploy JAR /WEB-INF/lib/standard.jar to C:\Documents and Settings\Niravs\jbproject\Newixreg\ixregWebModule\WEB-INF\lib\standard.jar
WebappLoader[/ixregWebModule]: Deploy JAR /WEB-INF/lib/xercesImpl.jar to C:\Documents and Settings\Niravs\jbproject\Newixreg\ixregWebModule\WEB-INF\lib\xercesImpl.jar
WebappLoader[/ixregWebModule]: Deploy JAR /WEB-INF/lib/xmlParserAPIs.jar to C:\Documents and Settings\Niravs\jbproject\Newixreg\ixregWebModule\WEB-INF\lib\xmlParserAPIs.jar
WebappLoader[/ixregWebModule]: Deploy JAR /WEB-INF/lib/xmlrpc-1.2-b1.jar to C:\Documents and Settings\Niravs\jbproject\Newixreg\ixregWebModule\WEB-INF\lib\xmlrpc-1.2-b1.jar
WebappLoader[/ixregWebModule]: Reloading checks are enabled for this Context
StandardManager[/ixregWebModule]: Seeding random number generator class java.security.SecureRandom
StandardManager[/ixregWebModule]: Seeding of random number generator has been completed
PARSE error at line 6 column 19
org.xml.sax.SAXParseException: Document root element "taglib", must match DOCTYPE root "null".
ContextConfig[/ixregWebModule]: Added certificates -> request attribute Valve
StandardWrapper[/ixregWebModule:default]: Loading container servlet default
StandardWrapper[/ixregWebModule:invoker]: Loading container servlet invoker
HttpConnector[8080] Starting background thread
StandardServer.await: create[8081]: java.net.BindException: Address already in use: JVM_Bind
java.net.BindException: Address already in use: JVM_Bind
at java.net.PlainSocketImpl.socketBind(Native Method)
at java.net.PlainSocketImpl.bind(PlainSocketImpl.java:331)
at java.net.ServerSocket.bind(ServerSocket.java:318)
at java.net.ServerSocket.<init>(ServerSocket.java:185)
at org.apache.catalina.core.StandardServer.await(StandardServer.java:276)
at org.apache.catalina.startup.Catalina.start(Catalina.java:794)
at org.apache.catalina.startup.Catalina.execute(Catalina.java:681)
at org.apache.catalina.startup.Catalina.process(Catalina.java:179)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:243)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Any help is very much appreciated!!!