Hi, in my struts-config file i define a form bean
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.3//EN" "http://struts.apache.org/dtds/struts-config_1_3.dtd">
<struts-config>
<form-beans>
<form-bean name="rankprofileform"
type="apps.navy.profiles.actionforms.RankProfileForm" />
</form-beans>
..........
</struts-config>
this config file resides in ProjectA WEB-INF and apps.navy.profiles.actionforms.RankProfileForm points to a package in projectB and projectB doesn’t have web capabilities (WEB-INF folder), all it has simply is a src folder with all the packages i need … I get a ActionForm not found exception which means to me struts-config file does not find the ActionForm in projectB… is there a reason for this? ProjectB is a jar file in ProjectA build path ..