Try OpenEdge Now
skip to main content
New Information
Progress Application Server for OpenEdge : Authentication with OAuth2 and JWT : Debug Logging for OAuth2
 

Debug Logging for OAuth2

OAuth2 support can be troublesome to configure due to the various actor implementations by different vendors. When Client access is denied, you may have to troubleshoot your Spring OAuth2 configuration. It is often easier to setup a dedicated PAS for OpenEdge test instance and enable full Spring Security and OpenEdge logging. It will produce large amounts of information, which may be filtered once you gain a better understanding of the problem area.
Open the web-app/WEB-INF/logging.xml file. Un-comment the following lines, and set their value to "DEBUG":
<logger name="org.springframework.security.oauth2" level="DEBUG" />
<logger name="org.springframework.security.jwt" level="DEBUG" />
<logger name="org.springframework" level="DEBUG"/>
<logger name="com.progress.appserv.services.security" level="DEBUG"/>