mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-02-20 13:46:52 +01:00
* Qual: Enable & fix or ignore Invalid DimOffset # Qual: Enable & fix or ignore Invalid DimOffset The Invalid DimOffset notices occur when array keys are defined and the index used is not amongst the known array keys. This PR enables these notices and fixes array definitions when needed, or ignores the notices locally if it's a false positive, or in the baseline.txt when it does not seem to be a false positive so that it can be fixed later * Nullable object typing in function signature not ok for 7.0/8.4 Can't user '?User' as argument type for PHP7.0 which is required by PHP8.4. Therefore, removing the typing specification in the function definition --------- Co-authored-by: Laurent Destailleur <eldy@destailleur.fr> |
||
|---|---|---|
| .. | ||
| admin | ||
| demo_wsclient_actioncomm.php-NORUN | ||
| demo_wsclient_category.php-NORUN | ||
| demo_wsclient_invoice.php-NORUN | ||
| demo_wsclient_order.php-NORUN | ||
| demo_wsclient_other.php-NORUN | ||
| demo_wsclient_productorservice.php-NORUN | ||
| demo_wsclient_project.php-NORUN | ||
| demo_wsclient_thirdparty.php-NORUN | ||
| index.php | ||
| README.md | ||
| server_actioncomm.php | ||
| server_category.php | ||
| server_contact.php | ||
| server_invoice.php | ||
| server_order.php | ||
| server_other.php | ||
| server_payment.php | ||
| server_productorservice.php | ||
| server_project.php | ||
| server_supplier_invoice.php | ||
| server_thirdparty.php | ||
| server_user.php | ||
API SOAP howto
This directory contains files to make Dolibarr a server of SOAP Web Services.
WARNING: It is highly recommended to use the REST APIs instead of SOAP APIs: You will find more API, faster and easier to use in the the module REST API than into this module.
Explore the api
- To see all Webservices provided by Dolibarr, just call the following Url: http://mydomain.com/mydolibarr/webservices/admin/index.php
Access to the API
- WSDL file of a Web service provided by Dolibarr can be obtained at: http://mydomain.com/mydolibarr/webservices/server_xxx.php?wsdl
Note, you can test this Webservices by calling the page http://mydomain.com/mydolibarr/webservices/demo_wsclient_xxx.php (You must first remove the -NORUN into file).