[Dev] WSO2 Identity Server 5.10.0 M2 Released!

2019-10-17 Thread Abilashini Thiyagarajah
WSO2 Identity and Access Management team is pleased to announce the release
of Identity Server 5.10.0 M2!
Download

You can download WSO2 Identity Server 5.9.0 M2 from here
<https://github.com/wso2/product-is/releases/download/v5.10.0-m2/wso2is-5.10.0-m2.zip>
.

You can download WSO2 Identity Server Analytics 5.9.0 M2 from here
<https://github.com/wso2/analytics-is/releases/download/v5.10.0-m2/wso2is-analytics-5.10.0-m2.zip>
.
How to run

   1.

   Extract the downloaded zip file.
   2.

   Go to the *bin* directory in the extracted folder.
   3.

   Run the *wso2server.sh* file if you are on a Linux/Mac OS or run the
   *wso2server.bat* file if you are on a Windows OS.
   4.

   Optionally, if you need to start the OSGi console with the server, use
   the *-DosgiConsole* property when starting the server.

What's new in WSO2 Identity Server 5.10.0 M2

A list of all the new features and bug fixes shipped with this release can
be found here <https://github.com/wso2/product-is/milestone/96?closed=1>
Known Issues

All the open issues pertaining to WSO2 Identity Server are reported at the
following location:

   -

   IS Runtime <https://github.com/wso2/product-is/issues>
   -

   IS Analytics <https://github.com/wso2/analytics-is/issues>

Contribute to WSO2 Identity ServerMailing Lists

Join our mailing lists and correspond with the developers directly. We also
encourage you to take part in discussions related to the product in the
architecture mailing list. If you have any questions regarding the product
you can use our StackOverflow forum to raise them as well.

   -

   Developer List: dev@wso2.org
   -

   Architecture List: architect...@wso2.org
   -

   User Forum: StackOverflow
   <http://stackoverflow.com/questions/tagged/wso2is>

Reporting Issues

We encourage you to report issues, improvements, and feature requests
regarding WSO2 Identity Server through our public WSO2 Identity Server GIT
Issues <https://github.com/wso2/product-is/issues>.

For more information about WSO2 Identity Server, please see
https://wso2.com/identity-and-access-management or visit the WSO2 Oxygen
Tank <http://wso2.com/library/> developer portal for additional resources.

~ *The WSO2 Identity and Access Management Team *~


-- 
Abilashini Thiyagarajah
Software Engineer
WSO2, Inc.
Mobile: +94 778983001
<http://wso2.com/signature>
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] JWKs to validate the IDToken from WSO2 IS

2016-11-28 Thread Abilashini Thiyagarajah
Hi,

I would like to explain the way the JWK set has been generated to validate
the ID Token received from the token endpoint of WSO2 IS in the
implementation of tomcat extension of OpenID Connect.

As currently the IS uses a single set of JWK,

The public key type, modulus and exponent are taken from the
client-truststore.jks certificate.
algorithm  =  RS256
x5t  =  NmJmOGUxMzZlYjM2ZDRhNTZlYTA1YzdhZTRiOWE0NWI2M2JmOTc1ZA
key_ID = d0ec514a32b6f88c0abd12a2840699bdd3deba9d

These values are generated as a json object and created a JWK set using
Nimbus class JWK  and used to validate
the ID Token using the class IDTokenValidator
.

Thank you.

-- 
T. Abilashini
Intern
Software Engineering
WSO2 Inc. http://wso2.com/
Phone +94 719248432
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] OpenID Connect based SLO for AS

2016-11-28 Thread Abilashini Thiyagarajah
Hi,
As mentioned above when the RP iFrame receive a message as 'changed' from
the OP iFrame, it loads a request with the suffix of 're-authenticate' in
the browser window. The request will be handled by the tomcat valve as a
re-authentication request and a authentication request will be redirected
to the authentication endpoint with the parameter, prompt=none to indicate
the request should be handled without login.

   - If the session is valid in the OpenID Provider(OP), the browser will
   be redirected back with an authentication response with a new session
   state. So the session state will be updated to be used by the RP iFrame to
   poll the OP iFrame.
   - If the session is not valid, which means the end user has been logged
   out from the OP, then the response will be received with an error as
   "login_required". So the valve will redirect the user to the welcome page
   to start the flow.

This is how the Single Logout has been implemented in the tomcat extension
for OpenID Connect.

Thank you,
Abilashini

On Fri, Nov 4, 2016 at 10:47 AM, Abilashini Thiyagarajah <
abilash...@wso2.com> wrote:

> Hi,
>
> Now I am working on the $subject and I need some clarifications on the
> concept to start the implementation.
>
>-
>
>According to the specification
><http://openid.net/specs/openid-connect-session-1_0.html#RPiframe> of
>OpenID Session Management, there should be a RP iframe which should be
>written by the web application developer.
>
>
>
>-
>
>The RP iframe should poll the OP iframe repeatedly which will be
>available in the iframe endpoint of OpenID Provider with the client ID to
>get a message according to the session state.
>
>
>
>-
>
>So when the end user logged out from the IDP, the RP iframe of all the
>logged in webapps from the same browser will get the message as “changed”.
>
>
>
>-
>
>After receiving this message the RP iframe will send a re-authenticate
>request with ‘prompt = none’ to the authorization endpoint of the IDP.
>
>
>
>-
>
>If it does not receive a valid ID Token, then the web app/valve should
>handle this as a logout.
>
>
> Please share your concerns on this.
>
>
> Thank you in advance,
>
> Abilashini
>
>
> --
> T. Abilashini
> Intern
> Software Engineering
> WSO2 Inc. http://wso2.com/
> Phone +94 719248432
>
>


-- 
T. Abilashini
Intern
Software Engineering
WSO2 Inc. http://wso2.com/
Phone +94 719248432
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] GSOC : OAuth 2.0 Dynamic Client Registration Management Protocol Support

2017-03-18 Thread Abilashini Thiyagarajah
Hi,

I have worked to understand the specifications and code base related to
OAuth 2.0 DCR protocol management. Now I am trying to fix some of the
issues that you have shared with me. Can I know the location of dcr
component in the server? Or else the way to try my code changes in the dcr
component?

Thanks in advance,
Abilashini

*Thiyagarajah Abilashini*
Student
Department of Computer Science and Engineering
University of Moratuwa, Sri Lanka

On 15 March 2017 at 10:26, Abilashini Thiyagarajah <
abilashini...@cse.mrt.ac.lk> wrote:

> Hi Maduranga,
>
> Thank you so much for your reply and references. I will work on to
> understand the code and fix jira as you said.
>
> Best Regards,
> Abilashini
>
> *Thiyagarajah Abilashini*
> Student
> Department of Computer Science and Engineering
> University of Moratuwa, Sri Lanka
>
> On 15 March 2017 at 01:52, Maduranga Siriwardena 
> wrote:
>
>> Hi Abilashini,
>>
>> We are glad to see your interest in doing GSoC with WSO2.
>>
>> The requirement of the project is to fully implement the Dynamic Client
>> Registration Management Protocol [1]. The current implementation of Dynamic
>> Client Registration is in repo [2] and particularly component in [3].
>> Documentation for OpenID Connect Dynamic Client Registration is in [4].
>>
>> If you need to get familiarize with the code, you can fix jira already
>> reported regarding dcr implementation which are in [5] (or you can fix any
>> jira in Identity Server project as a start).
>>
>> [1] https://tools.ietf.org/html/rfc7592
>> [2] https://github.com/wso2-extensions/identity-inbound-auth-oauth
>> [3] https://github.com/wso2-extensions/identity-inbound-auth
>> -oauth/tree/master/components/org.wso2.carbon.identity.oauth.dcr
>> [4] https://docs.wso2.com/display/IS530/OpenID+Connect+Dynam
>> ic+Client+Registration
>> [5] https://goo.gl/ghqqgE
>>
>> Thanks,
>>
>> On Tue, Mar 14, 2017 at 1:06 AM, Abilashini Thiyagarajah <
>> abilashini...@cse.mrt.ac.lk> wrote:
>>
>>> Hi,
>>>
>>> I am Abilashini from Department of Computer Science and Engineering,
>>> University of Moratuwa. I have done my internship at WSO2 last year (July -
>>> December) and worked in the implementation of tomcat extension of OpenID
>>> Connect [1]. So I am a little bit familiar with OAuth 2.0 and OpenID
>>> Connect protocols. I found the project 'OAuth 2.0 Dynamic Client
>>> Registration Management Protocol Support' as interesting to work on.
>>> Can I have some assistance to understand the details and requirements more
>>> clearly behind this project idea?
>>> Also can I have the locations of documentation and code base related to
>>> dynamic client registration?
>>>
>>> [1] https://github.com/wso2-extensions/tomcat-extension-openidsso
>>>
>>> Thanks and Regards
>>> Abilashini
>>>
>>> *Thiyagarajah Abilashini*
>>> Student
>>> Department of Computer Science and Engineering
>>> University of Moratuwa, Sri Lanka
>>>
>>
>>
>>
>> --
>> Maduranga Siriwardena
>> Software Engineer
>> WSO2 Inc; http://wso2.com/
>>
>> Email: madura...@wso2.com
>> Mobile: +94718990591 <+94%2071%20899%200591>
>> Blog: *https://madurangasiriwardena.wordpress.com/
>> <https://madurangasiriwardena.wordpress.com/>*
>> <http://wso2.com/signature>
>>
>
>
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] GSOC : OAuth 2.0 Dynamic Client Registration Management Protocol Support

2017-03-21 Thread Abilashini Thiyagarajah
Hi,

I am working on the proposal and need some clarifications on the project.
Please correct me if I am wrong.

   1. In the specification they did not talk about the validation of
   requests. Is it required to be considered in the implementation?
   2. Does the deliverable of 'Automation for the implementation' mean the
   implementation of Quick Start for the feature?
   3. Test automation is not mentioned in the project deliverable. Also I
   didn't find test classes in the implementation of DCR. So is testing not
   considered in the scope of this project?
   4. This feature will be implemented within the implementation of
   existing DCR component. Am I correct?

Best Regards,
Abilashini

*Thiyagarajah Abilashini*
Student
Department of Computer Science and Engineering
University of Moratuwa, Sri Lanka

On 19 March 2017 at 10:08, Maduranga Siriwardena  wrote:

