Changeset f069052 for fedd/fedd/split.py


Ignore:
Timestamp:
Nov 30, 2008 5:38:16 PM (15 years ago)
Author:
Ted Faber <faber@…>
Branches:
axis_example, compt_changes, info-ops, master, version-1.30, version-2.00, version-3.01, version-3.02
Children:
05191a6
Parents:
edbc841
Message:

Two changes. Get allow_any_CA checking to work (i.e., self signed certs or
certs signed by an unknown entity) and put more of the ZSI-dependent stuff into
the hidden parts or remote_services. Now those routines will find all the
relevant classes and part names from the naming conventions.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • fedd/fedd/split.py

    redbc841 rf069052  
    66import logging
    77
    8 from fedd_services import *
    9 from fedd_internal_services import *
    108from util import *
    119from fedid import fedid
     
    4543        # Dispatch tables
    4644        self.soap_services = {\
    47                 'Ns2Split': soap_handler(\
    48                         Ns2SplitRequestMessage.typecode,
    49                         getattr(self, "run_splitter"),
    50                         Ns2SplitResponseMessage,
    51                         "Ns2SplitResponseBody"),
     45                'Ns2Split': soap_handler("Ns2Split", self.run_splitter),
    5246        }
    5347
    5448        self.xmlrpc_services = {\
    55                 'Ns2Split': xmlrpc_handler(\
    56                         getattr(self, "run_splitter"),
    57                         "Ns2SplitResponseBody"),
     49                'Ns2Split': xmlrpc_handler('Ns2Split', self.run_splitter),
    5850        }
    5951
Note: See TracChangeset for help on using the changeset viewer.