I create a managed store using code similar to below:
managedStore_ =
localServer_.createManagedStore('mapmaker.static.resources');
managedStore_.manifestUrl = "http:\\someurltomanifestfile";
managedStore_.checkForUpdate();
managedStore_.enabled = true;
Now I log all http requests using a proxy. From proxy it seems the
manifestfile is fetched repeatedly more than 5 times ( the file itself is
not changing) within few minutes, even after managed store has status is
complete.
Can anybody explain why this happens? I only want it to check for updates
once at application start when the above code is executed.
Ankit