Brian Hochenedel

Forum Replies Created

Viewing 3 replies – 1 through 3 (of 3 total)
  • Author
    Replies
  • in reply to: Multiple Copies of Message Type in 1 Variant Wont XLATE #83332
    Brian Hochenedel
    Participant

      Thanks Terry. I am Level 2 and 3 certified and had Charlie as our implementation consultant, so I have some of his custom TCL scripts still running in Production (with some of my own modifications thrown in

      in reply to: Epic http interface to Cloverleaf #80577
      Brian Hochenedel
      Participant

        I may be doing the base64 thing to blob for an incoming transcription interface. Was there anything difficult with the interconnect or blob setup? I assume between the reference guide and my ts I should be fine. How/where did you encode the obx 5.5 field? TCL in the inbound tps or in xlate somewhere? I would love to hear any pointers you may have.

        in reply to: Pass multiple arguments? #80107
        Brian Hochenedel
        Participant

          You would pass in the arguments using the format:

          Code:

             {DEBUG 1}
             {MINAGE 18}
             {MAXAGE 65}


          Then, in the code you would do something like:

          Code:

             #Set default arguments in case you forget to pass args
             set uargs {}
             set debug 0    
             set minage 0
             set maxage 100

             #Get the user arguments from args
             keylget args ARGS uargs

             #Get each individual key/value pair argument from uargs
             catch {keylget uargs DEBUG debug}   ;#Overrides the default if supplied
             catch {keylget uargs MINAGE minage} ;#Overrides the default if supplied
             catch {keylget uargs MAXAGE maxage} ;#Overrides the default if supplied


          Hope that helps  :D.

          -Brian Hochenedel

        Viewing 3 replies – 1 through 3 (of 3 total)