Download the PHP package ibsciss/zend-soap-service-provider without Composer

On this page you can find all versions of the php package ibsciss/zend-soap-service-provider. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package zend-soap-service-provider

zend-soap-service-provider

A soap service provider for Silex, based on the ZendSoap component from ZendFramework project.

Build Status Coverage Status Latest Stable Version Latest Unstable Version License

For more informations about Zend Soap, check the Zend Framework documentation :

Why a Zend Soap silex service provider ?

Install

  1. Add "ibsciss/zend-soap-service-provider": "dev-master" in the require section of your composer.json and run the composer install command.
  2. Register service : $app->register(new ZendSoapServiceProvider()); and don't forget the use \Ibsciss\Silex\Provider\ZendSoapServiceProvider statement.

Usages

Basic use

When the service provider is registered, you have access to the two basic services :

Multiple instances

If you need more connection, you can define several instances using soap.instances parameters.

You have access to your instances with the two services :

The first defined service is the default one and became accessible from soap.client and soap.server services.

WSDL management

You can provide a (optional) WSDL for the global service with the soap.wsdl parameter.

For multiple instances, its possible to define wsdl for a specific instance :

Note : if you provide one wsdl per instance you don't have to specify a global one

About \Zend\Soap implementation

The package use now the official \Zend\Soap package

In \Zend\Soap\Server

Debug mode

When an exception is raised in your code the \Zend\Soap\Server catch it and check if this is an authorized exception. If not, and for security reason, it send an "Unknow error" message. And if in production its a sane behavior, its really annoying during development & tests process.

So the serviceProvider extends the Server class to add a debugMode method which is automatically activated when the silex debug options is true (manual enable/disable debug mode is provide with the setDebugMode($boolean) server method). Example :

`

In debug mode, the Server send all exceptions to the soap client.

Exception management

As described below, when an exception is catch by the Zend\Soap\Server, the error message became "Unknown error". So even if you write the exception in logs, you have no ideas of the failure root cause, to avoid this trouble a getException method is available in the provider's server class. Example:

Internal '\SoapServer' instance

The Zend\Soap\Server use internally a \SoapServer instance to handle request. In certain case, you need an access to this instance (for example to send a SoapFault when the setReturnResponse is set at true). That's why, the provider add a getSoap() method which provide the current internal \SoapServer instance. Example:

Advanced topic

Change Soap class

If you want to use your own personal soap class, or for test purpose. You can override the soap, server or client, class with the soap.client.class and soap.server.class.

Warning: If you are in dotNet mode, you have to use soap.client.dotNet.class (or client.dotNet.class for an instance override).

Change Soap version

You are able to specify the soap version using the soap.version attribute. The allowed values are :

DotNet specific mode

The dotNet framework process soap parameters a little different than PHP or Java implementations.

So, if you have to integrate your soap web services with a dotNet server, set the soap.dotNet option at true.

If you want to override the dotNet class, use the soap.client.dotNet.class attribute instead of soap.client.class.

Summary

Services

parameters

All parameters can be define at the instance level :


All versions of zend-soap-service-provider with dependencies

PHP Build Version
Package Version
Requires zendframework/zend-soap Version ~2.2
silex/silex Version ~1.1
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package ibsciss/zend-soap-service-provider contains the following files

Loading the files please wait ....