Forum Replies Created
-
AuthorReplies
-
We are currently on RHEL 8.10 with CL19.1.2. Test: 4 CPUs and 16 GB RAM; Prod: 8 CPUs and 32 GB RAM.
We also have two RHEL 9.2 environments with CL2022.09.02 in Azure, as we will migrate from SAP to HiX in June 2025. Same specs.In Azure though we started with smaller specs: 2 CPU and 8 GB RAM for Test en 4 CPU and 16 GB RAM for Prod. But Test wasn’t able to start because of the limited resources, so we returned to the specs we have at the moment.
Zuyderland Medisch Centrum; Heerlen/Sittard; The Netherlands
It is that simple: site name.
Zuyderland Medisch Centrum; Heerlen/Sittard; The Netherlands
Hi Jim,
To dynamically name the required table, you could use the tcl command ‘hcitbllookup’ and a variable to define the name of the table. Right? That would be a workaround for what you want.
What I would like to see is the ability to load in a complete table at runtime, so you can use both the in and out sides of the table to search for certain values.
A normal TABLE operation will search for a specified value on the ‘in’ side and, if found, return the ‘out’ side value. However sometimes I need/want to use Tables differently. For example on the ‘in’ side I will have lists of several codes: “{A B C} {X Y}” and on the ‘out’ side will be a resulting code, say “R”. If the message contains a code A, B or C AND a code X or Y, then the resulting code will be ‘R’.I got this to work (a long time ago) by loading the complete Table as a variable:
<pre>set recid “Combination_codes.tbl”
TioReset $recid
TioLoad $recid Combination_codes.tbl</pre>
Not sure how long this solution will keep on working. For example it doesn’t work if the specified Table isn’t in the site of the running process, but in the Master site; this method doen’t work with master sites.Zuyderland Medisch Centrum; Heerlen/Sittard; The Netherlands
Great to see this forum back online. I hope the search capabilities will improve because finding something is a pita.
Zuyderland Medisch Centrum; Heerlen/Sittard; The Netherlands
Better/easier to use translations for this.
Zuyderland Medisch Centrum; Heerlen/Sittard; The Netherlands
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
I hope these double quotes aren’t caused by this forum…
Zuyderland Medisch Centrum; Heerlen/Sittard; The Netherlands
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
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
Enjoy your retirement Rob!
Thanks for all the work you put into Cloverleaf and this forum.Zuyderland Medisch Centrum; Heerlen/Sittard; The Netherlands
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- This reply was modified 8 months, 1 week ago by Robert Kersemakers.
Zuyderland Medisch Centrum; Heerlen/Sittard; The Netherlands
April 8, 2024 at 6:44 am in reply to: New cloverleaf is sending TCP PSH flags, 2 receiveing system have problems #121300Hi 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
March 18, 2024 at 9:02 am in reply to: Xlate: Issue getting hex 0d in field using COPY Action #121262Hi Jim,
Very weird behaviour. Can you use ‘\r’ instead of ‘\x0d’?
Zuyderland Medisch Centrum; Heerlen/Sittard; The Netherlands
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
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
- Change Content-Type: application/json; charset=utf-8
-
AuthorReplies