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.

...

The following is an example RequestHandler that you can add into the uAchieve daemonContext.xml:

Code Block
xml
xml
<!-- *** begin copy *** -->
<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> 
  -->

  	<!-- ************************************************** -->
	<!-- *** Edit the "value" elements of these proper- *** --> 
	<!-- *** ties as appropriate for your institution   *** -->
	<!-- ************************************************** -->
	
	<property name="comKey">
		<value>ONL</value>
	</property>
	
	<property name="serverName">
		<value>USEL</value>
	</property>
	
	<property name="sleepTime">
    		<value>3</value>
  	</property> 
  	
  	<!--
   		The Transferology Connector 5.0.x, supports "HTM" and "PDF" report types.
   If 		If you're using the Connector 5.0.x or later and want to provide those
   		report types for audits requested from Transferology, add either 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>
	
	<property    name="loadLocalStudentData">
		<value>false</value>
	</property>
	<property name="loadSISStudentData">
		<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>
	
	<!-- Valid <property name="loadLocalStudentData">
    <value>false</value>
  </property>

  Options are:
		OneFile, SepFiles, Database, OneFileAndDatabase, SepFilesAndDatabase
			default (if blank) is Database
	 -->
	<property name="loadSISStudentDatareportSaveOptions">
    <value>false<		<value>Database</value>
  	</property>

	<!-- Path <property name="useStudentDataMutators">
    <value>false</value>
  </property>

  <lookup-methodto save reports to File System
			default (if blank) is ../reports
	-->
	<property 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>
reportSavePath">
		<value></value>
	</property>
	
	<!-- If left blank, defaults to its standard location of /logs -->
	<property name="logSavePath">
		<value> </value>
	</property>

	<lookup-method name="createAuditProcessor" bean="auditProcessor"/>
	<!-- ************************************************** -->
	<!-- *** end of editable property values            *** -->
	<!-- ************************************************** -->
					
	
	<!-- ************************************************** -->
	<!-- ***   Do not edit the properties below here    *** -->
	<!-- *** (unless you really know what you're doing) *** -->
	<!-- ************************************************** -->
	<property name="auditService"><ref bean="uachieve-slayer.auditService"/></property>
	<property name="supportService"><ref bean="uachieve-slayer.supportService"/></property>
	<property name="requestQueue"><ref bean="jobRequestQueue"/></property>
	<property name="performanceMonitor" ref="performanceMonitor"/>
	<!-- ************************************************** -->
	<!-- *** End of non-editable properties             *** -->
	<!-- ************************************************** -->

</bean>
<!-- ***  end copy  *** --> 


Tip
titleserver_name

Make a note of the above line with:

Code Block
xml
xml
<value>USEL</value>

The value USEL is the correct value for you to specify for the xservice.darwinDaemonServerName property in the cas4.properties. Proceed to Create cas4.properties.

...