Flex调用Hessian服务时错误#1014与#1065的处理

项目环境:
Adobe Flash Builder 4.5 创建的桌面应用(AIR) SDK Flex 4.5.1
Flex 对 Hessian 支持的扩展包为 hessian-flex-4_0-snap.swc
Java 开发的 Hessian 服务器端

问题:控制台输出如下提示,但不影响调用。

Cannot find class by alias 'test.vo.User': ReferenceError: Error #1014: Class test.vo.User could not be found.

Cannot file class by name 'test.vo.User': ReferenceError: Error #1065: Variable User is not defined.

在程序中加入下面代码,后可消除ReferenceError: Error #1065错误,

  
  
  
  
  1. private var user:User = new User(); 

Cannot file class by name 'test.vo.User': ReferenceError: Error #1065: Variable User is not defined 提示信息便成为Found class [class User] by alias test.vo.User

说明已经找到该类的引用

再来看看如何消除下面提示

Cannot find class by alias 'test.vo.User': ReferenceError: Error #1014: Class test.vo.User could not be found.

要消除这个提示,只需要在test.vo.User类定义的上面加上下面这行代码就可以了。

  
  
  
  
  1. [RemoteClass(alias="test.vo.User")] 

User的完整代码如下:

  
  
  
  
  1. package test.vo 
  2.     [RemoteClass(alias="test.vo.User")] 
  3.     public class User { 
  4.         public var userName:String; 
  5.         public var password:String; 
  6.         public var hessianTypeName:String = "test.vo.User"
  7.     } 

原文:Flex调用Hessian服务时错误#1014与#1065的处理

李晨亮

李晨亮的博客

你可能感兴趣的:(Flex,职场,hessian,休闲)