go to post Jamie French · Apr 5, 2022 In the docker-compose file the command is still command: --check-caps false If the = is left in the command the following error will be returned PARSE ERROR: Argument: --check-caps=false iris_1 | Couldn't find match for argument | Brief USAGE: iris_1 | /iris-main [--ISCAgentPort <integer>] [--ISCAgent <bool>] [--check-caps iris_1 | <bool>] [-k <license key>] [-L <<licenseID> <host1>,<port1>[ iris_1 | ,<dir1>] [<host2>,<port2>[,<dir2>]]>] [-p <password file>] iris_1 | [-t <command>] [-c <command>] [-e <command>] [-a <command>] iris_1 | [-b <command>] [-l <log file>] [-s <bool>] [-u <bool>] [-d iris_1 | <bool>] [-i <instance>] [--] [--version] [-h] iris_1 | iris_1 | For complete USAGE and HELP type: iris_1 | /iris-main --help
go to post Jamie French · May 23, 2018 Hello SiranThis link to Intersystem's learning services online offering might also help.Angular, JSON, and REST – Oh My!https://learning.intersystems.com/course/view.php?id=738
go to post Jamie French · Sep 15, 2016 I'm guessing that you mean another class method that would be call to output your saved information. Once you have use .%Save() Caché generates an id. I see that you have a field named id, but as you didn't post the class definition I'm not sure it was set up to be the unique key for the class. If you were looking to do that then I might recommend this documentation.http://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY=...So by default Caché uses an integer for the ID, incremented by 1 from the last saved object. You can get that id right after .%Save() by calling .%Id(). Once you have that value you can use it to open the object in a different method. There are other ways to call up the %Id() information such as using a SQL query to find the object and retrieving the object id from the ID field. Either way once you have the Id you can open a saved object with like this. Set myObj = ##class(Eam.Empdetails).%OpenId(yourid) This page goes into more detail about using %Save and retrieving an object. http://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY=...I hope this helps.
go to post Jamie French · Aug 19, 2016 Hello ScottIf you go into the Business service that is doing the immediate ACK back you will see under Development and Debugging a check box for Archive IO. Enable this and it should then show you the ACK in the trace once you send another message through. When you are done with looking at the ACK I would turn this back off as it adds to the space being used by the trace messages. I hope this helps
go to post Jamie French · Jul 21, 2016 Yes you use the session object to store the data you wish to carry forward through the session. This should help http://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY=...http://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY=...
go to post Jamie French · Jul 13, 2016 Alex has suggested the best way. You can also suspend these messages so that they can be looked at and resent later. You can send an alert also from any point if you wish while processing the messages. http://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY=...Lastly if you get a lot of these that need to be touched or messages in someway by a real user you could use a workflow in your production. http://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY=...