> Hi Abishalani,
>
> The components are in /repository/components/plugins folder.
> There you will find org.wso2.carbon.identity.oauth.dcr_5.3.4.jar.
>
> You can checkout the tag v5.3.4 of the repository and then work through
> the changes to the component. If you are going to apply the changes to the
> product, you can build the jar and then create folder patch0001 (format of
> the folder name should be "patch" and then a four digit number. Patches are
> applied in the order of the number) in 
> /repository/components/patches
> and place the newly built jar inside that. After this you have to restart
> the server. Please note that the for jars you are going patch name should
> be equal to the original jar in dropins folder.
>
> If you successfully installed the changes, you will be able to notice a
> log like below at the next start up.
>
> [2017-01-31 21:07:39,035]  INFO 
> {org.wso2.carbon.server.extensions.PatchInstaller}
> -  Patch changes detected  {org.wso2.carbon.server.
> extensions.PatchInstaller}
> [2017-01-31 21:07:39,513]  INFO 
> {org.wso2.carbon.server.util.PatchUtils.console}
> -  Backed up plugins to patch {org.wso2.carbon.server.util.
> PatchUtils.console}
> [2017-01-31 21:07:39,525]  INFO 
> {org.wso2.carbon.server.util.PatchUtils.console}
> -  Patch verification started {org.wso2.carbon.server.util.
> PatchUtils.console}
> [2017-01-31 21:07:39,530]  INFO 
> {org.wso2.carbon.server.util.PatchUtils.console}
> -  Patch verification successfully completed. {org.wso2.carbon.server.util.
> PatchUtils.console}
>
> Thanks,
>
> On Sat, Mar 18, 2017 at 7:26 AM, Abilashini Thiyagarajah <
> abilashini...@cse.mrt.ac.lk> wrote:
>
>> Hi,
>>
>> I have worked to understand the specifications and code base related to
>> OAuth 2.0 DCR protocol management. Now I am trying to fix some of the
>> issues that you have shared with me. Can I know the location of dcr
>> component in the server? Or else the way to try my code changes in the dcr
>> component?
>>
>> Thanks in advance,
>> Abilashini
>>
>> *Thiyagarajah Abilashini*
>> Student
>> Department of Computer Science and Engineering
>> University of Moratuwa, Sri Lanka
>>
>> On 15 March 2017 at 10:26, Abilashini Thiyagarajah <
>> abilashini...@cse.mrt.ac.lk> wrote:
>>
>>> Hi Maduranga,
>>>
>>> Thank you so much for your reply and references. I will work on to
>>> understand the code and fix jira as you said.
>>>
>>> Best Regards,
>>> Abilashini
>>>
>>> *Thiyagarajah Abilashini*
>>> Student
>>> Department of Computer Science and Engineering
>>> University of Moratuwa, Sri Lanka
>>>
>>> On 15 March 2017 at 01:52, Maduranga Siriwardena 
>>> wrote:
>>>
>>>> Hi Abilashini,
>>>>
>>>> We are glad to see your interest in doing GSoC with WSO2.
>>>>
>>>> The requirement of the project is to fully implement the Dynamic Client
>>>> Registration Management Protocol [1]. The current implementation of Dynamic
>>>> Client Registration is in repo [2] and particularly component in [3].
>>>> Documentation for OpenID Connect Dynamic Client Registration is in [4].
>>>>
>>>> If you need to get familiarize with the code, you can fix jira already
>>>> reported regarding dcr implementation which are in [5] (or you can fix any
>>>> jira in Identity Server project as a start).
>>>>
>>>> [1] https://tools.ietf.org/html/rfc7592
>>>> [2] https://github.com/wso2-extensions/identity-inbound-auth-oauth
>>>> [3] https://github.com/wso2-extensions/identity-inbound-auth
>>>> -oauth/tree/master/components/org.wso

Re: [Dev] GSOC : OAuth 2.0 Dynamic Client Registration Management Protocol Support

2017-03-24 Thread Abilashini Thiyagarajah
Hi Maduranga,

I have already shared the draft of proposal [1] in the GSOC profile. Can I
have your feedback on it please?

[1]
https://docs.google.com/document/d/1Jcye2kidM0KbaDVqXqtzVsEq_RJ_rOrcqpmqMAfpC3U/edit?usp=sharing

Thank you

*Thiyagarajah Abilashini*
Student
Department of Computer Science and Engineering
University of Moratuwa, Sri Lanka

On 21 March 2017 at 19:53, Maduranga Siriwardena  wrote:

> Hi Abilashini,
>
> Please find my answers inline.
>
> On Tue, Mar 21, 2017 at 9:00 AM, Abilashini Thiyagarajah <
> abilashini...@cse.mrt.ac.lk> wrote:
>
>> Hi,
>>
>> I am working on the proposal and need some clarifications on the project.
>> Please correct me if I am wrong.
>>
>>1. In the specification they did not talk about the validation of
>>requests. Is it required to be considered in the implementation?
>>
>> Yes you have to at least validate the mandatory parameters for the
> requests. We can decide how much level of validation is needed when going
> forward with the project.
>
>>
>>1. Does the deliverable of 'Automation for the implementation' mean
>>the implementation of Quick Start for the feature?
>>
>> This means the test cases for the project. Usually the integration tests
> for the product are in [1]. I'm not sure whether we have test cases for
> DCR. But you have to write test cases for the project. We don't have much
> unit tests. But if you can write the unit tests also, it will be great.
>
>>
>>1. Test automation is not mentioned in the project deliverable. Also
>>I didn't find test classes in the implementation of DCR. So is testing not
>>considered in the scope of this project?
>>2. This feature will be implemented within the implementation of
>>existing DCR component. Am I correct?
>>
>> Not necessarily within DCR component. We can decide whether
> implementation should be. It can be a separate component in [2].
>
> [1] https://github.com/wso2/product-is/tree/5.x.x/modules/
> integration/tests-integration
> [2] https://github.com/wso2-extensions/identity-inbound-auth-oauth
>
> Thanks,
>
>
>> Best Regards,
>> Abilashini
>>
>> *Thiyagarajah Abilashini*
>> Student
>> Department of Computer Science and Engineering
>> University of Moratuwa, Sri Lanka
>>
>> On 19 March 2017 at 10:08, Maduranga Siriwardena 
>> wrote:
>>
>>> Hi Abishalani,
>>>
>>> The components are in /repository/components/plugins
>>> folder. There you will find org.wso2.carbon.identity.
>>> oauth.dcr_5.3.4.jar.
>>>
>>> You can checkout the tag v5.3.4 of the repository and then work through
>>> the changes to the component. If you are going to apply the changes to the
>>> product, you can build the jar and then create folder patch0001 (format of
>>> the folder name should be "patch" and then a four digit number. Patches are
>>> applied in the order of the number) in 
>>> /repository/components/patches
>>> and place the newly built jar inside that. After this you have to restart
>>> the server. Please note that the for jars you are going patch name should
>>> be equal to the original jar in dropins folder.
>>>
>>> If you successfully installed the changes, you will be able to notice a
>>> log like below at the next start up.
>>>
>>> [2017-01-31 21:07:39,035]  INFO 
>>> {org.wso2.carbon.server.extensions.PatchInstaller}
>>> -  Patch changes detected  {org.wso2.carbon.server.exten
>>> sions.PatchInstaller}
>>> [2017-01-31 21:07:39,513]  INFO 
>>> {org.wso2.carbon.server.util.PatchUtils.console}
>>> -  Backed up plugins to patch {org.wso2.carbon.server.util.P
>>> atchUtils.console}
>>> [2017-01-31 21:07:39,525]  INFO 
>>> {org.wso2.carbon.server.util.PatchUtils.console}
>>> -  Patch verification started {org.wso2.carbon.server.util.P
>>> atchUtils.console}
>>> [2017-01-31 21:07:39,530]  INFO 
>>> {org.wso2.carbon.server.util.PatchUtils.console}
>>> -  Patch verification successfully completed. {org.wso2.carbon.server.util.P
>>> atchUtils.console}
>>>
>>> Thanks,
>>>
>>> On Sat, Mar 18, 2017 at 7:26 AM, Abilashini Thiyagarajah <
>>> abilashini...@cse.mrt.ac.lk> wrote:
>>>
>>>> Hi,
>>>>
>>>> I have worked to understand the specifications and code base related to
>>>> OAuth 2.0 DCR protocol management. Now I am trying to fix some of the
>>>> issues that y

Re: [Dev] GSOC : OAuth 2.0 Dynamic Client Registration Management Protocol Support

2017-03-27 Thread Abilashini Thiyagarajah
Hi Maduranga,

Sorry for the inconvenience occurred with the wrong link.

Thank you for your comments and I am updating the proposal respectively.
Also I have replied to some of the comments for clarification. It would be
so helpful if I get your comment on those.

I will include the initial design and the the fixed jira issues as soon as
possible.

Thanks,
Abilashini

*Thiyagarajah Abilashini*
Student
Department of Computer Science and Engineering
University of Moratuwa, Sri Lanka

On 27 March 2017 at 20:07, Maduranga Siriwardena  wrote:

> Hi Abishalani,
>
> The link you have shared seems to be not accessible any more. However I
> was able to access the draft proposal you have shared through GSOC
> Dashboard.
>
> I have added few comments to the draft. Please go through them and try to
> improve the proposal.
>
> Thanks,
>
> On Fri, Mar 24, 2017 at 11:16 PM, Abilashini Thiyagarajah <
> abilashini...@cse.mrt.ac.lk> wrote:
>
>> Hi Maduranga,
>>
>> I have already shared the draft of proposal [1] in the GSOC profile. Can
>> I have your feedback on it please?
>>
>> [1] https://docs.google.com/document/d/1Jcye2kidM0KbaDVqXqtz
>> VsEq_RJ_rOrcqpmqMAfpC3U/edit?usp=sharing
>>
>> Thank you
>>
>> *Thiyagarajah Abilashini*
>> Student
>> Department of Computer Science and Engineering
>> University of Moratuwa, Sri Lanka
>>
>> On 21 March 2017 at 19:53, Maduranga Siriwardena 
>> wrote:
>>
>>> Hi Abilashini,
>>>
>>> Please find my answers inline.
>>>
>>> On Tue, Mar 21, 2017 at 9:00 AM, Abilashini Thiyagarajah <
>>> abilashini...@cse.mrt.ac.lk> wrote:
>>>
>>>> Hi,
>>>>
>>>> I am working on the proposal and need some clarifications on the
>>>> project. Please correct me if I am wrong.
>>>>
>>>>1. In the specification they did not talk about the validation of
>>>>requests. Is it required to be considered in the implementation?
>>>>
>>>> Yes you have to at least validate the mandatory parameters for the
>>> requests. We can decide how much level of validation is needed when going
>>> forward with the project.
>>>
>>>>
>>>>1. Does the deliverable of 'Automation for the implementation' mean
>>>>the implementation of Quick Start for the feature?
>>>>
>>>> This means the test cases for the project. Usually the integration
>>> tests for the product are in [1]. I'm not sure whether we have test cases
>>> for DCR. But you have to write test cases for the project. We don't have
>>> much unit tests. But if you can write the unit tests also, it will be great.
>>>
>>>>
>>>>1. Test automation is not mentioned in the project deliverable.
>>>>Also I didn't find test classes in the implementation of DCR. So is 
>>>> testing
>>>>not considered in the scope of this project?
>>>>2. This feature will be implemented within the implementation of
>>>>existing DCR component. Am I correct?
>>>>
>>>> Not necessarily within DCR component. We can decide whether
>>> implementation should be. It can be a separate component in [2].
>>>
>>> [1] https://github.com/wso2/product-is/tree/5.x.x/modules/in
>>> tegration/tests-integration
>>> [2] https://github.com/wso2-extensions/identity-inbound-auth-oauth
>>>
>>> Thanks,
>>>
>>>
>>>> Best Regards,
>>>> Abilashini
>>>>
>>>> *Thiyagarajah Abilashini*
>>>> Student
>>>> Department of Computer Science and Engineering
>>>> University of Moratuwa, Sri Lanka
>>>>
>>>> On 19 March 2017 at 10:08, Maduranga Siriwardena 
>>>> wrote:
>>>>
>>>>> Hi Abishalani,
>>>>>
>>>>> The components are in /repository/components/plugins
>>>>> folder. There you will find org.wso2.carbon.identity.
>>>>> oauth.dcr_5.3.4.jar.
>>>>>
>>>>> You can checkout the tag v5.3.4 of the repository and then work
>>>>> through the changes to the component. If you are going to apply the 
>>>>> changes
>>>>> to the product, you can build the jar and then create folder patch0001
>>>>> (format of the folder name should be "patch" and then a four digit number.
>>>>> Patches are applied in the order of the number) in
>>&

