JBoss AS Version: 4.0.3SP1

Hi,

Worked myway through the tutorial, which I managed to get working in the end. 
I'm now started on a project however I'm running into problems in deployment. 
Everything seems to deploy correctly, except for some reason I can't access any 
servlets via Tomcat.

Since I'm not confident enough on the platform to jump right in, I'm working 
from the tutorial and moving parts of the implimentation over to the project. 
For some reason beyond me, this has caused everything to stand still. Now the 
new EJB and Servlet aren't even rigged up against the HTML post page, which is 
the same as the tutorials, so I don't think it should affect it at all.

I've checked the WAR and the classes are in for deployment; then again if they 
weren't it wouldnt have let me deploy it.

Help would be must appreicated. Need any more information, just let me know. 
Many thanks.

application.xml
<?xml version="1.0" encoding="UTF-8"?>
  | <!DOCTYPE application PUBLIC
  |     "-//Sun Microsystems, Inc.//DTD J2EE Application 1.3//EN"
  |     "http://java.sun.com/dtd/application_1_3.dtd";>
  | <application>
  |     <display-name>Sum Application</display-name>
  |     <module>
  |             <ejb>FiboEJB.jar</ejb>
  |     </module>
  |     <module>
  |             <web>
  |                     <web-uri>FiboWeb.war</web-uri>
  |                     <context-root>/fibo</context-root>
  |             </web>
  |     </module>
  | </application>
  |     
  |     

/**
  |  * @web.servlet
  |  *          name="Compute"
  |  *          display-name="Computation Servlet"
  |  *          description="Servlet that compute Fibonacci suite"
  |  * 
  |  * @web.servlet-mapping
  |  *          url-pattern="/Compute"
  |  * 
  |  * @web.ejb-ref
  |  *          name="ejb/Fibo"
  |  *          type="Session"
  |  *          home="tutorial.interfaces.FiboHome"
  |  *          remote="tutorial.interfaces.Fibo"
  |  *          description="Reference to the Fibo EJB"
  |  * 
  |  * @jboss.ejb-ref-jndi
  |  *          ref-name="ejb/Fibo"
  |  *          jndi-name="ejb/Fibo"
  |  */

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3924884#3924884

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3924884


-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642
_______________________________________________
JBoss-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to