go to post Ashok Kumar · Nov 9, 2023 Have you verified? Did you get all the values whether the hl7 message is properly imported to the object after executing XMLImportSDAString for all the properties. do reqObj.XMLImportSDAString(xml.Read())
go to post Ashok Kumar · Nov 9, 2023 Hello @MARK PONGONIS Get/Post/Put any method will return status if error while executing otherwise return 1. The HttpResponse object property actually contains the response details such as status code, content length, content type, response etc... So, As you mentioned the code is "i http.HttpResponse.StatusCode" is used to get the status code of the response.
go to post Ashok Kumar · Nov 7, 2023 I believe the simulator/JWT.io uses Base64UrlEncode instead of Base64EncodeThe problem with Base64Encode is that it contains the characters + , / , and = ,. So Base64UrlEncode solves this by replacing + with - and / with _ .
go to post Ashok Kumar · Nov 7, 2023 Hello @Yone Moreno Try removing the = after $system.Encryption.Base64Encode(). You can also check the %OAuth2.JWT class to as well. do ##Class(%OAuth2.JWT).ObjectToJWT(.JOSE,body,,,.jwt)
go to post Ashok Kumar · Nov 3, 2023 Basically you should keepIntegrity enabled. Otherwise it will delete all the messages regardless of whether processed or not processed. Select "All types" in Type to purge. You can enable the " Open output file when task is running? " and provide the file location. Once the process is completed or Errored you can check the Ens_Util.Log to get some additional information. Can you try the above steps.
go to post Ashok Kumar · Nov 3, 2023 The object doesn't throw the <MAXSTRING> error. However variable do. If your serialization the JSON and stored into variable. If it's reaches the maximum string it will throw an error.
go to post Ashok Kumar · Nov 2, 2023 You need to select the BodiesToo option(whenever the message header details the body also deleted) to delete the messages from the database
go to post Ashok Kumar · Nov 2, 2023 Now the documentation are online based. You can access the documentation https://docs.intersystems.com/irislatest/csp/docbook/DocBook.UI.Page.cls Open documentation from iris lancher also connect to the https://docs.intersystems.com/iris20232/csp/docbook/DocBook.UI.Page.cls You can change the iris20232 to iris20222 to get the 2022.2 version documentation.
go to post Ashok Kumar · Oct 31, 2023 You can use %SetStatusCode from the %REST.Impl class definition. This class have additional methods available to set the response related stuffs like below do ##class(%REST.Impl).%SetStatusCode(..#HTTP401UNAUTHORIZED)
go to post Ashok Kumar · Oct 25, 2023 $this is actually return the current class name instead of object if you're using inside ClassMethod. On the other hand if you use $this (It actually holds the object) So, it returns object inside Method . Check the below sample code and output ClassMethod thistest() { write "$this inside ClassMethod: ",$this,! write "$this object check ClassMethod: ",$ISOBJECT($this),! set obj = ##class(User.NewClass1)..%New() do obj.thistest1() } Method thistest1() { write "$this Method: ",$this,! write "$this object check Method: ",$ISOBJECT($this),! } LEARNING>d ##class(User.NewClass1).thistest() $this inside ClassMethod: User.NewClass1 $this object check ClassMethod: 0 $this Method: 1@User.NewClass1 $this object check Method: 1 So. If you're trying to get the property value inside classmethod by using $this in $PROPERTY($THIS,propertyName) It throws <NO CURRENT OBJECT> error . so you should use object for $PROPERTY or use this retrieval $PROPERTY($THIS,propertyName) inside method.
go to post Ashok Kumar · Oct 24, 2023 The lock is belongs from different process(9908) and you're trying to terminate via different process(10376) not is not possible. You can verify and terminate the 9908 in process (System Operation>Process) if no longer required for prevent multiple locks set again and click remove all locks for process and remove it. Use $test special variable in your code to check the for success/failure lock. If lock is success it return 1 otherwise return 0 based on this result you can continue your logic flow. Always use incremental lock with timeout (ex: lock +^test:0) LEARNING>w $test 0 LEARNING>lock +^test:0 LEARNING>w $test 1 LEARNING>
go to post Ashok Kumar · Oct 24, 2023 Basically. The tcommiit will commit the current open transaction. Lock -^global (decremental lock ) is used to release the incremental lock( lock +^global) so everytime if you do incremental lock then you should decrement the lock) by using lock -^gbl syntax Argumentless lock is release all the locks in the process. So this is not highly recommend in code. And incremental locks are highly recommend for use.
go to post Ashok Kumar · Oct 24, 2023 I see you're locking the global +^IudexNqlInByte not unlocking. can you check the below tstart if staten["IUDX" { lock +^IudexNqlInByte(1):0 if $test{ set IudexNqlInByte(1,inc)=obj.%Id() lock -^IudexNqlInByte(1) } } else { lock +^ToshibaNQLIn(1):0 if $test { set ^ToshibaNQLIn(1,inc)=obj.%Id() lock -^ToshibaNQLIn(1) } } tcommit
go to post Ashok Kumar · Oct 23, 2023 Hello @Robert Steed Is the terminating process via SMP (System Operation>Process>SelectProcess Detail>Terminate) isn't working?
go to post Ashok Kumar · Oct 23, 2023 Hello Yone, Why don't you use %Stream.GlobalCharacter stream object to store Long string instead of %String property. You can extend your class with %JSON.Adaptor and create a JSON object and directly import with your contents like below. ClassMethod Import() { set json=[{"ID_SICH":"121212","FECHA_DERIVACION":123,"MEDICO_PETICIONARIO":(tResponse.Data)}] set obj = ##Class(Mensajes.Response.Radiologia.CConcertados.BusquedaOrdenesNEGRINResponse).%New() set stt= o.%JSONImport(json) if $$$ISERR(stt) write $SYSTEM.OBJ.DisplayError(stt) set stt= obj.%Save() if $$$ISERR(stt) write $SYSTEM.OBJ.DisplayError(stt) }
go to post Ashok Kumar · Oct 22, 2023 Hello @Chad Severtson We have streams to store it for long time. So, As per the documentation. I was thinking to to create a separate database to move the existing streams, create a new streams and maintain it accordingly. Can you add bit more details about this the instance wide consideration rather than only a database level consideration because allocating buffers of 32KB reserves a portion of the memory for blocks of that sizeHow much memory is allocated and how to calculate it Thanks!
go to post Ashok Kumar · Oct 20, 2023 Hello @Kari Vatjus-Anttila This was a nice implementation for securing the individual REST calls. However, Will loose the benefits of built JWT Authentication for web application(from 2022 version). Maintaining two separate web applications for secure and unsecured seems useful.
go to post Ashok Kumar · Oct 19, 2023 Thanks @Dmitry Maslennikov It works. I thought "Initial (25% of physical memory)" of the global buffer will also applicable for other block size. However It's not that kind. There is default 0 for those blocks. So, it's mandatory to make it specific amount. Once I made the changes it works!
go to post Ashok Kumar · Oct 19, 2023 Hello @Dmitry Maslennikov I had enabled the options and restarted the iris before creating the database. Still I got the error