go to post Stefan Wittmann · Apr 13, 2021 Another option is to look into the Request Transformer Advanced, since this plugin support regular expressions and allows for dynamic content: https://docs.konghq.com/hub/kong-inc/request-transformer-advanced/
go to post Stefan Wittmann · Apr 6, 2021 Hi @Menno Voerman the DTL Generator is still in development and was presented at the last Virtual Summit to gather some feedback, which we are still incorporating and fine-tuning with some partners. Are you interested in the DTL generator for migrating interfaces to InterSystems IRIS or for other reasons?
go to post Stefan Wittmann · Feb 17, 2021 Kong is in the process of renaming some of their products and features. When you look closer at their documentation you will find that they still differentiate between Kong Gateway (OSS) and Kong Gateway (Enterprise). Kong Enterprise is not free of charge (it's part of Kong Konnect). Kong Enterprise includes many features that are essential for many use cases, like support for OAuth2 and OpenID Connect, as well as the capability to build your own Developer Portal - to mention a few. IAM will soon catch up to current releases of Kong Enterprise.
go to post Stefan Wittmann · Jan 18, 2021 Hi Akshay, this functionality was teased at Virtual Summit but is not released yet. Also, this will be an IRIS for Health feature, as the DTL Generator works on inbound and outbound pairs of HL7 messages. Best, Stefan
go to post Stefan Wittmann · Nov 17, 2020 Hi Mark and Evgeny, there are plenty of options available to achieve what you are asking for. You can certainly pick one of the templates that others have pointed out in the individual replies here. Starting from scratch I would probably generate a Record Map using the CSV Wizard as described in the documentation here. Afterwards you can simply leverage the prebuilt FTPService or BatchFTPService that come with the Record Map utility. The Interoperability quick start includes a sample of the Record Map for importing a CSV file and might be a good reference as well.
go to post Stefan Wittmann · Sep 22, 2020 Thanks, @Craig.Regester. This is the correct solution to this use case.
go to post Stefan Wittmann · Jul 23, 2020 Hi Evgeny, no. The Advanced Analytics image is staying on build 331.
go to post Stefan Wittmann · Jul 1, 2020 Hi @Jeffrey Drumm , thanks for the catch, the wording was not clear and I have corrected the statement. 2020.2 is a CD release, which only contains container images, not full kits. Thanks, Stefan
go to post Stefan Wittmann · Oct 1, 2019 No, it is not for multiple reasons. We have plans to publish the InterSystems API Manager on Docker Repositories at a later point, but I can't give you an ETA.
go to post Stefan Wittmann · Sep 20, 2019 Yes. The first release of InterSystems IRIS that supports IAM and is available on all platforms is 2019.1.1.
go to post Stefan Wittmann · Sep 19, 2019 Alexander has provided the correct answer, you have to unpack the archive first. The reason is that the IAM distribution includes more than just a docker image, but also a readme file and various scripts to make your life easier. That's the reason why the WRC Distribution page lists IAM in the components section and not together with the other containers (like ICM).
go to post Stefan Wittmann · Aug 14, 2019 I updated the announcement adding a link to the technical introduction which I just published. Enjoy! :)
go to post Stefan Wittmann · Aug 12, 2019 Hi Vikram,all answers are perfectly fine, but I would like to add that if you are new to ZEN (and have to build up your knowledge) and want to build a web application, I would advise you to build your APIs via JSON over REST and develop a web application using one of the many popular web frameworks like Angular, React or Vue.js, depending on the requirements of your application and your personal style.ZEN is not actively enhanced anymore and you might run into undesired behavior with recent browser versions that are hard to control.Best,Stefan
go to post Stefan Wittmann · Aug 12, 2019 Hi Duncan,great to hear that you find the community edition beneficial! We are currently working on making the IRIS for Health Community Edition available on the docker store as well. I can't give you an exact time window, but it shouldn't be too far away. Stay tuned, it will be announced on the developer community when it is available.As Sylvain has pointed out, you can always pull the images from the WRC Distribution page if you are a registered partner. The offerings on AWS, Azure or GCP can still be helpful with zero cost, as you often get a voucher when you sign-up for a new account. Enough for playing around for sure.Best,Stefan
go to post Stefan Wittmann · Aug 7, 2019 Hi Juha,IAM is only available in container format and we have no plans to change that at this point in time. I would like to understand the background of your question. Would you prefer a regular installer and if so, why?Thanks,Stefan
go to post Stefan Wittmann · Jun 7, 2019 You have various options, depending on what you want to achieve:Added a property of type %DynamicObject or %DynamicArray to a persistent classStore the JSON content in the Document Data ModelParse a JSON structure as Eduard indicated and generate the corresponding persistent class(es).I would not advise to use %Document.Object. Use the Document Model instead.With option 1) and 2) you don't need to define a schema at all, but can easily persist and manage your JSON content as objects. No SQL access to individual properties of the JSON content for option 1). With the document data model you can add support for SQL queries for individual JSON paths.Option 3) is work, but doable. Figuring out the correct datatypes will be the greatest challenge. If you have JSON schema instead, your life is much simpler.
go to post Stefan Wittmann · Jun 6, 2019 Hi Arto, the enhancements mentioned in my post are specific to IRIS.
go to post Stefan Wittmann · Jan 15, 2019 Glad to hear you were able to make it work. Debugging these issues can be really painful. Emulators help as you can easily work with the debugger, but emulators only tell you half the story...I usually debugged and tested these scenarios on a real device, connected to the IDE on my laptop, which allows you to see exactly what is going on via the output window and the debugger of your IDE.
go to post Stefan Wittmann · Jan 15, 2019 There are various things which can bite you with the WebView component. Check the following:Verify the WebView is properly sized (e.g. same size as parent container) as the initial content might be sized 0px...Make sure you granted INTERNET permissionExplicitly enable JavaScript