-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathREADME
executable file
·44 lines (32 loc) · 1.13 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
wsdl2php - PHP 5 Web Service Proxy Generator
--------------------------------------------
wsdl2php is a tool for generating PHP 5 proxy classes that can be used to access
web services. It make use of both the SOAP and DOM extension.
Requirements
------------
In order to use wsdl2php you must fullfill the following requirements:
o PHP 5 >= 5.0.1 with SOAP and DOM enabled
o PEAR installer >= 1.4
o Phing
$ pear channel-discover pear.phing.info
$ pear install phing/phing
o XML_Serializer >= 0.20.2
$ pear install pear/XML_Serializer-beta
o PEAR_PackageFileManager >= 1.7.0
$ pear install PEAR_PackageFileManager
Installation
------------
1) Clone the latest release from git://github.com/jbarciauskas/wsdl2php.git
2) Build the package
$ phing
3) Install the package with the PEAR installer:
$ sudo pear install build/wsdl2php-x.y.z-pear.tgz
Usage
-----
$ wsdl2php http://someservice.com/api/Soap.wsdl Soap_Data_Namespace_
Credits
-------
Knut Urdalen - author
John Lindal - contributor
Originally cloned from http://www.urdalen.no/wsdl2php/
Customized by Joel Barciauskas