tags:

views:

216

answers:

1

Hi

I am using Blazeds-3.2.0.3978 amd Weblogic 10.0.0.1. I have the session timeout for 5 minutes.

Below is channel definition i am using

channel-definition id="my-polling-amf"
class="mx.messaging.channels.AMFChannel"

endpoint
url="http://{server.name}:{server.port}/{context.root}/messagebroker/amfpolling"
class="flex.messaging.endpoints.AMFEndpoint"/


polling-enabled true polling-enabled

polling-interval-seconds 1 polling-interval-seconds

I have declared destination as

destination id="destICL"
adapter ref="actionscript" /

message-time-to-live 120000 message-time-to-live

Generally 10-15 users uses the system simultaneously. The server side code sends approx 3000 messages in one second on the destination. Everthing works fine but some time the client misses few messages. It happens sometimes. It is difficult to reproduce also. But any client cannot afford to loose message. I can send you the conference files for your reference.Any blaze expert can provide any pointer???

Thanks ilikeflex

A: 

Even am facing the same problem , while am sending messages to users, many of the users are not getting messages, i used to develop with blazeds & Jetty server,

what could be the reason ? why blazeds not supporting more than 100 or 150 ?

my configaration in services-config.xml as follws

<polling-enabled>true</polling-enabled>
    <login-after-disconnect>true</login-after-disconnect>
    <invalidate-session-on-disconnect>false</invalidate-session-on-disconnect>
    <polling-interval-seconds>1</polling-interval-seconds>
    <wait-interval-millis>60000</wait-interval-millis>
    <client-wait-interval-millis>30</client-wait-interval-millis>
    <max-waiting-poll-requests>300</max-waiting-poll-requests>
Thirst for Excellence