From: <ps...@us...> - 2008-12-10 07:57:17
|
Revision: 1471 http://pywebsvcs.svn.sourceforge.net/pywebsvcs/?rev=1471&view=rev Author: psha Date: 2008-12-10 07:57:09 +0000 (Wed, 10 Dec 2008) Log Message: ----------- Add WS-Addressing namespace http://www.w3.org/2005/08/addressing/ as WSA200508 Modified Paths: -------------- trunk/wstools/Namespaces.py Modified: trunk/wstools/Namespaces.py =================================================================== --- trunk/wstools/Namespaces.py 2008-11-11 22:14:51 UTC (rev 1470) +++ trunk/wstools/Namespaces.py 2008-12-10 07:57:09 UTC (rev 1471) @@ -159,6 +159,11 @@ LIFETIME = "http://www.ibm.com/xmlns/stdwip/web-services/WS-ResourceLifetime" +class WSA200508: + ADDRESS = "http://www.w3.org/2005/08/addressing" + ANONYMOUS = "%s/anonymous" %ADDRESS + FAULT = "%s/fault" %ADDRESS + class WSA200408: ADDRESS = "http://schemas.xmlsoap.org/ws/2004/08/addressing" ANONYMOUS = "%s/role/anonymous" %ADDRESS @@ -176,7 +181,7 @@ WSA = WSA200408 -WSA_LIST = (WSA200408, WSA200403, WSA200303) +WSA_LIST = (WSA200508, WSA200408, WSA200403, WSA200303) class WSP: POLICY = "http://schemas.xmlsoap.org/ws/2002/12/policy" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |