You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@cordova.apache.org by "Natalia Bartol (JIRA)" <ji...@apache.org> on 2012/09/13 00:57:08 UTC

[jira] [Created] (CB-1455) 'authorization: ...' instead of 'Authorization: ...' set in FileTransfer

Natalia Bartol created CB-1455:
----------------------------------

             Summary: 'authorization: ...' instead of 'Authorization: ...' set in FileTransfer
                 Key: CB-1455
                 URL: https://issues.apache.org/jira/browse/CB-1455
             Project: Apache Cordova
          Issue Type: Bug
          Components: CordovaJS
    Affects Versions: 2.0.0
         Environment: Android
            Reporter: Natalia Bartol
            Assignee: Filip Maj


Setting 
params.headers = {'Authorization' : make_base_auth()};
for FileTransfer results in the request header:

authorization: Basic bmssOmZvbw==

According to http://tools.ietf.org/html/rfc1945#section-10.2 it should be written with capital letter:

Authorization: Basic bmssOmZvbw==

I bumped into this issue when trying to handle request generated by FileTransfer with ZendFramework2.



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Updated] (CB-1455) 'authorization: ...' instead of 'Authorization: ...' set in FileTransfer

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

Filip Maj updated CB-1455:
--------------------------

    Component/s:     (was: CordovaJS)
                 Android
       Assignee: Joe Bowser  (was: Filip Maj)

Setting as Android and sending over to Joe.

Joe can you take a look and validate?
                
> 'authorization: ...' instead of 'Authorization: ...' set in FileTransfer
> ------------------------------------------------------------------------
>
>                 Key: CB-1455
>                 URL: https://issues.apache.org/jira/browse/CB-1455
>             Project: Apache Cordova
>          Issue Type: Bug
>          Components: Android
>    Affects Versions: 2.0.0
>         Environment: Android
>            Reporter: Natalia Bartol
>            Assignee: Joe Bowser
>
> Setting 
> params.headers = {'Authorization' : make_base_auth()};
> for FileTransfer results in the request header:
> authorization: Basic bmssOmZvbw==
> According to http://tools.ietf.org/html/rfc1945#section-10.2 it should be written with capital letter:
> Authorization: Basic bmssOmZvbw==
> I bumped into this issue when trying to handle request generated by FileTransfer with ZendFramework2.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Commented] (CB-1455) 'authorization: ...' instead of 'Authorization: ...' set in FileTransfer

Posted by "Natalia Bartol (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/CB-1455?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13492077#comment-13492077 ] 

Natalia Bartol commented on CB-1455:
------------------------------------

Client side: CordovaJS on Android
Server side: Apache/2.2.14 (Ubuntu)
                
> 'authorization: ...' instead of 'Authorization: ...' set in FileTransfer
> ------------------------------------------------------------------------
>
>                 Key: CB-1455
>                 URL: https://issues.apache.org/jira/browse/CB-1455
>             Project: Apache Cordova
>          Issue Type: Bug
>          Components: CordovaJS
>    Affects Versions: 2.0.0
>         Environment: Android
>            Reporter: Natalia Bartol
>            Assignee: Filip Maj
>
> Setting 
> params.headers = {'Authorization' : make_base_auth()};
> for FileTransfer results in the request header:
> authorization: Basic bmssOmZvbw==
> According to http://tools.ietf.org/html/rfc1945#section-10.2 it should be written with capital letter:
> Authorization: Basic bmssOmZvbw==
> I bumped into this issue when trying to handle request generated by FileTransfer with ZendFramework2.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Commented] (CB-1455) 'authorization: ...' instead of 'Authorization: ...' set in FileTransfer

Posted by "Filip Maj (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/CB-1455?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13491691#comment-13491691 ] 

Filip Maj commented on CB-1455:
-------------------------------

[~nataliab] can you confirm which platform(s) you saw this issue on?
                
> 'authorization: ...' instead of 'Authorization: ...' set in FileTransfer
> ------------------------------------------------------------------------
>
>                 Key: CB-1455
>                 URL: https://issues.apache.org/jira/browse/CB-1455
>             Project: Apache Cordova
>          Issue Type: Bug
>          Components: CordovaJS
>    Affects Versions: 2.0.0
>         Environment: Android
>            Reporter: Natalia Bartol
>            Assignee: Filip Maj
>
> Setting 
> params.headers = {'Authorization' : make_base_auth()};
> for FileTransfer results in the request header:
> authorization: Basic bmssOmZvbw==
> According to http://tools.ietf.org/html/rfc1945#section-10.2 it should be written with capital letter:
> Authorization: Basic bmssOmZvbw==
> I bumped into this issue when trying to handle request generated by FileTransfer with ZendFramework2.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Commented] (CB-1455) 'authorization: ...' instead of 'Authorization: ...' set in FileTransfer

Posted by "Andrew Grieve (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/CB-1455?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13492425#comment-13492425 ] 

Andrew Grieve commented on CB-1455:
-----------------------------------

Headers are supposed to be treated case insensitive. I agree it's a bit strange that it's being lower-cased, but unless it's causing a problem, I'm going to downgrade the priority.
                
> 'authorization: ...' instead of 'Authorization: ...' set in FileTransfer
> ------------------------------------------------------------------------
>
>                 Key: CB-1455
>                 URL: https://issues.apache.org/jira/browse/CB-1455
>             Project: Apache Cordova
>          Issue Type: Bug
>          Components: Android
>    Affects Versions: 2.0.0
>         Environment: Android
>            Reporter: Natalia Bartol
>            Assignee: Joe Bowser
>
> Setting 
> params.headers = {'Authorization' : make_base_auth()};
> for FileTransfer results in the request header:
> authorization: Basic bmssOmZvbw==
> According to http://tools.ietf.org/html/rfc1945#section-10.2 it should be written with capital letter:
> Authorization: Basic bmssOmZvbw==
> I bumped into this issue when trying to handle request generated by FileTransfer with ZendFramework2.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Updated] (CB-1455) 'authorization: ...' instead of 'Authorization: ...' set in FileTransfer

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

Andrew Grieve updated CB-1455:
------------------------------

    Priority: Trivial  (was: Major)
    
> 'authorization: ...' instead of 'Authorization: ...' set in FileTransfer
> ------------------------------------------------------------------------
>
>                 Key: CB-1455
>                 URL: https://issues.apache.org/jira/browse/CB-1455
>             Project: Apache Cordova
>          Issue Type: Bug
>          Components: Android
>    Affects Versions: 2.0.0
>         Environment: Android
>            Reporter: Natalia Bartol
>            Assignee: Joe Bowser
>            Priority: Trivial
>
> Setting 
> params.headers = {'Authorization' : make_base_auth()};
> for FileTransfer results in the request header:
> authorization: Basic bmssOmZvbw==
> According to http://tools.ietf.org/html/rfc1945#section-10.2 it should be written with capital letter:
> Authorization: Basic bmssOmZvbw==
> I bumped into this issue when trying to handle request generated by FileTransfer with ZendFramework2.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira