Difference between revisions of "Module Web Services API SOAP (developer)"
m |
|||
Line 5: | Line 5: | ||
You can send your own SOAP request to relative URL | You can send your own SOAP request to relative URL | ||
'''/webservices/server.php''' | '''/webservices/server.php''' | ||
− | For example on Dolibarr demo, | + | |
+ | For example on Dolibarr demo, send your SOAP requests to | ||
http://demo.dolibarr.org/webservices/server.php | http://demo.dolibarr.org/webservices/server.php | ||
+ | |||
Only few services are available. | Only few services are available. | ||
− | You can see list of Dolibarr Webservices provided by calling the URL with no POST parameters | + | You can see list of Dolibarr Webservices provided by calling the URL with no POST parameters. |
− | To get the WSDL file of services, you can call | + | For example, to see all Webservices functions available on Dolibarr demo, just call the following URL with no parameters: |
+ | http://demo.dolibarr.org/webservices/server.php | ||
+ | |||
+ | To get the WSDL file of services, you can call: | ||
http://demo.dolibarr.org/webservices/server.php?wsdl | http://demo.dolibarr.org/webservices/server.php?wsdl | ||
− | |||
== Dolibarr web services client == | == Dolibarr web services client == |
Revision as of 16:29, 10 April 2009
Dolibarr web services server
Dolibarr provides a server and a client for web services in directory htdocs/webservices. This server use embended php Nusoap library (no need to add PHP module) modified to work with PHP4 and PHP5. You can send your own SOAP request to relative URL /webservices/server.php
For example on Dolibarr demo, send your SOAP requests to
http://demo.dolibarr.org/webservices/server.php
Only few services are available.
You can see list of Dolibarr Webservices provided by calling the URL with no POST parameters.
For example, to see all Webservices functions available on Dolibarr demo, just call the following URL with no parameters:
http://demo.dolibarr.org/webservices/server.php
To get the WSDL file of services, you can call:
http://demo.dolibarr.org/webservices/server.php?wsdl
Dolibarr web services client
Note that you can see an example of code for a PHP client calling this relative URL /webservices/server.php For example on Dolibarr demo, call
http://demo.dolibarr.org/webservices/client.php