Closed Toru47 closed 1 month ago
Hi @Toru47. The error message states:
jakarta.ws.rs.ProcessingException: RESTEASY008205: JSON Binding serialization error jakarta.json.bind.JsonbException: Unable to serialize property...
This is an error from the Jakarta JSON Binding (JSON-B) library. The SCIM 2 SDK uses Jackson for JSON serialization/deserialization, and does not use JSON-B. This typically indicates the project has a transitive JSON-B dependency that must be removed.
Are you using the oauth2-client
library? If so, you'll need to exclude the json-binding library that is included with that dependency. Our FAQ has information on how to do this, as well as some further background: https://github.com/pingidentity/scim2/wiki/Common-Problems-and-FAQ#jsonbexceptions
@kqarryzada Okay, thanks. No, I don't use oauth2-client
. I'll try to remove this dependency. But that can be a challenge...
In the meantime resolved by removing jakarta.json.bind-api-3.0.1.jar
from classpath.
causes
What's wrong?
Java Version: 11.0.3+7 SCIM 2 SDK version: 3.1.0 Libs from WildFly 33