go to post Robert Cemper · Oct 22, 2024 So you have a local instance of Caché as well. Check with WRC if Cachè 13 is supported on Windows 11. local access needs no firewall in Win
go to post Robert Cemper · Oct 20, 2024 the example builds on the fact that the storage structure of the serial object is known Storage Default { <Data name="serItemState"> <Value name="1"> <Value>Subject</Value> </Value> <Value name="2"> <Value>Change</Value> </Value> <Value name="3"> <Value>Color</Value> </Value> </Data> <State>serItemState</State> <StreamLocation>^rcc.IC.serItemS</StreamLocation> in this case color is #3 in serial storage ==>> $list(%Value,3) So you need to know the position of FamilyName in HS.SDA3.Name (e.g.7 ?)then you can use $list(%value,7) = 'Twain' as condition 7 is just a guess as I don't have any HS* classes at hands
go to post Robert Cemper · Sep 13, 2024 if $d(^|"%SYS"|CONFIG("Namespaces"," ")) for set ns=$o(@$ZR) quit:ns="" write ns,! ; or do whatever you intend
go to post Robert Cemper · Sep 11, 2024 ÍD is an reserved name in IRIS / Ensemblein fact as you describe it, it is rather a KEY than a typical IDso this query may serve your needs SELECT LIST(Value) WHERE KEY=11 SELECT LIST(Value) WHERE KEY=12
go to post Robert Cemper · Aug 18, 2024 with set pSettings("From_Source_Rec_Job","Adapter... you pass a String literal assuming the value of your variable str = From_Source_Rec_Job then set pSettings(str,"Adapter","FTPPort")=2022 should be sufficient
go to post Robert Cemper · Aug 15, 2024 Studio has a feature to expand / compress ObjectScript CommandsAdvanced Editingthis might be a starting point.
go to post Robert Cemper · Aug 9, 2024 You mentioned IIS.Are you sure IIS is listening at port 57772 ? And: http://localhost:57772/csp/sys/UtilHome.csplooks like the old call to private Apache
go to post Robert Cemper · Jul 15, 2024 do LOG^%ETN does an actual snapshot and you my examining the actual content at that point of time in SMP
go to post Robert Cemper · Jul 11, 2024 Hi @Daniel Aguilar This looks pretty much like my case:https://community.intersystems.com/post/docker-start-iris-community20241-preview-fails-repeatedlyif your processor doesn't fit the requirements this applies also to Docker images.
go to post Robert Cemper · Jul 10, 2024 Typical mistakes with ODBC access over Windows DSN ODBC driver old version 32bit driver on 64bit installation or vice-versa not created & tested as System DSN user / password / namespace mismatch wrong configured TLS/SSL access
go to post Robert Cemper · Jul 6, 2024 http://<server>:<port>/csp/......refers to the private webserver installed and used in past releases
go to post Robert Cemper · Jul 6, 2024 _SYSTEM is just another user name with role %ALLany other account with the same role can do it as well.Tying some code to a Username ignoring the power of roles is an elementary design error.
go to post Robert Cemper · Jul 6, 2024 Hi @Otto Medin !HTTP is basically US ASCII 7bit with some "handcrafted" extensions- somehow "UTF 7.6" 🤪 focussing on octetsit works for äöü but NOT for € (x20AC) >>> in URL %u20AC for details: https://softwareengineering.stackexchange.com/questions/304419/what-encoding-are-the-http-status-and-header-linesmy hint: Try to avoid it in HTTP headers and stick with 7bit ASCII to be on the save sidebrowsers are less risk for problems but old applications are
go to post Robert Cemper · Jun 30, 2024 YES, concurrency applies to persistent objects once the are sved the first timethis means: it doesn't apply when the object is NEW and has no ID yet.
go to post Robert Cemper · Jun 18, 2024 in XML the construct with ![CDATA[ gets used if the string contains anycharacter that may cause conflicts in XML parsing:In your case it is the & (Ampersand) that triggers the different use. THIS causes the ![CDATA[ in a string field!.
go to post Robert Cemper · Jun 9, 2024 Start reading the documentation:Running the Terminal Application from the Command Line
go to post Robert Cemper · Jun 7, 2024 once you know what namespace you are looking at you may list available schemata bySELECT * FROM INFORMATION_SCHEMA.SCHEMATA which returns 750 rows for namespace HSCUSTOM
go to post Robert Cemper · Jun 6, 2024 And here is the full documentationProcessing Errors at the Terminal Prompt
go to post Robert Cemper · Jun 6, 2024 2d indicates that you are 2 stack levels down from Command prompt last entered by doenter QUIT to return to top do ^%STACK may display your way down to your actual point