Search
 
SCRIPT & CODE EXAMPLE
 

PHP

consumir soap php

// Creamos los datos de entrada
$asiento = [
    'ubicacion1' => [
        'total' => 3000,
        'moneda' => 'USD'
     ],
     'ubicacion2' => [
        'total' => 4000,
        'moneda' => 'USD'
     ]
];

// Este es el webservice que vamos a consumir
$wsdl = 'http://server1.com/sap/bc/srt/wsdl/flv_10002A101AD1/prueba';

// Creamos el cliente SOAP que hará la solicitud, generalmente están 
// protegidos por un usuario y una contraseña

$cliente = new SoapClient($wsdl, [
            'login' => 'usuario',
            'password' => 'contraseña',
            'encoding' => 'UTF-8',
            'trace' => true
        ]);


// Consumimos el servicio llamando al método que necesitamos, en este caso
// calcularCostos() es un método definido dentro del WSDL 

$resultado = $cliente->calcularCostos($asiento);

// Finalmente muestras la respuesta 
dd($resultado);
Comment

PREVIOUS NEXT
Code Example
Php :: php simple sse 
Php :: laravel compare request domain and app domain and request original domain 
Php :: symfony auto decode json request 
Php :: access model in config laravel 
Php :: static variable php 
Php :: send data with href 
Php :: livewire custom attribute 
Php :: custom validation in laravel 
Php :: php user ip from post request 
Php :: string to array php 
Php :: wp get_results count 
Php :: phpdoc @var 
Php :: carbon now set timezone 
Php :: phpstorm using extract to create variales 
Php :: laravel collection forPage 
Php :: get the matched value from 2 array in php 
Php :: readable date in php 
Php :: c# to php 
Php :: where to add browscap php 
Php :: artisan app name 
Php :: @yield laravel 
Php :: wordpress get default date format 
Php :: CONVERTIR TABLEAU EN CHAINE DE CARACTÈRE PHP 
Php :: php print html code 
Php :: php sqlite last insert id 
Php :: string concatenation in php 
Php :: server.php not found 
Php :: PHP substr_replace — Replace text within a portion of a string 
Php :: Creating dynamic subdomain in php 
Php :: polymorphism in php 
ADD CONTENT
Topic
Content
Source link
Name
1+3 =