The last post provided some introduction into calling an external service, namely Amazon, and spend some thoughts on the infrastructure questions. It left off with some decisions:
- I’m going to make REST calls, as they are more flexible than SOAP calls.
- I’ll make the calls to Amazon from the client.
It’s important to note that these decisions depend to a very high degree on the particular service I’m calling. Amazon offering a policy file, the structure of the API allowing to keep the secrets on my server, the fact that Amazon actually offers REST calls in the first place. Any other service might need a completely different approach. (That’s what the last post covered.)
As a reminder, here is the relevant image:
So how about actually implementing that?
The Server Part
The server has to build and sign the URL for the Amazon call. Implementing that is straight forward. The AmazonApi class maintains the Amazon configuration in the appSettings.config:
The BuildItemSearchRequestUrl method first calls a method to prepare the query parameters, then another method to build a respective URL:
The called methods are equally simple. BuildRequestParams translates the typed query parameters into a dictionary, adding some other necessary parameters along the way. The parameter names can be found in the developer guide:
In order to build the URL I need the SignedRequestHelper class, extracted from Amazon’s REST sample:
This method is made available to the client via a WCF service, but I’ll leave that one out, its straight forward and boilerplate enough.
Calling Amazon from the Client
On the SL client we have a two step process: First, call the server with the filter criteria, and get the prepared URL. Second, make the call to Amazon, using the URL. The first call is no different than any other call to my own server application, no need to elaborate on that. The second one uses the WebClient class to make the REST call:
The ParseItemSearchResponse translates the XML into a respective object structure. Boilerplate, boring, and kind of longish if you do it manually.
View Model Stuff
Now that the details are in place, I “only” need to wire them into the UI.
The calls from the SL client to its housing server application are straight forward. First, call the server with the filter criteria, and get the prepared URL. Second, make the call to Amazon, using the URL. First the bookkeeping:
The BuildItemSearchRequestUrlCall class encapsulates the calls to the BuildItemSearchRequestUrl service operation shown earlier, AmazonClientApi does the same for Amazon and is also shown above.
Now the actual implementation, kind of leapfrogging from one method to the next by way of asynchronous events and lambdas I pass in for that purpose:
That should get the first 10 results from Amazon – and the proof that I can actually make the call:
The ShowAmazonResponseErrors simply iterates over the returned error collection and shows a respective message box. Amazon will return an error if it couldn’t find anything:
I have now solved the basic technical demands, yet the user may be a little more demanding, since…
Employing Paging
… 10 items is usually not sufficient. Hence I need to make more calls, read paging. Paging technically only requires an ItemPage parameter to be set to a value bigger than 1 (the page index is 1-based). However on the view model, some additional questions arise.
First question is whether the subsequent pages should be loaded right away, constantly filling the result grid in the background. This could be done by triggering the next call, once the previous one has returned, until all available results have arrived. Leapfrogging in a loop. Of course, if the user triggered a new search somewhen in-between, I would have to cancel that chain of calls. Or I could let the user trigger the loading explicitly, e.g. with some „load more“ button (which is what I’ll do).
In any case I have to deal with the user changing the filter criteria or interacting with the result, e.g. resorting it. This is obvious for the second case, but even automatically loading all data in chunks takes time.
Therefore I need to distinguish between the first call, and subsequent calls. The first call initiates a new search, replacing any previous search result. Subsequent calls have to use the same filter criteria, just with another page, and the result is appended to the previous ones. Now, if the filter criteria is bound to the UI and used as parameter to the service call, the user might change the filter and then click the „load more“ button (or the automatic loading might kick off at that time). To prevent that I need a copy of my request property. Similarly I need to maintain my result in a separate property, otherwise the call would overwrite any previous result data.
BeginSearchAmazon and EndSearchAmazon now only handle the first call, initiating a new search, and have to be changed accordingly:
The chain for subsequent calls looks similar in structure, but preserves the values in the separate copy properties:
The next image shows the dialog after having loaded 3 pages and in the process of loading the fourth:
Great? By the way, the details link jumps straight to Amazon, showing the respective book.
Roundup
Whether you are going to call Amazon or some other external service, these two posts should give you some hints on what to take into account form the infrastructure and architectural perspective. On the client you’ll have to look into Silverlight security and cross domain calls, on the server you might run into firewall or proxy authentication issues.
Also the Amazon API with its approach to paging may give you some hints on how to implement paging over larger result sets with Silverlight. While server calls are asynchronous, SL doesn’t provide the option of processing results while they arrive. For a large result set it might take some time to download the data, and the user might notice the time lag. It could be the better user experience to load the data in chunks, as shown here.
One hint at last: Jon Galloway has a good explanation on the rationale behind policy files on the called server, see here.
That’s all for now folks,
AJ.NET
Hi,
Could you provide the source code for the above example. It would really help since I am just getting started in using Amazon web services in Silverlight.
thanks,
uk
Comment by uk — May 6, 2010 @ 10:42 pm
Done: https://ajdotnet.wordpress.com/2010/05/15/calling-amazon-sample-code/
HIH,
Comment by ajdotnet — May 15, 2010 @ 5:11 pm
Alexander, thank you so much for this article! It’s indeed very cool! I totally enjoyed reading it. Now I’m itching to implement Amazon’s books search results visualization :)!
Very nice blog. Please keep it up!
Comment by Anvaka — July 24, 2010 @ 10:38 pm
And I did it :)!
http://www.yasiv.com/#/search?q=algorithms
What do you think?
Comment by Anvaka — September 4, 2010 @ 10:28 am
Nice work 😀
Did you plan to integrate that with the PivotViewer (http://www.microsoft.com/silverlight/pivotviewer/, http://pivot.metia.com/worldcup/)? When is multi touch comming? Can I use the camera to send images to Amazon? What about Windows Phone 7? …
Just kidding of course. But that’s the problem with Silverlight and people comming up with good ideas. You immediately start thinking ahead on what else you can do. Keep going 😉
Comment by ajdotnet — September 4, 2010 @ 11:18 am
Thank you, Alex :)!
Comment by Anvaka — September 4, 2010 @ 3:55 pm