conStruct uses the structWSF (both part of the Open Semantic Framework) web services endpoints to operate. == Notes == If you want to be able to use automatic updates for conStruct, you will have to fix a file in the Drupal 6 framework. Because of the uppercase letters used in the current version of conStruct, we have to fix a bug in Drupal that ignore conStruct when come the time to list possible modules to upgrade. Open that file: druapl/includes/install.php Search for that line: ------------- function drupal_get_schema_versions($module) { ------------- Then replace it by these two lines: ------------- function drupal_get_schema_versions($module) { $module = strtolower($module); ------------- Then each time you will use the update.php script, you will see new updates appearing for conStruct modules. Note: the installation script below take care of this modification for you. == Installation == You can install the full Open Semantic Framework stack by using this OSF installation script: http://techwiki.openstructs.org/index.php/Open_Semantic_Framework_Installation Additionally, you can read the full installation manual from the TechWiki: http://techwiki.openstructs.org/index.php/StructWSF_Installation_Guide