Wednesday, December 03, 2008

No sound in Flash over Citrix connection


Here are some tips that may help:
1) Try uninstalling Flash, logon with a new administrator account that's never been used, switch to install mode (change user /install), install flash, launch and test flash, switch to execute mode (change user /execute).
2) Check that you have 'Enable Sound' on ICA Client and on server-side.
3) Uninstall PSE450R02W2K3040 Windows Update

Very interesting interview with Jeremy Grantham



How to specify maxJsonLength property in web.config


If you're getting the following exception while using JavaScriptSerializer:
"Error during serialization or deserialization using the JSON JavaScriptSerializer. The length of the string exceeds the value set on the maxJsonLength property." - you may enlarge the default maxJsonLength value in web.config:

<system.web.extensions>
    <scripting>
       <webServices>
          <jsonSerialization maxJsonLength="123456"></jsonSerialization>
       </webServices>
    </scripting>
</system.web.extensions>