-
Type:
Improvement
-
Resolution: Fixed
-
Priority:
Minor
-
Affects Version/s: None
-
Component/s: None
-
None
extractUrlStrings() parses the URL expecting a version segment like /grouper-ws/servicesRest/v1_3_000/.... For MCP paths (/grouper-ws/mcp), after skipping the first 2 segments the list is empty, and urlStrings.get(0) throws IndexOutOfBoundsException.
Changes:
- WsGrouperOauthAuthentication.java — Changed urlStrings.get(0) to urlStrings.size() > 0 ? urlStrings.get(0) : null