Note that there are some explanatory texts on larger screens.

plurals
  1. POGoogle Apps Marketplace - SSO for Google App Engine Java application
    primarykey
    data
    text
    <p>I don't directly get logged into my app when my navLink in "More" section of Google's universal navigation bar in a Google Apps account is clicked, instead the login page of my application is shown. </p> <p>My apps marketplace manifest:</p> <pre><code>&lt;ApplicationManifest xmlns="http://schemas.google.com/ApplicationManifest/2009"&gt; &lt;Name&gt;App Name&lt;/Name&gt; &lt;Description&gt;App Description&lt;/Description&gt; &lt;!-- Administrators and users will be sent to this URL for application support --&gt; &lt;Support&gt; &lt;Link rel="support" href="http://myappid.appspot.com/help.html" /&gt; &lt;/Support&gt; &lt;!-- Show this link in Google's universal navigation for all users --&gt; &lt;Extension id="navLink" type="link"&gt; &lt;Name&gt;Myapp Navlink Name&lt;/Name&gt; &lt;Url&gt;http://myappid.appspot.com/ms.jsp?hd=${DOMAIN_NAME}&lt;/Url&gt; &lt;/Extension&gt; &lt;!-- Declare our OpenID realm so our app is white listed --&gt; &lt;Extension id="realm" type="openIdRealm"&gt; &lt;Url&gt;http://myappid.appspot.com/&lt;/Url&gt; &lt;/Extension&gt; &lt;/ApplicationManifest&gt; </code></pre> <p>My web.xml relevant part:</p> <pre><code> &lt;servlet&gt; &lt;servlet-name&gt;loginJsp&lt;/servlet-name&gt; &lt;jsp-file&gt;/login.jsp&lt;/jsp-file&gt; &lt;/servlet&gt; &lt;servlet-mapping&gt; &lt;servlet-name&gt;loginJsp&lt;/servlet-name&gt; &lt;url-pattern&gt;/_ah/login_required&lt;/url-pattern&gt; &lt;/servlet-mapping&gt; &lt;security-constraint&gt; &lt;web-resource-collection&gt; &lt;web-resource-name&gt;ms&lt;/web-resource-name&gt; &lt;url-pattern&gt;/ms.jsp&lt;/url-pattern&gt; &lt;/web-resource-collection&gt; &lt;auth-constraint&gt; &lt;role-name&gt;*&lt;/role-name&gt; &lt;/auth-constraint&gt; &lt;/security-constraint&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload