skip to Main Content

XSL query for KeePass (Specific Entry) – Plesk

My target is to extract specific keys out of KeyPass(2.x) xml format by xsl. The KeyPass XML looks like this: <?xml version="1.0" encoding="utf-8" standalone="yes"?> <KeePassFile> <Meta> <Generator>KeePass</Generator> </Meta> <Root> <Group> <UUID>NqDrFtUxs0SiwVPehBpONg==</UUID> <Name>ExampleDatabase</Name> <Entry> <String> <Key>Notes</Key> <Value>Notes</Value> </String> <String> <Key>Password</Key> <Value…

VIEW QUESTION

"SSL certificate próblem" when conneting to eBay – Ebay API

I want to retrieve categories from ebay. This is my code: function getCategories(){ $endpoint = "https://api.ebay.com/ws/api.dll"; //$endpoint = 'http://svcs.ebay.com/services/search/FindingService/v1'; $api_dev_name = "XXX"; $api_app_name = "XXX"; $api_cert_name = "XXX"; $auth_token = "XXX"; $headers = array( 'X-EBAY-API-COMPATIBILITY-LEVEL: 819', 'X-EBAY-API-DEV-NAME: '.$api_dev_name, 'X-EBAY-API-APP-NAME: '.$api_app_name,…

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

PHP eBay Call Issues – Ebay API

Im trying to get the shipping info of a product, this is my code (I have hidden my app-id). $endpoint2 = "http://open.api.ebay.com/shopping"; $xmlrequest2 = "<?xml version='1.0' encoding='utf-8'?>n"; $xmlrequest2 .= "<GetShippingCostsRequest xmlns='urn:ebay:apis:eBLBaseComponents'>n"; // $xmlrequest2 .= "<DestinationCountryCode>GB</DestinationCountryCode>n"; // $xmlrequest2 .= "<IncludeDetails>true</IncludeDetails>n"; $xmlrequest2…

VIEW QUESTION
Back To Top
Search