Re: [Dev] GSOC : OAuth 2.0 Dynamic Client Registration Management Protocol Support

2017-04-03 Thread Abilashini Thiyagarajah
Hi Maduranga,

I have already submitted the final proposal. I would like to thank you for
your guidance throughout the process of understanding the project and
preparing the proposal. Looking forward to work on the project.

Best Regards,
Abilashini

*Thiyagarajah Abilashini*
Student
Department of Computer Science and Engineering
University of Moratuwa, Sri Lanka

On 3 April 2017 at 19:54, Maduranga Siriwardena  wrote:

> Hi Abishalani,
>
> I will not have time to go through your proposal now. As the deadline is
> getting closer, please go ahead and submit the proposal.
>
> Thanks,
>
> On Sun, Apr 2, 2017 at 10:12 PM, Abilashini Thiyagarajah <
> abilashini...@cse.mrt.ac.lk> wrote:
>
>> Hi Maduranga,
>>
>> I have included the initial design in the proposal. I kindly request your
>> feedback on it.
>>
>> Thank you,
>> Abilashini
>>
>> *Thiyagarajah Abilashini*
>> Student
>> Department of Computer Science and Engineering
>> University of Moratuwa, Sri Lanka
>>
>> On 27 March 2017 at 21:14, Abilashini Thiyagarajah <
>> abilashini...@cse.mrt.ac.lk> wrote:
>>
>>> Hi Maduranga,
>>>
>>> Sorry for the inconvenience occurred with the wrong link.
>>>
>>> Thank you for your comments and I am updating the proposal respectively.
>>> Also I have replied to some of the comments for clarification. It would be
>>> so helpful if I get your comment on those.
>>>
>>> I will include the initial design and the the fixed jira issues as soon
>>> as possible.
>>>
>>> Thanks,
>>> Abilashini
>>>
>>> *Thiyagarajah Abilashini*
>>> Student
>>> Department of Computer Science and Engineering
>>> University of Moratuwa, Sri Lanka
>>>
>>> On 27 March 2017 at 20:07, Maduranga Siriwardena 
>>> wrote:
>>>
>>>> Hi Abishalani,
>>>>
>>>> The link you have shared seems to be not accessible any more. However I
>>>> was able to access the draft proposal you have shared through GSOC
>>>> Dashboard.
>>>>
>>>> I have added few comments to the draft. Please go through them and try
>>>> to improve the proposal.
>>>>
>>>> Thanks,
>>>>
>>>> On Fri, Mar 24, 2017 at 11:16 PM, Abilashini Thiyagarajah <
>>>> abilashini...@cse.mrt.ac.lk> wrote:
>>>>
>>>>> Hi Maduranga,
>>>>>
>>>>> I have already shared the draft of proposal [1] in the GSOC profile.
>>>>> Can I have your feedback on it please?
>>>>>
>>>>> [1] https://docs.google.com/document/d/1Jcye2kidM0KbaDVqXqtz
>>>>> VsEq_RJ_rOrcqpmqMAfpC3U/edit?usp=sharing
>>>>>
>>>>> Thank you
>>>>>
>>>>> *Thiyagarajah Abilashini*
>>>>> Student
>>>>> Department of Computer Science and Engineering
>>>>> University of Moratuwa, Sri Lanka
>>>>>
>>>>> On 21 March 2017 at 19:53, Maduranga Siriwardena 
>>>>> wrote:
>>>>>
>>>>>> Hi Abilashini,
>>>>>>
>>>>>> Please find my answers inline.
>>>>>>
>>>>>> On Tue, Mar 21, 2017 at 9:00 AM, Abilashini Thiyagarajah <
>>>>>> abilashini...@cse.mrt.ac.lk> wrote:
>>>>>>
>>>>>>> Hi,
>>>>>>>
>>>>>>> I am working on the proposal and need some clarifications on the
>>>>>>> project. Please correct me if I am wrong.
>>>>>>>
>>>>>>>1. In the specification they did not talk about the validation
>>>>>>>of requests. Is it required to be considered in the implementation?
>>>>>>>
>>>>>>> Yes you have to at least validate the mandatory parameters for the
>>>>>> requests. We can decide how much level of validation is needed when going
>>>>>> forward with the project.
>>>>>>
>>>>>>>
>>>>>>>1. Does the deliverable of 'Automation for the implementation'
>>>>>>>mean the implementation of Quick Start for the feature?
>>>>>>>
>>>>>>> This means the test cases for the project. Usually the integration
>>>>>> tests for the product are in [1]. I'm not sure whether we have test cases
>>>>>> for DCR. But y

Re: [Dev] GSOC : OAuth 2.0 Dynamic Client Registration Management Protocol Support

2017-05-04 Thread Abilashini Thiyagarajah
Hi all,

Thank you so much for accepting my proposal and selecting me to work on the
project "*OAuth 2.0 Dynamic Client Registration Management Protocol support
for WSO2 Identity Server*" in GSOC 2017. I am so happy to work on a WSO2
project after the internship.

I would like to clarify the plan through out the program. Shall we stick to
my project plan in my proposal?

Looking forward to have a fabulous project experience with WSO2 for next 4
months of period.

Thankyou and best regards,
Abilashini

*Thiyagarajah Abilashini*
Student
Department of Computer Science and Engineering
University of Moratuwa, Sri Lanka

On 3 April 2017 at 20:15, Abilashini Thiyagarajah <
abilashini...@cse.mrt.ac.lk> wrote:

> Hi Maduranga,
>
> I have already submitted the final proposal. I would like to thank you for
> your guidance throughout the process of understanding the project and
> preparing the proposal. Looking forward to work on the project.
>
> Best Regards,
> Abilashini
>
> *Thiyagarajah Abilashini*
> Student
> Department of Computer Science and Engineering
> University of Moratuwa, Sri Lanka
>
> On 3 April 2017 at 19:54, Maduranga Siriwardena 
> wrote:
>
>> Hi Abishalani,
>>
>> I will not have time to go through your proposal now. As the deadline is
>> getting closer, please go ahead and submit the proposal.
>>
>> Thanks,
>>
>> On Sun, Apr 2, 2017 at 10:12 PM, Abilashini Thiyagarajah <
>> abilashini...@cse.mrt.ac.lk> wrote:
>>
>>> Hi Maduranga,
>>>
>>> I have included the initial design in the proposal. I kindly request
>>> your feedback on it.
>>>
>>> Thank you,
>>> Abilashini
>>>
>>> *Thiyagarajah Abilashini*
>>> Student
>>> Department of Computer Science and Engineering
>>> University of Moratuwa, Sri Lanka
>>>
>>> On 27 March 2017 at 21:14, Abilashini Thiyagarajah <
>>> abilashini...@cse.mrt.ac.lk> wrote:
>>>
>>>> Hi Maduranga,
>>>>
>>>> Sorry for the inconvenience occurred with the wrong link.
>>>>
>>>> Thank you for your comments and I am updating the proposal
>>>> respectively. Also I have replied to some of the comments for
>>>> clarification. It would be so helpful if I get your comment on those.
>>>>
>>>> I will include the initial design and the the fixed jira issues as soon
>>>> as possible.
>>>>
>>>> Thanks,
>>>> Abilashini
>>>>
>>>> *Thiyagarajah Abilashini*
>>>> Student
>>>> Department of Computer Science and Engineering
>>>> University of Moratuwa, Sri Lanka
>>>>
>>>> On 27 March 2017 at 20:07, Maduranga Siriwardena 
>>>> wrote:
>>>>
>>>>> Hi Abishalani,
>>>>>
>>>>> The link you have shared seems to be not accessible any more. However
>>>>> I was able to access the draft proposal you have shared through GSOC
>>>>> Dashboard.
>>>>>
>>>>> I have added few comments to the draft. Please go through them and try
>>>>> to improve the proposal.
>>>>>
>>>>> Thanks,
>>>>>
>>>>> On Fri, Mar 24, 2017 at 11:16 PM, Abilashini Thiyagarajah <
>>>>> abilashini...@cse.mrt.ac.lk> wrote:
>>>>>
>>>>>> Hi Maduranga,
>>>>>>
>>>>>> I have already shared the draft of proposal [1] in the GSOC profile.
>>>>>> Can I have your feedback on it please?
>>>>>>
>>>>>> [1] https://docs.google.com/document/d/1Jcye2kidM0KbaDVqXqtz
>>>>>> VsEq_RJ_rOrcqpmqMAfpC3U/edit?usp=sharing
>>>>>>
>>>>>> Thank you
>>>>>>
>>>>>> *Thiyagarajah Abilashini*
>>>>>> Student
>>>>>> Department of Computer Science and Engineering
>>>>>> University of Moratuwa, Sri Lanka
>>>>>>
>>>>>> On 21 March 2017 at 19:53, Maduranga Siriwardena 
>>>>>> wrote:
>>>>>>
>>>>>>> Hi Abilashini,
>>>>>>>
>>>>>>> Please find my answers inline.
>>>>>>>
>>>>>>> On Tue, Mar 21, 2017 at 9:00 AM, Abilashini Thiyagarajah <
>>>>>>> abilashini...@cse.mrt.ac.lk> wrote:
>>>>>>>
>>>>>>>> Hi,
>>>>>>>>
>>>>>>

Re: [Dev] GSOC : OAuth 2.0 Dynamic Client Registration Management Protocol Support

2017-05-04 Thread Abilashini Thiyagarajah
Hi Ishara,

Thank you.

Tomorrow in the sense do you mean Saturday(6.4.2017)?



*Thiyagarajah Abilashini*
Student
Department of Computer Science and Engineering
University of Moratuwa, Sri Lanka

On 5 May 2017 at 00:51, Ishara Karunarathna  wrote:

