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.