Evgeny Shvarov · May 6, 2020 go to post

We are fixing this now with Eventbrite. Something went wrong on their side. Sorry for the inconvenience.

Evgeny Shvarov · May 5, 2020 go to post

Hi folks!

We changed the test server for test registry again!)

Now the proper command to switch to TEST Registry is:

repo -n registry -r -url https://test.pm.community.intersystems.com/registry/ -user test -pass PassWord42

E.g.:

zpm:USER>repo -n registry -r -url https://test.pm.community.intersystems.com/registry/ -user test -pass PassWord42

Hope we'll not change it again soon )

And of course, you are very welcome to set up your own registry)

Stay tuned!

Evgeny Shvarov · Apr 30, 2020 go to post

Thanks, Peter! Indeed, there is a 3 days delay which lets our DC Moderators team decide on the nature of the post and to let community vote positively or negatively. You don't get badges and points for negatively voted posts.

Evgeny Shvarov · Apr 28, 2020 go to post

Hi folks! 

If you get an error while publishing:

Publish FAILURE - ERROR #5001: Publishing module, something went wrong.

That means you need to bump the module version - it doesn't allow (at least now) to overwrite already published module version.

Evgeny Shvarov · Apr 25, 2020 go to post

Oliver! Thanks for sharing! I'm sure you can estimate for yourself if this is the value, but personally I see a lot of value in the fact that engineers united to share experience and to help solve problems. And congrats to you with making REST API and JSON work for you! 

And I welcome everyone to Discord chat - we are sharing experience and having fun there!

Evgeny Shvarov · Apr 24, 2020 go to post

Hi David!

Could you please commit it and push to the repo on GitHub and  I'll try on my laptop?

If not possible - join the discord.

Evgeny Shvarov · Apr 24, 2020 go to post

Added the information about Sample application:

Sample application

Here is the sample template application objectscript-docker-rest-template

It gets one technology bonus point because it could be also installed as ZPM module with the command:

zpm:USER>install rest-template

And it gets another technology bonus because it exposes swagger spec on localhost:port/crud/_spec.

REST API Documentation could be published by Postman or can be viewed by any swaggerUI service. E.g. with addons as iris-expolrer, or swagger-ui package.

You can use this application as a template.

Evgeny Shvarov · Apr 22, 2020 go to post

If you have your REST API application and just need to Dockerize it - take the advantage of Intersystems IRIS
Docker Kit. This archive added to any repo with InterSystems IRIS code makes this repo running in InterSystems IRIS in Docker container. And you don't need to start from scratch with a template.

Evgeny Shvarov · Apr 17, 2020 go to post

And we released images with IRIS 2020.1 and 2020.2 and ZPM 0.2.1. the tags are:

intersystemsdc/iris-community:2020.1.0.215.0-zpm

intersystemsdc/iris-community:2020.2.0.196.0-zpm

intersystemsdc/irishealth-community:2020.1.0.215.0-zpm

intersystemsdc/irishealth-community:2020.2.0.196.0-zpm

And to launch IRIS do:

docker run --name my-iris -d --publish 9091:51773 --publish 9092:52773 intersystemsdc/iris-community:2020.1.0.215.0-zpm

docker run --name my-iris -d --publish 9091:51773 --publish 9092:52773 intersystemsdc/iris-community:2020.2.0.196.0-zpm

docker run --name my-iris -d --publish 9091:51773 --publish 9092:52773 intersystemsdc/irishealth-community:2020.1.0.215.0-zpm

docker run --name my-iris -d --publish 9091:51773 --publish 9092:52773 intersystemsdc/irishealth-community:2020.2.0.196.0-zpm

And for terminal do:

docker exec -it my-iris iris session IRIS

and for control panel:

http://localhost:9092/csp/sys/UtilHome.csp

Happy coding!

Evgeny Shvarov · Apr 17, 2020 go to post

Thanks Dmitry! What is the minimum Oracle JRE version which will work with ObjectScript Quality?

Evgeny Shvarov · Apr 16, 2020 go to post

Hi Zhong! Really cool stuff, thank you! Any source code on Github to "try it at home"?