security token(fields separated by ":") generates error in RestServer
---------------------------------------------------------------------

                 Key: SHINDIG-438
                 URL: https://issues.apache.org/jira/browse/SHINDIG-438
             Project: Shindig
          Issue Type: Bug
          Components: RESTful API (PHP)
         Environment: Windows, Apache
            Reporter: impetus technologies


In security token each field is separated by " : " and gadget url itself 
contains " : ". In rest server security token is passed  by GET method, which 
results in
"st = 
john.doe:john.doe:7317:shindig:http://shindig/gadgets/files/samplecontainer/examples/SocialHelloWorld.xml:0";.
 It results in wrong count in RestServlet.php and 
BasicSecurityTokenDecoder.php, and hence one needs to change the " 
count(explode(';', $stringToken)) == 6 " to " count(explode(';', $stringToken)) 
== 7 " to make Rest server work.

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

Reply via email to