XML-RPC Server Using HttpListener- January 18, 2007 I've had a handful of requests from people who want to use the .Net System.Net.HttpListener class as the basis for an XML-RPC server implemented using XML-RPC.NET. Acquiring the request synchronously via the HttpListener GetContext method, the top level code could look like this: using System; using System.IO; using System.Net; using CookComputing.XmlRpc; class _ public static void Main(string prefixes) HttpListener listener = new HttpListener(); ...http://www.cookcomputing.com/blog/archives/000572.html Object of Desire- January 11, 2007 The iPhone . © David Phamhttp://www.cookcomputing.com/blog/archives/000568.html Functional Style Regex Engine in C- January 4, 2007 Wesner Moise's recent post Hard Problems, Simple Solutions speculates about implementing regular expression matching using a functional style. He points to a regular expression engine in 14 lines of Python and suggests this could be ported to C using iterators and anonymous functions. Wesner writes that the regular expression would be composed functionally through a string: re = Sequence( term1, Plus( term2, Alternate( term3, term4 )), term 5) and the results would be...http://www.cookcomputing.com/blog/archives/000564.html |