Home   Package List   Routine Alphabetical List   Global Alphabetical List   FileMan Files List   FileMan Sub-Files List   Package Component Lists   Package-Namespace Mapping  
Routine: XWBRMX

XWBRMX.m

Go to the documentation of this file.
  1. XWBRMX ;OIFO-Oakland/REM - M2M Broker Server Request Mgr ;05/17/2002 17:41
  1. ;;1.1;RPC BROKER;**28,62**;Mar 21, 2002;Build 13
  1. ;Per VHA Directive 6402, this routine should not be modified
  1. ;
  1. QUIT
  1. ;----------------------------------------------------------------------
  1. ;
  1. ; Request Manager -Parse XML Requests using SAX interface
  1. ;
  1. ;----------------------------------------------------------------------
  1. ;
  1. EN(DOC,XWBOPT,XWBDATA) ; -- Parse XML uses SAX parser
  1. N XWBCBK,XWBINVAL
  1. SET XWBINVAL="#UNKNOWN#"
  1. ;comment out the next 2 lines, P62
  1. ;SET XWBDATA("DUZ")=XWBINVAL ;**M2M don't need duz
  1. ;SET XWBDATA("SECTOKEN")=XWBINVAL
  1. DO SET(.XWBCBK)
  1. DO EN^MXMLPRSE(DOC,.XWBCBK,.XWBOPT)
  1. ENQ Q
  1. ;
  1. SET(CBK) ; -- set the event interface entry points
  1. SET XWBCBK("STARTELEMENT")="ELEST^XWBRMX"
  1. SET XWBCBK("ENDELEMENT")="ELEND^XWBRMX"
  1. SET XWBCBK("CHARACTERS")="CHR^XWBRMX"
  1. QUIT
  1. ;
  1. ESC(X) ; -- convert special characters to \x format
  1. Q X
  1. ;
  1. N C,Y,Z
  1. F Z=1:1 S C=$E(X,Z) Q:C="" D
  1. .S Y=$TR(C,$C(9,10,13,92),"tnc")
  1. .S:C'=Y $E(X,Z)="" ;$S(Y="":"\\",1:"\"_Y),Z=Z+1
  1. Q X
  1. ;
  1. ELEST(ELE,ATR) ; -- element start
  1. IF ELE="vistalink",$G(ATR("type"))="Gov.VA.Med.RPC.Request" DO
  1. . SET XWBDATA("APP")="RPC"
  1. . ;SET XWBDATA("MODE")=$G(ATR("mode"),"singleton") ;Comment out for M2M
  1. . SET XWBDATA("MODE")=$G(ATR("mode"),"RPCBroker") ;M2M change to RPCBroker
  1. ;
  1. IF ELE="vistalink",$G(ATR("type"))="Gov.VA.Med.Foundations.CloseSocketRequest" DO QUIT
  1. . SET XWBDATA("APP")="CLOSE"
  1. . SET XWBDATA("MODE")=$G(ATR("mode"),"single call")
  1. ;
  1. IF ELE="session" SET XWBSESS=1 QUIT
  1. ; -- set session vars here so apps can use during xml parsing
  1. ;
  1. ;*M2M - check for RPCBroker
  1. IF $G(XWBSESS) DO QUIT
  1. . ;IF ELE="duz" SET (DUZ,XWBDATA("DUZ"))=$G(ATR("value")) IF +DUZ=0 SET (DUZ,XWBDATA("DUZ"))=XWBINVAL QUIT ;P62
  1. . IF $G(XWBSEC) DO QUIT
  1. . . IF ELE="token" SET XWBDATA("SECTOKEN")=$G(ATR("value")) IF XWBDATA("SECTOKEN")="" SET XWBDATA("SECTOKEN")=XWBINVAL QUIT
  1. . IF ELE="security" SET XWBSEC=1 QUIT
  1. ;
  1. ; -- // TODO: make dynamic off RPC app config
  1. IF $GET(XWBDATA("APP"))="RPC" DO ELEST^XWBRPC(.ELE,.ATR)
  1. Q
  1. ;
  1. ELEND(ELE) ; -- element end
  1. IF ELE="session" KILL XWBSESS QUIT
  1. IF $G(XWBSESS) DO QUIT
  1. . IF ELE="security" KILL XWBSEC
  1. ;
  1. ;
  1. ; -- // TODO: make dynamic off RPC app config
  1. IF $G(XWBDATA("APP"))="RPC" DO ELEND^XWBRPC(.ELE)
  1. Q
  1. ;
  1. CHR(TXT) ;
  1. ; -- // TODO: make dynamic off RPC app config
  1. IF $G(XWBDATA("APP"))="RPC" DO CHR^XWBRPC(.TXT)
  1. Q
  1. ;