> Hi,
>
> Congratz Abilashini,
>
> On Thu, May 4, 2017 at 11:42 PM, Abilashini Thiyagarajah <
> abilashini...@cse.mrt.ac.lk> wrote:
>
>> Hi all,
>>
>> Thank you so much for accepting my proposal and selecting me to work on
>> the project "*OAuth 2.0 Dynamic Client Registration Management Protocol
>> support for WSO2 Identity Server*" in GSOC 2017. I am so happy to work
>> on a WSO2 project after the internship.
>>
>> I would like to clarify the plan through out the program. Shall we stick
>> to my project plan in my proposal?
>>
> We may have to do some slight modification. Shall we arrange a meeting and
> discuss tomorrow. ?
>
> Thanks,
> Ishara
>
>>
>> Looking forward to have a fabulous project experience with WSO2 for next
>> 4 months of period.
>>
>> Thankyou and best regards,
>> Abilashini
>>
>> *Thiyagarajah Abilashini*
>> Student
>> Department of Computer Science and Engineering
>> University of Moratuwa, Sri Lanka
>>
>> On 3 April 2017 at 20:15, Abilashini Thiyagarajah <
>> abilashini...@cse.mrt.ac.lk> wrote:
>>
>>> Hi Maduranga,
>>>
>>> I have already submitted the final proposal. I would like to thank you
>>> for your guidance throughout the process of understanding the project and
>>> preparing the proposal. Looking forward to work on the project.
>>>
>>> Best Regards,
>>> Abilashini
>>>
>>> *Thiyagarajah Abilashini*
>>> Student
>>> Department of Computer Science and Engineering
>>> University of Moratuwa, Sri Lanka
>>>
>>> On 3 April 2017 at 19:54, Maduranga Siriwardena 
>>> wrote:
>>>
>>>> Hi Abishalani,
>>>>
>>>> I will not have time to go through your proposal now. As the deadline
>>>> is getting closer, please go ahead and submit the proposal.
>>>>
>>>> Thanks,
>>>>
>>>> On Sun, Apr 2, 2017 at 10:12 PM, Abilashini Thiyagarajah <
>>>> abilashini...@cse.mrt.ac.lk> wrote:
>>>>
>>>>> Hi Maduranga,
>>>>>
>>>>> I have included the initial design in the proposal. I kindly request
>>>>> your feedback on it.
>>>>>
>>>>> Thank you,
>>>>> Abilashini
>>>>>
>>>>> *Thiyagarajah Abilashini*
>>>>> Student
>>>>> Department of Computer Science and Engineering
>>>>> University of Moratuwa, Sri Lanka
>>>>>
>>>>> On 27 March 2017 at 21:14, Abilashini Thiyagarajah <
>>>>> abilashini...@cse.mrt.ac.lk> wrote:
>>>>>
>>>>>> Hi Maduranga,
>>>>>>
>>>>>> Sorry for the inconvenience occurred with the wrong link.
>>>>>>
>>>>>> Thank you for your comments and I am updating the proposal
>>>>>> respectively. Also I have replied to some of the comments for
>>>>>> clarification. It would be so helpful if I get your comment on those.
>>>>>>
>>>>>> I will include the initial design and the the fixed jira issues as
>>>>>> soon as possible.
>>>>>>
>>>>>> Thanks,
>>>>>> Abilashini
>>>>>>
>>>>>> *Thiyagarajah Abilashini*
>>>>>> Student
>>>>>> Department of Computer Science and Engineering
>>>>>> University of Moratuwa, Sri Lanka
>>>>>>
>>>>>> On 27 March 2017 at 20:07, Maduranga Siriwardena 
>>>>>> wrote:
>>>>>>
>>>>>>> Hi Abishalani,
>>>>>>>
>>>>>>> The link you have shared seems to be not accessible any more.
>>>>>>> However I was able to access the draft proposal you have shared through
>>>>>>> GSOC Dashboard.
>>>>>>>
>>>>>>> I have added few comments to the draft. Please go through them and
>>>>>>> try to improve the proposal.
>>>>>>>
>>>>>>> Thanks,
>>>>>>>
>>>>>>> On Fri, Mar 24, 2017 at 11:16 PM, Abilashini

Re: [Dev] GSOC : OAuth 2.0 Dynamic Client Registration Management Protocol Support

2017-05-04 Thread Abilashini Thiyagarajah
Yeah we can have.

*Thiyagarajah Abilashini*
Student
Department of Computer Science and Engineering
University of Moratuwa, Sri Lanka

On 5 May 2017 at 10:25, Ishara Karunarathna  wrote:

>
>
> On Fri, May 5, 2017 at 10:21 AM, Abilashini Thiyagarajah <
> abilashini...@cse.mrt.ac.lk> wrote:
>
>> Hi Ishara,
>>
>> Thank you.
>>
>> Tomorrow in the sense do you mean Saturday(6.4.2017)?
>>
> Its today 5/5/2017 if you available we can have a meeting in the evening.
>
> -Ishara
>
>>
>>
>>
>> *Thiyagarajah Abilashini*
>> Student
>> Department of Computer Science and Engineering
>> University of Moratuwa, Sri Lanka
>>
>> On 5 May 2017 at 00:51, Ishara Karunarathna  wrote:
>>
>>> Hi,
>>>
>>> Congratz Abilashini,
>>>
>>> On Thu, May 4, 2017 at 11:42 PM, Abilashini Thiyagarajah <
>>> abilashini...@cse.mrt.ac.lk> wrote:
>>>
>>>> Hi all,
>>>>
>>>> Thank you so much for accepting my proposal and selecting me to work on
>>>> the project "*OAuth 2.0 Dynamic Client Registration Management
>>>> Protocol support for WSO2 Identity Server*" in GSOC 2017. I am so
>>>> happy to work on a WSO2 project after the internship.
>>>>
>>>> I would like to clarify the plan through out the program. Shall we
>>>> stick to my project plan in my proposal?
>>>>
>>> We may have to do some slight modification. Shall we arrange a meeting
>>> and discuss tomorrow. ?
>>>
>>> Thanks,
>>> Ishara
>>>
>>>>
>>>> Looking forward to have a fabulous project experience with WSO2 for
>>>> next 4 months of period.
>>>>
>>>> Thankyou and best regards,
>>>> Abilashini
>>>>
>>>> *Thiyagarajah Abilashini*
>>>> Student
>>>> Department of Computer Science and Engineering
>>>> University of Moratuwa, Sri Lanka
>>>>
>>>> On 3 April 2017 at 20:15, Abilashini Thiyagarajah <
>>>> abilashini...@cse.mrt.ac.lk> wrote:
>>>>
>>>>> Hi Maduranga,
>>>>>
>>>>> I have already submitted the final proposal. I would like to thank you
>>>>> for your guidance throughout the process of understanding the project and
>>>>> preparing the proposal. Looking forward to work on the project.
>>>>>
>>>>> Best Regards,
>>>>> Abilashini
>>>>>
>>>>> *Thiyagarajah Abilashini*
>>>>> Student
>>>>> Department of Computer Science and Engineering
>>>>> University of Moratuwa, Sri Lanka
>>>>>
>>>>> On 3 April 2017 at 19:54, Maduranga Siriwardena 
>>>>> wrote:
>>>>>
>>>>>> Hi Abishalani,
>>>>>>
>>>>>> I will not have time to go through your proposal now. As the deadline
>>>>>> is getting closer, please go ahead and submit the proposal.
>>>>>>
>>>>>> Thanks,
>>>>>>
>>>>>> On Sun, Apr 2, 2017 at 10:12 PM, Abilashini Thiyagarajah <
>>>>>> abilashini...@cse.mrt.ac.lk> wrote:
>>>>>>
>>>>>>> Hi Maduranga,
>>>>>>>
>>>>>>> I have included the initial design in the proposal. I kindly request
>>>>>>> your feedback on it.
>>>>>>>
>>>>>>> Thank you,
>>>>>>> Abilashini
>>>>>>>
>>>>>>> *Thiyagarajah Abilashini*
>>>>>>> Student
>>>>>>> Department of Computer Science and Engineering
>>>>>>> University of Moratuwa, Sri Lanka
>>>>>>>
>>>>>>> On 27 March 2017 at 21:14, Abilashini Thiyagarajah <
>>>>>>> abilashini...@cse.mrt.ac.lk> wrote:
>>>>>>>
>>>>>>>> Hi Maduranga,
>>>>>>>>
>>>>>>>> Sorry for the inconvenience occurred with the wrong link.
>>>>>>>>
>>>>>>>> Thank you for your comments and I am updating the proposal
>>>>>>>> respectively. Also I have replied to some of the comments for
>>>>>>>> clarification. It would be so helpful if I get your comment on those.
>>>>>>>>
>>>>>>>> I 

Re: [Dev] GSOC : OAuth 2.0 Dynamic Client Registration Management Protocol Support

2017-05-04 Thread Abilashini Thiyagarajah
Yeah sure.

Thank you

*Thiyagarajah Abilashini*
Student
Department of Computer Science and Engineering
University of Moratuwa, Sri Lanka

On 5 May 2017 at 10:59, Ishara Karunarathna  wrote:

>
>
> On Fri, May 5, 2017 at 10:53 AM, Abilashini Thiyagarajah <
> abilashini...@cse.mrt.ac.lk> wrote:
>
>> Yeah we can have.
>>
> Then lets arrange a hangout from 2-3 pm
>
>>
>> *Thiyagarajah Abilashini*
>> Student
>> Department of Computer Science and Engineering
>> University of Moratuwa, Sri Lanka
>>
>> On 5 May 2017 at 10:25, Ishara Karunarathna  wrote:
>>
>>>
>>>
>>> On Fri, May 5, 2017 at 10:21 AM, Abilashini Thiyagarajah <
>>> abilashini...@cse.mrt.ac.lk> wrote:
>>>
>>>> Hi Ishara,
>>>>
>>>> Thank you.
>>>>
>>>> Tomorrow in the sense do you mean Saturday(6.4.2017)?
>>>>
>>> Its today 5/5/2017 if you available we can have a meeting in the evening.
>>>
>>> -Ishara
>>>
>>>>
>>>>
>>>>
>>>> *Thiyagarajah Abilashini*
>>>> Student
>>>> Department of Computer Science and Engineering
>>>> University of Moratuwa, Sri Lanka
>>>>
>>>> On 5 May 2017 at 00:51, Ishara Karunarathna  wrote:
>>>>
>>>>> Hi,
>>>>>
>>>>> Congratz Abilashini,
>>>>>
>>>>> On Thu, May 4, 2017 at 11:42 PM, Abilashini Thiyagarajah <
>>>>> abilashini...@cse.mrt.ac.lk> wrote:
>>>>>
>>>>>> Hi all,
>>>>>>
>>>>>> Thank you so much for accepting my proposal and selecting me to work
>>>>>> on the project "*OAuth 2.0 Dynamic Client Registration Management
>>>>>> Protocol support for WSO2 Identity Server*" in GSOC 2017. I am so
>>>>>> happy to work on a WSO2 project after the internship.
>>>>>>
>>>>>> I would like to clarify the plan through out the program. Shall we
>>>>>> stick to my project plan in my proposal?
>>>>>>
>>>>> We may have to do some slight modification. Shall we arrange a meeting
>>>>> and discuss tomorrow. ?
>>>>>
>>>>> Thanks,
>>>>> Ishara
>>>>>
>>>>>>
>>>>>> Looking forward to have a fabulous project experience with WSO2 for
>>>>>> next 4 months of period.
>>>>>>
>>>>>> Thankyou and best regards,
>>>>>> Abilashini
>>>>>>
>>>>>> *Thiyagarajah Abilashini*
>>>>>> Student
>>>>>> Department of Computer Science and Engineering
>>>>>> University of Moratuwa, Sri Lanka
>>>>>>
>>>>>> On 3 April 2017 at 20:15, Abilashini Thiyagarajah <
>>>>>> abilashini...@cse.mrt.ac.lk> wrote:
>>>>>>
>>>>>>> Hi Maduranga,
>>>>>>>
>>>>>>> I have already submitted the final proposal. I would like to thank
>>>>>>> you for your guidance throughout the process of understanding the 
>>>>>>> project
>>>>>>> and preparing the proposal. Looking forward to work on the project.
>>>>>>>
>>>>>>> Best Regards,
>>>>>>> Abilashini
>>>>>>>
>>>>>>> *Thiyagarajah Abilashini*
>>>>>>> Student
>>>>>>> Department of Computer Science and Engineering
>>>>>>> University of Moratuwa, Sri Lanka
>>>>>>>
>>>>>>> On 3 April 2017 at 19:54, Maduranga Siriwardena 
>>>>>>> wrote:
>>>>>>>
>>>>>>>> Hi Abishalani,
>>>>>>>>
>>>>>>>> I will not have time to go through your proposal now. As the
>>>>>>>> deadline is getting closer, please go ahead and submit the proposal.
>>>>>>>>
>>>>>>>> Thanks,
>>>>>>>>
>>>>>>>> On Sun, Apr 2, 2017 at 10:12 PM, Abilashini Thiyagarajah <
>>>>>>>> abilashini...@cse.mrt.ac.lk> wrote:
>>>>>>>>
>>>>>>>>> Hi Maduranga,
>>>>>>>>>
>>>>>>>>> I have included th

