go to post Dmitry Maslennikov · Dec 20, 2022 I think, it may skip Abstract classes, and there are only Abstract classes
go to post Dmitry Maslennikov · Dec 20, 2022 Atelier API is just for IDE, it's not supposed to call any custom call. There is a way, that you could call SQL Proc, via SQL Query. But it is not what I would recommend
go to post Dmitry Maslennikov · Dec 20, 2022 Yes, they already mentioned that in another post But, how knows how long it will last, the later version may remove that support
go to post Dmitry Maslennikov · Dec 20, 2022 The fact that it's still available in the Community Edition, does not mean that it will not be removed there too. And I'm sure not all developers, can use Community Edition in development, because, not all features are available in Community Edition, and it's very limited by the size of the database and connections (even after increasing). So, for most of the customers, it's rather impossible. But now, InterSystems I would say forcing to use it in development by any developer. So, I see, no reason of pushing Community Edition as an option for developers. It's a good alternative, but useful for a minor part of the developers.
go to post Dmitry Maslennikov · Dec 20, 2022 Using Atelier API, for such task looks a bit strange. Did you look at the documentation about what is available for direct use in .Net?
go to post Dmitry Maslennikov · Dec 19, 2022 It will not help anyway. Developers installing instance locally, will have to take care about configuring local web server as well, even just to use VSCode.
go to post Dmitry Maslennikov · Dec 19, 2022 You can still migrate to versions prior 2023.1, where apache is still present. And I hope that will come time when SMP will not be needed in this form, as well as others tools that requires webserver.
go to post Dmitry Maslennikov · Dec 16, 2022 Well, what will happen with Docker images, and in particular Community Edition? Will it require an additional docker image with a pre-configured webserver? WebGateway images, which may probably be a replacement for that case, are not available for the community without support.
go to post Dmitry Maslennikov · Dec 13, 2022 That's one of the very good reasons, do not work together on the same server. So, yeah, the best way to go is to use your own instance, so, no one will break your tests excepts you
go to post Dmitry Maslennikov · Dec 13, 2022 You can try these packages, it may not work, as it was tested for latest IRIS https://pypi.org/project/sqlalchemy-iris/ https://pypi.org/project/django-iris/ https://pypi.org/project/intersystems-iris/ - is DB-API driver used by both above, can be used separately
go to post Dmitry Maslennikov · Dec 9, 2022 Api Atelier was added with 2016.2, and it's the oldest version where it's available, you can't migrate it to an older version. You may ask InterSystems or someone else for help in the upgrading process.
go to post Dmitry Maslennikov · Dec 8, 2022 Not, it's for Windows only. Instead of Studio, you can use VSCode, it's available for any platform.
go to post Dmitry Maslennikov · Dec 7, 2022 The trick is in using <TAB>, after the label in the first line, and before each line, I even can copy-paste the entire code from an editor to a terminal, I use iTerm in macOS, no idea how it works with other terminals.
go to post Dmitry Maslennikov · Dec 7, 2022 Relocated image from github to community, should be visible now
go to post Dmitry Maslennikov · Dec 6, 2022 I don't see anything like the list of all available tools in the Documentation. Just from experience, tools like this, not complete list (in %SYS namespace) Do ^Integirty Do ^DATABASE Do ^JOURNAL Do ^MIRROR Managed to find, something here
go to post Dmitry Maslennikov · Dec 5, 2022 Well, I've asked about it through the ideas portal, and you mentioned some flexibility It's ObjectScript, so, it has some flexibility. The only issue is login and password, and using OS-based auth, is a good way to solve this, obviously if OS-level is protected enough. For instance, you can raise issues just by terminating the process with an exit code higher than 0 with $system.Process.Terminate irisowner@ca22f45b16b1:~/temp$ cat commands.txt _SYSTEM SYS write "hello world" write "I'm: ", $username if $g(condition,1) Do $system.Process.Terminate(,2) write "terminated?" halt irisowner@ca22f45b16b1:~/temp$ cat commands.txt | iris session iris; echo Status: $? Node: ca22f45b16b1, Instance: IRIS Username: Password: USER> hello world USER> I'm: _SYSTEM USER> Status: 2 If you call some InterSystems internal interactive tools. So, most such tools have non-interactive endpoints, so, you can call them directly, and no interactivity is needed.
go to post Dmitry Maslennikov · Dec 5, 2022 The hardest part of this is a login and password, and I would recommend configuring OS-based Authorization for %Service_Terminal, so, it will not require login and password. Everything else is quite simple if your script is not supposed to answer questions there. cat commands.txt | iris session iris > output.log and, the content of commands.txt, is something like this write "hello world" write "I'm: ", $username halt Important to finish the script with halt command, and if you still wish to keep login and password, the first two lines should contain login and password irisowner@ca22f45b16b1:~/temp$ cat commands.txt _SYSTEM SYS write "hello world" write "I'm: ", $username halt irisowner@ca22f45b16b1:~/temp$ cat commands.txt | iris session iris Node: ca22f45b16b1, Instance: IRIS Username: Password: USER> hello world USER> I'm: _SYSTEM USER>