Dear Anirudh ,

we have an application for our customer ,they can login in to this and they
can able to see the link like "access new mail box(to google)"  once user
click on this link he should able to see his inbox (by doing SSO)

now i have demo app for SSO its working fine  for my domain but

how do i integrate this demo SSO app with my web application ?

Please guide me ASAP(this is very urgent)

Thanks and Regards,
Madesh.p
On Tue, Sep 2, 2008 at 6:50 PM, Anirudh (Google) <[EMAIL PROTECTED]> wrote:

>
> Hi Madesh,
>
> The Sign-In URL in our sample code maps to the ProcessResponseServlet.
> Depending on your deployment, this URL should be like:
> http://localhost:8080/samltool/ProcessResponseServlet
>
> Logout and change password  URLs could be other Servlets ( written by
> you ) that take care of cleaning a session and changing password in
> your database respectively. This is really left to your
> implementation.
>
> You can use the public key in the demo for testing but for security
> reasons you should use a different set in your production server.
>
> -Anirudh
>
> On Sep 2, 4:17 pm, "madesh p" <[EMAIL PROTECTED]> wrote:
> > what are the URL to be given in login/logout/change password
> > is there any specifig URL or URL of any application
> > but i want to do SSO for my domain user
> >
> > can i use the public key which is in demo application
> >
> >
> >
> > On Tue, Sep 2, 2008 at 4:33 PM, Anirudh (Google) <[EMAIL PROTECTED]>
> wrote:
> >
> > > Hi Madesh,
> >
> > > In a nutshell,
> >
> > > 1. Set up login/logout/change password URLs in the control panel.
> > > 2. Generate keys and upload your public certificate to Google
> > > 3. Modify ProcessResponseServlet.java to implement user accounts
> > > authentication i.e. login() method
> > > 4. Modify the Servlet constants for your domain i.e. domainName etc
> > > 5. Deploy the web application.
> >
> > > You only need to implement the Identity Provider.
> >
> > > Please refer this detailed document for the exact changes that you
> > > need to make to sample code for your site:
> >
> > >http://code.google.com/apis/apps/sso/saml_reference_implementation_we.
> ..
> >
> > > -Anirudh
> >
> > > On Sep 2, 3:00 pm, "madesh p" <[EMAIL PROTECTED]> wrote:
> > > > Dear Julian,
> >
> > > >  what are the changes i need to make in demo application(SSO demo
> > > provided
> > > > by google  ) for single sign on for my domain  "bizport.co.in"
> >
> > > > On Mon, Sep 1, 2008 at 8:19 PM, Julian (Google) <[EMAIL PROTECTED]>
> wrote:
> >
> > > > > Hi Madesh,
> >
> > > > > I found this post talking about the same problem:
> >
> > > > >
> http://groups.google.com/group/google-apps-apis/browse_thread/thread/.<
> http://groups.google.com/group/google-apps-apis/browse_thread/thread/>
>  > > ..
> >
> > > > > Apparently you need to set JAVA_HOME and JWSDP_HOME appropriately
> and
> > > > > restarted Tomcat.
> >
> > > > > Cheers,
> > > > > Julian
> >
> > > > > On Sep 1, 2:44 pm, "madesh p" <[EMAIL PROTECTED]> wrote:
> > > > > > Dear Anirudh,
> >
> > > > > >  I have downloaded demo application for SSO,When i run that
> > > application
> > > > > > after changing uaser name ,paasword and domain name to "
> > > bizport.co.in"
> > > > > > finally i got below error
> >
> > > > > > *Error signing SAML element: class configured for
> TransformService:
> > > > > > org.jcp.xml.dsig.internal.dom.DOMEnvelopedTransform not a
> > > > > TransformService*
> > > > > > **
> > > > > > Please help me to resolve this error
> >
> > > > > > Regards,
> > > > > > madesh
> >
> > > > >  > On Mon, Sep 1, 2008 at 5:46 PM, Anirudh (Google) <
> [EMAIL PROTECTED]>
> > > > > wrote:
> >
> > > > > > > Hi Madesh,
> >
> > > > > > > For generating keys, i would recommend you to refer to this
> well
> > > > > > > compiled article by Amanda:
> > > > > > >http://code.google.com/apis/apps/articles/sso-keygen.html
> >
> > > > > > > -Anirudh
> >
> > > > > > > On Sep 1, 4:42 pm, "madesh p" <[EMAIL PROTECTED]> wrote:
> > > > > > > > Dear Anirudh,
> >
> > > > > > > >  how do i generate public key and private key?
> >
> > > > > > > > Regards,
> > > > > > > > Madesh.p
> >
> > > > > > >  > On Mon, Sep 1, 2008 at 2:40 PM, Anirudh (Google) <
> > > [EMAIL PROTECTED]>
> > > > > > > wrote:
> >
> > > > > > > > > Hi Madesh,
> >
> > > > > > > > > To implement SSO, you will have to:
> >
> > > > > > > > > 1. Deploy a SAML Identity Provider. This component will
> provide
> > > > > user
> > > > > > > > > authentication against your user accounts database. There
> is a
> > > > > sample
> > > > > > > > > SSO solution available here:
> >
> > >http://code.google.com/apis/apps/libraries_and_samples.html#sso
> >
> > > > > > > > > 2. Configure SSO URLs in the control panel and upload your
> > > public
> > > > > > > > > certificate.
> >
> > > > > > > > > Its is possible to direct users to gmail from your
> application
> > > sign
> > > > > > > > > in. Redirection is controlled through the RelayState
> parameter.
> > > > > > > > > The URL for gmail would be:
> > > > > > > > >http://mail.gooogle.com/a/<youdomain.com>
> >
> > > > > > > > > Once SSO is configured, users will not be authenticating
> > > against
> > > > > > > > > Google Accounts. Your Identity Provider will take the
> > > > > responsibility
> > > > > > > > > of authentication of users on SAML requests sent by Google
> and
> > > > > reply
> > > > > > > > > by signing a SAML response to Google Assertion Consumer
> > > > > Service(ACS).
> >
> > > > > > > > > You can learn more about Google SSO process here:
> >
> > > > >
> http://code.google.com/apis/apps/sso/saml_reference_implementation.html
> >
> > > > > > > > > -Anirudh
> >
> > > > > > > > > On Aug 29, 5:43 pm, madesh <[EMAIL PROTECTED]> wrote:
> > > > > > > > > > Dear google groups,
> >
> > > > > > > > > > we have created the domain like "bizport.co.in"
> > > > > > > > > > I want to use SSO for my application.
> > > > > > > > > > When user logs in to our application  he should be re
> > > directed to
> > > > > > > > > > google mail(bizport.co.in domain ) .here user does not
> need
> > > to
> > > > > re
> > > > > > > > > > login the google mail  also user can able see the loged
> in
> > > > > page(the
> > > > > > > > > > page after the log in to google mail).so we can use SSO
> for
> > > this
> >
> > > > > > > > > > how to use  SSO
> > > > > > > > > > Please any one guide me .i went through some google doc
> .i
> > > can
> > > > > not
> > > > > > > > > > understand  clearly
> >
> > > > > > > > > >  Thanks and Regards,
> >
> > > > > > > > > > Madesh.p
> >
> > > > > > > > --
> > > > > > > > by
> > > > > > > > madesh
> >
> > > > > > --
> > > > > > by
> > > > > > madesh
> >
> > > > --
> > > > by
> > > > madesh
> >
> > --
> > by
> > madesh
> >
>


-- 
by
madesh

--~--~---------~--~----~------------~-------~--~----~
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