- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在尝试制作一个小型应用程序,它可以通过 ISBN 在亚马逊上搜索一本书。我是 Amazon Web Service 的新手。
我正在关注以下链接:
http://flyingpies.wordpress.com/2009/08/01/17/
http://flyingpies.wordpress.com/2009/08/13/signing-amazon-product-advertising-api-cwcf-part-2/
我的代码是:
BasicHttpBinding binding = new BasicHttpBinding(BasicHttpSecurityMode.Transport);
binding.MaxReceivedMessageSize = int.MaxValue;
AWSECommerceServicePortTypeClient amazonClient = new AWSECommerceServicePortTypeClient(
binding, new EndpointAddress("https://webservices.amazon.com/onca/soap?Service=AWSECommerceService"));
amazonClient.ChannelFactory.Endpoint.Behaviors.Add(new AmazonSigningEndpointBehavior(AccessKeyId, SecretAccessKey));
ItemLookup lookup = new ItemLookup();
ItemLookupRequest request = new ItemLookupRequest();
request.IdType = ItemLookupRequestIdType.ISBN;
request.ItemId = new[] {"9780297870470"};
request.ResponseGroup = new[] { "OfferSummary" };
request.SearchIndex = "All";
request.IdTypeSpecified = true;
lookup.Request = new ItemLookupRequest[] { request };
lookup.AWSAccessKeyId = AccessKeyId;
lookup.AssociateTag = "wwwyaodaromane-90";
var response = amazonClient.ItemLookup(lookup);
当我尝试发送请求时出现异常
There was an error in serializing body of message ItemSearchRequest1:'Unable to generate a temporary class (result=1).
error CS0030: Cannot convert type 'Simple.Amazon.ECS.ImageSet[]' to'Simple.Amazon.ECS.ImageSet'
内部异常是:
{"Unable to generate a temporary class (result=1).\r\nerror CS0030:Cannot convert type 'Simple.Amazon.ECS.ImageSet[]' to'Simple.Amazon.ECS.ImageSet'\r\nerror CS0029: Cannot implicitlyconvert type 'Simple.Amazon.ECS.ImageSet' to'Simple.Amazon.ECS.ImageSet[]'\r\n"}
我不明白为什么我会得到这个。我做错了什么?
最佳答案
这通常是 WCF 代理生成中的错误。 See here了解一些细节和解决方法。
取自comment link :
这些是截至 2012 年 1 月 31 日在 Visual Studio for .Net 客户端中修复此问题的步骤:
1) 在包含亚马逊服务引用的项目的解决方案资源管理器中单击“显示所有文件”按钮。
2) 展开引用并在编辑器中打开 AWSECommerceService.wsdl 文件
3) 在第 584 行,将“maxOccurs”更改为“1”。
4) 保存 AWSECommerceService.wsdl 文件
5) 右击Reference.svcmap并点击“运行自定义工具”
6) 展开 Reference.svcmap 并打开 Reference.cs 或 Reference.vb
7) 使用窗口顶部的下拉菜单导航到 AmazonAPI.your namespace.Item。
8) 导航到 ImageSets 属性并确认其声明如下所示:
public ImageSet[] ImageSets {
不是这样的
public ImageSet[][] ImageSets {
9) 重建你的项目
关于c# - 错误 CS0030 : Cannot convert type 'Simple.Amazon.ECS.ImageSet[]' to 'Simple.Amazon.ECS.ImageSet' in Amazon Web Service,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18698856/
我是一名优秀的程序员,十分优秀!