Re: ASMX vs SVC basicHtpBinding

2013-12-17 Thread Shane Nall
WCF is a lot simpler to configure than it used to be especially now with the new protocolMapping element to define the server side endpoints. Agreed ASMX is legacy but WCF still has a part to play in SOA… I think of Web API is just that an API to expose your services. Consider the scenario

Re: out of memory..urgent

2013-09-09 Thread Shane Nall
You should consider working with streams and a fixed buffer size rather than the encoding the whole thing at once. Cheers, Shane On 10/09/2013, at 1:04 PM, anthonyatsmall...@mail.com wrote: Getting out of memory exception when I try to Dim s as string Dim b() as Byte

Re: Server-side data to JavaScript

2013-07-10 Thread Shane Nall
Hi Greg, WebAPI and Handlebars. Cheers, Shane On 11/07/2013, at 10:57 AM, Greg Keogh g...@mira.net wrote: Folks, on Tuesday I managed to use jQuery 1.10 in a static html page to simulate an interactive product picker. As you fiddled controls the price would adjust accordingly. My

Re: Anyone using Prism?

2011-08-25 Thread Shane Nall
You might want to look at part 2 http://philipm.at/2011/0819/ On 25 August 2011 13:50, Jake Ginnivan jake.ginni...@readify.net wrote: Quite good timing actually, here is a post which backs up my point about staying away from unity if you want a well performing app: ** **

Re: Secure FTP

2010-11-21 Thread Shane Nall
Hi, FTPS is piece of cake using... System.Net.FtpWebRequest FtpWebResponse For SSL obviously you need to set the EnableSsl to true... but the trick is that you need to add a callback handler for the Certificate Validation. ServicePointManager.ServerCertificateValidationCallback =