Skip to content

davenorthcreek/stratum

Repository files navigation

wsdl2phpgenerator

Build Status Coverage Status

Simple WSDL to PHP classes converter. Takes a WSDL file and outputs class files ready to use.

Uses the MIT licence

Contributors

Originally developed by Fredrik Wallgren, https://github.com/walle/wsdl2phpgenerator

Includes bugfixes and improvements from:

This fork has been created in an attempt to merge changes in forks of wsdl2phpgenerator which has never made it back into the original repository.

Pull requests are very welcome.

Usage

Use the executable or the Generator class directly.

Executable

./wsdl2php -i input.wsdl -o /tmp/my/directory/wsdl

The directory is created if possible.

usage listed under ./wsdl2php -h

Code

<?php
require_once __DIR__."/path/here/Generator.php";

$generator = Generator::instance();
$generator->setDisplayCallback( function( $msg ) {
	echo "{$msg}\n";
});
$generator->generate( 
	new Config( SOAPSERVICE, SOAPDIR ) 
);
?>

About

Bridge between WorldApp Form and Bullhorn CRM

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages