skip to Main Content

Magento API v1 product list call on VB.NET

What is the equivalent of this for VB.NET? $filters = array('sku' => array('like'=>'zol%')); $products = $proxy->call($sessionId, 'product.list', array($filters)); Because I am trying to retrieve a specific product from Magento by doing something like this: Dim products = magentoV1_servico.call(magentoV1_sessao, "product.list", filters)…

VIEW QUESTION

Need parser in Java from XML(SOAP) to JSON – Magento

i'm looking for a parser or SOAP client in Java to convert XML(WSDL) from Magento SOAP v1 API to JSON Object. Magento SOAP v1 API returns a XML which looks like this: <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="urn:Magento" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:ns2="http://xml.apache.org/xml-soap" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">…

VIEW QUESTION

eBay API SOAP call to GetOrders fails with 'Validation of the authentication token in API request failed'

I encounter an issue where I invoke eBay GetOrders API <faultstring>Auth token is invalid.</faultstring> <faultactor>http://www.ebay.com/ws/websvc/eBayAPI</faultactor> <detail> <FaultDetail> <ErrorCode>931</ErrorCode> <Severity>Error</Severity> <DetailedMessage>Validation of the authentication token in API request failed.</DetailedMessage> I am able to successfully get a token from eBay and refresh…

VIEW QUESTION
Back To Top
Search