You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@struts.apache.org by "Struts Newsgroup (@Basebeans.com)" <st...@basebeans.com> on 2002/03/12 06:40:01 UTC

Re: Servlet action is currently unavailable (Help)

Subject: Re: Servlet action is currently unavailable (Help)
From: "Tea Yu" <te...@hknet.com>
 ===
Hi List,

I encounter no problem on the following actions....

    <action     path="/country/List"
                type="com.eternalheadwear.system.country.CountryAction"
                name="countryForm"
                parameter="List"
                scope="request">
                <forward name="success" path="/pages/country/list.jsp"/>
    </action>

    <action     path="/country/Add"
                forward="/pages/country/edit.jsp?action=add">
    </action>

    <action     path="/country/Insert"
                type="com.eternalheadwear.system.country.CountryAction"
                name="countryForm"
                parameter="Insert"
                scope="request"
                validate="false">
                <forward name="success" path="/do/country/List"/>
    </action>


However, after adding the following ones:

    <action     path="/country/RepeatAdd"
                forward="/pages/country/edit.jsp?action=add&mode=repeat">
    </action>

    <action     path="/country/RepeatInsert"
                type="com.eternalheadwear.system.country.CountryAction"
                name="countryForm"
                parameter="Insert"
                scope="request"
                validate="false">
                <forward name="success" path="/do/country/RepeatAdd"/>
    </action>


Tomcat generates the following HTTP Status 503 problem:
type Status report
message Servlet action is currently unavailable
description The requested service (Servlet action is currently
unavailable) is not currently available.


Any help would be highly appreciated!  Thank you!!

Tea Yu



--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>