I have fds set up on a server using Coenaets test drive settup. If I
try to connect to one of the message destinations using the
httpChannel protocol It times out. I have httpChannel as the third
option in the configureation of that destination because the computer
Im using at work to test it out has port 8600 blocked. My services-
config.xml file has the following channel-definition
<channel-definition id="my-http"
class="mx.messaging.channels.HTTPChannel">
<endpoint uri="http://{server.name}:{server.port}/
{context.root}/messagebroker/http"
class="flex.messaging.endpoints.HTTPEndpoint"/>
</channel-definition>
Im creating an Apollo app so I am defining the endpoints dynamically
like this
var httpChannel:HTTPChannel = new HTTPChannel("my-http", "http://ustr-
aveniccl1/messagebroker/http");
httpChannel.pollingEnabled = true;
httpChannel.pollingInterval = 2000;
var channelSet:ChannelSet = new ChannelSet();
channelSet.addChannel(httpChannel);
this.consumer = new Consumer();
this.consumer.channelSet = channelSet;
Is there any reason why the client can't connect to the destination?
I tried this all locally too and still couldn't connect am I missing
something?
Chris