skip to Main Content

Parsing WSDL with PHP SoapClient – PHP Versions

I am trying to consume a SOAP web service with PHP. The web service WSDL can be found here. Simply creating the client like that: try { $wsdlUrl = 'https://eu1.praxedo.com/eTech/services/cxf/v6/BusinessEventManager?WSDL'; $client = new SoapClient($wsdlUrl); } catch(Exception $e) { echo $e->getMessage();…

VIEW QUESTION

ebay api not allowing me to store variation sku

Can anyone see why the code below only inserts the SKU for non variation SKU's? $client = new eBaySOAP($session); $params = array( 'Version' => $Version, 'DetailLevel' => "ItemReturnDescription", // 'GranularityLevel' => "Coarse", 'IncludeVariations' => "true", 'InventoryTrackingMethod' => "true", 'OutputSelector' =>…

VIEW QUESTION
Back To Top
Search