Hi all. I set up some messaging service with BlazeDS messaging, and my swf
works good in FF, IE, Chrome as well as in standalone player, but fails with
Opera:-(. I use streaming-amf channel, and here my service-config.xml :
<?xml version="1.0" encoding="UTF-8"?>
<services-config>
<services>
<service-include file-path="remoting-config.xml" />
<service-include file-path="proxy-config.xml" />
<service-include file-path="messaging-config.xml" />
</services>
<!-- мой ip: 10.0.19.59 -->
<security>
<login-command
class="flex.messaging.security.TomcatLoginCommand"
server="Tomcat" />
</security>
<channels>
<channel-definition id="my-streaming-amf"
class="mx.messaging.channels.StreamingAMFChannel">
<endpoint
url="http://10.0.19.59:8080/publish/messagebroker/amfstreaming"
class="flex.messaging.endpoints.StreamingAMFEndpoint" />
<properties>
<connect-timeout-seconds>5</connect-timeout-seconds>
<max-streaming-clients>100</max-streaming-clients>
<idle-timeout-minutes>0</idle-timeout-minutes>
<server-to-client-heartbeat-millis>5000
</server-to-client-heartbeat-millis>
</properties>
</channel-definition>
<channel-definition id="my-amf"
class="mx.messaging.channels.AMFChannel">
<endpoint
url="http://10.0.19.59:8080/publish/messagebroker/amf"
class="flex.messaging.endpoints.AMFEndpoint" />
</channel-definition>
<channel-definition id="my-secure-amf"
class="mx.messaging.channels.SecureAMFChannel">
<endpoint
url="https://10.0.19.59:8080/publish/messagebroker/amfsecure"
class="flex.messaging.endpoints.SecureAMFEndpoint" />
<properties>
<add-no-cache-headers>false</add-no-cache-headers>
</properties>
</channel-definition>
<channel-definition id="my-polling-amf"
class="mx.messaging.channels.AMFChannel">
<endpoint
url="http://10.0.19.59:8080/publish/messagebroker/amfpolling"
class="flex.messaging.endpoints.AMFEndpoint" />
<properties>
<polling-enabled>true</polling-enabled>
<polling-interval-seconds>4</polling-interval-seconds>
</properties>
</channel-definition>
</channels>
<logging>
<target class="flex.messaging.log.ConsoleTarget" level="Error">
<properties>
<prefix>[BlazeDS] </prefix>
<includeDate>false</includeDate>
<includeTime>false</includeTime>
<includeLevel>false</includeLevel>
<includeCategory>false</includeCategory>
</properties>
<filters>
<pattern>Endpoint.*</pattern>
<pattern>Service.*</pattern>
<pattern>Configuration</pattern>
</filters>
</target>
</logging>
<system>
<redeploy>
<enabled>false</enabled>
</redeploy>
</system>
</services-config>
May be problem with Opera's settings or I do something wrong with my BlazeDS
settings?
Andrew.
Thx.
--
View this message in context:
http://old.nabble.com/BlazeDZ-messaging-works-good-in-FF-and-IE%2C-but-don%27t-in-the-Opera-tp26680163p26680163.html
Sent from the FlexCoders mailing list archive at Nabble.com.