User Jason Prado - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T19:48:11Zhttp://stackoverflow.com/feeds/user/106517http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1154309/creating-an-imap-client-application-in-silverlight/1157904#11579042Answer by Jason Prado for Creating an IMAP client application in SilverlightJason Prado2009-07-21T08:14:41Z2009-07-21T08:14:41Z<p>Silverlight does not yet allow arbitrary socket connections, which you would need to connect to an IMAP server on the privileged port of 143. Silverlight can only connect to servers, even with a client access policy file, on ports 4502-4534.</p>
<p>Your only options are to proxy to gmail via a server on those ports, or just do the IMAP work on the server and serve it down to the client app over HTTP.</p>
<p>Sorry about this-- enhanced socket support is always being looked at, but it has scary <a href="http://www.doxpara.com/?p=1279" rel="nofollow" title="Dan Kaminsky's blog">security implications</a> and hasn't been implemented yet. Good luck finding a solution to your scenario.</p>
http://stackoverflow.com/questions/35120/image-processing-in-silverlight-2/859504#8595041Answer by Jason Prado for Image processing in Silverlight 2Jason Prado2009-05-13T18:13:17Z2009-05-13T18:13:17Z<p>There is first-class support for bitmap surfaces in Silverlight 3: <a href="http://blogs.msdn.com/kaevans/archive/2009/03/20/some-silverlight-3-goodness-using-writeablebitmap.aspx" rel="nofollow">http://blogs.msdn.com/kaevans/archive/2009/03/20/some-silverlight-3-goodness-using-writeablebitmap.aspx</a></p>
http://stackoverflow.com/questions/854490/silverlight-project-expression-blend/859484#8594840Answer by Jason Prado for Silverlight Project -Expression BlendJason Prado2009-05-13T18:09:36Z2009-05-13T18:09:36Z<p>This is now possible in Silverlight 3, the beta of which shipped a few months ago. WPF's BitmapEffects were deemed too slow to port over, but there are Effects. Two are builtin-- BlurEffect and DropShadowEffect. Also, you can write your own pixel shaders in HLSL just like you can in WPF to achieve a broad range of effects.</p>
<p>Some links:
Expression Blend 3 Preview: <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=A04AA0AE-87BE-4201-A65E-E792859122FC&displaylang=en" rel="nofollow">http://www.microsoft.com/downloads/details.aspx?FamilyID=A04AA0AE-87BE-4201-A65E-E792859122FC&displaylang=en</a></p>
<p>Some ShaderEffects that run in either WPF or Silverlight: <a href="http://www.codeplex.com/wpffx/" rel="nofollow">http://www.codeplex.com/wpffx/</a></p>
<p>Silverlight 3 Beta: <a href="http://silverlight.net/getstarted/silverlight3/default.aspx" rel="nofollow">http://silverlight.net/getstarted/silverlight3/default.aspx</a></p>