summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* ignore generated filesFrederic Peters2004-12-145-0/+43
|
* ignore html renditionFrederic Peters2004-12-141-0/+2
|
* process files taken from lasso 0.5 (not uptodate)Frederic Peters2004-12-142-0/+136
|
* got uptodate documentation about single sign on (I think)Frederic Peters2004-12-144-86/+135
|
* [API Change] For consistency with the other profiles, remote_providerID hasFrederic Peters2004-12-145-30/+32
| | | | | been moved from build_authn_request_msg to init_authn_request in both Single Sign-On and LECP profiles. [details on lasso-devel@]
* error codes handling in LassoLoginFrederic Peters2004-12-131-37/+20
|
* use XmlSnippet for LassoLogout dump/restoreFrederic Peters2004-12-132-50/+22
|
* reenabled lasso_session_destroy()Frederic Peters2004-12-131-1/+1
|
* more error code harmonization.Frederic Peters2004-12-135-27/+24
|
* sign AuthnResponse and harmonous use of LASSO_PROFILE_ERROR_INVALID_MSGFrederic Peters2004-12-131-15/+14
|
* removed obsolete commentFrederic Peters2004-12-131-1/+0
|
* harmonized remote_provider tests (check and error code set toFrederic Peters2004-12-135-27/+26
| | | | LASSO_SERVER_ERROR_PROVIDER_NOT_FOUND)
* replaced error_code macro with a function since that macro didn't work withFrederic Peters2004-12-132-9/+20
| | | | gcc 2.95
* error message for LASSO_SERVER_ERROR_ADD_PROVIDER_FAILEDFrederic Peters2004-12-131-0/+2
|
* removed trailing ; in macroFrederic Peters2004-12-131-1/+1
|
* dealing with errors; now like this:Frederic Peters2004-12-138-43/+51
| | | | return error_code(G_LOG_LEVEL_CRITICAL, LASSO_SERVER_ERROR_ADD_PROVIDER_FAILED);
* properly sign soap messages in name identifier mapping profile.Frederic Peters2004-12-121-8/+4
|
* got top-of-file license spaced the same way as in other files (+ fixed editorFrederic Peters2004-12-124-8/+8
| | | | typo)
* removed error message when java was not foundFrederic Peters2004-12-121-1/+1
|
* Added LassoDiscovery classValery Febvre2004-12-103-0/+588
|
* Added lasso_server_add_service() methodValery Febvre2004-12-102-2/+57
|
* Added LassoService classValery Febvre2004-12-103-0/+210
|
* Fixed the attribute name of the dump versionValery Febvre2004-12-101-1/+1
|
* Added lasso_personal_profile_service_add_data() method : it allows to add ↵Nicolas Clapies2004-12-102-17/+28
| | | | response elements corresponding to the requested attribute values.
* Removed params of constructor : id and itemIDRef are not required attributes.Nicolas Clapies2004-12-102-10/+2
|
* Added support of MsgContact PP service.Nicolas Clapies2004-12-101-0/+2
|
* Initial version : support of personal profile msg contact. It is very ↵Nicolas Clapies2004-12-102-0/+187
| | | | experimental and only supports msg account and msg provider part.
* Removed useless LassoDiscoResourceIDGroup classValery Febvre2004-12-103-168/+0
|
* Added back xmlsec signature check (and disabled it in name identifier mappingFrederic Peters2004-12-106-128/+204
| | | | | | | profile since it is buggy there). The signature check requires another call to xmlParseMemory; this makes them 3 per SOAP message (sign check + lasso_profile_get_request_type_from_soap_msg and lasso_node_init_from_message). I'll think further about this.
* Fixed type mistake in snippets of LassoDstQueryItem.Nicolas Clapies2004-12-101-1/+1
|
* Added support of DST modify / modify response.Nicolas Clapies2004-12-101-0/+8
|
* Replaced LassoDiscoResourceIDGroup with old ResourceID and EncryptedResourceID.Nicolas Clapies2004-12-103-5/+9
|
* Updated lasso_personal_profile_service_init_query() method : now it takes a ↵Nicolas Clapies2004-12-102-61/+83
| | | | LassoDiscoResourceOffering* resourceOfferring, a LassoDiscoDescription* description and a char* select, init a Query object, set the soap url from ResourceOffering, and return a QueryItem* to optionaly set attributes. Now it is possible to add extra QueryItems with lasso_personal_profile_service_add_query_item(). It returns the new QueryItem'pointer to set optional attributes;
* Removed ResourceOffering and ResourceIDGroup class's attributes. Only keep ↵Nicolas Clapies2004-12-102-57/+13
| | | | data and queryItem attributes. Removed old unused private methods (dispose() and finalize() )
* Updated lasso_wsf_profile_build_*_msg() : now they only set msg_body class's ↵Nicolas Clapies2004-12-102-47/+0
| | | | attribute with a soap message (request / response).
* Added DST Modify part level 1.Nicolas Clapies2004-12-108-0/+843
|
* overridden spelling fix caused alignment wreckageFrederic Peters2004-12-1012-12/+12
|
* removed XmlSnippetObsolete, no longer used anywhere.Frederic Peters2004-12-102-105/+21
| | | | | lasso_node_build_xmlNode_from_snippets made static and documented some new functions.
* reenabled signature checking on query strings (xml messages still to do)Frederic Peters2004-12-107-14/+26
|
* moved NameRegistration to XmlSnippetFrederic Peters2004-12-092-42/+15
|
* removed unnecessary namespace declarationFrederic Peters2004-12-091-1/+0
|
* removed unnecessary private_data in LassoFederation; consequence beingFrederic Peters2004-12-092-62/+2
| | | | instance_init, class_init, dispose and finalise have also been removed.
* removed struct LassoLoginPrivate declarationFrederic Peters2004-12-091-2/+0
|
* Moved LassoLogin to XmlSnippet; not completely since an enum is converted inFrederic Peters2004-12-091-57/+16
| | | | | | string and I'm not sure it is a good idea to 1) store them as integer or 2) adds the mapping value->string to xml.c. Also removed unused LassoLoginPrivate variable/struct/
* use xml snippet in LassoProfile; better faster stronger.Frederic Peters2004-12-092-87/+18
|
* don't sign query if not asked to; and fixed SNIPPET_NODE_IN_CHILD supportFrederic Peters2004-12-091-2/+12
|
* Removed code with ResourceIDGroup in ↵Nicolas Clapies2004-12-091-2/+2
| | | | lasso_personal_profile_service_init_query() : will be updated soon.
* Yet another modification about ResourceID and EncrytpedResourceID elementsValery Febvre2004-12-096-32/+53
|
* force role as service provider in lasso_login_build_authn_request_msgFrederic Peters2004-12-081-2/+8
| | | | (closes: 382)
* forgot to get query when AuthnRequestsSigned was not setFrederic Peters2004-12-081-0/+3
|