QUICK LINKS

Support
Issue Tracker
[Services]
Questions
[uAchieve 4.5 Applications]
[uAchieve 5.0 Application]
[uAchieve 5.1 Application]
Transferology
TES
[Training & Conferences]
Accessibility

Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
xml
xml
<bean id="tfoHandler" class="uachieve.daemon.RequestHandler" scope="prototype">

  <property name="comKey">
    <value>ONL</value>
  </property>
  
  <property name="serverName">
    <value>USEL</value>
  </property>
  
  <!-- 
    Full path directory name for audit debug logs.
    Defaults to the uAchieve home logs directory.
    For a different location, uncomment the following logSavePath property and revise the text 
    between the <value> and </value> elements.
   -->
  <!-- 
  <property name="logSavePath">
    <value>/apps/uachieve/logs</value>
  </property> 
  -->

  <property name="sleepTime">
    <value>3</value>
  </property> 
  
  <!--
   The Transferology Connector 5.0.x, supports "HTM" and "PDF" report types.
   If you're using the Connector 5.0.x or later and want to provide those
   report types for audits requested from Transferology, add thoseeither or both as additional 
   entry elements in the enabledReports map:
    <entry key="HTM" value="TRUE" />
    <entry key="PDF" value="TRUE" />
   -->
  <property name="enabledReports">
    <util:map>
      <entry key="TXT" value="TRUE" />
    </util:map>
  </property>
  
  <!-- true/false -->
  <property name="deleteRequest">
    <value>false</value>
  </property>
  
  <!-- name of file in the ../config directory -->
  <property name="fileNameIncludeTextTop">
    <value></value>
  </property>
  
  <!-- name of file in the ../config directory -->
  <property name="fileNameIncludeTextBottom">
    <value></value>
  </property>

  <property name="loadLocalStudentData">
    <value>false</value>
  </property>

  <property name="loadSISStudentData">
    <value>false</value>
  </property>

  <property name="useStudentDataMutators">
    <value>false</value>
  </property>

  <lookup-method name="createAuditProcessor" bean="auditProcessor"/>  
    
  <property name="auditService"><ref bean="uachieve-slayer.auditService"/></property>
  <property name="supportService"><ref bean="uachieve-slayer.supportService"/></property>
  <property name="requestQueue"><ref local="jobRequestQueue"/></property>
    
</bean>

...