PHPackages                             ceeram/wsdl - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. ceeram/wsdl

ActiveCakephp-plugin[API Development](/categories/api)

ceeram/wsdl
===========

SOAP made simple again with CakePHP. Build a classmap of the wsdl file.

22235[1 issues](https://github.com/ceeram/wsdl/issues)PHP

Since Nov 20Pushed 13y ago2 watchersCompare

[ Source](https://github.com/ceeram/wsdl)[ Packagist](https://packagist.org/packages/ceeram/wsdl)[ RSS](/packages/ceeram-wsdl/feed)WikiDiscussions master Synced 2w ago

READMEChangelogDependenciesVersions (1)Used By (0)

This plugin iterates over a SOAP API and generates a (cake)php file that you can include in your projects that contains all the API's methods &amp; objects as PHP classes. These classes can then be used by this plugin's datasource to talk with the service.

Prerequisites
-------------

[](#prerequisites)

You'll need the XSLTProcessor. On Ubuntu you'd install that as such:

```
aptitude install php5-xsl
```

Install
-------

[](#install)

```
cd app/Plugin
wget https://github.com/ceeram/wsdl/zipball/master -o wsdl.zip
unzip wsdl.zip
mv ceeram-wsdl-* Wsdl && rm -f wsdl.zip
```

or git clone, from your app dir:

```
git clone git://github.com/ceeram/wsdl.git Plugin/Wsdl
```

Usage
-----

[](#usage)

In app/Config/bootstrap.php add:

```
CakePlugin::load('Wsdl');

```

Command line:

```
cake Wsdl.Wsdl
```

and follow the instructions

create a config in `database.php` like the example:

```
public $soapservice = array(
	'datasource' => 'Wsdl.WsdlSource',
	'wsdl' => 'http://domain.com/service.asmx?WSDL',
	'lib' => 'ServiceClassMap',
);
```

Set wsdl and lib to the values you entered and got back in the shell.

Add `public $useTable = false;` and `public $useDbConfig = 'soapservice';` to your model.

### Authentication

[](#authentication)

If the web service is protected via Basic authentication, you could supply the credentials as follows:

```
public $soapservice = array(
	'datasource' => 'Wsdl.WsdlSource',
	'wsdl' => 'http://domain.com/service.asmx?WSDL',
	'lib' => 'ServiceClassMap',
	'login' => 'phally',
	'password' => 'awesome',
);
```

###  Health Score

25

—

LowBetter than 36% of packages

Maintenance19

Infrequent updates — may be unmaintained

Popularity18

Limited adoption so far

Community15

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 62.9% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/dce8417c19d15346ceac180ea49567a3c7c7a1b88165e1f47d58796a13991eaf?d=identicon)[Ceeram](/maintainers/Ceeram)

---

Top Contributors

[![ceeram](https://avatars.githubusercontent.com/u/111448?v=4)](https://github.com/ceeram "ceeram (22 commits)")[![Phally](https://avatars.githubusercontent.com/u/112639?v=4)](https://github.com/Phally "Phally (9 commits)")[![rchavik](https://avatars.githubusercontent.com/u/39490?v=4)](https://github.com/rchavik "rchavik (3 commits)")[![kvz](https://avatars.githubusercontent.com/u/26752?v=4)](https://github.com/kvz "kvz (1 commits)")

### Embed Badge

![Health badge](/badges/ceeram-wsdl/health.svg)

```
[![Health](https://phpackages.com/badges/ceeram-wsdl/health.svg)](https://phpackages.com/packages/ceeram-wsdl)
```

###  Alternatives

[exsyst/swagger

A php library to manipulate Swagger specifications

35816.3M7](/packages/exsyst-swagger)[hubspot/api-client

Hubspot API client

24015.5M18](/packages/hubspot-api-client)[pocketmine/bedrock-protocol

An implementation of the Minecraft: Bedrock Edition protocol in PHP

172437.8k11](/packages/pocketmine-bedrock-protocol)[botman/driver-telegram

Telegram driver for BotMan

94452.6k6](/packages/botman-driver-telegram)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
