I have integrated the app with google apps marketplace. When the app is invoked from drop down "more" link on google apps(universal navigation bar), i expect the apps namespace key to be automatically set to the domain value but it's not happening.
The value returned by NamespaceManager.getGoogleAppsNamespace() is "". Any idea what I might be doing wrong? Thank you for your help.
public class NamespaceFilter implements Filter {
.....
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain)
throws IOException, ServletException {
case GOOGLE_APPS_DOMAIN : {
NamespaceManager.set(NamespaceManager.getGoogleAppsNamespace());
Update: I am going to try explicitly setting the namespace value to the value carried by com.google.appengine.api.users.UserService.user_organization instead of NamespaceManager.getGoogleAppsNamespace() method. I wish the latter worked but it's not. user_organization is being set correctly to the calling domain on the other hand.