By: Rj .. user 06 Apr 2018 at 1:57 a.m. CDT

3 Responses
Rj .. gravatar
Hi, We are using SCIM api with play framework and scala. var client: ScimClient = null def initialiseScimClient(): Unit = { try { client = ScimClientFactory.getTestClient(domainURL, OIDCMetadataUrl); logger.debug("****** client object created ****** "+client) } catch { case e: Exception => logger.debug(" Exception during object creation "+ e) } } But getting the following exception: java.lang.RuntimeException:java.lang.RuntimeException: Unable to instantiate MessageBodyReader Thanks!

By Thomas Gasmyr Mougang staff 06 Apr 2018 at 10:24 a.m. CDT

Thomas Gasmyr Mougang gravatar
Hi Rj, It seems like you are using a library that be in conflict with **resteasy** that ship with SCIM-Client Jar. To assess that, you can build a basic play project that use Only SCIM-Client as dependency. Thanks, Gasmyr.

By Rj .. user 09 Apr 2018 at 2:44 a.m. CDT

Rj .. gravatar
Hi Thomas Gasmyr Mougang, No, We are using Only SCIM-Client as dependency. Thanks!

By Thomas Gasmyr Mougang staff 09 Apr 2018 at 3:52 a.m. CDT

Thomas Gasmyr Mougang gravatar
Hi **Rj**, Can you share your code(you can push the code on github and provide steps to reproduce)? Thanks, Gasmyr.