source: branches/version-2_11-dev/data/module/SOAP/tools/genproxy.php @ 21410

Revision 21410, 424 bytes checked in by Seasoft, 12 years ago (diff)

2.12系へマイルストーン変更となったチケット分を差し戻し
r21326 #1536
r21325 #1528
r21324 #1547,#1546
r21323 #1546
r21322 #1543
r21321 #1536
r21320 #1536
r21319 #1544
r21318 #1521,#1522
r21317 #1431

  • Property svn:mime-type set to text/x-httpd-php; charset=UTF-8
Line 
1<?php
2error_reporting(E_ALL);
3require_once 'SOAP/WSDL.php';
4
5/**
6 * genproxy
7 *
8 * a command line tool for generating SOAP proxies from WSDL files
9 *
10 * genproxy.php http://site/foo.wsdl > foo.php
11 *
12 */
13
14function do_wsdl($uri) {
15    $wsdl =& new SOAP_WSDL($uri);
16    print $wsdl->generateAllProxies();
17}
18echo "<?php\n\nrequire_once 'SOAP/Client.php';\n\n";
19do_wsdl($_SERVER['argv'][1]);
20echo "\n?>";
21?>
Note: See TracBrowser for help on using the repository browser.