As the title says, I'm trying to get Google's Visualization:geomap html code to load in a Cocoa WebView which is in a Sandboxed Mac OSX Lion app. I am able to do it if I turn Sandboxing off, but I want to submit this app to the Mac App Store, thus I need it on.
How can I get this to work with Sandboxing ON?
Here's the Google's Visualization:geomap html code:
<html>
<head>
<script type='text/javascript' src='https://www.google.com/jsapi'></script>
<script type='text/javascript'>
google.load('visualization', '1', {'packages': ['geomap']});
google.setOnLoadCallback(drawMap);
function drawMap()
{
var data = google.visualization.arrayToDataTable([
['Country', 'Popularity'],
['Germany', 200],
['United States', 300],
['Brazil', 400],
['Canada', 500],
['France', 600],
['RU', 700]
]);
var options = {};
options['dataMode'] = 'regions';
var container = document.getElementById('map_canvas');
var geomap = new google.visualization.GeoMap(container);
geomap.draw(data, options);
};
</script>
</head>
<body>
<div id='map_canvas'></div>
</body>
</html>
I create and load the WebView with this code:
WebView * pWebView= [[WebView alloc] initWithFrame:self.bounds];
NSString * pstrMapHTMLPath= [[NSBundle mainBundle] pathForResource:@"MapHTML" ofType:@"html"];
NSString *pstrMapHTML= [NSString stringWithContentsOfFile:pstrMapHTMLPath encoding:NSUTF8StringEncoding error:nil];
[self addSubview:pWebView];
[[pWebView mainFrame] loadHTMLString:pstrMapHTML baseURL:[NSURL URLWithString:@""]];
I tried adding this to the entitlements as suggested here Silverlight in a Cocoa WebView in sandboxed app mode, but it did nothing:
<key>com.apple.security.temporary-exception.mach-lookup.global-name</key>
<array>
<string>com.apple.WebKit.PluginAgent</string>
</array>
Does anyone know how to get this to work with App Sandboxing turned on? Any help or insight would be greatly appreciated.
Will this be fixed in Mountain Lion for some reason?