go to post Kurro Lopez · Jun 28, 2018 Hi Evgeny,I'll publish another article explaining how it works and how other languages are added. I'll have to take etymology and grammar classes to understand how some languages are structured.
go to post Kurro Lopez · Jun 22, 2018 Hi,Unfortunately, you should remove it manually. after, you should remove it in your local workspace, because if you want to synchronize your application, the package would be in your workspace again.Best regards
go to post Kurro Lopez · Jun 20, 2018 Hi man,Please, have a look this solutionhttps://community.intersystems.com/post/how-customize-ensemble-settingsmaybe it is helpful for you, coz its moving a file after process and don't remove the file in server.
go to post Kurro Lopez · Jun 19, 2018 Hi Dani,This class uses EnsLib.FTP.InboundAdapter, according to the documentation, this is the path on the Ensemble server to save a copy of each file received from the FTP server. That is not a FTP folder.If you want to move the file processed into a FTP folder after processed, you should get the file from this folder and put it manually.Have a look the link Using the FTP Inbound Adapter and Settings for the FTP Inbound AdapterHave a nice dayFrancisco López
go to post Kurro Lopez · Jun 18, 2018 I like it. I think this is the cleanest way to solve my problem.Thanks a lot
go to post Kurro Lopez · Jun 12, 2018 Then, according your opinion, for complex conditions the best way is use IF ELSEIF instead of $SELECT or other similarThat's right
go to post Kurro Lopez · Jun 12, 2018 Nice.This beta has solved the problem that I have with templates in Eclipse.
go to post Kurro Lopez · Jun 12, 2018 Cool...If I've been "Global Master of the Month", may I claim the badge?
go to post Kurro Lopez · May 2, 2018 Hi Yuval,Thanks for your comment.The idea of this tip is only copy content from a class to another class, only I want a subgroup of elements. The command %ConstructClone is to clone a class, you have the same class, not a part of it.Best regards
go to post Kurro Lopez · Apr 4, 2018 Hi all,Since I've installed Eclipse instead of Atelier, I'm not able to get to add-in options. It is always greyed.The server is online, I've tried to local and external server, but it doesn't work.This is the version of Eclipse and Atelier pluging installed. Any suggestion is welcome.Best regards,Francisco Lopez
go to post Kurro Lopez · Mar 8, 2018 Registered!!!One question, the webinar will be available in Youtube or other platform afterwards?
go to post Kurro Lopez · Feb 22, 2018 Hi,The usual port is the Web port (default 57772)Please check with your administrator if the credential are correct, if you have any firwall that is closing the connection, etc...Have you checkd if it works with a local instance? (localhost)Best regards
go to post Kurro Lopez · Feb 22, 2018 Yep, that was other problem.I've exported all classes, dropped namespace and database, created all as new namespace and import the classes.Now, the message viewer works (fortunatly it is a DEV environment), compiled all via terminal.However, sometimes the error about SendSuperSession appear intermittently, often when there are some request at the same time
go to post Kurro Lopez · Feb 22, 2018 It seem that works... but sometime I have an error, but I'm not able to check what is happend because the message viewer doesn't display the trace.Always it's displaying an error
go to post Kurro Lopez · Feb 21, 2018 I've solved this problem just adding a Default setting for SendSuperSessionI know, this is not the best way to fix it.. but it works ;)
go to post Kurro Lopez · Feb 21, 2018 Thanks for your easy solution. I'll change my code to improve this.
go to post Kurro Lopez · Jan 25, 2018 Hi, Check the following code: Set tProduction="Demo.HL7.MsgRouter.Production" // Types: // Empty: Retrieve all items // 1: Business Service // 2: Business Process // 3: Business Operation Set tType="1" Set tRS = ##class(%ResultSet).%New("Ens.Config.Production:EnumerateConfigItems") Set tStatus = tRS.%Execute(tProduction, tType) While tRS.%Next(.tStatus) { write tRS.%Get("BusinessType")_" : "_tRS.%Get("ConfigName"),! } II hope it's useful Best regards, Francisco Lopez