intersystems-ensemble

Intersystems Caché with Java Gateway - Pass parameter as java.io.FileInputStream

若如初见. 提交于 2019-12-25 14:10:47
问题 In my project I'm using a integration of Intersystems Caché with Java by a Java Gateway, it's basically maps JARs and create a class proxies in Caché to access Java classes into the JAR. A class in Java has a parameter of type FileInputStream , my question is how I should send this parameter Caché proxie ? What type of data in Caché represent the FileInputStream in Java? Regards, Lucas Boeing Scarduelli 回答1: When you create proxy for that java, should be created cache-class for

Intersystems Caché with Java Gateway - Pass parameter as java.io.FileInputStream

淺唱寂寞╮ 提交于 2019-12-25 14:08:35
问题 In my project I'm using a integration of Intersystems Caché with Java by a Java Gateway, it's basically maps JARs and create a class proxies in Caché to access Java classes into the JAR. A class in Java has a parameter of type FileInputStream , my question is how I should send this parameter Caché proxie ? What type of data in Caché represent the FileInputStream in Java? Regards, Lucas Boeing Scarduelli 回答1: When you create proxy for that java, should be created cache-class for

Trouble with complex routing rule

♀尐吖头ヾ 提交于 2019-12-12 04:18:41
问题 I have a lookup table called BlockCustomer. I also have an FTP Adapter that picks up files from multiple customers. I need to be able to determine the customer from the source of the file and do a lookup on the table. If BlockCustomer.Customer1 = 0 then it will send it to it's target, otherwise it will do nothing. If I could use javascript I would do something like this: WHEN Lookup(BlockCustomer,HL7.Source.split("/incoming/")[1].split("/")[0]),1) = 0 But obviously I can't. I found $ZSTRIP