summaryrefslogtreecommitdiffstats
path: root/lasso/id-wsf
Commit message (Collapse)AuthorAgeFilesLines
* Removed old comment.Nicolas Clapies2005-01-291-4/+0
|
* Removed optional option parameter in lasso_discovery_add_insert_entry().Nicolas Clapies2005-01-292-13/+4
|
* Merged wsf-api-change-not-for-0-6 branch with trunk.Emmanuel Raviart2005-01-273-55/+31
|
* Updated Copyright and authors.Emmanuel Raviart2005-01-228-24/+16
|
* Removed class LassoAbstractService.Nicolas Clapies2005-01-133-173/+0
|
* Removed specific class LassoPersonalProfileService. Added generic web ↵Nicolas Clapies2005-01-134-222/+209
| | | | service class LassoProfileService.
* removed uncommited profile_service.[ch] from Makefile.amFrederic Peters2005-01-121-2/+0
|
* Added support of interaction profile service.Nicolas Clapies2005-01-121-0/+4
|
* Started to implement interaction service profile.Nicolas Clapies2005-01-122-0/+221
|
* removed individual debug() statements in dispose() and finalize(); replaced byFrederic Peters2005-01-041-9/+3
| | | | | a single statement in xml/xml.c; surrouded that one by LASSO_DEBUG so --enable-debugging prints those memory-management debugging data.
* Removed second and third parameters of lasso_node_dump since @encoding isFrederic Peters2005-01-011-1/+1
| | | | always UTF-8 and @format is always to indent XML in lasso dumps.
* 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
|
* Added missing headers.Nicolas Clapies2004-12-221-0/+3
|
* Added set of request in lasso_personal_profile_process_query_msg() and ↵Nicolas Clapies2004-12-221-1/+7
| | | | lasso_personal_profile_process_modify_msg().
* Removed use of GList for Options. Use only a Options pointer.Nicolas Clapies2004-12-222-9/+12
|
* Fixed call to constructor of LassoDiscoQueryResponse and ↵Nicolas Clapies2004-12-211-2/+2
| | | | LassoDiscoModifyResponse.
* Fixed method declarations : ↵Nicolas Clapies2004-12-201-5/+6
| | | | lasso_personal_profile_service_process_query_msg() and lasso_personal_profile_service_process_query_msg_response().
* Removed GList type in lasso_discovery_add_insert_entry() params. Instead use ↵Nicolas Clapies2004-12-202-14/+42
| | | | simple type pointer until list support is implemented in swig binding. Added missing method lasso_discovery_process_query_response_msg().
* Added differentiation between creating xmlnode for lasso use (the _dumpFrederic Peters2004-12-191-2/+2
| | | | | | | | | | | | functions) and creating xmlnode for the wire (export_to_soap...). This was necessary to keep track of private_key_file to use on an Assertion while it was kept in a lasso session dump and restored later. This means the get_xmlNode functions have now a second parameter, gboolean lasso_dump, TRUE when dumping for lasso internal use. On the bright side assertions are now signed (that signature is not yet checked).
* Isolated CFLAGS to be used when compiling Lasso in LASSO_CORE_CFLAGS; don't useFrederic Peters2004-12-171-4/+2
| | | | | those when compiling tests in order to catch errors in headers. Also moved a few things in header files; need more thinking about that.
* pointers are %p in format strings, not %xFrederic Peters2004-12-151-2/+2
|
* Reordered function declarations. Added check of server param.Nicolas Clapies2004-12-152-6/+6
|
* Added support of modify request from a SP to AP : updated element's class in ↵Nicolas Clapies2004-12-153-13/+149
| | | | level 1 (Modify and ModifyResponse) and implemented modify request in level 2 id wsf.
* fixed some missing or wrong prototype declarationsFrederic Peters2004-12-143-10/+13
|
* fixed function declared as returning int that didn't return anythingFrederic Peters2004-12-141-1/+1
|
* got top-of-file license spaced the same way as in other files (+ fixed editorFrederic Peters2004-12-122-4/+4
| | | | typo)
* Added LassoDiscovery classValery Febvre2004-12-103-0/+588
|
* 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.
* 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).
* overridden spelling fix caused alignment wreckageFrederic Peters2004-12-103-3/+3
|
* Removed code with ResourceIDGroup in ↵Nicolas Clapies2004-12-091-2/+2
| | | | lasso_personal_profile_service_init_query() : will be updated soon.
* Fixed support of ResourceIDGroup : updated class of level 1 and id-wsf with ↵Nicolas Clapies2004-12-082-21/+11
| | | | this new class.
* Removed process of ResourceOffering param. Need to be reactivated when ↵Nicolas Clapies2004-12-081-7/+7
| | | | ResourceID process in level 1 will be completed.
* The past participle of "to override" is overridden.Emmanuel Raviart2004-12-073-3/+3
| | | | see http://en.wiktionary.org/wiki/Overridden
* Replaced template_service.* with abstract_service.*Nicolas Clapies2004-12-071-1/+5
|
* Initial version : class to manage Personal profile service. Currently, only ↵Nicolas Clapies2004-12-072-0/+312
| | | | support initiating, processing and building of Query and QueryResponse messages.
* Initial version : abstract class to store ResourceID, ResourceOfferings, ↵Nicolas Clapies2004-12-072-0/+212
| | | | QueryItem.
* Removed unused old code.Nicolas Clapies2004-12-071-40/+2
|
* cvs ignore for id-wsf/ filesFrederic Peters2004-12-031-0/+7
|
* Added a first support of id-wsf high level. Only the base class is defined : ↵Nicolas Clapies2004-11-303-0/+295
LassoWsfProfile is intended to be inherited by future service classes. It is still very incomplete.