Re: Need HTTP Server & JSON recommendations

2010-12-06 Thread Todd Freese
Thank you all for your recommendations! It is a huge help in getting me going in the right direction! Todd __ This email has been scanned by the MessageLabs Email Security System. For more information please visit http://www.mes

Re: Need HTTP Server & JSON recommendations

2010-12-06 Thread Dru Satori
Though there are several options to do this within your application from scratch, I think it is a bad idea. Security is an ever increasing problem, and rolling your own httpd server is kinda risky when there are ready made options out there. Because of this, I embed the open source and commerc

Fwd: Need HTTP Server & JSON recommendations

2010-12-06 Thread jonat...@mugginsoft.com
On 6 Dec 2010, at 17:21, Todd Freese wrote: > I have an existing CoreData app that now needs to share it's data via JSON. > Can anyone recommend a framework or sample code that would include a simple > HTTP server? I googled and found a bunch of JSON frameworks which look great. > The part I n

Re: Need HTTP Server & JSON recommendations

2010-12-06 Thread Bertrand Landry-Hetu
The only one I know is CocoaHTTPServer project that is hosted here: http://code.google.com/p/cocoahttpserver/ . On Mon, Dec 6, 2010 at 12:21 PM, Todd Freese wrote: > I have an existing CoreData app that now needs to share it's data via JSON. > Can anyone recommend a framework or sample code that

Re: Need HTTP Server & JSON recommendations

2010-12-06 Thread Ken Worley
There is a section in The iPhone Developer's Cookbook by Erica Sadun on building a simple web-based server for iPhone (chapter 13, page 582). All the same source from the book is available on github.com. Do a search there for "iPhone Developer's Cookbook" and you should be able to locate it - th

Need HTTP Server & JSON recommendations

2010-12-06 Thread Todd Freese
I have an existing CoreData app that now needs to share it's data via JSON. Can anyone recommend a framework or sample code that would include a simple HTTP server? I googled and found a bunch of JSON frameworks which look great. The part I need help with is the HTTP server. Any suggestions or