go to post Oliver Wilms · Jan 15, 2023 I created a BPL and read one line at a time. I tried updating data line in code without DTL. I get an error instead of seeing output file. Please take a look in git repo here (just start the production and look for messages from File Passthrough Service): https://github.com/oliverwilms/interoperability-update-datafile
go to post Oliver Wilms · Jan 15, 2023 I would not create record mapper unless you want to make sure the data is in correct format. If you already have record maps defined I see no issue using them.
go to post Oliver Wilms · Jan 7, 2023 Sometimes the IKO wants to scale down our compute stateful set while the Interoperability productions are processing messages. A compute will shut down before it empties its queues and we do not see in Message Bank all messages that were processed before the shutdown. I wonder if anybody wrote code to prevent accepting more messages (stop incoming services) and process what is in queues including Message Bank operation queue which could be called before the actual shutdown (preStop hook)?
go to post Oliver Wilms · Dec 23, 2022 That would be okay in my mind if that were specified somewhere I see it. I was unhappy when I realized my input cube had been cut up differently from the example shown.
go to post Oliver Wilms · Dec 20, 2022 I don't think you will lose your routines. You can export them if you want to be double covered.
go to post Oliver Wilms · Dec 18, 2022 Hi, Robert, you show DC members in your listing. Are there InterSystems employees in the list who do not qualify to win prize money? Just wondering how high I would have to climb to earn a prize ...
go to post Oliver Wilms · Oct 18, 2022 I would like to help you. Can you provide a production configuration to reproduce?
go to post Oliver Wilms · Sep 23, 2022 <if> | Business Process and Data Transformation Language Reference | InterSystems IRIS Data Platform 2022.1
go to post Oliver Wilms · Sep 20, 2022 From Production Configuration page in Management Portal, you can click any service, process, or operation. Look for Actions tab in right side of the screen, and click on Change Class.
go to post Oliver Wilms · Sep 19, 2022 I think you get a WRITE error, because it is not really connecting. Does the external REST API receive your request?
go to post Oliver Wilms · Sep 17, 2022 Hello, Thembelani, I have implemented a similar case in this app: https://github.com/oliverwilms/irisrest/blob/master/src/App/REST.cls#:~:... Important helper method is this: /// Helper methodClassMethod GetJSONFromRequest(Output obj As %DynamicObject) As %Boolean{ Set ok = 1 Try { Set obj = ##class(%DynamicObject).%FromJSON(%request.Content) } Catch ex { Set ok = 0 } Quit ok} Best regards, Oliver
go to post Oliver Wilms · Sep 16, 2022 I just published an article about interoperability-soap here: https://community.intersystems.com/post/background-story-around-interope... I was not able to edit the app on Open Exchange to put the Article link there :-(
go to post Oliver Wilms · Sep 15, 2022 Probably look at GetHostInfo in class User.ProductionMonitor: https://github.com/oliverwilms/production-monitor/blob/main/src/User/Pro...
go to post Oliver Wilms · Sep 15, 2022 Hello, Craig. Have you seen my app production-monitor? You can find it on InterSystems Open ExchangeIf you find it useful, consider voting in the Interoperability contest. Thanks, Oliver
go to post Oliver Wilms · Sep 15, 2022 I claim YouTube Video bonus for interoperability-test. I have added the link in GitHub ReadMe. Does that automatically update on Open Exchange or do I need to make a new release? https://youtu.be/LqyRVxpmxGY I wonder how some apps have a link on Open Exchange to vote in the contest?
go to post Oliver Wilms · Aug 24, 2022 Is the private key file "id_rsa" or "p_id_rsa"? Are the key files in "/path/to/" directory?
go to post Oliver Wilms · Aug 24, 2022 I think you got the methods reversed. To connect using the key pair you should use this method: set sc = ssh.AuthenticateWithKeyPair( "sftpuser","/path/to/id_rsa.pub","/path/to/p_id_rsa","") I have tested this and it works
go to post Oliver Wilms · Aug 12, 2022 It appears to me that User.Person class does NOT have Age property