channel

Flex - After upgrading Ubuntu OS, I am getting "Channel Disconnected" error

I wasn't sure if this question would go better here or at superuser, since it kinda crosses between the two. I have a Flex web app with a PHP service, using ZendFramework. The app works fine on Ubuntu 9.04 Server. No errors at all, behaves exactly as expected. If I install Ubuntu 10.04 Server, I suddenly start getting a "Channel discon...

Weather Channel API support for videos

Hi, I am developing an iPad application in which I will be displaying weather information for location entered by the user. I am using Weather channel API for this. Is it possible to get the video that shows weather of near-by locations of the location entered. (The Weather Channel Application is showing the video of the location say ...

Checking if a channel has a ready-to-read value, using Go.

How do I check if a channel has a value for me to read? I don't want to block when reading a channel. I want to see if it has a value. If it does have one, I'll read it. If it doesn't have one (yet), I'll do something else and check back again later. Thanks! ...

Problems discovering channel in PEAR

Hi, im having this problem. everytime i try to install something using channels i get this error: Discovering channel pear.phing.info over http:// failed with message: channel-add: adding Channel "pear.phing.info" to registry failed Trying to discover channel pear.phing.info over https:// instead Discovery of channel "pear.phing.in...

How do I mixdown multiple audio channels in java/xuggler?

like mixing 6 channel surround down to stereo? xuggler throws: ERROR com.xuggle.xuggler - Error: inputChannels > 2; unsupported ...

YouTube channel video player with playlist.

I am looking for creating youtube section on my site, where the user could plug in their "youtube channel name" and it will show a playlist/player box on their profile. What I want in this playlist/player box is that it should play the default video on load; the list of other videos in the channel could be on the left side or on the bot...

Scala actors exception "react on channel belonging to other actor"

Given the following code: class A extends Actor { def act() { loop { reactWithin(1000) { case _ => println("A Message") } } } } and class B extends A { val test = Actor.actor { loop { reactWithin(1000) { case "B" => println("B Message") } } } } Creating an instance of ...

ReadableByteChannel.read(ByteBuffer dest) reads capped at 8KB. Why?

I've got some code that: reads from a ReadableByteChannel into a ByteBuffer, takes note of the bytes transfered, pauses a few tens to hundreds of miliseconds, passes the ByteBuffer onto a WritableByteChannel. Some details: Both Channels are TCP/IP sockets. The total connection read size is in the tens of megabytes. The sourc...

Multiple channels in a single RSS xml - is it ever appropriate?

A typical xml file for an RSS feed starts with an "rss" element on the outermost level, and usually has a single "channel" element within it that represents the "feed" or "channel." Is there ever a situation where it is appropriate to use multiple channels within an element, like the following? <rss> <channel> ... ...

Is the callback from WCF to ASP.NET possible?

I have a Web service hosted in IIS in different box and WCF service hosted in Windows service, in a different box.(N-tier approach). Here, Web service is a client for WCF service. The request to upload the file comes to the IIS hosted Web service, and this IIS hosted Web service in return calls the WCF service and does the actual upload....

Google Feed API V2 aka push vs Channel API vs WebSocket

Does anybody knows when will feed v2 leave trusted tester stage? There are some usecases of feed v2 that overlap with Google Channel API, so I don't quite get point of releasing feed v2, instead of switching to channel API entirely. Is this due to smoother transition towards Web Socket API ? or I miss some point :) ...

Thread interrupt not ending blocking call on input stream read

I'm using RXTX to read data from a serial port. The reading is done within a thread spawned in the following manner: CommPortIdentifier portIdentifier = CommPortIdentifier.getPortIdentifier(port); CommPort comm = portIdentifier.open("Whatever", 2000); SerialPort serial = (SerialPort)comm; ...settings Thread t = new Thread(new SerialRea...

How do you specify the channel .NET remoting will use to perform a callback

I have a client (and server) with 2 channels set up on different protocols, lets say X:// and Y://. If I call a service (over remoting) from client (C) on a server (S) that needs to perform a callback to the client (so S->C) is there a way to specify which channel to use? In my use case I want any calls from X:// to callback over X:// ...

List installed packages in channel

With PHP's PEAR, how can I check whether package foo in channel bar is already installed? (Assuming that the channel bar is available, and has already been "discovered".) Something like pear list that displays installed packages in channel bar only would be ideal. ...

Script to check for VGA/HDMI cable and channel status.

Hi there, i have to customize a debian based distro to run on some pc, showing some advertising on screen (with firefox in fullscreen mode). I'd like to write a software (script or compiled) that checks every X seconds the status of the VGA/HDMI cable and upon disconnection send an email to the administrator. It would be nice to check i...