Re: [Dev] Improvements to OAuth Dynamic Client Registration

2017-05-10 Thread Abilashini Thiyagarajah
Hi Maduranga,

I will work on it and get back to you soon.

Thanks,

*Thiyagarajah Abilashini*
Student
Department of Computer Science and Engineering
University of Moratuwa, Sri Lanka

On 9 May 2017 at 09:16, Maduranga Siriwardena  wrote:

> Hi Abilashini,
>
> As discussed can you start working on [1] and [2] to improve the existing
> DCR functionality. If you need any clarification or help, please get back
> to us.
>
> [1] https://wso2.org/jira/browse/IDENTITY-5529
> [2] https://wso2.org/jira/browse/IDENTITY-5185
>
> Thanks,
> --
> Maduranga Siriwardena
> Senior Software Engineer
> WSO2 Inc; http://wso2.com/
>
> Email: madura...@wso2.com
> Mobile: +94718990591 <+94%2071%20899%200591>
> Blog: *https://madurangasiriwardena.wordpress.com/
> *
> 
>
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Improvements to OAuth Dynamic Client Registration

2017-05-10 Thread Abilashini Thiyagarajah
Hi Dimuthu,

Thank you for sharing these informative sources.

Best Regards,

*Thiyagarajah Abilashini*
Student
Department of Computer Science and Engineering
University of Moratuwa, Sri Lanka

On 10 May 2017 at 13:45, Dimuthu De Lanerolle  wrote:

> Hi Abilashini,
>
> I have attached some info links with might be useful to you.
>
> [1] https://docs.wso2.com/display/IS530/OpenID+Connect+
> Dynamic+Client+Registration
> [2] http://openid.net/specs/openid-connect-registration-1_0.html
> [3] Doc Attached. Also you may find more info related to DCR requests and
> responses using previous JIra (eg: IDENTITY-5436, IDENTITY-5435 etc.)
>
> Regards
> DimuthuD
>
> On Wed, May 10, 2017 at 12:59 PM, Abilashini Thiyagarajah <
> abilashini...@cse.mrt.ac.lk> wrote:
>
>> Hi Maduranga,
>>
>> I will work on it and get back to you soon.
>>
>> Thanks,
>>
>> *Thiyagarajah Abilashini*
>> Student
>> Department of Computer Science and Engineering
>> University of Moratuwa, Sri Lanka
>>
>> On 9 May 2017 at 09:16, Maduranga Siriwardena  wrote:
>>
>>> Hi Abilashini,
>>>
>>> As discussed can you start working on [1] and [2] to improve the
>>> existing DCR functionality. If you need any clarification or help, please
>>> get back to us.
>>>
>>> [1] https://wso2.org/jira/browse/IDENTITY-5529
>>> [2] https://wso2.org/jira/browse/IDENTITY-5185
>>>
>>> Thanks,
>>> --
>>> Maduranga Siriwardena
>>> Senior Software Engineer
>>> WSO2 Inc; http://wso2.com/
>>>
>>> Email: madura...@wso2.com
>>> Mobile: +94718990591 <+94%2071%20899%200591>
>>> Blog: *https://madurangasiriwardena.wordpress.com/
>>> <https://madurangasiriwardena.wordpress.com/>*
>>> <http://wso2.com/signature>
>>>
>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Dimuthu De Lanerolle
> Software Engineer
> WSO2 Inc.
> lean . enterprise . middlewear.
> http://wso2.com/
> Tel. : +94 11 2145345  Fax : +94 11 2145300  email : dimut...@wso2.com
>
>
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Improvements to OAuth Dynamic Client Registration

2017-05-12 Thread Abilashini Thiyagarajah
Hi all,

Please review -
https://github.com/wso2-extensions/identity-inbound-auth-oauth/pull/353

Best Regards,
Abilashini

*Thiyagarajah Abilashini*
Student
Department of Computer Science and Engineering
University of Moratuwa, Sri Lanka

On 10 May 2017 at 15:54, Abilashini Thiyagarajah <
abilashini...@cse.mrt.ac.lk> wrote:

> Hi Dimuthu,
>
> Thank you for sharing these informative sources.
>
> Best Regards,
>
> *Thiyagarajah Abilashini*
> Student
> Department of Computer Science and Engineering
> University of Moratuwa, Sri Lanka
>
> On 10 May 2017 at 13:45, Dimuthu De Lanerolle  wrote:
>
>> Hi Abilashini,
>>
>> I have attached some info links with might be useful to you.
>>
>> [1] https://docs.wso2.com/display/IS530/OpenID+Connect+Dynam
>> ic+Client+Registration
>> [2] http://openid.net/specs/openid-connect-registration-1_0.html
>> [3] Doc Attached. Also you may find more info related to DCR requests and
>> responses using previous JIra (eg: IDENTITY-5436, IDENTITY-5435 etc.)
>>
>> Regards
>> DimuthuD
>>
>> On Wed, May 10, 2017 at 12:59 PM, Abilashini Thiyagarajah <
>> abilashini...@cse.mrt.ac.lk> wrote:
>>
>>> Hi Maduranga,
>>>
>>> I will work on it and get back to you soon.
>>>
>>> Thanks,
>>>
>>> *Thiyagarajah Abilashini*
>>> Student
>>> Department of Computer Science and Engineering
>>> University of Moratuwa, Sri Lanka
>>>
>>> On 9 May 2017 at 09:16, Maduranga Siriwardena 
>>> wrote:
>>>
>>>> Hi Abilashini,
>>>>
>>>> As discussed can you start working on [1] and [2] to improve the
>>>> existing DCR functionality. If you need any clarification or help, please
>>>> get back to us.
>>>>
>>>> [1] https://wso2.org/jira/browse/IDENTITY-5529
>>>> [2] https://wso2.org/jira/browse/IDENTITY-5185
>>>>
>>>> Thanks,
>>>> --
>>>> Maduranga Siriwardena
>>>> Senior Software Engineer
>>>> WSO2 Inc; http://wso2.com/
>>>>
>>>> Email: madura...@wso2.com
>>>> Mobile: +94718990591 <+94%2071%20899%200591>
>>>> Blog: *https://madurangasiriwardena.wordpress.com/
>>>> <https://madurangasiriwardena.wordpress.com/>*
>>>> <http://wso2.com/signature>
>>>>
>>>
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> Dimuthu De Lanerolle
>> Software Engineer
>> WSO2 Inc.
>> lean . enterprise . middlewear.
>> http://wso2.com/
>> Tel. : +94 11 2145345  Fax : +94 11 2145300  email : dimut...@wso2.com
>>
>>
>
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] GSOC : OAuth 2.0 Dynamic Client Registration Management Protocol Support

2017-05-22 Thread Abilashini Thiyagarajah
Hi Pushpalanka,

Currently I am working on "Allow multiple locale-specific values for
redirect URI like human-readable values in the client meta data section" in
the issue https://wso2.org/jira/browse/IDENTITY-5879. Once I complete this
part, I will be able to send a pull request as I have fixed the other parts
of the specific issue.

Yeah I can work on the DCRM specification as well as the DCR issue fixing.

Thanks,

*Thiyagarajah Abilashini*
Student
Department of Computer Science and Engineering
University of Moratuwa, Sri Lanka

On 22 May 2017 at 15:12, Pushpalanka Jayawardhana  wrote:

> Hi Abilashini,
>
> Appreciate if you can give an update on the current progress of the
> project.
> Were you able to work on DCRM specification and other DCR stabilization
> issues.
>
> This is just to know the information for planning activities.
>
> Thanks,
>
> On Fri, May 5, 2017 at 11:01 AM, Abilashini Thiyagarajah <
> abilashini...@cse.mrt.ac.lk> wrote:
>
>> Yeah sure.
>>
>> Thank you
>>
>> *Thiyagarajah Abilashini*
>> Student
>> Department of Computer Science and Engineering
>> University of Moratuwa, Sri Lanka
>>
>> On 5 May 2017 at 10:59, Ishara Karunarathna  wrote:
>>
>>>
>>>
>>> On Fri, May 5, 2017 at 10:53 AM, Abilashini Thiyagarajah <
>>> abilashini...@cse.mrt.ac.lk> wrote:
>>>
>>>> Yeah we can have.
>>>>
>>> Then lets arrange a hangout from 2-3 pm
>>>
>>>>
>>>> *Thiyagarajah Abilashini*
>>>> Student
>>>> Department of Computer Science and Engineering
>>>> University of Moratuwa, Sri Lanka
>>>>
>>>> On 5 May 2017 at 10:25, Ishara Karunarathna  wrote:
>>>>
>>>>>
>>>>>
>>>>> On Fri, May 5, 2017 at 10:21 AM, Abilashini Thiyagarajah <
>>>>> abilashini...@cse.mrt.ac.lk> wrote:
>>>>>
>>>>>> Hi Ishara,
>>>>>>
>>>>>> Thank you.
>>>>>>
>>>>>> Tomorrow in the sense do you mean Saturday(6.4.2017)?
>>>>>>
>>>>> Its today 5/5/2017 if you available we can have a meeting in the
>>>>> evening.
>>>>>
>>>>> -Ishara
>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>> *Thiyagarajah Abilashini*
>>>>>> Student
>>>>>> Department of Computer Science and Engineering
>>>>>> University of Moratuwa, Sri Lanka
>>>>>>
>>>>>> On 5 May 2017 at 00:51, Ishara Karunarathna  wrote:
>>>>>>
>>>>>>> Hi,
>>>>>>>
>>>>>>> Congratz Abilashini,
>>>>>>>
>>>>>>> On Thu, May 4, 2017 at 11:42 PM, Abilashini Thiyagarajah <
>>>>>>> abilashini...@cse.mrt.ac.lk> wrote:
>>>>>>>
>>>>>>>> Hi all,
>>>>>>>>
>>>>>>>> Thank you so much for accepting my proposal and selecting me to
>>>>>>>> work on the project "*OAuth 2.0 Dynamic Client Registration
>>>>>>>> Management Protocol support for WSO2 Identity Server*" in GSOC
>>>>>>>> 2017. I am so happy to work on a WSO2 project after the internship.
>>>>>>>>
>>>>>>>> I would like to clarify the plan through out the program. Shall we
>>>>>>>> stick to my project plan in my proposal?
>>>>>>>>
>>>>>>> We may have to do some slight modification. Shall we arrange a
>>>>>>> meeting and discuss tomorrow. ?
>>>>>>>
>>>>>>> Thanks,
>>>>>>> Ishara
>>>>>>>
>>>>>>>>
>>>>>>>> Looking forward to have a fabulous project experience with WSO2 for
>>>>>>>> next 4 months of period.
>>>>>>>>
>>>>>>>> Thankyou and best regards,
>>>>>>>> Abilashini
>>>>>>>>
>>>>>>>> *Thiyagarajah Abilashini*
>>>>>>>> Student
>>>>>>>> Department of Computer Science and Engineering
>>>>>>>> University of Moratuwa, Sri Lanka
>>>>>>>>
>>>>>>>> On 3 April 2017 at 20:15, Abilashini Thiyagarajah <
>>>

Re: [Dev] GSOC : OAuth 2.0 Dynamic Client Registration Management Protocol Support

2017-05-22 Thread Abilashini Thiyagarajah
Yeah that would be great.

