Re: SOAP Server
Re: SOAP Server
- Subject: Re: SOAP Server
- From: Jake Repp <email@hidden>
- Date: Mon, 30 Dec 2002 10:16:10 -0800
Good work! You may just take a look at the architecture docs for Axis
at the xml.apache.org site. You might find their chain and pivot method
to add a clear data path to your XML flow. A pure Objective-C Soap
server available for embedding would be great. Also note that you can
use the CFXML parser to create a SAX stream of events which will cut
down on the amount of memory usage that each request will take,
especially if you're only looking for certain elements.
-jake
On Sunday, December 22, 2002, at 06:51 AM, Jaime Magiera wrote:
Thanks for all the responses.
I stayed up real late last night kicking out some code. So far, my
"plain vanilla" cocoa solution is working out OK. I've got an Obj-C
class "SOAPParser.m" that returns an NSDictionary of the request
values:
<dict>
<method>someSOAPMethod</method>
<parameters>
<param1>Foo</param1>
<param2>Bar</param2>
</parameters>
</dict>
I've only run some really simple requests through it. More complex
requests will likely break it at this point, but hey, it's a start.
Jaime
On Sunday, December 22, 2002, at 12:29 AM, Bob Frank wrote:
On Saturday, December 21, 2002, at 01:34 PM, Jaime Magiera wrote:
I'm in the process of creating a SOAP Server in Objective-C. It
seems that the WebServices stuff is all client . . . . .
I think that is correct. I'm under the impression that WebObjects is
the preferred server environment for WebServices and SOAP (its in
that "other" language :-). It includes the Apache Axis SOAP stack
which is an excellent SOAP stack, IMHO.
BTW: there are lots of SOAP stacks that you should be easily able to
integrate with ObjC (including, Perl, Python, C, etc..)
Good Luck,
Bob
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.