102. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 4/5/2017 4:21:47 PM Central 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.

102.1 Files compared

# Location File Last Modified
1 C:\working_scrub\Unredacted\eHX Code Base\eHX_Bld2_Source Code_CIF_2017-02-14\NHIN_adapter\DBScripts\VAP-397_FacilityTrigger facility_procedure.sql Fri Feb 10 15:41:44 2017 UTC
2 eHX-CIF.zip\eHX-CIF\eHX Code Base\eHX_Bld2_Source Code_CIF_2017-02-14\NHIN_adapter\DBScripts\VAP-397_FacilityTrigger facility_procedure.sql Tue Apr 4 15:52:52 2017 UTC

102.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 3 66
Changed 2 4
Inserted 0 0
Removed 0 0

102.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

102.4 Active regular expressions

No regular expressions were active.

102.5 Comparison detail

  1   CREATE OR  REPLACE PR OCEDURE fa cility_pro cedure(fac ility_name  IN VARCHA R2, facili ty_number  IN VARCHAR 2, home_co mmunity_id  IN VARCHA R2) AS
  2   soap_reque st    varc har(30000) ;
  3   soap_respo nse   varc har(30000) ;
  4   http_req                  utl_ht tp.req;
  5   http_resp                 utl_ht tp.resp;
  6  
  7   BEGIN
  8   soap_reque st := 
  9   '<soapenv: Envelope x mlns:soape nv="http:/ /schemas.x mlsoap.org /soap/enve lope/" xml ns:par="ht tp://partn er.service .nvap. DNS     /">
  10      <soapen v:Header/>
  11      <soapen v:Body>
  12         <par :updatePar tnerList>
  13            < partner>
  14                <communi tyIdPrefix >urn:oid:< /community IdPrefix>
  15                <contact ></contact >
  16                <domain> N/A</domai n>
  17                <name>'| | facility _name ||'< /name>
  18                <number> '|| facili ty_number  ||'</numbe r>
  19                <oid>'||  home_comm unity_id | |'</oid>
  20            < /partner>
  21            < announce>f alse</anno unce>
  22         </pa r:updatePa rtnerList>
  23      </soape nv:Body>
  24   </soapenv: Envelope>' ;
  25  
  26   http_req : = utl_http .begin_req uest('http ://nvpapp- dem- DNS     /PartnerOn boardingBe an/Partner Onboarding BeanServic e', 'POST' , 'HTTP/1. 1');
  27   utl_http.s et_header( http_req,  'Content-T ype', 'tex t/xml;char set=UTF-8' );
  28   utl_http.s et_header( http_req,  'Content-L ength', le ngth(soap_ request));
  29  
  30   utl_http.w rite_text( http_req,  soap_reque st);
  31   http_resp  := utl_htt p.get_resp onse(http_ req);
  32  
  33   utl_http.r ead_text(h ttp_resp,  soap_respo nse);
  34   utl_http.e nd_respons e(http_res p);
  35   END;