source: OpenRLabs-Git/deploy/rlabs-docker/web2py-rlabs/gluon/contrib/pysimplesoap/plugins.py

main
Last change on this file was 42bd667, checked in by David Fuertes <dfuertes@…>, 4 years ago

Historial Limpio

  • Property mode set to 100755
File size: 998 bytes
Line 
1#!/usr/bin/python
2# -*- coding: utf-8 -*-
3# This program is free software; you can redistribute it and/or modify
4# it under the terms of the GNU Lesser General Public License as published by
5# the Free Software Foundation; either version 3, or (at your option) any
6# later version.
7#
8# This program is distributed in the hope that it will be useful, but
9# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY
10# or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
11# for more details.
12
13"""Pythonic simple SOAP Client plugins"""
14
15
16from __future__ import unicode_literals
17import sys
18if sys.version > '3':
19    basestring = unicode = str
20
21import datetime
22from decimal import Decimal
23import os
24import logging
25import hashlib
26import warnings
27
28
29from . import __author__, __copyright__, __license__, __version__
30
31
32class WSSE:
33
34    def preprocess(self, request):
35        header = request('Header')
36       
37   
38    def postprocess(response):
39        return response
Note: See TracBrowser for help on using the repository browser.