Changeset 578

Show
Ignore:
Timestamp:
05/29/08 09:53:56 (6 months ago)
Author:
brian.sheely
Message:

Scott Cantor stated that init should only be called on SAMLConfig and not both

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • Cpp-cs/OpenSAMLWrapper/trunk/SAMLWrapper/SAMLWrapper.cpp

    r562 r578  
    3737void InitializeSAMLWrapper() { 
    3838    SAMLConfig::getConfig().init(); 
    39     XMLToolingConfig::getConfig().init(); 
    4039 
    4140    statusCodes_m["urn:oasis:names:tc:SAML:2.0:status:Success"] = 0; 
     
    8988void CleanupSAMLWrapper() { 
    9089    SAMLConfig::getConfig().term(); 
    91     /* Developer's Note: The following line which should be called results in an uncaught exception */ 
    92     //XMLToolingConfig::getConfig().term(); 
    9390} 
    9491