On Apr 24, 2007, at 6:43 AM, [EMAIL PROTECTED] wrote: > Has there been any success creating SOAP web services with pylons? I'm > working on a project that would require a SOAP interface and I'd like > to use ZSI but it seems to only have CGI and mod_python handlers. > > Has anyone ever done this? How hard would it be to create a Pylons > handler for ZSI? Any tips?
I believe optio came out with a SOAP WSGI service: http://trac.optio.webfactional.com/ As it's just a WSGI app, you can mount it in Pylons as a Pylons controller, just make a controller for it, then replace the class name with the instantiated WSGI app. You'll also need a map setup to route to it like so: map.connect('soap/*path_info', controller='soap') Assuming you made a controller called soap. HTH, Ben --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/pylons-discuss?hl=en -~----------~----~----~----~------~----~------~--~---
