Hi there,
 i get the following message by start a jsp/java application which use
struts. (Tomcat 4.1.24)

My web.xml contains:

        <servlet>
                <servlet-name>ideal</servlet-name>
        
<servlet-class>org.tzi.ideal.ui.servlet.ExtendedActionServlet</servlet-class
>
                <init-param>
                        <param-name>config</param-name>
        
<param-value>/WEB-INF/struts-config.xml</param-value>
                </init-param>
                <init-param>
                        <param-name>debug</param-name>
                        <param-value>3</param-value>
                </init-param>
                <init-param>
                        <param-name>detail</param-name>
                        <param-value>3</param-value>
                </init-param>
                <init-param>
                        <param-name>configFileName</param-name>
                        <param-value>/WEB-INF/config.cfg</param-value>
                </init-param>
                <load-on-startup>1</load-on-startup>
        </servlet>
        <servlet-mapping>
                <servlet-name>ideal</servlet-name>
                <url-pattern>*.do</url-pattern>
        </servlet-mapping>
        <session-config>
                <session-timeout>60</session-timeout>
        </session-config>
        <welcome-file-list>
                <welcome-file>jsp/index.jsp</welcome-file>
        </welcome-file-list>
        <taglib>
                <taglib-uri>/WEB-INF/tlds/struts-bean.tld</taglib-uri>
        
<taglib-location>/WEB-INF/tlds/struts-bean.tld</taglib-location>
        </taglib>
        <taglib>
                <taglib-uri>/WEB-INF/tlds/struts-html.tld</taglib-uri>
        
<taglib-location>/WEB-INF/tlds/struts-html.tld</taglib-location>
        </taglib>
        <taglib>
                <taglib-uri>/WEB-INF/tlds/struts-logic.tld</taglib-uri>
        
<taglib-location>/WEB-INF/tlds/struts-logic.tld</taglib-location>
        </taglib>
        <taglib>
                <taglib-uri>/WEB-INF/tlds/struts-nested.tld</taglib-uri>
        
<taglib-location>/WEB-INF/tlds/struts-nested.tld</taglib-location>
        </taglib>
        <taglib>
                <taglib-uri>/WEB-INF/tlds/struts-template.tld</taglib-uri>
        
<taglib-location>/WEB-INF/tlds/struts-template.tld</taglib-location>
        </taglib>
        <taglib>
                <taglib-uri>/WEB-INF/tlds/struts-tiles.tld</taglib-uri>
        
<taglib-location>/WEB-INF/tlds/struts-tiles.tld</taglib-location>
        </taglib>
        <taglib>
        
<taglib-uri>http://jakarta.apache.org/taglibs/log-1.0</taglib-uri>
        
<taglib-location>/WEB-INF/tlds/taglibs-log.tld</taglib-location>
        </taglib>
        <taglib>
        
<taglib-uri>http://jakarta.apache.org/taglibs/xtags-1.0</taglib-uri>
        
<taglib-location>/WEB-INF/tlds/taglibs-xtags.tld</taglib-location>
        </taglib>
</web-app>

My struts-config.xml contains:

<struts-config>
        <form-beans>
                <form-bean name="loginUserForm"
type="org.tzi.ideal.ui.form.LoginUserForm"/>
                <form-bean name="registerUserForm"
type="org.tzi.ideal.ui.form.RegisterUserForm"/>
                <form-bean name="showCategoriesForm"
type="org.tzi.ideal.ui.form.ShowCategoriesForm"/>
                <form-bean name="addMetadataForm"
type="org.tzi.ideal.ui.form.AddMetadataForm"/>
                <form-bean name="modifyCategoryNameForm"
type="org.tzi.ideal.ui.form.ModifyCategoryNameForm"/>
                <form-bean name="deleteMetadataForm"
type="org.tzi.ideal.ui.form.DeleteMetadataForm"/>
                <form-bean name="deleteCategoryForm"
type="org.tzi.ideal.ui.form.DeleteCategoryForm"/>
                <form-bean name="showModifyCategoryForm"
type="org.tzi.ideal.ui.form.ShowModifyCategoryForm"/>
                <form-bean name="commitFeedbackForm"
type="org.tzi.ideal.ui.form.CommitFeedbackForm"/>
                <form-bean name="showIcoForm"
type="org.tzi.ideal.ui.form.ShowIcoForm"/>
        </form-beans>
        <global-forwards>
                <forward name="showLogin" path="/jsp/login.jsp"
redirect="true"/>
                <forward name="showRegistration" path="/jsp/register.jsp"
redirect="true"/>
                <forward name="showRegisterSuccessful"
path="/jsp/register_success.jsp" redirect="true"/>              
                <forward name="showIco" path="/jsp/ico.jsp"
redirect="true"/>
                <forward name="showCategories" path="/jsp/category.jsp"
redirect="true"/>       
                <forward name="showCreateCategory"
path="/jsp/category_create.jsp" redirect="true"/>
                <forward name="showModifyCategory"
path="/jsp/category_modify.jsp" redirect="true"/>
                <forward name="showModifyCategoryOverview"
path="/jsp/category_modify_overview.jsp" redirect="true"/>
                <forward name="showNavigation" path="/jsp/navigation.jsp"
redirect="true"/>
                <forward name="error" path="/jsp/error.jsp"
redirect="true"/>
        </global-forwards>
        <action-mappings>
                <action path="/repaintMain"
type="org.tzi.ideal.ui.action.RepaintMainAction" validate="false"/>
                <action path="/showRegistration"
