Robert Kersemakers

Forum Replies Created

Viewing 15 replies – 1 through 15 (of 752 total)
  • Author
    Replies
  • in reply to: JSON Acknowledgement Script #121580
    Robert Kersemakers
    Participant

      Better/easier to use translations for this.

      Zuyderland Medisch Centrum; Heerlen/Sittard; The Netherlands

      in reply to: API PUT using http-client having issue #121439
      Robert Kersemakers
      Participant

        This link has some useful things to check. https://stackoverflow.com/questions/22566433/http-415-unsupported-media-type-error-with-json

        • Change Content-Type: application/json; charset=utf-8
          into Content-Type: application/json;charset=utf-8
          so without the space before charset.
        • Change Content-Type: application/json; charset=utf-8
          into Content-Type: application/json
          so no charset at all
        • You get a different Accept content-type than the content-type you send. You can define the Accept content-type by adding header “Accept: application/json”.

        Hope this helps.

        Zuyderland Medisch Centrum; Heerlen/Sittard; The Netherlands

        in reply to: API PUT using http-client having issue #121436
        Robert Kersemakers
        Participant

          I hope these double quotes aren’t caused by this forum…

          Zuyderland Medisch Centrum; Heerlen/Sittard; The Netherlands

          in reply to: API PUT using http-client having issue #121435
          Robert Kersemakers
          Participant

            Is this your json?

            [{“first”:”MBCONE”,”middle”:””,”last”:”APPTESTBLDBNK”,”mrn”:”200078157″,”dob”:”02/07/1982″,”bed_id”:”MBC M6 EAST-MBC655-MBC655B”,”encounter_id”:”2000489712″}]

            I put this json through an online validator and it looks like all these double quotes are not double quotes at all. I call these the Word-quotes or Word-punctuation marks. Can you try to replace all Word double quotes like “ and ” with normal double quotes ” ?

            Zuyderland Medisch Centrum; Heerlen/Sittard; The Netherlands

            in reply to: How to do a while loop using Xlate ITERATE #121433
            Robert Kersemakers
            Participant

              Guilty! Dear Lord, almost 17 years ago.
              https://usspvlclovertch2.infor.com/forums/topic/single-field-multiple-components-to-create-new-segments/

              Haven’t tried the new USER type ITERATE yet, but reading there is a bug in it I will stick to what I know.

              Thanks for the nice manual Jim!

              Zuyderland Medisch Centrum; Heerlen/Sittard; The Netherlands

              in reply to: So long, and thanks for all the fish. #121412
              Robert Kersemakers
              Participant

                Enjoy your retirement Rob!
                Thanks for all the work you put into Cloverleaf and this forum.

                Zuyderland Medisch Centrum; Heerlen/Sittard; The Netherlands

                in reply to: Retrieving the active Alert file #121387
                Robert Kersemakers
                Participant

                  If on Linux you can run ‘ps -ef|grep hcimonitord’ on the prompt which will show you all occurrences of hcimonitord, per site. With this you can do the check you want; check on ‘-S’ to see for which site the specific monitor daemon is running.

                  For example: we have a regular check running to see if someone has activated the ’empty’ alert file; something we need to do if we have maintenance or need to stop some interfaces without the Alerts restarting them automatically. If the empty alert-file is running, then we get an email to warn us. Here a piece of the script.

                  if [ ps -ef|grep hcimonitord|grep “\-S overig”|grep empty|wc -l != 0 ]
                  then
                  /cldata/scripts/write_alert overig overig mond no_touch mail
                  fi

                  Zuyderland Medisch Centrum; Heerlen/Sittard; The Netherlands

                  Robert Kersemakers
                  Participant

                    Hi Jessica,

                    We just installed CL 2022.09.03 on a new RHEL9.3 cluster in Azure.
                    Our Dutch reseller (you know them/him…) told us that there was a problem with 2022.09 on RHEL9 regarding this PSH flag that is suddenly being send.

                    Problem occurs only with 2022.09 on RHEL9; on RHEL7 it worked without a problem. And only certain systems are affected; probably those that actually adhere to the PSH flag and try to process the data when the PSH flag is sent.

                    Call was made for Infor to check this out. Not a nice thing to know as we just installed on RHEL9. And we also have Sectra as PACS, which is one of the offending systems.
                    I can’t find anything quickly about this PSH flag and how to disable it. Will research some more.

                    Zuyderland Medisch Centrum; Heerlen/Sittard; The Netherlands

                    in reply to: Xlate: Issue getting hex 0d in field using COPY Action #121262
                    Robert Kersemakers
                    Participant

                      Hi Jim,

                      Very weird behaviour. Can you use ‘\r’ instead of ‘\x0d’?

                      Zuyderland Medisch Centrum; Heerlen/Sittard; The Netherlands

                      in reply to: Newest version of Cloverleaf #121081
                      Robert Kersemakers
                      Participant

                        Our Cloverleaf DMZ system is running on 2022.09 for a while: no problems there. Running 19.2 on our internal Cloverleaf. About to create a new Cloverleaf system in cloud (Azure); will most likely be 2022.09 as well.

                        Zuyderland Medisch Centrum; Heerlen/Sittard; The Netherlands

                        in reply to: Which of the following require a separate server… #121080
                        Robert Kersemakers
                        Participant

                          Hi Jim,

                          If by Web Services you mean the cl-aom-webservices enhancement, then no separate server required. But I have a feeling you mean something else.

                          I heard from our reseller that FHIR Bridge is a separate site on a Cloverleaf system. So no separate server required.

                          Not familiar with Consolidator.

                          Zuyderland Medisch Centrum; Heerlen/Sittard; The Netherlands

                          in reply to: Closing down Cloverleaf completely (Linux) #120991
                          Robert Kersemakers
                          Participant

                            Hi Torfinn,

                            I think the Lock Manager is the Unix equivalent of the Windows Service. However: there will always be only one Windows service on a Windows Cloverleaf, but on Unix every site has its own Lock Manager.

                            You use ‘hcisitectl’ to stop and start the Lock Manager. You also use this command to stop the Monitor Daemon.

                            Stop Lock Manager: hcisitectl -k l
                            Start Lock Manager; hcisitectl -s l

                            Use ‘hcistiectl –‘ for more options. In a shutdown scenario you will first stop all processes in a site, then stop Monitor Daemon and Lock Manager in one go.

                            Nowadays in an (RHEL) Unix High Availability Setup, you can also stop Cloverleaf completely by stopping the cluster resource. For example if your Cloverleaf cluster resource is named ‘cloverleaf’ you can stop it (under root) with ‘pcs resource disable cloverleaf’. The system will then stop all sites one by one, including Lock Manager and Daemon.

                            Zuyderland Medisch Centrum; Heerlen/Sittard; The Netherlands

                            in reply to: FTP logging #120989
                            Robert Kersemakers
                            Participant

                              Have you tried to set the Engine Output higher for ‘fileset’? Normally this should result in more logging.

                              ENABLE fset * * *

                              Zuyderland Medisch Centrum; Heerlen/Sittard; The Netherlands

                              in reply to: Need to remove punctuation marks #120954
                              Robert Kersemakers
                              Participant

                                Wow! No idea why that one line of code gets truncated. I’m not going to try that a third time. 🙂

                                Zuyderland Medisch Centrum; Heerlen/Sittard; The Netherlands

                                in reply to: Need to remove punctuation marks #120953
                                Robert Kersemakers
                                Participant

                                  Somehow I botched my post. Firm believer/practitioner of always treating xlateInVals and xlateOutVals as lists. So the last line should be something like:

                                  set xlateOutVals

                                    Regarding removing the “.pdf” from the filename. It really depends what your intention is: do you want to remove all “.pdf” from the filename or do you want to remove the extension? If the filename is “test.pdftest.pdf” you will get different results.

                                    Zuyderland Medisch Centrum; Heerlen/Sittard; The Netherlands

                                  Viewing 15 replies – 1 through 15 (of 752 total)