Open GoogleCodeExporter opened 9 years ago
Upgrade to latest version. Your version is no more supported
Original comment by olat...@gmail.com
on 30 Dec 2010 at 10:02
I try this on 0.9.0, 0.9.1, and 1.0.0 versions of red5 and i got same
exceptions...
Original comment by kaanozdincer
on 30 Dec 2010 at 10:05
Hi again;
I fixed error like that;
I downloaded to source code of red5-0.8.0, change
org.red5.server.stream.ClientBroadcastStream file as;
private void sendPublishStartNotify() {
+++ if (connMsgOut == null) start();
Status publishStatus = new Status(StatusCodes.NS_PUBLISH_START);
publishStatus.setClientid(getStreamId());
publishStatus.setDetails(getPublishedName());
StatusMessage startMsg = new StatusMessage();
startMsg.setBody(publishStatus);
try {
connMsgOut.pushMessage(startMsg);
} catch (IOException err) {
log.error("Error while pushing message.", err);
}
}
and build red5 with ant. (ant clean dist)
Thanks...
Original comment by kaanozdincer
on 31 Dec 2010 at 12:32
Original issue reported on code.google.com by
kaanozdincer
on 21 Dec 2010 at 10:56