Hi
We have a google earth enterprise server 5.1 running in our local network with at 192.168.1.5/3ds
In the sandbox when we run cesium locally at localhost:8080 on the server itself the globe is visible in cesium.
We use the following code :
var geeMetadata = new Cesium.GoogleEarthEnterpriseMetadata({
url : ‘http://192.168.1.5/3ds’,
proxy : new Cesium.DefaultProxy(’/proxy/’)
});
var viewer = new Cesium.Viewer(‘cesiumContainer’, {
baseLayerPicker: false,
imageryProvider : new Cesium.GoogleEarthEnterpriseImageryProvider({
metadata : geeMetadata
})
});
When re want to run on remote machine we use the same code but get an error :
An error occurred in “GoogleEarthEnterpriseImageryProvider”: An error occurred while accessing http://192.168.1.5/3ds/flatfile?q2-0-q.1.
Also in sandcastle - Failed to load resource: the server responded with a status of 503 (Service Unavailable) - http://localhost:8080/proxy/?http%3A%2F%2F192.168.1.5%2F3ds%2Fflatfile%3Fq2-0-q.1
We can access www.earthenterprise.org/3d online in sandcastle.
Typing and running request http://192.168.1.5/3ds/flatfile?q2-0-q.1. directly in web browser downloads the flat file .
We are stuck and please provide a solution.
Thanks for the help