> Thanks for the clarification
> 2 suggestions
> 
> <!-- call init() method in ActionServlet class by setting 
> load-on-startup-->
>   <load-on-startup>1</load-on-startup>
> 
>     <init-param>
>       <param-name>debug</param-name>
>       <param-value>1</param-value>
>     </init-param>

I don't understand. <load-on-startup>1</load-on-startup> is already
there for ActionServlet.

Struts-config.xml:

<?xml version="1.0" encoding="ISO-8859-1" ?>
      
<!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 Bean Definitions
=================================== -->
<form-beans>
    <form-bean 
        name="ListBean" type="gov.bls.idcf.freqs.struts.ListBean">
    </form-bean>
    <form-bean      
        name="TabBean" type="gov.bls.idcf.freqs.struts.TabBean">
     </form-bean>
</form-beans>


<!-- ========== Global Forward Definitions
============================== -->
<global-forwards>
    <forward name="Home" path="/index.jsp" redirect="false"/>    
    <forward name="SystemFailure" path="/content/systemError.jsp"
redirect="false"/>
    <forward name="SessionTimeOut" path="/content/sessionTimeout.jsp"
redirect="false"/>    
    <forward name="InvalidPageRquest"
path="/content/invalidPageRquest.jsp" redirect="false"/>    
    <forward name="PopupOpenError"  path="/content/PopupOpenError.jsp"
redirect="false"/>
    <forward name="ClosePopup"  path="/content/ClosePopup.jsp"
redirect="false"/>
    <forward name="Finish"  path="/content/Finish.jsp"
redirect="false"/>
</global-forwards>


<!-- ========== Action Mapping Definitions
============================== -->
  <action-mappings>
  
    <action    path="/env"
               type="gov.bls.idcf.freqs.struts.PickDBAction"
               name="ListBean"
               scope="request">
        <forward name="collect" path="/index.jsp" redirect="false"/>
    </action>

    <action    path="/index"
               type="gov.bls.idcf.freqs.struts.HomeAction"
               name="ListBean"
               input="/index.jsp"
                              scope="request">
      <forward name="collect"  path="/index.jsp" redirect="false"/>
    </action>
        
        <action    path="/gettable"
               type="gov.bls.idcf.freqs.struts.GetTable"
               name="ListBean"
                             input="/index.jsp"
              scope="request">
      <forward name="collect"  path="/index.jsp" redirect="false"/>
    </action>   
        
    <action    path="/getfield"
               type="gov.bls.idcf.freqs.struts.GetField"
               name="ListBean"
                           input="/index.jsp"
              scope="request">
      <forward name="collect"  path="/index.jsp" redirect="false"/>
    </action>   
        
    <action    path="/tabulate"
               type="gov.bls.idcf.freqs.struts.Tabulate"
               name="ListBean"
              scope="request"
              input="/index.jsp">
      <forward name="tabpage"  path="/content/tabpage.jsp"
redirect="false"/>
    </action>
           
  </action-mappings>
  
  <message-resources parameter="freqs" null="false"/>
 
</struts-config>


I see that BEA has a Usenet server for their groups. So I used that
instead of trying to figure out the web interface. No response yer.

--
Tim Slattery
[EMAIL PROTECTED]
> 


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

Reply via email to