3306. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 6/9/2017 3:50:03 PM Eastern Daylight Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

3306.1 Files compared

# Location File Last Modified
1 Fri Jun 9 19:50:03 2017 UTC
2 eHealth_Exch (eHealth Exchange Enhancements) Build 3 docs & code_May_2017.zip\VAP_CIF_CODE0502.zip\VAP_CIF_CODE0502\VAP_CIF_CODE0502\nvap-ea\src\main\resources\wlst wls-deploy-ear.py Fri Apr 21 20:03:26 2017 UTC

3306.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 0 0
Changed 0 0
Inserted 1 35
Removed 0 0

3306.3 Comparison options

Whitespace
Character case Differences in character case are significant
Line endings Differences in line endings (CR and LF characters) are ignored
CR/LF characters Not shown in the comparison detail

3306.4 Active regular expressions

No regular expressions were active.

3306.5 Comparison detail

        1   from java  import uti l
        2   from java  import io
        3   from java. lang impor t String
        4  
        5   def undepl oyApplicat ion(appNam e):
        6       doConn ect()
        7       cd("Ap pDeploymen ts")
        8       for i  in ls().sp lit() : 
        9           if ( i.count( appName) >  0 ) :
        10                undeploy (i)
        11       discon nect()
        12   # end unde ployApplic ation()
        13       
        14   def deploy AndStartAp plication( ):
        15       doConn ect()
        16       cd("Ap pDeploymen ts")
        17       deploy (applicati onName, ap plicationF ilePath)
        18       startA pplication (applicati onName)
        19       discon nect()
        20   #end deplo yCdsEnterp riseApp()
        21  
        22   def doConn ect():
        23           co nnect("web logic","we blogic","l ocalhost:7 001")
        24   #end doCon nect()
        25  
        26   applicatio nName = sy s.argv[1]
        27   applicatio nFilePath  = sys.argv [2]
        28  
        29   # undeploy  any VAP E AR that is  currently  deployed.
        30   undeployAp plication( 'nhin_vap' )
        31  
        32   # deploy t he CDS EAR  to the ta rget serve r.
        33   deployAndS tartApplic ation()
        34  
        35   exit()