Have you tried to export it from 2014 and import it into 2018 instance using ^SECURITY command?
https://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KE…
- Log in to post comments
Have you tried to export it from 2014 and import it into 2018 instance using ^SECURITY command?
https://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KE…
I used it with no problem for this application:
https://community.intersystems.com/post/quinielaml-working-jwt-authenti…
The error message talks about a restriction for unauthorized access to %Api.Atelier class, maybe that class override the /login?
Edited! Thanks for the warning!
I was Java developer for more than 15 years and for me to use arguments by reference was totally disgusting, you can use it in Java, but it's not very common, in Objectscript is the opposite, Output arguments are the rule, no the exception.
Calling instance methods using variables not declared as arguments made me feel dirty.
Is the ID that you are using the same that was generated by the server?
Long life to @Robert Cemper !
PUT and DELETE works, but you have to use as id the generated by FHIR server, you can't use MRN or any other type of id.
Sales engineers are the best!
Congratulations to the winners!
Sorry for the delay, at the end of your third point your request is a HS.FHIRServer.Interop.Request object, this object has a property called RequestMethod in which you define the method (PUT, POST, DELETE). Define it to PUT and it should work (if your resource has the id assigned by the FHIR server before).
You have to include the non-mirrored database from the primary instance of the mirror.
What error do you receive?
Here is the official documentation about supported JAVA versions:
https://docs.intersystems.com/irislatest/csp/docbook/DocBook.UI.Page.cl…
Saving you a click: 8 and 11
Another option is to use embedded python (not for your version sadly). You would use jsondiff Python library to compare the JSON projection of the objects.
@Carl (booz Allen) Deitrich
Did the solution of @Malte Schnack work for you?
Bingo!
You can use embedded python:
The improvement of the performance is incredible, if I were a solutions architect I would've in mind the columnar storage for any kind of dashboard.
Do you need to do something with the request? If you don't the best option is to delegate the redirection to the application server (Apache or whatever), avoiding to involve IRIS in the process.
I think that you need to check the connections to the port of the Server, take a look to this web:
https://mkyong.com/linux/list-all-ip-addresses-connected-to-your-server/
Following the answer from @Tani Frankel you can generate XSD from XML with no problem, there are a billion of webs that you can use to do it (you just have to be sure that the XML contains all the tags required).
Here is the official documentation:
https://docs.intersystems.com/irisforhealthlatest/csp/docbook/DocBook.U…
The type for ELEMENTQUALIFIED is Boolean (0 or 1).
You are right! I copied the call to the BS from the Token message without review it.
Hi Token! You need an interoperability production running with a business component with the same name that you are using to invoke it. The production has to be running on the same namespace.
What do you mean with multiple Business Rules? you want to send your object throught more than one business rule? And send it where? To another business component?
Something like this:
set status = ##class(Ens.Director).CreateBusinessService("My.BusinessService", .instance)
set status = instance.SendRequestAsync("My.BusinessProcess", request, .response)Maybe this question from stackoverflow can help you:
https://stackoverflow.com/questions/68231387/starting-vs-code-hangs-wit…
You're welcome!
I would get a bundle from patient X for each resource that you want to move and send a post for the patient Y with a bundle formed by the resources that you got modifying the reference to the patient Y.