go to post Flávio Lúcio Na... · Apr 1, 2021 Thanks, I read about stream, but i thought that work only for text, i never used to save a photo.
go to post Flávio Lúcio Na... · Apr 1, 2021 I read a little about this documentation, but i thought that's about file text, not about photo
go to post Flávio Lúcio Na... · Mar 11, 2021 When I had problems with Cors I use overload of methods in my SuperClass to solve this problem. ClassMethod HandleDefaultCorsRequest(pUrl As %String) As %Status [ Private ] { Do %response.SetHeader("Access-Control-Allow-Origin","*") Do %response.SetHeader("Access-Control-Allow-Credentials","true") Do %response.SetHeader("Access-Control-Allow-Methods","GET, PUT, POST, DELETE, PATCH, OPTIONS") Do %response.SetHeader("Access-Control-Allow-Headers","Access-Control-*, Content-Type, Authorization, Accept, Accept-Language, X-Requested-With, Origin") Quit $$$OK }
go to post Flávio Lúcio Na... · Mar 11, 2021 I think the same, Flutter is easier to develop in my opinion, but it's just personal taste.
go to post Flávio Lúcio Na... · Mar 3, 2021 Try to acess in your local machine this folder. There are some examples to acess the database.C:\InterSystems\Cache\dev
go to post Flávio Lúcio Na... · Feb 16, 2021 It would be great if journal file show what program execute the command.
go to post Flávio Lúcio Na... · Nov 24, 2020 I think this can solve your problem SET DATE="20201121090000" WRITE $ZD($ZDH($E(DATE,1,8),8),3) // DAY WRITE $E(DATE,9,10)_":"_$E(DATE,11,12)_":"_$E(DATE,13,14) // HOUR
go to post Flávio Lúcio Na... · Jun 23, 2020 Hello Brendan, I faced the same problem other day.That was the query: "SELECT PROE,DESP,ID FROM ZVBMAPEAMENTO.SVINFOUVND WHERE JOB=1224 GROUP BY PROE". All is %String. Att. Flávio.
go to post Flávio Lúcio Na... · Jun 23, 2020 Hello Robert, I faced the same problem other day.That was the query: "SELECT PROE,DESP,ID FROM ZVBMAPEAMENTO.SVINFOUVND WHERE JOB=1224 GROUP BY PROE" Att. Flávio.
go to post Flávio Lúcio Na... · Nov 25, 2019 Hi Robert, Do you know some article who teach how to create the Web Service to make a call? The Caché PHP module, didn't work for me, because works only locally. Regards, Flávio.
go to post Flávio Lúcio Na... · Sep 19, 2019 If you want to execute a Method in the Terminal, you need to use the DO command with the Method, program and parameters. Ex. DO METHOD^PROGRAM --> Call one Method Without Parameters DO METHOD^PROGRAM(PAR1,PAR2) --> Call one method with two paramaters. DO METHOD^PROGRAM(PAR1,PAR2),METHOD^PROGRAM --> Call two Methods in the same command.
go to post Flávio Lúcio Na... · Aug 29, 2019 Thank you Henrique, But i need to write Excel files with a client server architecture, this is not a web application. I thought in a Class or something like this.