Hi,

I follow the following tutorial to learn Tapestry:
http://www.devshed.com/c/a/Apache/Creating-Your-First-Tapestry-Project/3/
the above sample is based on NetBeans, it works. I tried exactly the same
steps in Intellij IDEA, but got an error when run:

HTTP Status 404 - Servlet FirstTapestry is not available

I have this web.xml:
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee";
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd";>
    <servlet>
        <servlet-name>FirstTapestry</servlet-name>
       
<servlet-class>org.apache.tapestry.ApplicationServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>

    <servlet-mapping>
        <servlet-name>FirstTapestry</servlet-name>
        <url-pattern>/app</url-pattern>
    </servlet-mapping>

  

    <session-config>
        <session-timeout>
            30
        </session-timeout>
    </session-config>
    <welcome-file-list>
        <welcome-file>app</welcome-file>
        </welcome-file-list>
</web-app>        

could not figure out what's wrong, it works with Netbeans, but not IDEA. any
help will be appreciated.

-- 
View this message in context: 
http://www.nabble.com/using-Intellij-with-Tapestry-tf4294216.html#a12224231
Sent from the Tapestry - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to