You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@wink.apache.org by "Bryant Luk (JIRA)" <ji...@apache.org> on 2009/12/09 20:28:20 UTC

[jira] Created: (WINK-237) Add a basic auth client handler

Add a basic auth client handler
-------------------------------

                 Key: WINK-237
                 URL: https://issues.apache.org/jira/browse/WINK-237
             Project: Wink
          Issue Type: New Feature
          Components: Client
    Affects Versions: 1.1
            Reporter: Bryant Luk
            Assignee: Bryant Luk
             Fix For: 1.1


Add an optional basic auth client handler to more easily handle the basic auth.  It first sends the request, checks for a 401, and then sends the username/password if available in the request header with a re-issued request.

For now, commons-codec will be added as a "provided" dependency so if users use this functionality, they will need to add in the commons-codec.jar in their pom.xmls.

Thanks to Messaoud Benantar for help with this contribution.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (WINK-237) Add a basic auth client handler

Posted by "Mike Rheinheimer (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/WINK-237?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12851705#action_12851705 ] 

Mike Rheinheimer commented on WINK-237:
---------------------------------------

Bryant, is this issue resolved?  Thanks..

> Add a basic auth client handler
> -------------------------------
>
>                 Key: WINK-237
>                 URL: https://issues.apache.org/jira/browse/WINK-237
>             Project: Wink
>          Issue Type: New Feature
>          Components: Client
>    Affects Versions: 1.1
>            Reporter: Bryant Luk
>            Assignee: Bryant Luk
>             Fix For: 1.1
>
>
> Add an optional basic auth client handler to more easily handle the basic auth.  It first sends the request, checks for a 401, and then sends the username/password if available in the request header with a re-issued request.
> For now, commons-codec will be added as a "provided" dependency so if users use this functionality, they will need to add in the commons-codec.jar in their pom.xmls.
> Thanks to Messaoud Benantar for help with this contribution.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (WINK-237) Add a basic auth client handler

Posted by "Hudson (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/WINK-237?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12788710#action_12788710 ] 

Hudson commented on WINK-237:
-----------------------------

Integrated in Wink-Trunk-JDK1.5-itests #44 (See [http://hudson.zones.apache.org/hudson/job/Wink-Trunk-JDK1.5-itests/44/])
    Add a basic auth client handler

See []

Thanks to Messaoud Benantar for help with this contribution.


> Add a basic auth client handler
> -------------------------------
>
>                 Key: WINK-237
>                 URL: https://issues.apache.org/jira/browse/WINK-237
>             Project: Wink
>          Issue Type: New Feature
>          Components: Client
>    Affects Versions: 1.1
>            Reporter: Bryant Luk
>            Assignee: Bryant Luk
>             Fix For: 1.1
>
>
> Add an optional basic auth client handler to more easily handle the basic auth.  It first sends the request, checks for a 401, and then sends the username/password if available in the request header with a re-issued request.
> For now, commons-codec will be added as a "provided" dependency so if users use this functionality, they will need to add in the commons-codec.jar in their pom.xmls.
> Thanks to Messaoud Benantar for help with this contribution.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (WINK-237) Add a basic auth client handler

Posted by "Hudson (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/WINK-237?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12805898#action_12805898 ] 

Hudson commented on WINK-237:
-----------------------------

Integrated in Wink-Trunk-JDK1.5-itests #93 (See [http://hudson.zones.apache.org/hudson/job/Wink-Trunk-JDK1.5-itests/93/])
    Move BasicAuthSecurityHandler to public

See []


> Add a basic auth client handler
> -------------------------------
>
>                 Key: WINK-237
>                 URL: https://issues.apache.org/jira/browse/WINK-237
>             Project: Wink
>          Issue Type: New Feature
>          Components: Client
>    Affects Versions: 1.1
>            Reporter: Bryant Luk
>            Assignee: Bryant Luk
>             Fix For: 1.1
>
>
> Add an optional basic auth client handler to more easily handle the basic auth.  It first sends the request, checks for a 401, and then sends the username/password if available in the request header with a re-issued request.
> For now, commons-codec will be added as a "provided" dependency so if users use this functionality, they will need to add in the commons-codec.jar in their pom.xmls.
> Thanks to Messaoud Benantar for help with this contribution.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (WINK-237) Add a basic auth client handler

Posted by "Bryant Luk (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/WINK-237?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Bryant Luk resolved WINK-237.
-----------------------------

    Resolution: Fixed

Simplified the BasicAuthSecurityHandler a bit.  If users need to read a specific property file for the username/password, they can do that in their own code and pass in the username/password directly to the handler.  This should allow more flexibility.

> Add a basic auth client handler
> -------------------------------
>
>                 Key: WINK-237
>                 URL: https://issues.apache.org/jira/browse/WINK-237
>             Project: Wink
>          Issue Type: New Feature
>          Components: Client
>    Affects Versions: 1.1
>            Reporter: Bryant Luk
>            Assignee: Bryant Luk
>             Fix For: 1.1
>
>
> Add an optional basic auth client handler to more easily handle the basic auth.  It first sends the request, checks for a 401, and then sends the username/password if available in the request header with a re-issued request.
> For now, commons-codec will be added as a "provided" dependency so if users use this functionality, they will need to add in the commons-codec.jar in their pom.xmls.
> Thanks to Messaoud Benantar for help with this contribution.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Commented: (WINK-237) Add a basic auth client handler

