php-http / client-common

Common HTTP Client implementations and tools for HTTPlug
http://httplug.io
MIT License
997 stars 53 forks source link

Add Soap Client #26

Open joelwurtz opened 8 years ago

joelwurtz commented 8 years ago
Q A
Bug? no
New Feature? yes

This is a feature request for adding a soap client (extending the one from PHP) which use a HttpClient implementation to send the soap request.

Having this allow to profit of all the debugging offer by the HttplugBundle for Soap requests.

Here is an example of what we have done in a project :

/**
 * Wrapper around PHP SoapClient to use a HttpClient instead of php, allow better control over the request.
 */
class SoapClient extends \SoapClient
{
    private $httpClient;

    public function __construct(HttpClient $httpClient, $wsdl, array $options = [])
    {
        $this->httpClient = $httpClient;

        parent::__construct($wsdl, $options);
    }

    /**
     * {@inheritdoc}
     */
    public function __doRequest($body, $location, $action, $version, $one_way = 0)
    {
        $headers = [
            'Content-Type' => sprintf('application/soap+xml; charset=utf-8; action="%s"', $action),
        ];

        if ($version === SOAP_1_1) {
            $headers = [
                'Content-Type' => 'text/xml; charset=utf-8',
                'SOAPAction'   => $action,
            ];
        }

        try {
            $response = $this->httpClient->sendRequest(new Request('POST', $location, $headers, $body));
        } catch (HttpException $exception) {
            return $exception->getResponse()->getBody()->getContents();
        }

        return $response->getBody()->getContents();
    }
}
sagikazarmark commented 8 years ago

To be honest, I always wanted to do something like this, so huge :+1: if we can create something like that.

dbu commented 8 years ago

that sounds useful!

does it introduce any additional dependencies? even if not, i wonder if it should be part of client-common or its own repository. its a bit hidden away in client-common, and not a generic http client thing but specific to a higher layer protocol. on the other hand, if the code in the description is everything we need for it, we can just as well have it in here.

joelwurtz commented 8 years ago

does it introduce any additional dependencies ?

It requires the soap extension from php, but IMO we can just add a check in the file and throw an exception if extension is not present, otherwise this extension is available in most package manager of linux distribution

if the code in the description is everything we need for it, we can just as well have it in here.

Pretty much, this may need a factory for the request, apart from that it's a good first implementation.

Also as always i don't like adding new packages, even if it can be better in a decoupled vision it always introduces a bigger need for maintenance and complexify the whole thing, and IMO this is too much work given the current size of php-http team.

sagikazarmark commented 8 years ago

but IMO we can just add a check in the file and throw an exception if extension is not present

Do we need that? I am not against optional dependencies in this case. Also: would it make sense? We extend the class from the extension, so if we add a check inside the class, it wouldn't make a difference.

dbu commented 8 years ago

i guess \SoapClient is only available with the soap extension. not sure if it could be a problem for people without soap extension if this file exists and some tool loads all classes or something.

tuupola commented 7 years ago

Have you seen this? https://github.com/goetas-webservices/soap-client

xabbuh commented 7 years ago

I think I would prefer to have it in its own package. You could then also declare dependencies just right from the beginning for this new client implementation.

Apart from that I think implementing such a client would be a very nice addition.

sagikazarmark commented 7 years ago

Have you see this? https://github.com/goetas-webservices/soap-client

Hm, nice, no I haven't.

@xabbuh well, the usual workflow now is to start experimental features in separate repos and merge them on demand, so at least for a start it should be in a separate repo, but I can't decide anymore what should come next. Probably you are right.

xabbuh commented 7 years ago

A bit unrelated to the proposed HTTPlug SOAP client: It could be interesting to see it were possible to create a \Soap_Client polyfill using the goetas-webservices/soap-client package.

sagikazarmark commented 7 years ago

Finally something that I could put here: https://github.com/polyphill :trollface:

GrahamCampbell commented 4 years ago

Are new APIs still launched today using SOAP?

dbu commented 4 years ago

i guess java people still sometimes do soap. or you build a system that needs to talk to a legacy system that is written in soap. in our projects we talk to SAP, and the devs there regularly extend the soap api...

that said, this suggestion has been open for a while and nobody wanted it enough to put the effort into it. imho we can close this issue here.

veewee commented 2 years ago

We are doing exactly this for a while now in phpro/soap-client and recently moved it to a new standalone package.

It allows for adding http plugins to php's soap client for doing advanced things like WSSE.

You might be interested in using a combination of these packages:

dbu commented 2 years ago

awesome, thanks for those links!

do you want to add a sub-section "Third party PSR-18 clients" to https://docs.php-http.org/en/latest/clients.html that links to those 2 packages?