Skip to content

sveggiani/soapsource

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 

Repository files navigation

CakePHP SoapSource

A Soap datasource for CakePHP


Requirements

  • PHP5 with Soap extension enabled
  • Cakephp 2.x

Usage

Copy the SoapSource.php file to your app/models/datasources/ directory

Add a configuration to your database.php in app/config/

var $soap = array(
    'datasource' => 'SoapSource',
    'wsdl' => 'http://localhost/soapservice.wsdl', // wsdl mode
    'location' => '', // Required for non wsdl mode
    'uri' => '', // Required for non wsdl mode
    'proxy_host' => 'http://proxy.com', // optional
    'proxy_port' => 3128, // optional
    'curl_off' => true, // optional - turns curl wsdl fetch off
    'headers' => array( // optional - used with 3rd parameter in model
      'ns' => 'namespace',
      'container' => 'session_key',
    )
    'use' => SOAP_ENCODED // optional - used only for non wsdl mode
);

Then in your model set:

var $useDbConfig = 'soap';

var $useTable = false;

And you're ready to go.

Asuming that you parameters are:

$params = array('param1' => 'value1', 'param2' => 'value2');

In your controller you can now use

$this->Model->query('SoapMethod', array($params));

Important: notice the array() enclosing your params array.

or with header data

$headerParams = array('headerParam1' = 'value1', 'headerParam2' => 'value2');

$this->Model->query('SoapMethod', array($params), array($headerParams);

Important: again, notice the array() enclosing your params and header params arrays.

or

$this->Model->SoapMethod($params);

Important: notice the difference with the previous examples. In this case DON'T enclose the params with array().

Thanks for updating

  • eddiejaoude
  • garethellis36

License

The MIT License (MIT)

Copyright (c) 2014 Pagebakers

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

A Soap Client datasource for CakePHP

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Languages

  • PHP 100.0%