Posted by "Hudson (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/WINK-237?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12788312#action_12788312 ] 

Hudson commented on WINK-237:
-----------------------------

Integrated in Wink-Trunk-JDK1.5 #246 (See [http://hudson.zones.apache.org/hudson/job/Wink-Trunk-JDK1.5/246/])
    Add a basic auth client handler

See []

Thanks to Messaoud Benantar for help with this contribution.


> Add a basic auth client handler
> -------------------------------
>
>                 Key: WINK-237
>                 URL: https://issues.apache.org/jira/browse/WINK-237
>             Project: Wink
>          Issue Type: New Feature
>          Components: Client
>    Affects Versions: 1.1
>            Reporter: Bryant Luk
>            Assignee: Bryant Luk
>             Fix For: 1.1
>
>
> Add an optional basic auth client handler to more easily handle the basic auth.  It first sends the request, checks for a 401, and then sends the username/password if available in the request header with a re-issued request.
> For now, commons-codec will be added as a "provided" dependency so if users use this functionality, they will need to add in the commons-codec.jar in their pom.xmls.
> Thanks to Messaoud Benantar for help with this contribution.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (WINK-237) Add a basic auth client handler

Posted by "Hudson (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/WINK-237?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12828114#action_12828114 ] 

Hudson commented on WINK-237:
-----------------------------

Integrated in Wink-Trunk-JDK1.6-itests #98 (See [http://hudson.zones.apache.org/hudson/job/Wink-Trunk-JDK1.6-itests/98/])
    

> Add a basic auth client handler
> -------------------------------
>
>                 Key: WINK-237
>                 URL: https://issues.apache.org/jira/browse/WINK-237
>             Project: Wink
>          Issue Type: New Feature
>          Components: Client
>    Affects Versions: 1.1
>            Reporter: Bryant Luk
>            Assignee: Bryant Luk
>             Fix For: 1.1
>
>
> Add an optional basic auth client handler to more easily handle the basic auth.  It first sends the request, checks for a 401, and then sends the username/password if available in the request header with a re-issued request.
> For now, commons-codec will be added as a "provided" dependency so if users use this functionality, they will need to add in the commons-codec.jar in their pom.xmls.
> Thanks to Messaoud Benantar for help with this contribution.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (WINK-237) Add a basic auth client handler

Posted by "Hudson (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/WINK-237?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12789325#action_12789325 ] 

Hudson commented on WINK-237:
-----------------------------

Integrated in Wink-Trunk-JDK1.6-itests #46 (See [http://hudson.zones.apache.org/hudson/job/Wink-Trunk-JDK1.6-itests/46/])
    

> Add a basic auth client handler
> -------------------------------
>
>                 Key: WINK-237
>                 URL: https://issues.apache.org/jira/browse/WINK-237
>             Project: Wink
>          Issue Type: New Feature
>          Components: Client
>    Affects Versions: 1.1
>            Reporter: Bryant Luk
>            Assignee: Bryant Luk
>             Fix For: 1.1
>
>
> Add an optional basic auth client handler to more easily handle the basic auth.  It first sends the request, checks for a 401, and then sends the username/password if available in the request header with a re-issued request.
> For now, commons-codec will be added as a "provided" dependency so if users use this functionality, they will need to add in the commons-codec.jar in their pom.xmls.
> Thanks to Messaoud Benantar for help with this contribution.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (WINK-237) Add a basic auth client handler

Posted by "Hudson (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/WINK-237?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12805776#action_12805776 ] 

Hudson commented on WINK-237:
-----------------------------

Integrated in Wink-Trunk-JDK1.5 #256 (See [http://hudson.zones.apache.org/hudson/job/Wink-Trunk-JDK1.5/256/])
    Move BasicAuthSecurityHandler to public

See []


> Add a basic auth client handler
> -------------------------------
>
>                 Key: WINK-237
>                 URL: https://issues.apache.org/jira/browse/WINK-237
>             Project: Wink
>          Issue Type: New Feature
>          Components: Client
>    Affects Versions: 1.1
>            Reporter: Bryant Luk
>            Assignee: Bryant Luk
>             Fix For: 1.1
>
>
> Add an optional basic auth client handler to more easily handle the basic auth.  It first sends the request, checks for a 401, and then sends the username/password if available in the request header with a re-issued request.
> For now, commons-codec will be added as a "provided" dependency so if users use this functionality, they will need to add in the commons-codec.jar in their pom.xmls.
> Thanks to Messaoud Benantar for help with this contribution.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Closed: (WINK-237) Add a basic auth client handler

Posted by "Mike Rheinheimer (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/WINK-237?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mike Rheinheimer closed WINK-237.
---------------------------------


Issue is resolved.  Closing per Bryant's approval to do so.

> Add a basic auth client handler
> -------------------------------
>
>                 Key: WINK-237
>                 URL: https://issues.apache.org/jira/browse/WINK-237
>             Project: Wink
>          Issue Type: New Feature
>          Components: Client
>    Affects Versions: 1.1
>            Reporter: Bryant Luk
>            Assignee: Bryant Luk
>             Fix For: 1.1
>
>
> Add an optional basic auth client handler to more easily handle the basic auth.  It first sends the request, checks for a 401, and then sends the username/password if available in the request header with a re-issued request.
> For now, commons-codec will be added as a "provided" dependency so if users use this functionality, they will need to add in the commons-codec.jar in their pom.xmls.
> Thanks to Messaoud Benantar for help with this contribution.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.