Changeset 9
- Timestamp:
- 02/12/07 08:56:49 (2 years ago)
- Files:
-
- trunk/TGWebServices.egg-info (deleted)
- trunk/setup.py (modified) (1 diff)
- trunk/tgwebservices/soap.py (modified) (1 diff)
- trunk/tgwebservices/templates/soap.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/setup.py
r5 r9 17 17 18 18 install_requires = [ 19 "TurboGears >= 1.0 b1",19 "TurboGears >= 1.0", 20 20 "Genshi >= 0.3.4" 21 21 ], trunk/tgwebservices/soap.py
r1 r9 211 211 output = method(**params) 212 212 data = dict(baseURL=self.wscontroller._ws_baseURL, 213 tns=self.tns, 214 typenamespace=self.typenamespace, 213 215 soap_body=soap_body, output=output, 214 216 methodname=methodname, trunk/tgwebservices/templates/soap.html
r1 r9 1 1 <soapenv:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:py="http://genshi.edgewall.org/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 2 py:attrs="{'xmlns' : baseURL+'soap/types'}">2 py:attrs="{'xmlns' : typenamespace}"> 3 3 <soapenv:Body> 4 4 ${soap_body(methodname, function_info, output)}
