Fix: Help for ws service is more clear.

This commit is contained in:
Laurent Destailleur 2009-11-06 15:36:20 +00:00
parent 4e9b714ee6
commit 658c95a3e6
2 changed files with 19 additions and 11 deletions

View File

@ -1,21 +1,24 @@
<?php <?php
/*--------------------------------------------- /*---------------------------------------------
/ Webservices OSC pour dolibarr / Webservices OSC pour dolibarr
/ configuration et paramètres / configuration et param<EFBFBD>tres
/ /
/ Jean Heimburger juin 2006 / Jean Heimburger juin 2006
----------------------------------------------*/ ----------------------------------------------*/
/* paramètres de connexion à OSC */ /* parametres de connexion a OSC */
define("DB_SERVER", "localhost"); define("DB_SERVER", "localhost");
define("DB_SERVER_USERNAME", "root"); define("DB_SERVER_USERNAME", "root");
define("DB_SERVER_PASSWORD", ""); define("DB_SERVER_PASSWORD", "");
define("DB_DATABASE", "tahitirimai"); define("DB_DATABASE", "tahitirimai");
// chemin vers sources OSC admin
// Full path on filesystem to OSC admin
define('OSCADMIN', '/home/jean/projets/osc_tiaris/admin/'); define('OSCADMIN', '/home/jean/projets/osc_tiaris/admin/');
/* constantes utiles */ /* constantes utiles */
define("OSC_LANGUAGE_ID",1); define("OSC_LANGUAGE_ID",1);
define(OSC_URL, 'http://osc-tiaris/'); // url du site OSC // URL of OSC web site
define(OSC_URL, 'http://myoscwebsite/');
?> ?>

View File

@ -3,13 +3,18 @@
</head> </head>
<body> <body>
Page portail des services web ajoutes a OSC Commerce<br> This page show list of public webservices, now available on
your server OSCommerce.<br>
<br> <br>
<a href="ws_articles.php">ws_articles</a><br> * ws_articles<br>
<a href="ws_customers.php">ws_customers</a><br> * ws_customers<br>
<a href="ws_orders.php">ws_orders</a><br> * ws_orders<br>
<a href="ws_test.php">ws_test</a><br> * ws_test<br>
<br>
Those pages will be called by Dolibarr using its own SOAP web service client.<br>
<br>
However, don't forget to edit the configure.php file in the ws_server/includes directory.<br>
</body> </body>
</html> </html>