You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Send a request with the following body to /Bulk, which updates two users:
Note that you need to replace "[insert user id here]" with the IDs of the users created in step 1.
Expected outcome
The users were updated according to the second bulk request.
Actual outcome
The following exception is thrown:
fail: SimpleIdServer.Scim.Api.UsersController[0]
resource not found
SimpleIdServer.Scim.Exceptions.SCIMNotFoundException: resource not found
at SimpleIdServer.Scim.Commands.Handlers.ReplaceRepresentationCommandHandler.Validate(ReplaceRepresentationCommand replaceRepresentationCommand)
at SimpleIdServer.Scim.Commands.Handlers.ReplaceRepresentationCommandHandler.Handle(ReplaceRepresentationCommand replaceRepresentationCommand)
at SimpleIdServer.Scim.Api.BaseApiController.InternalUpdate(String prefix, String id, RepresentationParameter representationParameter, CancellationToken cancellationToken)
Also, the SCIM server returns the following response:
Indeed, there is an error in the implementation 😔.
For some reason, even though the id parameter is passed into the sub HTTP request, this value is not correctly transmitted by the route to the action.
I have made some modifications in the project to fix this issue! 62ad8c8
Reproduction steps
Note that you need to replace "[insert user id here]" with the IDs of the users created in step 1.
Expected outcome
The users were updated according to the second bulk request.
Actual outcome
The following exception is thrown:
Also, the SCIM server returns the following response:
Note!
An example project is attached to this issue that can be used to start the SCIM server that was used in the bug reproduction steps.
BugReproProject.zip
The text was updated successfully, but these errors were encountered: