> 
> Where have you deployed "myApp"?
> 
> What configuration have you changed?
> 
> What is in your app's web.xml file?
> 
> 
> p
> 
> 


my application is named MediciRiuniti
it is in C:\Tomcat 6.0\webapps\ROOT\
if i search for localhosot:8081/ i can get tomcat home


i've changed only the port of tomcat, i set it on 8081


in my C:\Tomcat 6.0\webapps\ROOT\MediciRiuniti\WEB-INF\web.xml is written
this:

<?xml version="1.0" encoding="UTF-8" ?>  
<web-app 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";
    version="2.4">

    <display-name>MediciRiuniti Application</display-name>
    <description>Applicazione</description>

    <servlet>
        <servlet-name>EventController</servlet-name>
        <servlet-class>mediciRiuniti.web.EventController</servlet-class>
    </servlet>

    <servlet-mapping>
        <servlet-name>EventController</servlet-name>
        <url-pattern>/controller</url-pattern>
    </servlet-mapping>
    
    <welcome-file-list>
        <welcome-file>index.html</welcome-file> 
    </welcome-file-list>

</web-app>


if i build my project i can see the compiled class in WEB-INF/src/classes

thank you

--

faciolo

-- 
View this message in context: 
http://old.nabble.com/%22The-requested-resource-%28%29-is-not-available.%22-index.html-tp28893830p28894187.html
Sent from the Tomcat - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to