class twisted.web.soap.SOAPPublisher(resource.Resource): (source)
Publish SOAP methods.
By default, publish methods beginning with 'soap_'. If the method has an attribute 'useKeywords', it well get the arguments passed as keyword args.
Class Variable | isLeaf | Signal if this IResource implementor is a "leaf node" or not. If True, getChildWithDefault will not be called on this Resource. |
Class Variable | encoding | Undocumented |
Method | lookupFunction | Lookup published SOAP function. |
Method | render | Handle a SOAP command. |
Method | _methodNotFound | Undocumented |
Method | _gotResult | Undocumented |
Method | _gotError | Undocumented |
Method | _sendResponse | Undocumented |
Inherited from Resource:
Class Variable | server | Undocumented |
Method | __init__ | Initialize. |
Instance Variable | children | Undocumented |
Method | listStaticNames | Undocumented |
Method | listStaticEntities | Undocumented |
Method | listNames | Undocumented |
Method | listEntities | Undocumented |
Method | listDynamicNames | Undocumented |
Method | listDynamicEntities | Undocumented |
Method | getStaticEntity | Undocumented |
Method | getDynamicEntity | Undocumented |
Method | delEntity | Undocumented |
Method | reallyPutEntity | Undocumented |
Method | getChild | Retrieve a 'child' resource from me. |
Method | getChildWithDefault | Retrieve a static or dynamically generated child resource from me. |
Method | getChildForRequest | Undocumented |
Method | putChild | Register a static child. |
Method | render_HEAD | Default handling of HEAD method. |
Signal if this IResource implementor is a "leaf node" or not. If True, getChildWithDefault will not be called on this Resource.
int
)
Lookup published SOAP function.
Override in subclasses. Default behaviour - publish methods starting with soap_.
Returns | callable or None if not found. |
Handle a SOAP command.