laravel-soap icon indicating copy to clipboard operation
laravel-soap copied to clipboard

A soap client wrapper for Laravel

Results 54 laravel-soap issues
Sort by recently updated
recently updated
newest added

Hi, my $response is always: object(stdClass)#460 (0) { } ``` $this->soapWrapper->add('EMPLOYEE_PT', function ($service) { $service ->wsdl('https://....?WSDL') ->trace(true) ->cache(WSDL_CACHE_NONE) ->options([ 'login' => '**user**', 'password' => '**pw**' ]); }); $requestArray = [...

Hello, My XML looks something like this: ``` PARAM password xxxxxxxx PARAM username xxxxxx ``` I want to know how I can add the `xmlns:urn="urn:string:string"` attribute to the Envelope tag....

As mentioned in issue #140, I just lost a lot of time assuming that an associative classmap would not be touched, but I was wrong. So here's a PR that...

Hi. I'm new to Soap and I don't have much time to dig in deeper. I'm currently using SoapUI to make a request and it works great only with the...

Hello! This work $response = $this->soapWrapper->call('Currency.GetConversionAmount', [ new GetConversionAmount('USD', 'EUR', '2014-06-05', '1000') ]); This not work $response = $this->soapWrapper->call('Currency.GetConversionAmount', [ new GetConversionAmount('USD', 'EUR', ['start' => '2014-06-05', 'end' => '2014-06-06'], '1000')...

unknown required wsdl extenstion

This will help IDEs helpers to identify potentially unhanded exceptions. i.e: https://github.com/artisaninweb/laravel-soap/blob/master/src/Artisaninweb/SoapWrapper/Client.php#L181

I'm trying to use laravel-soap with waseel service and I got this error ## SOAP-ERROR: Encoding: object has no 'CommonMessageHeader' property Here is my Controller : `