I&#39;m attempting to use IsolatedStorage from IronPython running the browser, and I keep running into the following error.  Any idea what I&#39;m doing wrong or is this functionality currently unsupported?<div><br></div><div>

Best regards,</div><div>Dave<br><div><br></div><div>MethodAccessException: Security transparent method System.IO.IsolatedStorage.IsolatedStorageFile.GetUserStoreForSite() cannot access Microsoft.Scripting.Actions.Calls.MethodCandidate+Caller.Call(System.Object[], Boolean ByRef) using reflection.<br>

<div><br></div><div><div>&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;<a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</a>&quot;&gt;</div>

<div>&lt;html xmlns=&quot;<a href="http://www.w3.org/1999/xhtml">http://www.w3.org/1999/xhtml</a>&quot;&gt;</div><div>&lt;head&gt;</div><div>&lt;script type=&quot;text/javascript&quot;&gt;</div><div>    window.DLR = { path: &#39;ipy&#39; }</div>

<div>&lt;/script&gt;</div><div>&lt;script src=&quot;ipy/dlr-20100305.js&quot; type=&quot;text/javascript&quot;&gt;</div><div>&lt;/script&gt;</div><div>&lt;/head&gt;</div><div>&lt;body&gt;</div><div>&lt;script type=&quot;text/python&quot;&gt;</div>

<div>from System.IO import (FileMode, StreamWriter)</div><div>from System.IO.IsolatedStorage import IsolatedStorageFile</div><div>with IsolatedStorageFile.GetUserStoreForSite() as store:</div><div>    with IsolatedStorageFileStream(&quot;test.txt&quot;, FileMode.Create, store) as stream:</div>

<div>        with StreamWriter(stream) as writer:</div><div>            writer.WriteLine(&quot;Testing from IPy in Browser.&quot;)</div><div>&lt;/script&gt;</div><div>&lt;/body&gt;</div><div>&lt;/html&gt;</div></div></div>

</div>