当前位置: 首页 > 图文教程 > Flash动画 > Flash动画制作 > NetConnection.Connect的几种错误

Flash动画制作
Flash AS 3.0实例教程:用Tween类制作缓动动画
Flash AS2实例教程:制作镭射闪光字动画效果
Flash AS2基础教程:一步绘制线条
Flash cs3仿真艺术设计4.4:模糊滤镜的应用
Flash cs3仿真艺术设计4.5:模糊运动制作飞行文字
Flash cs3仿真艺术设计4.6:组合效果应用实例
Flash cs3仿真艺术设计4.7:模糊滤镜的应用
Flash AS 3.0基础教程:物理基础之重力
Flash AS3.0菜鸟学飞教程:创建自定义类
Flash cs3仿真艺术设计4.8:选择模糊的应用
Flash cs3仿真艺术设计4.9:背景模糊应用技巧
Flash AS3.0菜鸟学飞教程:类的编写之时间轴代码转换为外部类
Flash AS3.0菜鸟学飞教程:类的编写之不使用库元件
Flash cs3仿真艺术设计5.1:2.5D基础应用
Flash cs3仿真艺术设计5.2:2.5D高级应用
Flash AS3.0菜鸟学飞教程:含有多个类的AS3类文件
Flash AS3.0实例教程:AS3.0代码制作3D旋转动画效果
Flash cs3仿真艺术设计5.3:2.5D动画技巧之绘制猴子
Flash cs3仿真艺术设计5.4:交换方法制作嘴型吻合
Flash cs3仿真艺术设计5.5:嵌套法打造角色嘴型吻合

Flash动画制作 中的 NetConnection.Connect的几种错误


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-30   浏览: 56 ::
收藏到网摘: n/a

本文例举了NetConnection.Connect的几种错误。

有以下这几种返回:
1、NetConnection.Call.Failed Error
NetConnection.call() 调用服务器端方法失败。返回的info对象包含一个具体的调用失败说明。for in一下可以看到。

2、NetConnection.Connect.AppShutdown Error
服务器端应用程序因为一些原因被关闭(过度占用server端资源),或者服务器已经被关闭。

3、NetConnection.Connect.Closed Status
连接中断。

4、NetConnection.Connect.Failed Error
连接失败。如FMS 没有启动。

5、NetConnection.Connect.InvalidApp Error
targetURI中rtmp://[ip或domain]/[appName]
其中appName不存在。

6、NetConnection.Connect.Rejected Error
连接被拒绝 原因:
targetURI指定的application不充许client连接,或者传递给应用程序的参数不对,也可能是server应用程序直接拒绝连接(可以在appName文件夹中写一个ASC文件做到)
这时,info对象有一个application属性,包含服务器方法application.rejectConnection()的返回值。
client在被拒绝后会马上再收到一个NetConnection.Connect.Closed的信息。

7、NetConnection.Connect.Success Status
连接成功。
当返回是NetConnection.Connect.Fail时,可以从下面几个方面思考原因:
Are you connecting to the correct server?
Is the server running?
Are you specifying the protocol (rtmp:) for connecting to the server?
If you are connecting from behind a firewall, are you specifying the correct protocol (rtmpt:)?
Attempts to connect to the server can also fail if the permissible number of socket connectionson either the client or the server computer is at its limit. This limit is ependent on how much physical memory your server has, and how busy the connections are. On Windows systems,the memory for socket connections is allocated out of the non-paged memory, so it cannot beswapped out to a page file. You may see that you reach the maximum limit at different valuesfrom time to time as other running programs (such as core operating-system services) arecompeting with your program for space in the non-paged memory pool.