skip to Main Content

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 Finding API findItemsByKeywords returns 'Input URL gave a value for header X-EBAY-SOA-OPERATION-NAME but has a conflicting mapped value' error – Ebay API

I'm trying to make a call in to eBay's Finding API via GET in the URL bar, and i get these errors(XML): <errorMessage xmlns="http://www.ebay.com/marketplace/search/v1/services"> <error> <errorId>2033</errorId> <domain>CoreRuntime</domain> <severity>Error</severity> <category>Request</category> <message> Input URL gave a value for header X-EBAY-SOA-OPERATION-NAME equal to…

VIEW QUESTION

eBay API adding Tracking Numbers – Error Number 10007

Hi I am using this code to add tracking numbers in eBay SandBox its shows me Success but i am not able to see tracking numbers in my eBay <?xml version="1.0" encoding="utf-8"?> <CompleteSaleRequest xmlns="urn:ebay:apis:eBLBaseComponents"> <RequesterCredentials> <eBayAuthToken>my_ebay_eBayAuthToken</eBayAuthToken> </RequesterCredentials> <ItemID>110154684599</ItemID> <TransactionID>27387395001</TransactionID> <ListingType>Half</ListingType>…

VIEW QUESTION
Back To Top
Search