go to post Krishnaveni Kapu · May 23, 2024 This is how I am doing : --------- Class PKG.ObservationWrapper Extends %Persistent{ Property bundleReq As HS.FHIR.DTL.vR4.Model.Resource.Bundle; } ------- Set wrapperBundleObj = ##class(PKG.ObservationWrapper).%New() Set wrapperBundleObj.bundleReq = ##class(HS.FHIR.DTL.vR4.Model.Resource.Bundle).FromJSON(reqStream,"vR4")Set tSC = BusinessService.SendRequestSync("SAMPLE_ROUTER", wrapperBundleObj.bundleReq) expection : ERROR <Ens>ErrException: <METHOD DOES NOT EXIST>zNewRequestMessage+4^Ens.MessageHeader.1 *%GetSwizzleObject,HS.FHIR.DTL.vR4.Model.Resource.Bundle -- logged as '-' number - @'' =======================================
go to post Krishnaveni Kapu · May 23, 2024 I have similar requirement ; I would like to send bundle object to a router and then perform a DTL with in the routing rule ( this BundleObject as a souce to my DTL). during this process , I get below expection reqStream = json content in a stream Set BundleObject=##class(HS.FHIR.DTL.vR4.Model.Resource.Bundle).FromJSON(reqStream,"vR4") Set tSC = BusinessService.SendRequestSync("SAMPLE_ROUTER", BundleObj) expection : ERROR <Ens>ErrException: <METHOD DOES NOT EXIST>zNewRequestMessage+4^Ens.MessageHeader.1 *%GetSwizzleObject,HS.FHIR.DTL.vR4.Model.Resource.Bundle -- logged as '-' number - @''
go to post Krishnaveni Kapu · May 15, 2024 Hi All , It is solved : Using this earlier : d ##class(%ZEN.Auxiliary.jsonProvider).%WriteJSONStreamFromObject(pTarget.EntityBody,pRequest,,,1,"aelqtw") using the below solved the issue : d ##class(%ZEN.Auxiliary.jsonProvider).%WriteJSONStreamFromObject(pTarget.EntityBody,pRequest,,,1,"aeltw")
go to post Krishnaveni Kapu · May 13, 2024 I have below issue - I have an ID with 123456.(ID as a dynamic value coming from request message) I wanted it to be displayed as "123456" in Json Stream. Code Example: set object = ##class(%ZEN.proxyObject).%New() set object.ID = ID set x = ##class(%ZEN.Auxiliary.jsonArrayProvider).%WriteJSONStreamFromObject(.json,object) Case:1ID : 123456 Will output: { "ID": 123456 } but I need : { "ID": "123456" } Case:2ID : "123456" (adding double quotes) Will output: { "ID": "\"123456\"" } but I need : { "ID": "123456" } Thanks in advance.
go to post Krishnaveni Kapu · Apr 26, 2024 It is working now my XML : <Input> <data> <Id> <Type>A</Type> <Value>123</Value> </Id> </data></Input> need to use --> Document.data.Id
go to post Krishnaveni Kapu · Apr 26, 2024 Thanks for your reply. I wants to read in a routing rule when condition.(not in a class method)
go to post Krishnaveni Kapu · Apr 26, 2024 Document.{/dasta/is/ip/lo/loi/@material} What is "Document" here ? parent tag of xml ? Actually I am looking for syntax to read through XML input in my routing rule .. Used something like this - <when condition="XML.{/Msg/Info/Id} = "123""> but its not working ?
go to post Krishnaveni Kapu · Jun 20, 2023 Its resolved : ..ConvertDateTime("09/Jun/23 09:40:00 BST","%d/%b/%y %H:%M:%S BST","%Y%m%d%H%M%S") output = 20230609094000