Get the content for the soap I{body} node. @param method: A service method. @type method: I{service.Method} @param args: method parameter values @type args: list @param kwargs: Named (keyword) args for the method invoked. @type kwargs: dict
(self, method, args, kwargs)
| 339 | return header |
| 340 | |
| 341 | def bodycontent(self, method, args, kwargs): |
| 342 | """ |
| 343 | Get the content for the soap I{body} node. |
| 344 | @param method: A service method. |
| 345 | @type method: I{service.Method} |
| 346 | @param args: method parameter values |
| 347 | @type args: list |
| 348 | @param kwargs: Named (keyword) args for the method invoked. |
| 349 | @type kwargs: dict |
| 350 | @return: The xml content for the <body/> |
| 351 | @rtype: [L{Element},..] |
| 352 | """ |
| 353 | raise Exception('not implemented') |
| 354 | |
| 355 | def headercontent(self, method): |
| 356 | """ |