go to post Guilherme Silva · Nov 13 The only way i find to solve this case is using the Encription method ($System.Encription)
go to post Guilherme Silva · Mar 9, 2021 For sure Dmitriy, now i' am using windows, but probably i will use on Redhat too. but as i know, there is no way i can use only ".CSP" termination. Studio verify the name, i can't create the same file with this variation, for example:i can't create a file "teste.CSP" and "Teste.csp", Studio validate this information and don't let me create the file. but i don't have a way to force the usage of ".CSP" type.
go to post Guilherme Silva · Mar 11, 2019 Edwardcan you try to log using the terminal, go do "%SYS" and run the ^SECURITY command,if your instance security is locked down, just see if the UnknownUser is enabled, and if not, enable it and restart the instance.Best.
go to post Guilherme Silva · Oct 2, 2018 here is the docs:https://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY...
go to post Guilherme Silva · Oct 2, 2018 Hi Danillo, we use a similar mode to do it, first, you have to stop caché or Freeze it,you can create a script to start it and add it on crontab:su "user" -c 'csession CACHE -U %SYS "##Class(Backup.General).ExternalFreeze("","","","","",,7200,"","")"'Then you have a list of databases you have to copy, or execute a snapshot.in the end of the script, you have to do the ExternalThaw():su "user" -c 'csession CACHE -U %SYS "##Class(Backup.General).ExternalThaw"'you can verify the Status, like This:status=$?if [ $status -eq 5 ]; then echo "SUCCESS: System Resumed" exit 0elif [ $status -eq 3 ]; then echo "ERROR: System is not Resumed" exit $statusfiecho "ERROR: System is not Resumed"exit $status
go to post Guilherme Silva · Jul 20, 2018 Update:The problem message on the audit log is the session timeout, the logout message (when you logout with a method) is different.
go to post Guilherme Silva · May 9, 2018 So, this doesn't work when is a dynaform, because the properties comes from and mdl page (modelclass).
go to post Guilherme Silva · May 4, 2018 not about the instructions, the question is to change the language of the alert. for example:i can change the message "this form...." to whatever i want, but the message and the "required." don't change to pt-br, even the SessionLanguage is pt-br.for example, when i have a validation on Persistent class, the message is the following:
go to post Guilherme Silva · Apr 27, 2018 this is the property : Property Descricao As %String [ Required ];and the version is Caché 2014.1this occours when you try to persist an empty property in a zen page.
go to post Guilherme Silva · Apr 6, 2018 Hi Sébastien,i think the folowing will resolve your problem. set tSC = ..Adapter.Post(.httpResponse,,input.%ToJSON()) quit:$$$ISERR(tSC) tSC set response = ##class(Drag.MSG.IdentificacaoResp).%New() set response.token= httpResponse.GetHeader("AUTH-TOKEN") this way, you can get the property of header.
go to post Guilherme Silva · Apr 5, 2018 i'm with the same problem,i receive a response in rest and want to take information from the response header. to imput information on request header ok, but to take the information from the response header is the problem.
go to post Guilherme Silva · Apr 5, 2018 Bob, other thing you need to ask who is activating de ^ISCSOAP, this is a useful log, but fullfil your database with information.the message in cconsole is to remember you this log is active.only take care and don't keep this log active if you don't use it.
go to post Guilherme Silva · Jan 3, 2018 i'm working with MONMGR and %SYSMONMGR, but didn't find where can i change de max value and an explanation about the how this case works.
go to post Guilherme Silva · Dec 27, 2017 I think in case you need to call a lot of methods in programatic mode, you can do it this way, btw is easier.