OK ...
In your last joomla 1.6 version I've foound the Italian fetching. Thanks a lot.
But the script try to fetch amazon.it using yaz ...
Temporarily ... to have a right italian fetching, I've changed the file "admin.booklibrary.class.ws.php" at line 351
Code: |
else if ($param_ws == "DE") $endpoint = "http://ecs.amazonaws.de/onca/xml";
|
to
Code: |
else if ($param_ws == "IT") $endpoint = "http://ecs.amazonaws.de/onca/xml";
|
and at line 355
Code: |
else if ($param_ws == "IT") $endpoint = "http://webservices.amazon.it/onca/xml";
|
to
Code: |
else if ($param_ws == "DE") $endpoint = "http://ecs.amazonaws.de/onca/xml";
|
Only and simply .... crossing the "param_ws" IT and DE ....
So NOW to get fetching from italy server, without using yaz and with any problem, I place in admin the webservice "amazon.de" in place of "amazon.it"
.... thanks ... waiting the right version of your nice component.
AS