[Zope-Checkins] CVS: Zope3/lib/python/Zope/Server - PublisherServers.py:1.1.2.8.4.2

Stephan Richter srichter@cbu.edu
Wed, 13 Mar 2002 05:57:37 -0500


Update of /cvs-repository/Zope3/lib/python/Zope/Server
In directory cvs.zope.org:/tmp/cvs-serv11175/lib/python/Zope/Server

Modified Files:
      Tag: srichter-OFS_Formulator-branch
	PublisherServers.py 
Log Message:
- Added some more tests. Won;t do more, since Publisher is being redesigned
  later this week. I will wait until then.

- Added preliminary SOAP support, so we can test Mozilla's SOAP 
  capabilities. Unfortunately, soaplib is very old; I will look into using 
  SOAPpy instead. It seems fairly complete.


=== Zope3/lib/python/Zope/Server/PublisherServers.py 1.1.2.8.4.1 => 1.1.2.8.4.2 ===
     """
     SERVER_IDENT = 'Zope.Server.HTTPServer (XML-RPC)'
+
+
+class PublisherSOAPServer(PublisherHTTPServer):
+    """
+    Even though the SOAP server is just an HTTP server, we want the
+    logger to know that we deal with a special version of an HTTP server.
+    """
+    SERVER_IDENT = 'Zope.Server.HTTPServer (SOAP)'