Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "OHF Bridge PHP Sample Client"

(Installation pre-requisits)
(Installation pre-requisits)
Line 5: Line 5:
  
 
===PHP Pears===
 
===PHP Pears===
 +
Note that there is a problem with this php version pear. To fix it fetch a recent [http://go-pear.org go-pear.php here], save it as C:\PHP\PEAR\go-pear.php and run again go-pear.bat.
 +
 
To install the PEARs, go the PHP installation directory and run something like:
 
To install the PEARs, go the PHP installation directory and run something like:
 
  pear install XML_Parser  
 
  pear install XML_Parser  

Revision as of 15:48, 15 September 2006

Installation pre-requisits

Make sure you install the PHP engine in Apache, you may also use one of the LAMP or WAMP installations.

PHP Pears

Note that there is a problem with this php version pear. To fix it fetch a recent go-pear.php here, save it as C:\PHP\PEAR\go-pear.php and run again go-pear.bat.

To install the PEARs, go the PHP installation directory and run something like:

pear install XML_Parser 

The PEARs you need are:

  • SOAP
  • XML_Parser
  • XML_Util
  • XML_Serializer-0.18.0

Installation

Oh, nothing really to do here :-)

  • Set the org.eclipse.ohf.bridge.client as the root directory of the Apache server
  • Open the org.eclipse.ohf.bridge.client/conf/client_conf.php
    • Edit the OHF_SERVICE_URL definition to point to the Ohf bridge
  • Done!

Back to the top