According to the read me file I have followed all steps on SSO.What I
do is i call the SetupGoogleLoginForm Method when username and
password are correct accoring to my database.I have done each step
shown on the Readme file with the sample code.It returns me Actionurl
value as https://www.google.com/a/ijango.com/acs  .
I am confused about thing that do I need to pass any password to
Google?Am I missing something here?Code goes as below

Private Sub SetupGoogleLoginForm(ByVal userName As String)
        Dim samlRequest As String = Request.QueryString("SAMLRequest")
        If samlRequest Is Nothing Then
            samlRequest = Request.Form("SAMLRequest")
        End If
        Dim relayState As String = Request.QueryString("RelayState")
        If relayState Is Nothing Then
            relayState = Request.Form("RelayState")
        End If
        If samlRequest IsNot Nothing AndAlso relayState IsNot Nothing
Then
            Dim responseXml As String
            Dim actionUrl As String
            SamlParser.CreateSignedResponse(samlRequest, userName,
responseXml, actionUrl)

            Response.Redirect(actionUrl)
            Response.Write(responseXml)
            Response.Write(relayState)
        End If

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Apps APIs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/google-apps-apis?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to