Re: SOAP Server library/framework for Objective C

2015-09-11 Thread Maxthon Chan
Plug: I am writing a general-purpose FastCGI framework, CGIKit, for Objective-C, and couple this to any FastCGI-capable Web server (nginx, Apache with mod_fcgid even IIS) you get a complete Web stack. Also CGIKit is more likely than not to be able to be ported to Linux. CGIKit: https://github.c

Re: SOAP Server library/framework for Objective C

2015-09-11 Thread Nick
Yes, there's that and also a csoap library (written in C), now figuring what would be a better way - either implement the SOAP part on top of the CocoaHTTPServer or wrap the CSoap in Objective-C 2015-09-11 7:07 GMT+03:00 Jens Alfke : > Well, CocoaHTTPServer is a general purpose HTTP server librar

Re: SOAP Server library/framework for Objective C

2015-09-10 Thread Jens Alfke
Well, CocoaHTTPServer is a general purpose HTTP server library. Then you can hook up a handler, use NSXML to parse, and then interpret that "Simple" SOAP schema :) —Jens > On Sep 10, 2015, at 5:46 PM, Nick wrote: > > Hi Jens, > Yes, unfortunately there's client software that expects my app t

Re: SOAP Server library/framework for Objective C

2015-09-10 Thread Nick
Hi Jens, Yes, unfortunately there's client software that expects my app to work as SOAP server... I would surely use something different if I could. This is weird though. There are tons of SOAP client libraries and frameworks, and apparently none server ones... Looks like I will have to implement

Re: SOAP Server library/framework for Objective C

2015-09-10 Thread Jens Alfke
> On Sep 10, 2015, at 4:25 PM, Nick wrote: > > Basically I would like to have other client apps "talk" to my Mac > application using SOAP. Do you have an existing dependency that requires using SOAP? Because otherwise I’d recommend something more modern and, well, simple, like WebSockets. SOAP

SOAP Server library/framework for Objective C

2015-09-10 Thread Nick
Hello Is there an Objective-C server library for Mac Cocoa apps? (note, not the client library - there are plenty of those). Basically I would like to have other client apps "talk" to my Mac application using SOAP. Thank you ___ Cocoa-dev mailing list