j3rrey/wsdl2phpgenerator
Composer 安装命令:
composer require j3rrey/wsdl2phpgenerator
包简介
Simple class library for generating php classes from a wsdl file.
README 文档
README
Quick PHP7.2 fix on count error. Just instatiated a paramater as an array and everything works as expected
wsdl2phpgenerator
Simple WSDL to PHP classes converter. Takes a WSDL file and outputs class files ready to use.
Uses the MIT license.
Announcement: We are looking to add one or two co-maintainers with commit access to help bring this project forward, review pull requests and respond to issues. If you have contributed to this project or are otherwise actively involved in open source and have a GitHub profile for review, ping @kasperg to express your interest.
New major version: 3.0
A new major version of wsdl2phpgenerator has recently been released: 3.0.
This introduces changes to both configuration and generated code. The changes makes it more flexible to use, easier to include in other projects, promotes contributions and reduces maintenance.
2.x users are encourage to read a walkthrough of what is new in 3.0.
Contributors
Originally developed by @walle and includes bug fixes and improvements from @vakopian, @statikbe, @ecolinet, @nuth, @chriskl, @RSully, @jrbasso, @dypa, @Lafriks, @SamMousa, @xstefanox, @garex, @honzap, @jk, @sheeep, @colinodell, @red-led, @ivol84, @wasinger, @devlead, @NoUseFreak, @HighOnMikey, @theHarvester, @fduch, @methodin, @nkm, @jongotlin, @yethee, @rindeal, @vtsao, @xoeoro, @lunetics, @peter-vanpoucke, @jabiinfante, @renatomefi and @kasperg.
Pull requests are very welcome. Please read our guidelines for contributing.
Mailing list
There is a mailing list for the project at https://groups.google.com/forum/#!forum/wsdl2phpgenerator
Installation
Add wsdl2phpgenerator to your Composer project:
composer require wsdl2phpgenerator/wsdl2phpgenerator
The project will also be available as a command line application which can be downloaded as a phar file.
Usage
To generate classes create a Generator instance and pass it a Config instance.
$generator = new \Wsdl2PhpGenerator\Generator(); $generator->generate( new \Wsdl2PhpGenerator\Config(array( 'inputFile' => 'input.wsdl', 'outputDir' => '/tmp/output' )) );
After generating the code then configure your existing autoloader accordingly. The generated code also comes with a simple autoload.php file which can be included directly. This registers a simple autoloader for the generated classes.
Example usage
The following example will generate code from a web service, load the generated classes, call the web service and return the result over the course of a single process.
$generator = new \Wsdl2PhpGenerator\Generator(); $generator->generate( new \Wsdl2PhpGenerator\Config(array( 'inputFile' => 'http://www.webservicex.net/CurrencyConvertor.asmx?WSDL', 'outputDir' => '/tmp/CurrencyConverter' )) ); require '/tmp/CurrencyConverter/autoload.php'; // A class will generated representing the service. // It is named after the element in the WSDL and has a method for each operation. $service = new \CurrencyConvertor(); $request = new \ConversionRate(\Currency::USD, \Currency::EUR); $response = $service->ConversionRate($request); echo $response->getConversionRateResult();
Note that this is not recommended usage. Normally code generation and web services calls will be two separate processes.
Options
The generator supports a range of options which can be set in the configuration.
inputFile
The path or url to the WSDL to generate classes from.
outputDir
The directory to place the generated classes in. It will be created if it does not already exist.
namespaceName
The namespace to use for the generated classes. If not set classes will be generated without a namespace.
Example usage
The following configuration will place generated code from the CDYNE Weather web service under the CDyne\Weather namespace:
$generator = new \Wsdl2PhpGenerator\Generator(); $generator->generate( new \Wsdl2PhpGenerator\Config(array( 'inputFile' => 'http://wsf.cdyne.com/WeatherWS/Weather.asmx?wsdl', 'outputDir' => '/tmp/weather', 'namespaceName' => 'CDyne\Weather' )) );
classNames
A comma-separared list or array of class names to generate. All other classes in the WSDL will be ignored.
This option is deprecated and will be removed in 4.0.0. Use operationNames instead.
Example usage
The following configuration will only generate AmazonEC2 and CopyImageType classes from the Amazon EC2 webservice.
$generator = new \Wsdl2PhpGenerator\Generator(); $generator->generate( new \Wsdl2PhpGenerator\Config(array( 'inputFile' => 'https://s3.amazonaws.com/ec2-downloads/2013-10-01.ec2.wsdl', 'outputDir' => '/tmp/amazon', 'classNames' => 'AmazonEC2, CopyImageType' )) );
operationNames
A comma-separated list or array of service operations to generate. This will only generate types that are needed for selected operations. The generated service class will only contain selected operation.
Example usage
The following configuration will generate operations and types for ReplaceRouteTableAssociation and RequestSpotInstances operations.
$generator = new \Wsdl2PhpGenerator\Generator(); $generator->generate( new \Wsdl2PhpGenerator\Config(array( 'inputFile' => 'https://s3.amazonaws.com/ec2-downloads/2013-10-01.ec2.wsdl', 'outputDir' => '/tmp/amazon', 'operationNames' => 'ReplaceRouteTableAssociation, RequestSpotInstances' )) );
sharedTypes
If enabled this makes all types with the same identify use the same class and only generate it once. The default solution is to prepend numbering to avoid name clashes.
constructorParamsDefaultToNull
If enabled this sets the default value of all parameters in all constructors to null. If this is used then properties must be set using accessors.
proxy
Specify a proxy to use when accessing the WSDL and other external ressources. This option should be used instead of [the proxy options support by the PHP SoapClient] (http://php.net/manual/en/soapclient.soapclient.php) as wsdl2phpgenerator uses more than the SOAP client to extract information.
The following formats are supported:
- An array with the following keys
host,port,loginandpasswordmatching [the proxy options support by the PHPSoapClient] (http://php.net/manual/en/soapclient.soapclient.php) - A string in an URL-like format
The proxy information is used by is used when accessing the WSDL to generate the code and for subsequent requests to the SOAP service.
Example usage
The following configuration will use a proxy to access the Google DoubleClick Ad Exchange Buyer SOAP API:
$generator = new \Wsdl2PhpGenerator\Generator(); $generator->generate( new \Wsdl2PhpGenerator\Config(array( 'inputFile' => 'https://ads.google.com/apis/ads/publisher/v201306/ActivityService?wsdl', 'outputDir' => '/tmp/amazon', 'proxy' => 'tcp://user:secret@192.168.0.1:8080' )) );
soapClientClass
The base class to use for generated services. This should be a subclass of the PHP SoapClient.
Examples of third party SOAP client implementations which can be used:
Note that it is the responsibility of the surrounding code to ensure that the base class is available during code generation and when calling web services.
Example usage
The following configuration will use the BeSimple SOAP client as base class:
$generator = new \Wsdl2PhpGenerator\Generator(); $generator->generate( new \Wsdl2PhpGenerator\Config(array( 'inputFile' => 'input.wsdl', 'outputDir' => '/tmp/output', 'soapClientClass' => '\BeSimple\SoapClient\SoapClient' )) );
soapClientOptions
An array of configuration options to pass to the SoapClient. They will be used when accessing the WSDL to generate the code and as defaults for subsequent requests to the SOAP service. The PHP documentation has a list of supported options.
The list of options for the client can be extended by using more advanced SoapClient implementations.
Note that wsdl2phpgenerator expects the features option to contain SOAP_SINGLE_ELEMENT_ARRAYS. This ensures that type hints are consistent even if sequences only contain one element. If the features option is set explicitly in soapClientOptions the SOAP_SINGLE_ELEMENT_ARRAYS must also be added explicitly.
Example usage
The following configuration will enable basic authentication and set the connection timeout to 60 seconds.
$generator = new \Wsdl2PhpGenerator\Generator(); $generator->generate( new \Wsdl2PhpGenerator\Config(array( 'inputFile' => 'input.wsdl', 'outputDir' => '/tmp/output', 'soapClientOptions' => array( 'authentication' => SOAP_AUTHENTICATION_BASIC, 'login' => 'username', 'password' => 'secret', 'connection_timeout' => 60 )) ));
Versioning
This project aims to use semantic versioning. The following constitutes the public API:
\Wsdl2PhpGenerator\GeneratorInterface\Wsdl2PhpGenerator\ConfigInterface- Generated code
Backwards incompatible changes to these means that the major version will be increased. Additional features and bug fixes increate minor and patch versions.
j3rrey/wsdl2phpgenerator 适用场景与选型建议
j3rrey/wsdl2phpgenerator 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 8.65k 次下载、GitHub Stars 达 1, 最近一次更新时间为 2018 年 11 月 19 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「soap」 「wsdl」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 j3rrey/wsdl2phpgenerator 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 j3rrey/wsdl2phpgenerator 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 j3rrey/wsdl2phpgenerator 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Wrapper around PHP SoapClient class
cURL and cURL based Soap-Client for PHP
A PHP client for the Salesforce SOAP API
Microbilt creditscore WSDL to php classes.
Microbilt сriminal report WSDL to php classes.
Library for API calls to SkautIS
统计信息
- 总下载量: 8.65k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 10
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-11-19