skip to Main Content

C# eBay API DetailLevel

I am developing a C# application which should return all eBay categories available. Unfortunately I am not able to solve an issue about the DetailLevel. The DetailLevel is part of the request and tells the eBay servers how the response…

VIEW QUESTION

How to access body XML in PHP SOAP server – Ebay API

When using the ebay API, it make notification requests to your server which can look something like this: <?xml version="1.0" encoding="UTF-8"?> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <soapenv:Header> Stuff in header </soapenv:Header> <soapenv:Body> <GetItemResponse xmlns="urn:ebay:apis:eBLBaseComponents"> <Timestamp>2015-02-22T16:19:51.956Z</Timestamp> <Ack>Success</Ack> <CorrelationID>3759873</CorrelationID> <Version>885</Version> <Build>E885_CORE_APIMSG_16971418_R1</Build> <NotificationEventName>ItemRevised</NotificationEventName> .…

VIEW QUESTION

eBay SOAP API – Missing SOA operation name header – Ebay API

I am trying to invoke eBay's findItemsByKeywords method and I get Server raised fault: 'Missing SOA operation name header' My code is following: from config import * # url = 'http://developer.ebay.com/webservices/latest/ebaySvc.wsdl' # url = 'http://svcs.ebay.com/services/search/BestMatchItemDetailsService/v1?wsdl' url = 'http://developer.ebay.com/webservices/finding/latest/FindingService.wsdl' from suds.client…

VIEW QUESTION
Back To Top
Search