summaryrefslogtreecommitdiffstats
path: root/lasso/id-wsf/wsf_profile.c
Commit message (Collapse)AuthorAgeFilesLines
* fixed segfault on invalid input passed toFrederic Peters2007-04-041-0/+4
| | | | lasso_wsf_profile_process_soap_response_msg
* replace some xmlFree that should have been g_free and added some xmlFreeFrederic Peters2007-01-051-2/+2
| | | | where required.
* even more memory leak trackingFrederic Peters2007-01-051-4/+11
|
* fixed some memory leaks (tracked with valgrind)Frederic Peters2007-01-051-7/+9
|
* memory management, avoid leaking xmlDoc*Frederic Peters2007-01-051-2/+5
|
* misc fixes for 1) memory leaks around XPath usage and 2) potential segfaultsFrederic Peters2007-01-031-13/+53
| | | | from untested pointers
* coding style improvementsFrederic Peters2006-12-281-26/+27
|
* replaced remaining LASSO_ERROR_UNDEFINED by appropriate error codesFrederic Peters2006-12-281-31/+36
|
* coding style: added spaces at appropriate placesFrederic Peters2006-12-271-6/+5
|
* fixing a bunch of undeclared functions and possible segfaults; also removedFrederic Peters2006-12-271-56/+70
| | | | some debugging printf. (ID-WSF is now warning-free (but char signedness))
* random fixage of warning displayed with -WallFrederic Peters2006-11-141-45/+46
|
* downcast soapenvelope to LassoNodeFrederic Peters2006-11-141-1/+1
|
* Replaced return -1 with return LASSO_ERROR_UNDEFINEDDamien Laniel2006-11-021-19/+19
|
* note about memory leakFrederic Peters2006-10-281-0/+1
|
* fixed variable type; how badFrederic Peters2006-03-041-1/+1
|
* AP now verify SP signature.Nicolas Clapies2005-12-061-141/+543
|
* Little modif about SAML authentication verificationNicolas Clapies2005-11-151-5/+9
|
* Check if a soap fault is found in response message. If no fault found, then ↵Nicolas Clapies2005-11-151-6/+3
| | | | set response.
* Added check by AP if it wants X509 authentication of SP. Does not work yet, ↵Nicolas Clapies2005-10-061-5/+27
| | | | need to fix retrieving public key from credential before.
* Added support of principal state : now it is possible a SP informs an AP if ↵Nicolas Clapies2005-10-061-2/+119
| | | | principal is considered to be online or not. To tell principal is online, just add a call to lasso_wsf_profile_set_principal_online() after lasso_data_service_init_query(), and offline a call to lasso_wsf_profile_set_principal_offline(). At AP, to known if principal is to be considered online just test if lasso_wsf_profile_principal_is_online() returns TRUE or FALSE.
* Added private function lasso_wsf_profile_has_saml_authentication() to know ↵Nicolas Clapies2005-09-301-0/+24
| | | | if a saml authentication mecanism exists in current description.
* Updated comments.Nicolas Clapies2005-09-301-5/+4
|
* Added reference binding when signing soap messages.Nicolas Clapies2005-09-301-19/+91
|
* Added a g_object_ref on private attribute description in ↵Nicolas Clapies2005-09-301-1/+1
| | | | lasso_wsf_profile_set_description().
* If a service found in server object, retrieve needed description depending ↵Nicolas Clapies2005-09-301-60/+102
| | | | on an optional security mechanism id.lasso/id-wsf/data_service.c
* Fixed local variable declaration.Nicolas Clapies2005-09-281-1/+2
|
* Added x509 certificate file tests.Nicolas Clapies2005-09-281-6/+7
|
* Added a first support of soap binding Fault wsf response.Nicolas Clapies2005-09-271-9/+36
|
* Added X509 authentication mecanism.Nicolas Clapies2005-09-271-42/+361
|
* Ordered methods.Nicolas Clapies2005-09-201-32/+31
|
* First attempt to implement authentication security mechanism. Only SAML is ↵Nicolas Clapies2005-09-191-3/+80
| | | | implemented and it needs improvement.
* added session and identity to LassoWsfProfile, much like LassoProfile. ExposedFrederic Peters2005-08-081-0/+117
| | | | them via SWIG inherited into LassoDiscovery object
* Set response attribute when processing WSF SOAP response message.Nicolas Clapies2005-05-161-3/+4
|
* Added WSF SOAP binding layer.Nicolas Clapies2005-05-161-3/+81
|
* Added function to build generic liberty wsf soap envelope.Nicolas Clapies2005-03-211-0/+30
|
* Fixed dump of attribute.Nicolas Clapies2005-03-181-2/+2
|
* Added soap envelope object to embed specific data from ↵Nicolas Clapies2005-03-021-2/+22
| | | | id-wsf.lasso/id-wsf/authentication.c
* removed remaining compiler warning (unused variable) from id-wsf/Frederic Peters2005-02-051-8/+2
|
* Updated Copyright and authors.Emmanuel Raviart2005-01-221-3/+2
|
* generate xmlsec signatures in get_xmlNode; this should allow envelopes (inFrederic Peters2004-12-281-8/+4
| | | | LECP) to work properly.
* Added missing header.Nicolas Clapies2004-12-221-1/+1
|
* Updated lasso_wsf_profile_build_*_msg() : now they only set msg_body class's ↵Nicolas Clapies2004-12-101-46/+0
| | | | attribute with a soap message (request / response).
* overridden spelling fix caused alignment wreckageFrederic Peters2004-12-101-1/+1
|
* The past participle of "to override" is overridden.Emmanuel Raviart2004-12-071-1/+1
| | | | see http://en.wiktionary.org/wiki/Overridden
* Removed unused old code.Nicolas Clapies2004-12-071-40/+2
|
* Added a first support of id-wsf high level. Only the base class is defined : ↵Nicolas Clapies2004-11-301-0/+197
LassoWsfProfile is intended to be inherited by future service classes. It is still very incomplete.