-
-
Notifications
You must be signed in to change notification settings - Fork 104
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SCIM Attribute Data Types #48
Comments
Hi, Indeed the Decimal and Binary types are not supported, we will include them in the next release (v1.1.7). Why do you want to set null to ValuesDateTime property ? |
Hi, I've tried to add DateTime property with empty value, but got exception in SCIMRepresentationExtensions.cs (row:444) The ValuesDateTime field is empty, thus the exception is thrown. |
We are going to investigate your problem. |
Thanks!!! |
@simpleidserver Can you guys provide add user, update group samples?? Having a hard time to find one. Checked the documentation too. Also can we use this package to make external system SCIM calls?? |
@abhishekkandi : We don't provide a client to make HTTP request against the SCIM endpoint. Otherwise, we add some samples in the directory : https://github.com/simpleidserver/SimpleIdServer/tree/release/1.1.7/src/Scim/FiddleRequests |
@boris-meerovich-sp A pre-released version of the SCIM project has been published. Can-you please check if you still have the exception ? The types "binary" and "decimal" are now supported. |
@simpleidserver Can you suggest me any scim client nuget packages. If you know one. |
I don't know a valid SCIM client. |
Thanks, @simpleidserver. That'd be great not just to me but many other fellow developers. |
@simpleidserver I checked the new pre-released version and here are my conclusions:
Thanks for a quick fix!!! |
Hi,
I'm wondering how can I set attributes values to decimal numbers or binary data?
According to SCIM RFC there is decimal and binary values should be supported.
In SCIMRepresentationAttribute class there are only:
Also, how can I set null to ValuesDateTime property?
Maybe it should be define as
public ICollection<DateTime?> ValuesDateTime { get; set; }
Please, advise
The text was updated successfully, but these errors were encountered: