Cara... se for para estudar... pega algo mais facil...
mas respondendo... para vc chamar o Metodo Help por exemplo ficaria assim (nao sei exatamente qual o valor dos paramentros... entao coloquei qq coisa para ilustrar)
using (var service = new com.amazon.webservices.AWSECommerceService()) {
var helpArgs = new com.amazon.webservices.Help();
helpArgs.MarketplaceDomain = "MyMarketPlaceDomain";
helpArgs.AWSAccessKeyId = "MyAccessKeyID";
helpArgs.SubscriptionId = "MySubscriptionId";
helpArgs.AssociateTag = "AssociateTag";
helpArgs.Validate = "Validate";
var shared = new com.amazon.webservices.HelpRequest();
shared.About = "About";
shared.HelpType = com.amazon.webservices.HelpRequestHelpType.Operation;
shared.HelpTypeSpecified = true;
shared.ResponseGroup = new string[1] { "Grupo" };
helpArgs.Shared = shared;
helpArgs.Request = new com.amazon.webservices.HelpRequest[1] { shared };
var helpResponse = service.Help(helpArgs);
foreach (var info in helpResponse.Information) {
var elemnts = info.ResponseGroupInformation[0].Elements;
foreach (var element in elemnts) {
Console.WriteLine(element);
}
}
}
da uma olhada neste site... aqui vc vai encotrar varios webservices para usar
http://www.webservicex.net/WS/wscatlist.aspx
What would Brian Boitano do ?
((2B || !2B) is Question) ?