if(IsDefined("FORM.locale")) { request.locale = LCase(Trim(FORM.locale)); } request.localeFile = "resources/general_#request.locale#.xml"; Unsupported Operation. Check application log for more details. To use Component Browser, enable RDS Service using Administrator. Note: RDS is intended for development use only.

#componentutilnotavailable#

authHeader = 'Authorization-MX' ; authorized = false ; httpReq = GetHTTPRequestData() ; // check the DW authorization header if ( StructKeyExists( httpReq.headers, authHeader ) ) { authString = ListGetAt( httpReq.headers[authHeader], 2, ' ' ) ; authString = ToBinary( authString ) ; credentials = createObject( "java", "java.lang.String" ) ; credentials.init( authString ) ; // listLast() bug forces us to do it in this way pos = Find( ':', credentials.toString() ) ; if ( pos neq 0 ) { // Incase of multiuser RDS, the username will also be sent in the header. Hence, retrieve the user. user = RemoveChars(credentials.toString(), pos, credentials.toString().length()); password = RemoveChars( credentials.toString(), 1, pos ) ; } } // check the form password field else if ( IsDefined('form.j_password') ) { password = form.j_password ; // Bug 73997: username field should be named j_username so that tag identifies the form credentials if (IsDefined('form.j_username')) { user = form.j_username; } else { //if singleRDSpassword enabled, set the password value to user. if(request.security.getUseSingleRdsPassword()) { user = request.security.getRootAdminUserId(); } } } if ( IsDefined('password') ) { if (request.security.getUseSingleRdsPassword()) { authorized = request.security.checkRDSPassword( password ) ; } else { if (IsDefined('user') AND len(trim(user))) { authorized = request.security.checkRDSUserIdPassword(user, password) AND request.security.canAccessRDS(user); } else { NullUserIdEntered = true; } } if (not authorized) { InvalidUserIdOrPasswordEntered = true; } }