In the proposal, I have included the specifications of DCRM and the initial
design. So can we start from it and modify according to requirements.

For your reference,

Link to the proposal
<https://storage.googleapis.com/summerofcode-prod.appspot.com/gsoc/core_project/doc/5993996947030016_1491206984_GSOC_2017_WSO2_Proposal_20.pdf?Expires=1495538607&GoogleAccessId=summerofcode-prod%40appspot.gserviceaccount.com&Signature=GtVKZEYteJygs6M2PI2kTyeWYSS82pzrGO%2BplGF60d5ApCrmIXC4PPajS3n1BYAiXfKP2nLsMABqsNPR%2BV3urxyZMnEym0g6tXl0nR8oP4mbdRkauphNJ7VtA8mgY%2BtD8%2FM8B3Mphq5m4bgMDHHR6JFeCW6EDIvuFZ69Cf3FlFYvBxy0RnuguSneAZeydCF3KTJOXLeET4EnjX4EUf1rihgPHtEuRzkXPdEInXAOwhkikIszG2h7rskaNYd8tv3mpLkqtSEQz7zDJ2PEIywJeXyBPMlMJ3G493iZWt3KFLVUbb2CSrYHvngul%2FrovXAnK35uoiLP51Fjolzcw%2BsVJQ%3D%3D>



*Thiyagarajah Abilashini*
Student
Department of Computer Science and Engineering
University of Moratuwa, Sri Lanka

On 22 May 2017 at 16:37, Pushpalanka Jayawardhana  wrote:

> Hi Abilashini,
>
> On Mon, May 22, 2017 at 4:25 PM, Abilashini Thiyagarajah <
> abilashini...@cse.mrt.ac.lk> wrote:
>
>> Hi Pushpalanka,
>>
>> Currently I am working on "Allow multiple locale-specific values for
>> redirect URI like human-readable values in the client meta data section"
>> in the issue https://wso2.org/jira/browse/IDENTITY-5879. Once I complete
>> this part, I will be able to send a pull request as I have fixed the other
>> parts of the specific issue.
>>
>> Yeah I can work on the DCRM specification as well as the DCR issue
>> fixing.
>>
> That's great! Thanks for the quick reply.
> Hope others will also agree that it will be good if we can prioritize DCRM
> implementation to be completed first, so that it can be tested for issues
> while others been fixed. WDYT?
>
>
>> Thanks,
>>
>> *Thiyagarajah Abilashini*
>> Student
>> Department of Computer Science and Engineering
>> University of Moratuwa, Sri Lanka
>>
>> On 22 May 2017 at 15:12, Pushpalanka Jayawardhana  wrote:
>>
>>> Hi Abilashini,
>>>
>>> Appreciate if you can give an update on the current progress of the
>>> project.
>>> Were you able to work on DCRM specification and other DCR stabilization
>>> issues.
>>>
>>> This is just to know the information for planning activities.
>>>
>>> Thanks,
>>>
>>> On Fri, May 5, 2017 at 11:01 AM, Abilashini Thiyagarajah <
>>> abilashini...@cse.mrt.ac.lk> wrote:
>>>
>>>> Yeah sure.
>>>>
>>>> Thank you
>>>>
>>>> *Thiyagarajah Abilashini*
>>>> Student
>>>> Department of Computer Science and Engineering
>>>> University of Moratuwa, Sri Lanka
>>>>
>>>> On 5 May 2017 at 10:59, Ishara Karunarathna  wrote:
>>>>
>>>>>
>>>>>
>>>>> On Fri, May 5, 2017 at 10:53 AM, Abilashini Thiyagarajah <
>>>>> abilashini...@cse.mrt.ac.lk> wrote:
>>>>>
>>>>>> Yeah we can have.
>>>>>>
>>>>> Then lets arrange a hangout from 2-3 pm
>>>>>
>>>>>>
>>>>>> *Thiyagarajah Abilashini*
>>>>>> Student
>>>>>> Department of Computer Science and Engineering
>>>>>> University of Moratuwa, Sri Lanka
>>>>>>
>>>>>> On 5 May 2017 at 10:25, Ishara Karunarathna  wrote:
>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> On Fri, May 5, 2017 at 10:21 AM, Abilashini Thiyagarajah <
>>>>>>> abilashini...@cse.mrt.ac.lk> wrote:
>>>>>>>
>>>>>>>> Hi Ishara,
>>>>>>>>
>>>>>>>> Thank you.
>>>>>>>>
>>>>>>>> Tomorrow in the sense do you mean Saturday(6.4.2017)?
>>>>>>>>
>>>>>>> Its today 5/5/2017 if you available we can have a meeting in the
>>>>>>> evening.
>>>>>>>
>>>>>>> -Ishara
>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> *Thiyagarajah Abilashini*
>>>>>>>> Student
>>>>>>>> Department of Computer Science and Engineering
>>>>>>>> University of Moratuwa, Sri Lanka
>>>>>>>>
>>>>>>>> On 5 May 2017 at 00:51, Ishara

Re: [Dev] Improvements to OAuth Dynamic Client Registration

2017-05-23 Thread Abilashini Thiyagarajah
Hi all,