type="org.tzi.ideal.ui.action.ShowRegistrationAction" validate="false"/>
                <action path="/registerUser" input="/jsp/register.jsp"
name="registerUserForm" scope="request"
type="org.tzi.ideal.ui.action.RegisterUserAction" validate="true"/>
                <action path="/showLogin"
type="org.tzi.ideal.ui.action.ShowLoginAction" validate="false"/>
                <action path="/loginUser" input="/jsp/login.jsp"
name="loginUserForm" scope="request"
type="org.tzi.ideal.ui.action.LoginUserAction" validate="true"/>
                <action path="/logoutUser"
type="org.tzi.ideal.ui.action.LogoutUserAction" validate="false"/>
                <action path="/showIco" name="showIcoForm" scope="request"
type="org.tzi.ideal.ui.action.ShowIcoAction" validate="true"/>
                <action path="/showCategories" name="showCategoriesForm"
scope="request" type="org.tzi.ideal.ui.action.ShowCategoriesAction"
validate="true"/>
                <action path="/showClusterAsVRML"
type="org.tzi.ideal.ui.action.ShowClusterAsVRMLAction" validate="false"/>
                <action path="/showCreateCategory"
type="org.tzi.ideal.ui.action.ShowCreateCategoryAction" validate="false"/>
                <action path="/showModifyCategory"
name="showModifyCategoryForm" scope= "request"
type="org.tzi.ideal.ui.action.ShowModifyCategoryAction" validate="false"/>
                <action path="/showModifyCategoryOverview"
type="org.tzi.ideal.ui.action.ShowModifyCategoryOverviewAction"
validate="false"/>
                <action path="/addMetadataToANewCategory"
input="/jsp/category_create.jsp" name="addMetadataForm" scope="request"
type="org.tzi.ideal.ui.action.AddMetadataAction" validate="true"/>
                <action path="/addMetadataToACategory"
input="/jsp/category_modify.jsp" name="addMetadataForm" scope="request"
type="org.tzi.ideal.ui.action.AddMetadataAction" validate="true"/>
                <action path="/deleteMetadataFromANewCategory"
input="/jsp/category_create.jsp" name="deleteMetadataForm"
type="org.tzi.ideal.ui.action.DeleteMetadataAction" validate="true"/>
                <action path="/deleteMetadataFromACategory"
input="/jsp/category_modify.jsp" name="deleteMetadataForm"
type="org.tzi.ideal.ui.action.DeleteMetadataAction" validate="true"/>
                <action path="/addNewCategoryName"
input="/jsp/category_create.jsp" name="modifyCategoryNameForm"
scope="request" type="org.tzi.ideal.ui.action.ModifyCategoryNameAction"
validate="true"/>
                <action path="/modifyOldCategoryName"
input="/jsp/category_modify.jsp" name="modifyCategoryNameForm"
scope="request" type="org.tzi.ideal.ui.action.ModifyCategoryNameAction"
validate="true"/>
                <action path="/showAddNewCategoryName"
input="/jsp/category_create.jsp"
type="org.tzi.ideal.ui.action.ShowModifyCategoryNameAction"
validate="false"/>
                <action path="/showModifyOldCategoryName"
input="/jsp/category_modify.jsp"
type="org.tzi.ideal.ui.action.ShowModifyCategoryNameAction"
validate="false"/>
                <action path="/createCategory"
input="/jsp/category_create.jsp" scope="request"
type="org.tzi.ideal.ui.action.ModifyCategoryAction" validate="true"/>
                <action path="/modifyCategory"
input="/jsp/category_modify.jsp" scope="request"
type="org.tzi.ideal.ui.action.ModifyCategoryAction" validate="true"/>
                <action path="/deleteCategory" name="deleteCategoryForm"
scope="request" type="org.tzi.ideal.ui.action.DeleteCategoryAction"
validate="true"/>
                <action path="/commitFeedback" input="/jsp/navigation.jsp"
name="commitFeedbackForm" scope="request"
type="org.tzi.ideal.ui.action.CommitFeedbackAction" validate="true"/>
                <action path="/search"
type="org.tzi.ideal.ui.action.SearchAction" validate="false"/>
                <action path="/image"
type="org.tzi.ideal.ui.action.RenderImageAction" validate="false"/>
                <action path="/table"
type="org.tzi.ideal.ui.action.RenderTableAction" validate="false"/>
        </action-mappings>
        <message-resources parameter="IdealMessageResources"/>
</struts-config>

thx for you help !

bye
Andi



Hinweis::
Der Inhalt dieser Mail ist vertraulich und nur fuer den Adressaten bzw.
dessen Vertreter/in bestimmt. Anderen Personen ist es nicht gestattet den Inhalt 
dieser Mail zu publizieren, zu verwerten, zu kopieren oder weiterzugeben. Falls Sie 
nicht der angegebene Adressat oder dessen Vertreter/in sind, dann senden Sie bitte die 
E-Mail mit einem Vermerk an den Absender zurueck (Antwort-Funktion bzw. reply email). 
Entfernen Sie bitte danach die Nachricht aus Ihrem System.
Informationen oder sonstige Aussagen an den Adressaten unterliegen dem Recht des 
Geschaeftes, zu dem sie gegeben worden sind, insbesondere den Allgemeinen Geschaefts- 
bzw. Versicherungsbedingungen und gegebenenfalls einer individuellen Vereinbarung. Der 
Inhalt der E-Mail ist nur rechtsverbindlich, wenn wir ihn dem betreffenden Adressaten 
schriftlich bestaetigen.

Reply via email to