我正在尝试使用Flex构建器功能导入Web服务(数据>导入Web服务)。该过程按预期进行,并且基于Web服务描述生成类。但是代码是在编译错误的情况下生成的。
2个品种有20个错误。我在下面列出了一些错误示例。
它看起来像是汽车的错误。自动代码试图调度ArrayCollection类型的对象。据我所知,这是不可能的。
有人有建议或有没有人遇到类似的问题?
错误示例:
1067: Implicit coercion of a value of type net.responsys:ListTablesForCampaignResultEvent to an unrelated type flash.events:Event. Responsys/src/net/responsys ResponsysWS57.as
1119: Access of possibly undefined property headers through a reference with static type net.responsys:ListFolderContentsResultEvent. Responsys/src/net/responsys ResponsysWS57.as
答案 0 :(得分:0)
如果它们都来自“事件”类,则可能是一个范围问题。尝试限定所有事件实例,例如查看生成的代码,无论您在哪里看到Flash事件,都要在它之前添加flash.events。 因此,flash事件的声明可能如下所示: var event:flash.events.Event
而不是
var event:Event