The 2024 CollegeSource Annual Conference takes place on Monday, June 17, through Thursday, June 20.
During this time, support will be limited. We appreciate your patience as we work to respond to your requests.
Need help? Contact us | View all support | Explore news

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.

...

Info
titleTransferology Connector Distribution Filenames

To assist schools, CollegeSource currently provides three variations of the Transferology Connector release that are based on the different application server treatment of the log4j logging framework and Xerces XML parser.

The Transferology Connector release filename follows one of these patterns:
ceg43ceg44-tomcat-xx.war - Tomcat distribution includes: log4j.jar and log4j.properties
ceg43ceg44-gf-xx.war - Glassfish distribution includes: log4j.jar and log4j.properties
ceg43ceg44-jboss-xx.war - JBoss distribution does NOT include: log4j.jar or log4j.properties
ceg43ceg44-oas-xx.war - Oracle Application Server distribution includes: log4j.jar but does NOT include: log4j.properties, xercesImpl-2.0.2.jar and xml-apis-1.0.b2.jar
ceg43ceg44-weblogic-xx.war - Weblogic Server distribution

xx is an internal build number

Once the file is downloaded, we suggest you rename it to ceg4.war or ceg43ceg44.war before deploying it to your application server.

...

Code Block
xml
xml
# Required for audits
xservice.darwinDaemonServerName=osu_prod
# Required for equivalencies, single target school
ceg.webPrefix=http://
ceg.domainName=dars.osu.edu
ceg.serverPort=80
ceg.cgiPath=/ceg43ceg44
ceg.defaultUniq=OSU
ceg.uniq=OSU
ceg.instidq=72
ceg.instid=1592
ceg.instcd=
ceg.instFullName=Ohio State University
ceg.state=OH
ceg.zip=43210

...

Code Block
xml
xml
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:util="http://www.springframework.org/schema/util"
       xmlns:cas="http://www.transfer.org/schema/cas"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
                           http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
                           http://www.springframework.org/schema/util
                           http://www.springframework.org/schema/util/spring-util-2.0.xsd
                           http://www.transfer.org/schema/cas
                           http://www.transfer.org/schema/cas/cas.xsd">

 <cas:server id="cegServer" webPrefix="http://" domainName="dars.osu.edu" cgiPath="/ceg43ceg44" serverPort="80" defaultUniq="OSU" >

   <cas:institution id="i1" uniq="OSU"  instidq="72" instid="1592"   instcd="   " instFullName="Ohio State University" 
           state="OH" zip="43210" defTimeout="6000" />

   <cas:institution id="i2" uniq="CSCC" instidq="73" instid="006867" instcd="   "  instFullName="Columbus State Community College"
           state="OH" zip="43216" defTimeout="6000" />

 </cas:server>

</beans>

...

Use your Web browser to view the Connector's home page. Using the above OSU example, the correct URL is: http://dars.osu.edu/ceg43ceg44/cegHome.htm

If everything is configured correctly, you should see a page that shows some of the information defined by your cas4.properties file.

...