Wendy, 
 
Thanks for responding.  Yeah, I had better just take the weekend off like every 
other American citizen to regain my sanity before another week of work.  Anyway 
I am posting my struts config file.  By the way, it was generated by my 
eclipse...so I might check there to see if there are any problems.   Also I 
want to learn more about why this error is popping up so I might go through the 
struts source code tonight.  Who knows, I might learn something....
 
 
<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts 
Configuration 1.2//EN" "http://struts.apache.org/dtds/struts-config_1_2.dtd";>

<struts-config>

<!-- Form beans configuration -->

<form-beans>

<form-bean name="ParcelSearchForm" 
type="org.adacountyassessor.struts.form.ParcelSearchForm"/>

<form-bean name="SiteSearchForm" 
type="org.adacountyassessor.struts.form.SiteSearchForm"/>

<form-bean name="AddressSearchForm" 
type="org.adacountyassessor.struts.form.AddressSearchForm" />

<form-bean name="ViewParcelForm" 
type="org.adacountyassessor.struts.form.ViewParcelForm" />

</form-beans>

<!-- Global forwards configuration -->

<global-forwards>

<forward name="ParcelSearch" path="/ParcelSearch.jsp"/>

</global-forwards> 

<!-- Action Mappings Configuration -->

<action-mappings>

<action path="/ParcelSearch" 

type="org.adacountyassessor.struts.action.ParcelSearchAction"

name="ParcelSearchForm" 

scope="request"

validate="true" 

input="/ParcelSearch.jsp">

<forward name="success" path="/ParcelResult.jsp"/>

</action>

<action

attribute="SiteSearchForm"

name="SiteSearchForm"

path="/SiteSearch"

scope="request"

type="org.adacountyassessor.struts.action.SiteSearchAction"

validate="false">

<forward name="success" path="/SiteSearchResult.jsp" />

</action>

<action

attribute="AddressSearchForm"

input="/AddressSearch.jsp"

name="AddressSearchForm"

path="/AddressSearch"

scope="request"

type="org.adacountyassessor.struts.action.AddressSearchAction">

<forward name="success" path="/AddressSearchResult.jsp"/>

</action>

<action

attribute="ViewParcelForm"

name="ViewParcelForm"

input="/ViewParcel.jsp"

path="/ViewParcel"

scope="request"

type="org.adacountyassessor.struts.action.ViewParcelAction">

<forward name="success" path="/ViewParcel.jsp" />

<forward name="error" path="/Error.jsp" />

</action>

 

</action-mappings>

<!-- Message Resources Configuration -->

<message-resources 
parameter="org.adacountyassessor.struts.ApplicationResources" />

</struts-config>

 
 
 
 

________________________________

From: Wendy Smoak [mailto:[EMAIL PROTECTED]
Sent: Fri 5/27/2005 4:44 PM
To: Struts Users Mailing List
Subject: Re: Strange Error : Cannot find ActionMappings or ActionFormBeans 
collection



From: "Randall Svancara" <[EMAIL PROTECTED]>

> I can see this is a really active list on a Friday...

It's the Friday before a three-day holiday weekend in the US, so I wouldn't
expect much traffic from here until Tuesday.

> java.net.UnknownHostException: struts.apache.org.  My server would not
> have ability to contact this host.  Is this a problem for struts.  Can
> struts operate without a network......????

What is <!DOCTYPE at the top of each of your struts-related config files?

--
Wendy Smoak


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




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

Reply via email to