Hi
  I am using NB 6.9.1 , I am practising j2ee
While creating a listener in "HelloWeb" Project in EL chapter in
"http://www.javapassion.com/portal/java-ee-programming-basics-i-with-passion/java-ee-programming-with-passion#Expression_Language";
and running the project I get error
"
/nbproject/build-impl.xml:683: The module has not been deployed.
BUILD FAILED (total time: 0 seconds)"
"
My   "web.xml" file contains
"<?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";>
    <listener>
        
<listener-class>org.apache.taglibs.standard.examples.startup.Init</listener-class>
    </listener>
    <listener>
        <description>ServletContextListener</description>
        
<listener-class>org.apache.taglibs.standard.examples.startup.MyInit</listener-class>
    </listener>
    <session-config>
        <session-timeout>
            30
        </session-timeout>
    </session-config>
    <welcome-file-list>
        <welcome-file>
            index.jsp
        </welcome-file>
    </welcome-file-list>
</web-app>
"

"MyInit.java " is the listener I have created, What might be the
reason for the error


--
Thanks
Joseph John
http://www.oss101.com/

-- 
You received this message because you are subscribed to the Google
Groups "Java EE (J2EE) Programming with Passion!" group.
To post to this group, send email to
java-ee-j2ee-programming-with-passion@googlegroups.com
To unsubscribe from this group, send email to
java-ee-j2ee-programming-with-passion+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/java-ee-j2ee-programming-with-passion?hl=en?hl=en

Reply via email to