Question prashanth ponugoti · Oct 23 How to search message details in LIVE based on MRN Hello Experts , Could you help to search message details based on MRN in intersytems iris. We have created 100+ interfaces and currenly in live (interystems cloud) . Now I try to search message details based on MRN using below query. it is working fine in DEV. but in prod it is taking ages. #Message Search #Caché #Ensemble #Global Masters #Health Connect #HealthShare #InterSystems IRIS #InterSystems IRIS for Health 0 2 0 95
Question prashanth ponugoti · Feb 15 How to invoke BusinessProcess from Extends (Ens.BusinessService, %CSP.REST) class Hi Friends , I have a requirement to expose REST endpoint to consume JSON payload and process it with BusinessProcess invocation. Here is the code #InterSystems IRIS 0 2 0 161
Question prashanth ponugoti · Oct 23, 2023 import jar file and call one of public class public method in objectscript Hi Friends, We have a requirement to read pdf text in ensemble object script code. As object script doesn't have direct solution , i tried to implement python code , but iris 2020 , there is no support for python in object script. so I have found one java utill using pdfbox api. Now I have created jar and want to register into iris and want to make a call to mymethod to read pdf text. please help me to way forward to achieve it. java code: ============ #InterSystems IRIS 0 4 0 329
Question prashanth ponugoti · Oct 13, 2023 Search string in pdf Hi Friends , We have a use case to search a given word in pdf and based on the result i need to send pdf to particular outbound system. Here we used to do with some java library help in oracle soa integrations , now we are migrating oracle soa to intersystems . Please help me if we have any library available in objectscript cahe. Thanks, Prashanth #InterSystems IRIS 0 1 0 210
Question prashanth ponugoti · Mar 21, 2023 Dynamic query execution any error found How to log it Hi Friends, In my business process I am updating cache table using dynamic query. ex: #InterSystems IRIS 0 5 0 299
Question prashanth ponugoti · Mar 3, 2023 Utility method should wait till some other process in progress Hi Friends, I have created one utility method to check given id exist some reference table or not. If exist the method return1 otherwise 0. But some times the backed table data will be reload with another process (REST request) , on any point of time. This reload process max it will take 30 seconds. My Requirement is , the utility method should wait , if table reload is in progress. Could you give me any suggestion for this issue. Thanks, Prashanth #InterSystems IRIS for Health 0 7 0 226
Question prashanth ponugoti · Mar 3, 2023 How to expose business service as Rest endpoint Hi Friends , We have requirement to load data into chache tables from external database (ref data). This process will take 1 min to complete all data load. Currently I have created Business Service to trigger Business Operation with out bound db adapter to load data into cache tables. process will be trigger when i restarted business service. But requirement is , this business service should be triggered from outside ensemble environment i.e , this should expose as REST endpoint and share with the external team. #Ensemble #InterSystems IRIS 0 1 0 185
Question prashanth ponugoti · Feb 16, 2023 How to send json from on-premises outbound (operation) to cloud business service with out using REST service? Hi Team, Here we have requirement to send json data from on-premises iris to business service in cloud iris namespace. we have firewalls opened. Could you please suggest any other ways with out using WEB Service (soap or rest) solution? Thanks, Prashanth #JSON #InterSystems IRIS 0 2 0 180
Question prashanth ponugoti · Dec 22, 2022 How to trigger inbound db adapter business service at 10am everyday only once Hi Friends , I have created inbound DB adapter business service. Now my requirement to trigger this service at 10am daily. I used scheduler , but I don't know when should i configure for stop. this not suits for my requirement. Is there any other way , where I need to trigger service only once , in configured times. Thanks, Prashanth #Business Service #InterSystems IRIS 0 3 0 285
Question prashanth ponugoti · Nov 25, 2022 WSDL SOAP service is creating web sessions leads to server down Hi Friends, I have created and exposed a web service for the given WSDL. daily 500+ requests are processed via this SOAP service in live. after 2 days live server got stopped with no web sessions available. We removed this SOAP service, now live is working fine. We are investigating why web sessions got increased. Could you please give me any clue, as to why web sessions got increased with the unknown user while processing requests through SOAP service? Thanks, Prashanth #InterSystems IRIS 0 1 0 416
Question prashanth ponugoti · Nov 15, 2022 for loop to loop xml repetitive tag content Hi Friends , Here I need fetch the OrgCode value from party tag whose AgentId=1 <Msg> <Parties> <Party AgentId=0> <OrgCode>abcd</OrgCode> </Party> <Party AgentId=1> #InterSystems IRIS for Health 0 2 0 378
Question prashanth ponugoti · Oct 20, 2022 Not able to convert %Stream.TmpBinary; to JSON property Hello, I’m creating a REST API service but I need to convert my object in JSON. Class message_B Extends Ens.Request { Property ClientId As %String(MAXLEN = ""); Property mesagge As %Stream.TmpBinary;} set pRequest = ##Class(message_B).%New()do ##class(Ens.Util.JSON).ObjectToJSONStream(pRequest, .content) it is ignoring message property in json dueto its data type %Stream.TmpBinary Could you please help me to resolve it? #InterSystems IRIS 0 2 0 231
Question prashanth ponugoti · Oct 19, 2022 Not able to convert pdf to base64 if pdf size is more than 4MB Hi Friends, I have a requirement to convert pdf from URL to Base64 format. I have created one utility method and used in the DTL. Working fine for small pdf files , we got one pdf with size 4MB , this method is failing (creating corrupted base64 content). Could you please suggest me the way to convert big pdfs? #DTL #InterSystems IRIS 0 6 0 1.8K
Question prashanth ponugoti · Oct 8, 2022 How much memory will it take to use maxlen for String type? Hi Friends, If I created Property as below Property Abc as %String (Maxlen = 3000000) how much space will be used in cache DB, if assigned "hello" to Abc? The cache will use 3000000 bytes or 5 bytes? This conformation is very important for my implementation Thanks, Prashanth #Caché 1 3 0 341
Question prashanth ponugoti · Oct 6, 2022 How to create desk top icon for InterSystems terminal command Hi Friends, I have created an object script class method to anonymize live hl7 messages with some info masking. To anonymize files , I need to place live messages in d://input folder and need to execute the below command in the Intersystems terminal do ##class(prashanth.tool.HL7Annonymiser).processFilesInDir("D:\Input\") ANONYMIZED files will be generated in D:\output\" folder. everything is working fine. Here when i need to annonymise some files , 1) I need to open terminal (iris) 2) connected to user #InterSystems IRIS 0 2 0 172
Question prashanth ponugoti · Sep 28, 2022 what it will return if key not found in lookup table Hi Firneds I have few odscodes in Lookup table named "AllowLT" . Now I need to continue if I found value in lookup table or stop it. For that I have colleting the value form lookup table for input HL7 message OBR:21 value. I know if found in lookup table it will return 1 or 0 . If not found what it will return below line? to return 0 in case , given key not available in lookup table , what I need to write? #InterSystems IRIS 0 3 0 333
Question prashanth ponugoti · Sep 20, 2022 How to change the class reference of Business components if already created? Hi Friends, In my production already we have business components (business service , process, operations) and all are working fine. Now I have change the package structure of few classes and want to update the references in settings for Business components in Management portal. As this class field is read only , Any other way to update the class reference, instead of creating new business component? #InterSystems IRIS 1 3 0 170
Question prashanth ponugoti · Sep 20, 2022 How to clean compile imported cls files in Studio. Hi Friends , Here I have imported object script cls classes form local file to studio , As a result new package created and all the cls files showing inside the package. Now When I comple newly imported classes , it is thows compilation error because , each cls is already compiled in source system. #Studio #InterSystems IRIS 0 1 0 168
Question prashanth ponugoti · Aug 5, 2022 How to expose web application URL with https Hi Friends Here I have created business service for soup service and created unauthenticated url using web application and shared with client. As a result I have exposed below URL http://xx,xx,xxx,xxx:57772/csp/healthshare/production/services/abc.xyz.S... working fine end to end. Now I need to change the url from http to https. #InterSystems IRIS 0 6 0 567
Question prashanth ponugoti · Apr 25, 2022 Settings from ENS_Config.Item returns boxes in place of property values Hi Community, Below Query is returning boxes in place of values, I want to list all tragetconfigs , IP addresses, and ports for each business hosts components. Could you please help me, Otherwise I need to do manually will take a long time to prepare list? #InterSystems IRIS 2 3 0 269