![]() |
Copyright © TIBCO Software Inc. All Rights Reserved |
The Internet provides many tutorials for using the JAAS framework. See http://java.sun.com/developer/JDCTechTips/2001/tt0727.html for a tutorial that shows the JAAS Authentication web service checking the identity of a caller. Other tutorials may be available on the Internet that show the same functionality.
authority=”putYourAdministratorHostNameHere:8443”
The password is encrypted using the obfuscate utility. See the TIBCO Runtime Agent Installation guide for details about using the utility.
• username — name of the user to validate.
• obfuscatedPassword — the obfuscated password of the user.
• superuserName — the name of a superuser defined in TIBCO Administrator.
• obfuscatedSuperuserPassword — the obfuscated password of the superuser.
• authority — the host:port specification of the server where TIBCO Administrator is running. The default is localhost:8443A malformedURLException is thrown if the service's URL is not formed correctly. This occurs if an unknown authority is set.
-Djava.util.logging.config.file=path to logging properties file
package.level= FINESTjava.util.logging.FileHandler.pattern = path to log file
• handlers specifies the set of handlers to be loaded on startup.
• package.level sets the default global logging level for each package. The values are ALL, OFF, FINEST, FINER, FINE, CONFIG, INFO, WARNING, SEVERE.
− pattern provides the path to the log file for the given handle. If the path is not specified, the file is placed in the user’s home directory.
− limit is the maximum size of the output file in bytes.
− count is the number of output files to use. An integer is appended to the base file name.
− level is the logging level. It uses the same values as the global logging level.
− formatter describes the output style, simple or XML. The value can be java.util.logging.SimpleFormatter or java.util.logging.XMLFormatter
![]() |
Copyright © TIBCO Software Inc. All Rights Reserved |