简体   繁体   English

Flex远程处理错误

[英]Flex Remoting error

I have a Flex and Java application and i am using BlazeDS between flex and java. 我有一个Flex和Java应用程序,并且在Flex和Java之间使用了BlazeDS。 Generally my application works fine. 通常我的应用程序运行良好。 I observed when ever i try fetch data little faster(not giving gap between two fetch commands) then i am getting the error 我观察到每当我尝试更快地获取数据时(两个获取命令之间都没有间隔),然后我得到了错误

"Server error :faultCode:Channel.Call.Failed faultString:'error' faultDetail:'NetConnection.Call.Failed: HTTP: Failed'" “服务器错误:faultCode:Channel.Call.Failed faultString:'错误'faultDetail:'NetConnection.Call.Failed:HTTP:失败'”

I guess when ever load is increasing on BlazeDs, i am getting the error. 我想每当BlazeD上的负载增加时,我就会收到错误消息。 I am calling the java service using following code 我正在使用以下代码调用Java服务

    service = new RemoteObject();
service.showBusyCursor=true;
service.destination = "javaDataService"; 
service.requestTimeout = 50;   
var call:Object = service.findAll();
call.addResponder(this);

This problem is coming randomly and i am running out of all ideas. 这个问题是随机出现的,我的所有想法都用光了。 Please help me out to solve this issue. 请帮我解决这个问题。 Regards, Aj 问候,Aj

Its been a while since I worked with BlazeDS, but of the many oddities it had was that it couldn't support more than 3 concurrent calls. 自从我与BlazeDS合作以来已经有一段时间了,但是它有很多奇怪的地方是它不能支持超过3个并发调用。 Perhaps this is the problem why it works as long as you don't go too fast? 也许这就是为什么只要您不走得太快就会起作用的问题?

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM