Requirement
I have 4 applications which are deployed on GAE.
I need a simple gadget which takes a user preference String parameter,
pass it as a href value and display the application present on this
passed URL.
For this i did following:
<UserPref name="LoadThisApp" display_name="ApplicationName"
required="false" default_value="
http://localhost:8083/myguestbook"/>
I provide value of LoadThisApp in href as:
<Content type="url" href="__UP_LoadThisApp__">
Now my gadget is ready.
1) i add this gadget by inserting its path in a site page, then the
gadget asks me for ApplicationName. (this would be on the page where
we setup our gadget by providing height, width)
2)The default value of ApplicationName is present here.(i.e
http://localhost:8083/myguestbook). I simply provide height, width and
click preview gadget and i can see content of
http://localhost:8083/myguestbook.
Here at point 2,
-> the ApplicationName has a default value -
http://localhost:8083/myguestbook
If i change this default value to another deployed application URL,
then nothing comes up. No page found errors pops up in gadget.
-> i also tried the same with removing default_value, no success.
Am i missing anything?
Guidance appreciated.