go to post Eduard Lebedyuk · Nov 27, 2017 2. Write a routine to copy (duplicate) all the data from old classes to new ones. (which is not trivial at some point)Why is it not trivial? If you're not changing class definition three merges per class should be enough.Also check that storage definition in the new class is the same as in old class, only pointing to the new globals.MANAGEDEXTENT=0 may be easier to do, but it raises the risk of accidentally deleting old globals (what are these globals not corresponding to any class? Let's free some space)
go to post Eduard Lebedyuk · Nov 24, 2017 I don't think that order of indices in first argument affects anything. They are converted into tBuildFlags which also follows by ASSCII sorting of index names
go to post Eduard Lebedyuk · Nov 16, 2017 On previous versions you can use ^%GSIZE utility: do ^%GSIZE Directory name: c:\intersystems\cache\mgr\mdx2json\ => All Globals? No => No Global ^Git("TSH") Global ^ 1 global selected from 54 available globals. Show details?? No => Yes Device: Right margin: 80 => directory: c:\intersystems\cache\mgr\mdx2json\ Page: 1 GLOBAL SIZE 16 Nov 2017 11:49 AM Global Blocks Bytes Used Packing Contig. -------- -------- --------------- ------- ------- Git("TSH") 1 132 2 % 0 TOTAL Blocks Bytes Used Packing Contig. -------- -------- --------------- ------- ------- 1 132 2 % 0 <RETURN> to continue or '^' to STOP:
go to post Eduard Lebedyuk · Nov 10, 2017 Check that your XML declaration (encoding) corresponds to the actual stream).
go to post Eduard Lebedyuk · Nov 10, 2017 I have a Cache-compatible sql script file and each query is separate by white space. How do you escape white spaces in a query? Anyway, the general approach is: set file = ##class(%Stream.FileCharacter).%New() do file.LinkToFile(filename) while 'file.AtEnd { set query = file.ReadLine() // ??? set rs = ##class(%SQL.Statement).%ExecDirect(, query) set sc = rs.%DisplayFormatted(format, outfile) } Where: filename - file with queriesformat - one of XML, HTML, PDF, TXT or CSV.outfile - file to write results to I assumed query separation by newline. Also outfile needs to change between queries as %DisplayFormatted recreates it.
go to post Eduard Lebedyuk · Nov 6, 2017 You can try to use %SIMILARITY function available in Cache SQL.
go to post Eduard Lebedyuk · Nov 6, 2017 You can use Session Events for logging, it provides OnStartRequest and OnEndRequest callbacks. Is it possible to know the user through the session, in the broker, or in the triggers? Yes, you can store data in %session object and retrieve it on a later date.Also, check out my series of articles (part1, especially part2) on web debugging.
go to post Eduard Lebedyuk · Nov 6, 2017 @Murray Oldfield wrote a great series of articles focused on performance and detecting bottlenecks. Check it out.
go to post Eduard Lebedyuk · Nov 5, 2017 Here's some steps you can take to debug this query:1. Add BREAK after executing query2. Start BO in a terminal3. Get to BREAK4. Execute: write $System.Status.GetErrorText(%objlasterror)
go to post Eduard Lebedyuk · Oct 31, 2017 You'll need to:write authorization codecontrol current authorization state check that it all works as expected so you don't consume more that one license per userThere's no reason to do that, as standard Caché tools, such as Login page provide all required capabilities.
go to post Eduard Lebedyuk · Oct 31, 2017 Do you mean web-app settings like in the following screenshot?Yes.But why not using basic authentication? Can I consider using it?It's way better to use CLP because this way Caché tracks authorization and licenses and you don't need to think about it in your app.Here's some recommendations on securing REST + CSP web apps:All brokers effectively have Parameter UseSession = 1;REST web application and client web application allow only authenticated (i.e. password) access.REST web application and client web application have reasonable Session timeout (i.e. 900, 3600).REST web application and client web application have the same GroupById value.REST web application and client web application have the same cookie path.Client web application can have a custom Login Page (or just use default login page, that's okay too).
go to post Eduard Lebedyuk · Oct 27, 2017 I'm not adding any method to existing classes or adding new superclass.
go to post Eduard Lebedyuk · Oct 27, 2017 Hello, Amir!That was just a quick testing in the existing class. For the actual project of course I would write this method in a separate utility class. you are completely right on that. Still, I edited my code to avoid bad examples.I need a method to return storage position of property in $lb at runtime, and I also can't modify existing classes to achieve that (for example by generating a method for each class with precomputed property name=storage position values).Impossible, because 2. That said I do agree that idea with method generators is good, just not applicable in this exact case.
go to post Eduard Lebedyuk · Oct 26, 2017 write stream.ContentType Provided stream is an object of %CSP.Stream class.
go to post Eduard Lebedyuk · Oct 25, 2017 Hello, Amir!Can ECP be configured in the case where one of the server is on the internal network? So server1 can see and get replies from server2 but server2 can't access server1 by itself?