I am currently working on the issue [1]. Specifically the point 4 in the
description, it has been mentioned as the implementation should allow
multiple locale-specific values for redirect URI. According to my
understanding on the implementation of DCR, if there are any
locale-specific values for the redirect URI in the registration request
(eg. redirect_uris#en), it will be added to the list of redirect URI's
while building the registration request profile. Is that the expected
outcome? Please provide your insights.

[1] https://wso2.org/jira/browse/IDENTITY-5879


*Thiyagarajah Abilashini*
Student
Department of Computer Science and Engineering
University of Moratuwa, Sri Lanka

On 15 May 2017 at 23:51, Maduranga Siriwardena  wrote:

> Thanks Abilashini for the PR. We will review and merge.
>
> In the mean time, please work on the other issue too.
>
> On Fri, May 12, 2017 at 1:30 PM, Abilashini Thiyagarajah <
> abilashini...@cse.mrt.ac.lk> wrote:
>
>> Hi all,
>>
>> Please review - https://github.com/wso2-extensions/identity-inbound-auth-
>> oauth/pull/353
>>
>> Best Regards,
>> Abilashini
>>
>> *Thiyagarajah Abilashini*
>> Student
>> Department of Computer Science and Engineering
>> University of Moratuwa, Sri Lanka
>>
>> On 10 May 2017 at 15:54, Abilashini Thiyagarajah <
>> abilashini...@cse.mrt.ac.lk> wrote:
>>
>>> Hi Dimuthu,
>>>
>>> Thank you for sharing these informative sources.
>>>
>>> Best Regards,
>>>
>>> *Thiyagarajah Abilashini*
>>> Student
>>> Department of Computer Science and Engineering
>>> University of Moratuwa, Sri Lanka
>>>
>>> On 10 May 2017 at 13:45, Dimuthu De Lanerolle  wrote:
>>>
>>>> Hi Abilashini,
>>>>
>>>> I have attached some info links with might be useful to you.
>>>>
>>>> [1] https://docs.wso2.com/display/IS530/OpenID+Connect+Dynam
>>>> ic+Client+Registration
>>>> [2] http://openid.net/specs/openid-connect-registration-1_0.html
>>>> [3] Doc Attached. Also you may find more info related to DCR requests
>>>> and responses using previous JIra (eg: IDENTITY-5436, IDENTITY-5435
>>>> etc.)
>>>>
>>>> Regards
>>>> DimuthuD
>>>>
>>>> On Wed, May 10, 2017 at 12:59 PM, Abilashini Thiyagarajah <
>>>> abilashini...@cse.mrt.ac.lk> wrote:
>>>>
>>>>> Hi Maduranga,
>>>>>
>>>>> I will work on it and get back to you soon.
>>>>>
>>>>> Thanks,
>>>>>
>>>>> *Thiyagarajah Abilashini*
>>>>> Student
>>>>> Department of Computer Science and Engineering
>>>>> University of Moratuwa, Sri Lanka
>>>>>
>>>>> On 9 May 2017 at 09:16, Maduranga Siriwardena 
>>>>> wrote:
>>>>>
>>>>>> Hi Abilashini,
>>>>>>
>>>>>> As discussed can you start working on [1] and [2] to improve the
>>>>>> existing DCR functionality. If you need any clarification or help, please
>>>>>> get back to us.
>>>>>>
>>>>>> [1] https://wso2.org/jira/browse/IDENTITY-5529
>>>>>> [2] https://wso2.org/jira/browse/IDENTITY-5185
>>>>>>
>>>>>> Thanks,
>>>>>> --
>>>>>> Maduranga Siriwardena
>>>>>> Senior Software Engineer
>>>>>> WSO2 Inc; http://wso2.com/
>>>>>>
>>>>>> Email: madura...@wso2.com
>>>>>> Mobile: +94718990591 <+94%2071%20899%200591>
>>>>>> Blog: *https://madurangasiriwardena.wordpress.com/
>>>>>> <https://madurangasiriwardena.wordpress.com/>*
>>>>>> <http://wso2.com/signature>
>>>>>>
>>>>>
>>>>>
>>>>> ___
>>>>> Dev mailing list
>>>>> Dev@wso2.org
>>>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>>>
>>>>>
>>>>
>>>>
>>>> --
>>>> Dimuthu De Lanerolle
>>>> Software Engineer
>>>> WSO2 Inc.
>>>> lean . enterprise . middlewear.
>>>> http://wso2.com/
>>>> Tel. : +94 11 2145345  Fax : +94 11 2145300  email : dimut...@wso2.com
>>>>
>>>>
>>>
>>
>
>
> --
> Maduranga Siriwardena
> Senior Software Engineer
> WSO2 Inc; http://wso2.com/
>
> Email: madura...@wso2.com
> Mobile: +94718990591 <+94%2071%20899%200591>
> Blog: *https://madurangasiriwardena.wordpress.com/
> <https://madurangasiriwardena.wordpress.com/>*
> <http://wso2.com/signature>
>
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Improvements to OAuth Dynamic Client Registration

2017-05-24 Thread Abilashini Thiyagarajah
Hi Pushpalanka,

Thanks for your reply. I have already referred this section to understand
the concept. But in the specific issue, it has been mentioned only for
redirect URI.

To consider local specific values for all the Human-readable client
metadata, can we fix it as a separate issue rather than including it in the
[1].

The problems arise on fixing this are,

   1. If there are local specific values for redirect uris, should it be
   added to the typical redirect uris list when building the registration
   request object.
   2. If there are multiple values for a specific meta data (eg.
   client_name) in different languages, then which to be considered during
   registration.

I found a library [2] which supports for language tags. Can we use it for
the implementation?

[1] https://wso2.org/jira/browse/IDENTITY-5879
[2] https://www.connect2id.com/blog/language-tags-rfc-5646-for-java

Thanks,
Abilashini

*Thiyagarajah Abilashini*
Student
Department of Computer Science and Engineering
University of Moratuwa, Sri Lanka

On 25 May 2017 at 09:54, Pushpalanka Jayawardhana  wrote:

> Hi Abilashini,
>
> This section in the specification elaborates more in this[1].
> This is not limited to redirect URI, but for all Human-readable client
> metadata.
>
> [1] - https://tools.ietf.org/html/rfc7591#section-2.2
>
> Thanks,
> Pushpalanka
>
> On Tue, May 23, 2017 at 2:09 PM, Abilashini Thiyagarajah <
> abilashini...@cse.mrt.ac.lk> wrote:
>
>> Hi all,
>>
>> I am currently working on the issue [1]. Specifically the point 4 in the
>> description, it has been mentioned as the implementation should allow
>> multiple locale-specific values for redirect URI. According to my
>> understanding on the implementation of DCR, if there are any
>> locale-specific values for the redirect URI in the registration request
>> (eg. redirect_uris#en), it will be added to the list of redirect URI's
>> while building the registration request profile. Is that the expected
>> outcome? Please provide your insights.
>>
>> [1] https://wso2.org/jira/browse/IDENTITY-5879
>>
>>
>> *Thiyagarajah Abilashini*
>> Student
>> Department of Computer Science and Engineering
>> University of Moratuwa, Sri Lanka
>>
>> On 15 May 2017 at 23:51, Maduranga Siriwardena 
>> wrote:
>>
>>> Thanks Abilashini for the PR. We will review and merge.
>>>
>>> In the mean time, please work on the other issue too.
>>>
>>> On Fri, May 12, 2017 at 1:30 PM, Abilashini Thiyagarajah <
>>> abilashini...@cse.mrt.ac.lk> wrote:
>>>
>>>> Hi all,
>>>>
>>>> Please review - https://github.com/wso2-exte
>>>> nsions/identity-inbound-auth-oauth/pull/353
>>>>
>>>> Best Regards,
>>>> Abilashini
>>>>
>>>> *Thiyagarajah Abilashini*
>>>> Student
>>>> Department of Computer Science and Engineering
>>>> University of Moratuwa, Sri Lanka
>>>>
>>>> On 10 May 2017 at 15:54, Abilashini Thiyagarajah <
>>>> abilashini...@cse.mrt.ac.lk> wrote:
>>>>
>>>>> Hi Dimuthu,
>>>>>
>>>>> Thank you for sharing these informative sources.
>>>>>
>>>>> Best Regards,
>>>>>
>>>>> *Thiyagarajah Abilashini*
>>>>> Student
>>>>> Department of Computer Science and Engineering
>>>>> University of Moratuwa, Sri Lanka
>>>>>
>>>>> On 10 May 2017 at 13:45, Dimuthu De Lanerolle 
>>>>> wrote:
>>>>>
>>>>>> Hi Abilashini,
>>>>>>
>>>>>> I have attached some info links with might be useful to you.
>>>>>>
>>>>>> [1] https://docs.wso2.com/display/IS530/OpenID+Connect+Dynam
>>>>>> ic+Client+Registration
>>>>>> [2] http://openid.net/specs/openid-connect-registration-1_0.html
>>>>>> [3] Doc Attached. Also you may find more info related to DCR requests
>>>>>> and responses using previous JIra (eg: IDENTITY-5436, IDENTITY-5435
>>>>>> etc.)
>>>>>>
>>>>>> Regards
>>>>>> DimuthuD
>>>>>>
>>>>>> On Wed, May 10, 2017 at 12:59 PM, Abilashini Thiyagarajah <
>>>>>> abilashini...@cse.mrt.ac.lk> wrote:
>>>>>>
>>>>>>> Hi Maduranga,
>>>>>>>
>>>>>>> I will

Re: [Dev] Improvements to OAuth Dynamic Client Registration

2017-05-25 Thread Abilashini Thiyagarajah
Hi,

I have sent a PR [1] with the completed parts. Please review.

[1] https://github.com/wso2-extensions/identity-inbound-auth-oauth/pull/373

Thanks,
Abilashini

*Thiyagarajah Abilashini*
Student
Department of Computer Science and Engineering
University of Moratuwa, Sri Lanka

On 25 May 2017 at 15:27, Pushpalanka Jayawardhana  wrote:

> Hi Abilashini,
>
> As per the discussion we had short while ago, let's prioritize
> implementing the APIs required for DCRM functionality.
>
> Support for multiple locales in not a critical requirement for us at the
> moment, hence moved that to a separate task as at [1]. You can add your
> current findings there so we can later attend that.
> You can send a PR for current progress for the issue, so that you can
> start working on DCRM.
>
> [1] - https://wso2.org/jira/browse/IDENTITY-5979
>
> Thanks,
> Pushpalanka
>
> On Thu, May 25, 2017 at 10:50 AM, Abilashini Thiyagarajah <
> abilashini...@cse.mrt.ac.lk> wrote:
>
>> Hi Pushpalanka,
>>
>> Thanks for your reply. I have already referred this section to understand
>> the concept. But in the specific issue, it has been mentioned only for
>> redirect URI.
>>
>> To consider local specific values for all the Human-readable client
>> metadata, can we fix it as a separate issue rather than including it in the
>> [1].
>>
>> The problems arise on fixing this are,
>>
>>1. If there are local specific values for redirect uris, should it be
>>added to the typical redirect uris list when building the registration
>>request object.
>>2. If there are multiple values for a specific meta data (eg.
>>client_name) in different languages, then which to be considered during
>>registration.
>>
>> I found a library [2] which supports for language tags. Can we use it for
>> the implementation?
>>
>> [1] https://wso2.org/jira/browse/IDENTITY-5879
>> [2] https://www.connect2id.com/blog/language-tags-rfc-5646-for-java
>>
>> Thanks,
>> Abilashini
>>
>> *Thiyagarajah Abilashini*
>> Student
>> Department of Computer Science and Engineering
>> University of Moratuwa, Sri Lanka
>>
>> On 25 May 2017 at 09:54, Pushpalanka Jayawardhana  wrote:
>>
>>> Hi Abilashini,
>>>
>>> This section in the specification elaborates more in this[1].
>>> This is not limited to redirect URI, but for all Human-readable client
>>> metadata.
>>>
>>> [1] - https://tools.ietf.org/html/rfc7591#section-2.2
>>>
>>> Thanks,
>>> Pushpalanka
>>>
>>> On Tue, May 23, 2017 at 2:09 PM, Abilashini Thiyagarajah <
>>> abilashini...@cse.mrt.ac.lk> wrote:
>>>
>>>> Hi all,
>>>>
>>>> I am currently working on the issue [1]. Specifically the point 4 in
>>>> the description, it has been mentioned as the implementation should allow
>>>> multiple locale-specific values for redirect URI. According to my
>>>> understanding on the implementation of DCR, if there are any
>>>> locale-specific values for the redirect URI in the registration request
>>>> (eg. redirect_uris#en), it will be added to the list of redirect URI's
>>>> while building the registration request profile. Is that the expected
>>>> outcome? Please provide your insights.
>>>>
>>>> [1] https://wso2.org/jira/browse/IDENTITY-5879
>>>>
>>>>
>>>> *Thiyagarajah Abilashini*
>>>> Student
>>>> Department of Computer Science and Engineering
>>>> University of Moratuwa, Sri Lanka
>>>>
>>>> On 15 May 2017 at 23:51, Maduranga Siriwardena 
>>>> wrote:
>>>>
>>>>> Thanks Abilashini for the PR. We will review and merge.
>>>>>
>>>>> In the mean time, please work on the other issue too.
>>>>>
>>>>> On Fri, May 12, 2017 at 1:30 PM, Abilashini Thiyagarajah <
>>>>> abilashini...@cse.mrt.ac.lk> wrote:
>>>>>
>>>>>> Hi all,
>>>>>>
>>>>>> Please review - https://github.com/wso2-exte
>>>>>> nsions/identity-inbound-auth-oauth/pull/353
>>>>>>
>>>>>> Best Regards,
>>>>>> Abilashini
>>>>>>
>>>>>> *Thiyagarajah Abilashini*
>>>>>> Student
>>>>>> Department of Computer Science and Engineering
>>>>>> University of Moratuwa, Sri Lanka
>>>>>>

[Dev] [GSOC-2017] [IS] [OAuth DCRM] Integration Test for the implementation of OAuth 2.0 DCRM protocol

2017-08-09 Thread Abilashini Thiyagarajah
Hi,

Please find the PR of the integration test cases [1] for the implementation
of OAuth DCRM protocol [2].

Covered test cases in this PR as follow,

   1. Successful Read service provider
   2. Read request with invalid client ID in the endpoint URL
   3. Successful update service provider
   4. Update request with invalid client ID in the endpoint URL
   5. Update request with invalid client ID
   6. Update request with invalid client secret
   7. Update request without grant type
   8. Update request with invalid grant type
   9. Successful Delete service provider
   10. Delete request with invalid client ID in the endpoint URL

Please share your feedback to improve further

[1] https://github.com/wso2/product-is/pull/1293
[2] https://github.com/wso2-extensions/identity-inbound-auth-oauth/pull/396

Best Regards,
Abilashini

*Thiyagarajah Abilashini*
Student
Department of Computer Science and Engineering
University of Moratuwa, Sri Lanka
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [GSOC-2017] [IS] [OAuth DCRM] Integration Test for the implementation of OAuth 2.0 DCRM protocol

2017-08-20 Thread Abilashini Thiyagarajah
Hi all,

Thanks for the feedback. I have fixed the issues mentioned in the review
comments and also made some modifications.

Please review.

Regards,
Abilashini

*Thiyagarajah Abilashini*
Student
Department of Computer Science and Engineering
University of Moratuwa, Sri Lanka

On 11 August 2017 at 00:12, Dimuthu De Lanerolle  wrote:

> Hi Abilashini,
>
> I have added a few review comments for PR's. Please have a look and fix.
>
> Regards
> DimuthuD
>
> On Thu, Aug 10, 2017 at 8:07 PM, Ishara Karunarathna 
> wrote:
>
>> Hi,
>>
>> Thanks Abilashini, will review the PR
>>
>> -Ishara
>>
>> On Wed, Aug 9, 2017 at 1:05 PM, Abilashini Thiyagarajah <
>> abilashini...@cse.mrt.ac.lk> wrote:
>>
>>> Hi,
>>>
>>> Please find the PR of the integration test cases [1] for the
>>> implementation of OAuth DCRM protocol [2].
>>>
>>> Covered test cases in this PR as follow,
>>>
>>>1. Successful Read service provider
>>>2. Read request with invalid client ID in the endpoint URL
>>>3. Successful update service provider
>>>4. Update request with invalid client ID in the endpoint URL
>>>5. Update request with invalid client ID
>>>6. Update request with invalid client secret
>>>7. Update request without grant type
>>>8. Update request with invalid grant type
>>>9. Successful Delete service provider
>>>10. Delete request with invalid client ID in the endpoint URL
>>>
>>> Please share your feedback to improve further
>>>
>>> [1] https://github.com/wso2/product-is/pull/1293
>>> [2] https://github.com/wso2-extensions/identity-inbound-auth
>>> -oauth/pull/396
>>>
>>> Best Regards,
>>> Abilashini
>>>
>>> *Thiyagarajah Abilashini*
>>> Student
>>> Department of Computer Science and Engineering
>>> University of Moratuwa, Sri Lanka
>>>
>>
>>
>>
>> --
>> Ishara Karunarathna
>> Associate Technical Lead
>> WSO2 Inc. - lean . enterprise . middleware |  wso2.com
>>
>> email: isha...@wso2.com,   blog: isharaaruna.blogspot.com,   mobile:
>> +94717996791 <071%20799%206791>
>>
>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Dimuthu De Lanerolle
> Software Engineer
> WSO2 Inc.
> lean . enterprise . middlewear.
> http://wso2.com/
> Tel. : +94 11 2145345  Fax : +94 11 2145300  email : dimut...@wso2.com
>
>
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] [GSOC-2017][IS][OAuth DCRM] Sample for the implementation of OAuth 2.0 DCRM

2017-08-27 Thread Abilashini Thiyagarajah
Hi all,

Please find the PR[1] of the $subject.

[1] https://github.com/wso2/product-is/pull/1320

Thanks and Regards,
Abilashini

*Thiyagarajah Abilashini*
Student
Department of Computer Science and Engineering
University of Moratuwa, Sri Lanka
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [Architecture] [VOTE] Release WSO2 Identity Server 5.7.0 RC3

2018-09-15 Thread Abilashini Thiyagarajah
Hi all,

I have tested the following scenarios,

- Role-based adaptive authentication
- User-age-based adaptive authentication
- Tenant-based adaptive authentication
- New-device-based adaptive authentication
- ACR-based adaptive authentication
- Self-registration and account confirmation with & without consent purposes
- Account recovery

- username
- password - using mail notification and challenge question

- Creating users using the ask password option

No issues were found.

 [+] Stable - go ahead and release

Thanks,
Abilashini


On Sat, Sep 15, 2018 at 3:27 PM Sarubi Thillainathan 
wrote:

> Hi All,
>
> I have tested the following on both LDAP and JDBC user stores and no
> issues were found.
>
> * Multi-attribute filter search with and without pagination
> * All the available SCIM2 endpoints which are given in doc [1]
>
> [+] Stable - go ahead and release.
>
> [1] https://docs.wso2.com/display/IS570/apidocs/SCIM2-endpoints/
>
> On Sat, Sep 15, 2018 at 2:24 AM Mathuriga Thavarajah 
> wrote:
>
>> Hi All,
>>
>> I have tested the following and no issues were found.
>>
>> * Settip up MySQL 5.7
>> * Configuring a Read-write Active Directory User Store as a
>> secondary user store
>> * Configuring Multi-factor Authentication (Basic and Google as a
>> federated authenticator)
>> * Configuring LDAP Active Directory as a primary store in WSO2
>> Identity Server 5.7.0 RC3 on windows instance.
>>
>> [+] Stable - go ahead and release.
>>
>> Regards,
>> Mathuriga.
>>
>>
>> On Fri, Sep 14, 2018 at 5:23 PM Thanuja Jayasinghe 
>> wrote:
>>
>>> Hi All,
>>>
>>> I have tested the following and no issues were found.
>>>
>>>- User account association
>>>- Workflow management
>>>- Adaptive authentication
>>>- Role-based
>>>   - User age based
>>>
>>> [+] Stable - go ahead and release
>>>
>>> Thanks,
>>> Thanuja
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>
>>
>> --
>>
>> *Mathuriga Thavarajah*
>> Software Engineer
>> WSO2 Inc. - http ://wso2.com
>>
>> Email : mathur...@wso2.com
>> Mobile  : +94778191300
>>
>>
>>
>> *[image: http://wso2.com/signature] <http://wso2.com/signature>*
>> _______
>> Architecture mailing list
>> architect...@wso2.org
>> https://mail.wso2.org/cgi-bin/mailman/listinfo/architecture
>>
>
>
> --
> *Sarubi Thillainathan *
> *Software Engineer - WSO2 Inc.*
>
> *Mobile : +94 (0) 76 68 49 101*
> ___
> Architecture mailing list
> architect...@wso2.org
> https://mail.wso2.org/cgi-bin/mailman/listinfo/architecture
>


-- 
Abilashini Thiyagarajah
Software Engineer
WSO2, Inc.
Mobile: +94 778983001
<http://wso2.com/signature>
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [VOTE] Release WSO2 Identity Server 5.8.0 RC2

2019-05-14 Thread Abilashini Thiyagarajah
s,
>>>>>>> Hasanthi
>>>>>>>
>>>>>>> On Mon, May 13, 2019 at 11:56 PM Hasanthi Purnima Dissanayake <
>>>>>>> hasan...@wso2.com> wrote:
>>>>>>>
>>>>>>>> Hi all,
>>>>>>>>
>>>>>>>> We are pleased to announce the second release candidate of WSO2
>>>>>>>> Identity Server 5.8.0.
>>>>>>>>
>>>>>>>> This release fixes the following issues,
>>>>>>>>
>>>>>>>>- 5.8.0-RC2 fixes
>>>>>>>><https://github.com/wso2/product-is/milestone/82?closed=1>
>>>>>>>>- 5.8.0-RC1 fixes
>>>>>>>><https://github.com/wso2/product-is/milestone/78?closed=1>
>>>>>>>>- 5.8.0-Beta5 fixes
>>>>>>>><https://github.com/wso2/product-is/milestone/80?closed=1>
>>>>>>>>- 5.8.0-Beta4 fixes
>>>>>>>><https://github.com/wso2/product-is/milestone/79?closed=1>
>>>>>>>>- 5.8.0-Beta3 fixes
>>>>>>>><https://github.com/wso2/product-is/milestone/77?closed=1>
>>>>>>>>- 5.8.0-Beta fixes
>>>>>>>><https://github.com/wso2/product-is/milestone/75?closed=1>
>>>>>>>>- 5.8.0-Alpha5 fixes
>>>>>>>><https://github.com/wso2/product-is/milestone/74?closed=1>
>>>>>>>>- 5.8.0-Alpha4 fixes
>>>>>>>><https://github.com/wso2/product-is/milestone/73?closed=1>
>>>>>>>>- 5.8.0-Alpha3 fixes
>>>>>>>><https://github.com/wso2/product-is/milestone/72?closed=1>
>>>>>>>>- 5.8.0-Alpha2 fixes
>>>>>>>><https://github.com/wso2/product-is/milestone/71?closed=1>
>>>>>>>>- 5.8.0-Alpha fixes
>>>>>>>><https://github.com/wso2/product-is/milestone/70?closed=1>
>>>>>>>>- 5.8.0-M26 fixes
>>>>>>>><https://github.com/wso2/product-is/milestone/69?closed=1>
>>>>>>>>- 5.8.0-M25 fixes
>>>>>>>><https://github.com/wso2/product-is/milestone/68?closed=1>
>>>>>>>>- 5.8.0-M24 fixes
>>>>>>>><https://github.com/wso2/product-is/milestone/67?closed=1>
>>>>>>>>- 5.8.0-M6 fixes
>>>>>>>><https://github.com/wso2/product-is/milestone/64?closed=1>
>>>>>>>>- 5.8.0-M5 fixes
>>>>>>>><https://github.com/wso2/product-is/milestone/63?closed=1>
>>>>>>>>- 5.8.0-M4 fixes
>>>>>>>><https://github.com/wso2/product-is/milestone/62?closed=1>
>>>>>>>>- 5.8.0-M3 fixes
>>>>>>>><https://github.com/wso2/product-is/milestone/61?closed=1>
>>>>>>>>- 5.8.0-M2 fixes
>>>>>>>><https://github.com/wso2/product-is/milestone/60?closed=1>
>>>>>>>>- 5.8.0-M1 fixes
>>>>>>>><https://github.com/wso2/product-is/milestone/59?closed=1>
>>>>>>>>
>>>>>>>>
>>>>>>>> Source and distribution
>>>>>>>>
>>>>>>>> Runtime - https://github.com/wso2/product-is/releases/tag/v
>>>>>>>> <https://github.com/wso2/product-is/releases/download/v5.8.0-rc2/wso2is-5.8.0-rc2.zip>
>>>>>>>> 5.8.0-rc2
>>>>>>>> <https://github.com/wso2/product-is/releases/download/v5.8.0-rc2/wso2is-5.8.0.zip>
>>>>>>>> Analytics -
>>>>>>>> https://github.com/wso2/analytics-is/releases/tag/v5.8.0-rc2
>>>>>>>> <https://github.com/wso2/analytics-is/releases/download/v5.8.0-rc2/wso2is-analytics-5.8.0-rc2.zip>
>>>>>>>>
>>>>>>>>
>>>>>>>> Please download, test the product and vote.
>>>>>>>>
>>>>>>>> [+] Stable - go ahead and release
>>>>>>>> [-] Broken - do not release (explain why)
>>>>>>>>
>>>>>>>>
>>>>>>>> Thanks,
>>>>>>>> - WSO2 Identity and Access Management Team -
>>>>>>>>
>>>>>>>> --
>>>>>>>>
>>>>>>>> Hasanthi Dissanayake
>>>>>>>>
>>>>>>>> Senior Software Engineer | WSO2
>>>>>>>>
>>>>>>>> E: hasan...@wso2.com
>>>>>>>> M :0718407133| http://wso2.com <http://wso2.com/>
>>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> --
>>>>>>>
>>>>>>> Hasanthi Dissanayake
>>>>>>>
>>>>>>> Senior Software Engineer | WSO2
>>>>>>>
>>>>>>> E: hasan...@wso2.com
>>>>>>> M :0718407133| http://wso2.com <http://wso2.com/>
>>>>>>> ___
>>>>>>> Dev mailing list
>>>>>>> Dev@wso2.org
>>>>>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>>>>>
>>>>>>
>>>>>>
>>>>>> --
>>>>>> *Sominda Gamage* | Software Engineer| WSO2 Inc. <http://wso2.com/>
>>>>>> (M)+94 719873902 | (E) somi...@wso2.com
>>>>>> <https://wso2.com/signature>
>>>>>> ___
>>>>>> Dev mailing list
>>>>>> Dev@wso2.org
>>>>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>>>>
>>>>>
>>>>>
>>>>> --
>>>>> *Janak Amarasena*
>>>>>
>>>>> Software Engineer
>>>>>
>>>>> Email: ja...@wso2.com
>>>>>
>>>>> Mobile: +9464144
>>>>>
>>>>> Web: https://wso2.com
>>>>>
>>>>>
>>>>> <http://wso2.com/signature>
>>>>> ___
>>>>> Dev mailing list
>>>>> Dev@wso2.org
>>>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>>>
>>>>
>>>>
>>>> --
>>>> Nilasini Thirunavukkarasu
>>>> Senior Software Engineer - WSO2
>>>>
>>>> Email : nilas...@wso2.com
>>>> Mobile : +94775241823
>>>> Web : http://wso2.com/
>>>>
>>>>
>>>> <http://wso2.com/signature>
>>>> ___
>>>> Dev mailing list
>>>> Dev@wso2.org
>>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>>
>>>
>>>
>>> --
>>>
>>> *Mathuriga Thavarajah*
>>> Software Engineer
>>> WSO2 Inc. - http ://wso2.com
>>>
>>> Email : mathur...@wso2.com
>>> Mobile  : +94778191300
>>>
>>>
>>>
>>> *[image: http://wso2.com/signature] <http://wso2.com/signature>*
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>
>>
>> --
>> *Tharindu Bandara*
>> Software Engineer | WSO2
>>
>> Email : tharin...@wso2.com
>> Mobile : +94 714221776
>> web : http://wso2.com
>> <https://www.google.com/url?q=http://wso2.com&sa=D&ust=151765338399&usg=AFQjCNFggB4bSJTKmdqKcBV0VY9xx1ABKg>
>>
>> https://wso2.com/signature
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>
>
> --
>
> *Dilin Dampahalage*
> Software Engineer | WSO2
>
> Email : di...@wso2.com
> Mobile : +94 771 462939
> web : http://wso2.com
>
> <http://wso2.com/signature>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>


-- 
Abilashini Thiyagarajah
Software Engineer
WSO2, Inc.
Mobile: +94 778983001
<http://wso2.com/signature>
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev