- Log in to post comments
User bio
404 bio not found
Member since Dec 4, 2022
Posts:
Replies:
Yes, there is such method.
%CSP.Request has method "GetCgiEnv" that you can use like this:
ClassMethod YourMethod(request As %CSP.Request) As %Status
{
Set userAgent = request.GetCgiEnv("HTTP_USER_AGENT")
Set IPAddress = request.GetCgiEnv("REMOTE_ADDR")
Set messageFormat= request.GetCgiEnv("CONTENT_TYPE")
return $$$OK
}All possible data that you can get from GetCgiEnv you can look here: Cgi Data
- Log in to post comments
Certifications & Credly badges:
Roman has no Certifications & Credly badges yet.
Followers:
Roman has no followers yet.
Following:
Roman has not followed anybody yet.
If you just want to delete globals that are not associated with any class, you can just to Globals->Edit Global Data ->Delete and it will delete global node with everything inside