/** * Get Service Status * * * @param mixed $request array of parameters for MWSMerchantFulfillmentService_Model_GetServiceStatus request or MWSMerchantFulfillmentService_Model_GetServiceStatus object itself * @see MWSMerchantFulfillmentService_Model_GetServiceStatusRequest * @return MWSMerchantFulfillmentService_Model_GetServiceStatusResponse * * @throws MWSMerchantFulfillmentService_Exception */ public function getServiceStatus($request) { if (!$request instanceof MWSMerchantFulfillmentService_Model_GetServiceStatusRequest) { require_once dirname(__FILE__) . '/Model/GetServiceStatusRequest.php'; $request = new MWSMerchantFulfillmentService_Model_GetServiceStatusRequest($request); } $parameters = $request->toQueryParameterArray(); $parameters['Action'] = 'GetServiceStatus'; $httpResponse = $this->_invoke($parameters); require_once dirname(__FILE__) . '/Model/GetServiceStatusResponse.php'; $response = MWSMerchantFulfillmentService_Model_GetServiceStatusResponse::fromXML($httpResponse['ResponseBody']); $response->setResponseHeaderMetadata($httpResponse['ResponseHeaderMetadata']); return $response; }
* Uncomment to try out Mock Service that simulates MWSMerchantFulfillmentService * responses without calling MWSMerchantFulfillmentService service. * * Responses are loaded from local XML files. You can tweak XML files to * experiment with various outputs during development * * XML files available under MWSMerchantFulfillmentService/Mock tree * ***********************************************************************/ // $service = new MWSMerchantFulfillmentService_Mock(); /************************************************************************ * Setup request parameters and uncomment invoke to try out * sample for Get Service Status Action ***********************************************************************/ // @TODO: set request. Action can be passed as MWSMerchantFulfillmentService_Model_GetServiceStatus $request = new MWSMerchantFulfillmentService_Model_GetServiceStatusRequest(); $request->setSellerId(MERCHANT_ID); // object or array of parameters invokeGetServiceStatus($service, $request); /** * Get Get Service Status Action Sample * Gets competitive pricing and related information for a product identified by * the MarketplaceId and ASIN. * * @param MWSMerchantFulfillmentService_Interface $service instance of MWSMerchantFulfillmentService_Interface * @param mixed $request MWSMerchantFulfillmentService_Model_GetServiceStatus or array of parameters */ function invokeGetServiceStatus(MWSMerchantFulfillmentService_Interface $service, $request) { try { $response = $service->GetServiceStatus($request);