Hi Robert,

Yes I'm customizing the site, but not by the domain name instead by the
InstitutionID parm in the URL.

from my jsp

<% String institutionID = request.getParameter("InstitutionID"); %>
<% String imagePath = AEUtils.getImagePath(institutionID); %>
<% Rescue rescue = new GetRescueCommand().getRescue(institutionID); %>

within the GWT client code I get the parm to send to the server to query for
the animals specific to the corresponding rescue as well as load the various
images.

  public static String getInstitutionID() {
    String id = Window.Location.getParameter(INSTITUTION_ID);
    if (id == null) {
      id = "AnimalEngineers";
    }
    return id;
  }

        rpcService.getArrayList(new
GetAnimalsRPC(AEUtils.getInstitutionID()),
            callback);

This works great when using the appspot url. Enom is using a URL Frame which
seem to mask the appspot url with animalengine.org. If they could pass the
parms through all would be well.

Thanks for looking.

Gary Eberhart
The animals need you. :O)

On Tue, Mar 1, 2011 at 1:41 PM, Robert Kluin <[email protected]> wrote:

> Hi Gary,
>  It looks like a bug in how you're handling your parameters.  Are you
> customizing the site based on the domain the user is requesting?
>
>
>
> Robert
>
>
>
>
>
> On Tue, Mar 1, 2011 at 12:07, Gary Eberhart <[email protected]> wrote:
> > Hello All,
> >
> > I can't figure out how to get our application working correctly with a
> > branded domain. I'm unable to bookmark the adoptables page.
> >
> > When using the appspot URL everything works.
> > http://animalengineers.appspot.com/?InstitutionID=Bulldog#adoptables
> >
> > When using our branded domain URL all parameters in the URL are
> > ignored.
> > http://www.animalengine.org/?InstitutionID=Bulldog#adoptables
> >
> > My customers need a branded web experience.
> >
> > *       http://animalengineers.appspot.com/#home   URL Frame
> > @     http://animalengineers.appspot.com/#home   URL Frame
> > www http://animalengineers.appspot.com/#home    URL Frame
> >
> > Any help would be greatly appreciated.
> >
> > Gary Eberhart
> > Animal Engineers
> >
> > --
> > You received this message because you are subscribed to the Google Groups
> "Google App Engine" 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-appengine?hl=en.
> >
> >
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" 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-appengine?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" 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-appengine?hl=en.

Reply via email to