Forum Replies Created
-
AuthorReplies
-
April 3, 2025 at 7:03 am in reply to: How to convert data in xml into array or list using tcl script #121984
I agree with Jason. More complex data structures are best handled with dictionary. Arrays are nice if not too complex.
I made a mistake. The msgcopy should be inside the loop. msgcopy will give you a new message handle for each message while maintaining the original metadata.
To make it better, if he original message was large, after getting the data from the original message handle you could do something “msgset $mh “. That way you are not copying the data with each msgcopy, only the metadata. Note the original message handle is killed since it contains nothing needed after the loop.
I hope this makes sense.
Read each file into a list. When the list is complete:
set dispList {“KILL $mh”}
set nmh msgcopy [msgcopy $mh]foreach fn $files {
msgset $nmh $fn
lappend dispList {“CONTINUE $nmh”}
}Return $displist
April 2, 2025 at 6:45 am in reply to: How to convert data in xml into array or list using tcl script #121976Sorry I misunderstood the problem.
For the above you need to have three array elements: OrderNo, AccNo and Code. Then make each a list . As you parse a value, lassign it to the proper array element as needed.
Other than this I would need to see your proc.
April 1, 2025 at 7:03 am in reply to: How to convert data in xml into array or list using tcl script #121973Take a look at tclXML package available here: https://tclxml.sourceforge.net/tclxml.html
It is for rudimentary parsing. If you need more look for he Tcl DOM package.
If simple XML and you have a priori knowledge of the layout it can be done quite nicely with regular expressions.
For some reason, regex scares the hell out of some but it is very powerful if you learn to use it.
March 29, 2025 at 6:40 am in reply to: Persistent Database Connection for Performance Optimizat / #121954If you put the threads accessing the database in the same process you can use Tcl global values or even a namespace since they would all be using the same Tcl interpreter.
Just a thought
Peg
I tried send the proc tour email but it bounced. Any ideas. Maybe change the suffix?
I tied uploading it to the forums as .htc suffix and then again as .txt and was rejected each time
Has anyone had any luck uploading a proc to the forum?
The operative question is why? HL7 is an ASCII protocol
Now it won’t even let me up .txt files. Send me an email and I will send to you
This the latest. Note it is .txt so it will upload. Change to .htc for Windows or just remove .txt if Unix and make it executable
I sally put it in contrib directory so I have a path.
Everybody has an opinion I might as well too. 🙂 I like regular expressions.
set dt 20250305
regsub — {(\d{4})(\d{4})} $dt {\2\1} newdt
echo $newdt ==> 03052025
The beauty of TCL is there are several ways to do the same thing
March 4, 2025 at 5:33 am in reply to: Setting AUTOSTART in tcl script and save updates into NetConfig file #121843Jim is right. It is best to edit directly if for some reason you do not want to use the GUI. But be sure to BACKUP! Never know when you will fat finger something.
The change will require restart any way so no need to automate too much.
Looks like you got your answer. Thanks Feda. :-0
February 2, 2025 at 5:37 am in reply to: cloverleaf old version not supporting sftp, I’m looking for a solid script #121800If you want to roll your own (Cloverleaf upgrade is better) you could look into chilkat Tcl extension. https://www.chilkatsoft.com/tcl.asp
6.2 is REALLY old 🙂
January 30, 2025 at 5:40 am in reply to: read connector Directory A , and deposit directory B without deleting files #121786This can be done but how would you keep from reading the same file over and over if not deleted? Perhaps you could archive them a different directory?
Try fileset-local protocol
-
AuthorReplies