go to post Ben Spead · Jun 21, 2023 very cool! thank you for the time you spent compiling this and sharing it!
go to post Ben Spead · Jun 15, 2023 Very nice @John Murray - thank you for continuing to contribute towards a better experience!
go to post Ben Spead · Jun 12, 2023 @Dheeraj Gupta, @Anderson Negreli - we have identified and corrected the situation. Can you please try again and confirm access? We do apologize for the inconvenience and we're working to figure out how this could have been prevented.
go to post Ben Spead · Jun 2, 2023 you can get a longer-lasting license from your account manager. the sort term license is the embedded one that ships by default
go to post Ben Spead · Jun 2, 2023 you can reach out to your account manager to get an updated key if you need to stay on the same version of the Community Edition
go to post Ben Spead · May 29, 2023 Eduard is correct ... System Default Settings are the proper way to handle this. we will also export the SDSs to store in a non-progressed branch in Source control to use as snapshots of the settings per environment over time (there is an export API you can use for this .. it doesn't tie into source control hooks).
go to post Ben Spead · May 25, 2023 apologies - I don't have a fully working sample available (or time to put one together I am afraid), but maybe else could put one together for you. You might get further if you share the code you have so far which is using these two components and explain the specific issues you are seeing (your original post wasn't clear that you already had the appropriate components in-hand but were having issues using them correctly)
go to post Ben Spead · May 25, 2023 To show the image you can use: https://docs.intersystems.com/iris20231/csp/documatic/%25CSP.Documatic.c...This gives you the ability to bind to a stream via OID Here is the documentation on the file upload control: https://docs.intersystems.com/iris20231/csp/documatic/%25CSP.Documatic.c... HTH!
go to post Ben Spead · May 25, 2023 You don't need to use REST APIs. One of the strengths of Zen was that it allowed you to directly access data within the DB for easy display
go to post Ben Spead · May 25, 2023 what type of a page are you using? csp? zen? a third party JS Library?
go to post Ben Spead · May 19, 2023 I suggest that you open a Support ticket with the WRC if you don't get a good answer quickly here.
go to post Ben Spead · May 18, 2023 @Hiroshi Sato - thank you for sharing! I would recommend that rather than using $zf(-100) you use the %File class to make your directory creation OS-independent. This will allow it to be used on different OSes. Check out the CreateDirectoryChain() method of the %File class: https://docs.intersystems.com/iris20231/csp/documatic/%25CSP.Documatic.c... So your line "Set x=$ZF(-100, "/shell", "mkdir", Directory)" could be replaced by: Set x=##class(%File).CreateDirectoryChain(Directory,.return) If ('x) { Write "Error Creating Directory Chain: "_return } Also, make sure that this script runs as the user that is used for all IRIS processes to ensure that the directory has appropriate ownership and permissions HTH!
go to post Ben Spead · May 16, 2023 ways great to see a well written tutorial - thank you for the time you spent on this :)