1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
|
<?php
/*
* $Id: wsdlclient12.php,v 1.4 2007/11/06 14:50:07 snichol Exp $
*
* WSDL client sample.
*
* Service: WSDL
* Payload: document/literal
* Transport: http
* Authentication: none
*/
require_once('Econea/Nusoap/nusoap.php');
$proxyhost = isset($_POST['proxyhost']) ? $_POST['proxyhost'] : '';
$proxyport = isset($_POST['proxyport']) ? $_POST['proxyport'] : '';
$proxyusername = isset($_POST['proxyusername']) ? $_POST['proxyusername'] : '';
$proxypassword = isset($_POST['proxypassword']) ? $_POST['proxypassword'] : '';
$method = isset($_GET['method']) ? $_GET['method'] : 'ItemSearch';
$SubscriptionId = 'Your AWS subscription id';
$wsdlurl = 'http://webservices.amazon.com/AWSECommerceService/US/AWSECommerceService.wsdl';
$cache = new wsdlcache('.', 120);
$wsdl = $cache->get($wsdlurl);
if (is_null($wsdl)) {
$wsdl = new wsdl($wsdlurl,
$proxyhost, $proxyport, $proxyusername, $proxypassword);
$cache->put($wsdl);
} else {
$wsdl->debug_str = '';
$wsdl->debug('Retrieved from cache');
}
$client = new nusoap_client($wsdl, true,
$proxyhost, $proxyport, $proxyusername, $proxypassword);
$err = $client->getError();
if ($err) {
echo '<h2>Constructor error</h2><pre>' . $err . '</pre>';
}
$client->soap_defencoding = 'UTF-8';
function GetCartCreateParams() {
global $SubscriptionId;
// create items to be added to the cart
$item = array ();
$item[0] = array( "ASIN" => "0596004206",
"Quantity" => "1"
);
$item[1] = array( "ASIN" => "0596003277",
"Quantity" => "2"
);
// pack it to <Item> array
$items = array("Item" => $item);
// Construct request parameters
$request = array("Items" => $items, "ResponseGroup" => "CartSimilarities");
// Construct all parameters
$cartCreate = array( "SubscriptionId" => $SubscriptionId,
"Request" => $request
);
return $cartCreate;
}
function GetItemLookupParams() {
global $SubscriptionId;
$itemLookupRequest[] = array(
'ItemId' => 'B0002IQML6',
'IdType' => 'ASIN',
'Condition' => 'All',
'ResponseGroup' => 'Large'
);
$itemLookupRequest[] = array(
'ItemId' => '0486411214',
'IdType' => 'ASIN',
'Condition' => 'New',
'ResponseGroup' => 'Small'
);
$itemLookup = array(
'SubscriptionId' => $SubscriptionId,
// 'AssociateTag' => '',
'Request' => $itemLookupRequest,
);
return $itemLookup;
}
function GetItemSearchParams() {
global $SubscriptionId;
$itemSearchRequest = array(
'BrowseNode' => '53',
'ItemPage' => 1,
// 'ResponseGroup' => array('Request', 'Small'),
'SearchIndex' => 'Books',
'Sort' => 'salesrank'
);
$itemSearch = array(
'SubscriptionId' => $SubscriptionId,
// 'AssociateTag' => '',
// 'Validate' => '',
// 'XMLEscaping' => '',
// 'Shared' => $itemSearchRequest,
'Request' => array($itemSearchRequest)
);
return $itemSearch;
}
function GetItemSearchParams2() {
global $SubscriptionId;
$request = array(
"Keywords" => "postal stamps",
"SearchIndex" => "Books"
);
$itemSearch = array(
'SubscriptionId' => $SubscriptionId,
'Request' => $request
);
return $itemSearch;
}
function GetListLookupParams() {
global $SubscriptionId;
$listLookupRequest[] = array(
'ListId' => '1L0ZL7Y9FL4U0',
'ListType' => 'WishList',
'ProductPage' => 1,
'ResponseGroup' => 'ListFull',
'Sort' => 'LastUpdated'
);
$listLookupRequest[] = array(
'ListId' => '1L0ZL7Y9FL4U0',
'ListType' => 'WishList',
'ProductPage' => 2,
'ResponseGroup' => 'ListFull',
'Sort' => 'LastUpdated'
);
/*
// two lookup maximum
$listLookupRequest[] = array(
'ListId' => '1L0ZL7Y9FL4U0',
'ListType' => 'WishList',
'ProductPage' => 3,
'ResponseGroup' => 'ListFull',
'Sort' => 'LastUpdated'
);
*/
$listLookup = array(
'SubscriptionId' => $SubscriptionId,
// 'AssociateTag' => '',
'Request' => $listLookupRequest,
);
return $listLookup;
}
function GetListSearchParams() {
global $SubscriptionId;
$listSearchRequest[] = array(
'FirstName' => 'Scott',
'LastName' => 'Nichol',
'ListType' => 'WishList'
);
$listSearch = array(
'SubscriptionId' => $SubscriptionId,
// 'AssociateTag' => '',
'Request' => $listSearchRequest,
);
return $listSearch;
}
if ($method == 'ItemLookup') {
$result = $client->call('ItemLookup', array('body' => GetItemLookupParams()));
} elseif ($method == 'ItemSearch') {
$result = $client->call('ItemSearch', array('body' => GetItemSearchParams()));
} elseif ($method == 'ItemSearch2') {
$result = $client->call('ItemSearch', array('body' => GetItemSearchParams2()));
} elseif ($method == 'ListLookup') {
$result = $client->call('ListLookup', array('body' => GetListLookupParams()));
} elseif ($method == 'ListSearch') {
$result = $client->call('ListSearch', array('body' => GetListSearchParams()));
} elseif ($method == 'CartCreate') {
$result = $client->call('CartCreate', array('body' => GetCartCreateParams()));
} else {
echo "Unsupported method $method";
exit;
}
// Check for a fault
if ($client->fault) {
echo '<h2>Fault</h2><pre>';
print_r($result);
echo '</pre>';
} else {
// Check for errors
$err = $client->getError();
if ($err) {
// Display the error
echo '<h2>Error</h2><pre>' . $err . '</pre>';
} else {
// Display the result
echo '<h2>Result</h2><pre>';
print_r($result);
echo '</pre>';
}
}
echo '<h2>Request</h2><pre>' . htmlspecialchars($client->request, ENT_QUOTES) . '</pre>';
echo '<h2>Response</h2><pre>' . htmlspecialchars($client->response, ENT_QUOTES) . '</pre>';
echo '<h2>Debug</h2><pre>' . htmlspecialchars($client->debug_str, ENT_QUOTES) . '</pre>';
?>
|