Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
1answer
209 views

Best Method of Channel Pooling in Google App Engine

It seems the only way to make the GAE Channel API financially viable is to implement some kind of pooling mechanism (one of the senior app engine product managers even told me this when I emailed them ...
9
votes
1answer
467 views

How can I emulate Go's channels with Haskell?

I recently started reading about the Go programming language and I found the channel variables a very appealing concept. Is it possible to emulate the same concept in Haskell? Maybe to have a data ...
8
votes
3answers
2k views

Android Edit Bitmap Channels

It's possible to access the alpha channel of a given bitmap with extractAlpha(), but I haven't been able to find any way to actually set the alpha channel of a bitmap. How can multiple greyscale ...
6
votes
1answer
401 views

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 ...
6
votes
2answers
7k views

WCF Callback channel faulted

I'm trying to implement a reconnect logic for a wcf client. I'm aware that you have to create a new channel after the current channel entered the faulted state. I did this in a channel faulted event ...
5
votes
3answers
2k views

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); ...
5
votes
2answers
619 views

WCF ChannelFactory State Property

What does it mean for a ChannelFactory to have a State property? I understand that a created channel can have connection based states. But am confused as to why the ChannelFactory also has such ...
5
votes
1answer
2k views

Recovering from a CommunicationObjectFaultedException in WCF

I have a client app that tries every 10 seconds to send a message over a WCF web service. This client app will be on a computer on board a ship, which we know will have spotty internet connectivity. ...
4
votes
2answers
1k views

WCF: Direct Channel usage vs using a Proxy?

As the title implies I am trying to get an understanding of why in WCF sometimes people choose to "generate proxies" vs using a ChannelFactory to manually create new channel instances. I have seen ...
3
votes
3answers
131 views

golang: Is it OK to leave a channel open?

Is it OK to leave a go channel open forever (never close a channel) if I never check for it's state? Will it lead to memory leaks? Is the following code OK? func (requestCh chan<- Request) ...
3
votes
3answers
160 views

Is message passing via channels in go guaranteed to be non-blocking?

In order to assess whether go is a possible option for an audio/video application, I would like to know whether message passing in go satisfies any non-blocking progress guarantees (being ...
3
votes
1answer
395 views

Tic Tac Toe AppEngine Channel sample mechanics

Greetings gents, EDIT: forgot the link to the sample, here it is: http://code.google.com/p/java-channel-tic-tac-toe/source/browse/trunk/src/com/google/appengine/demos/channeltactoe/ So i'm studying ...
3
votes
2answers
1k views

Handle persistent WCF client entering faulted state

We've got a WCF service that we're consuming from a web app. The client we're using was generated using the Visual Studio "Add Service Reference" option. Since it's a web app, and since the nature ...
3
votes
2answers
247 views

Hiding certain channel of an image with C#

i have an image processing application that is able to getpixel, anyone know how can i hide or show the RGB channel of my image? For example when i click a button call "RED" it will hide red channel ...
3
votes
1answer
189 views

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 ...
3
votes
4answers
5k views

WCF Maximum Message Size Quota

I'm trying to call a WCF service (hosted in a Windows Service, not IIS) and am getting the following error: The maximum message size quota for incoming messages has been exceeded for the ...
3
votes
4answers
1k views

How can I tell if another app has registered an IPC Remoting channel?

So I have an application which has a .NET API available. Their API library communicates with their main application through .NET remoting calls. In order to use the API, the application must be up and ...
3
votes
3answers
7k views

How to calculate the average rgb color values of a bitmap

In my C# (3.5) application I need to get the average color values for the red, green and blue channels of a bitmap. Preferably without using an external library. Can this be done? If so, how? Thanks ...
2
votes
1answer
50 views

WCF how to create two channels connected to the same service instance

I have some problems with WCF service instances. ChannelFactory<IMyInterface> factory = new ChannelFactory<IMyInterface>(new NetTcpBinding(), new ...
2
votes
0answers
107 views

using the channel google app engine from within a chrome extension

here is the code that runs in the extension, in the background.html. function onLoad() { var path="http://localhost:8082/index.htm?key=1234"; xhr.open('get', path, false); xhr.send(); ...
2
votes
1answer
82 views

How to controll the MIDI channel's volume

I have this code: Synthesizer synthesizer = MidiSystem.getSynthesizer(); synthesizer.open(); Instrument[] instrument = synthesizer.getDefaultSoundbank().getInstruments(); ...
2
votes
2answers
77 views

Record and playback simultaneously - Asterisk

I am trying to build an application where I am required to record and playback simultaneously. The application needs to go live on an asterisk telephony server. My problem is: A user calls the ...
2
votes
1answer
59 views

Configurable Resource - Design patterns

First of all bit of background. We are developing an application which receives messages from n number of sources. The source may be a messaging queue, an FTP location, a webservice call to a ...
2
votes
1answer
189 views

Datagram Channel Sockets not writing Java

Simply said, I'm able to receive data from the connected socket, until about 10 seconds after it starts. The solution to fix this is, to send data to the 'client'(an ARDrone) to keep the data stream ...
2
votes
1answer
367 views

Synchronize chat over multiple windows/tabs using AppEngine Channel API

I am developing a chat application on top of the Google AppEngine Channel API, and one challenge is in co-ordinating/synchronizing chat when running in multiple windows/tabs (in a single browser). In ...
2
votes
2answers
1k views

Android Multiplayer Real Time game, what is the best protocol/communication?

I want to develop an Android multiplayer real time game. But I'm still confuse what is the best way to do the communication. I found a few options: TCP UDP Ajax/Comet/Messaging services i.e. ...
2
votes
1answer
283 views

WCF client - when should the client close the channel

In a typical client-service application, where service is WCF, how to you use the service reference? For example, do you instantiate service for each call separately, or do you open one and keep it ...
2
votes
2answers
666 views

Handle hidden channel in antlr 3

I am writing an ANTRL grammar for translating one language to another but the documentation on using the HIDDEN channel is very scarce. I cannot find an example anywhere. The only thing I have found ...
2
votes
1answer
47 views

FF extension: need some help observing POSTs

I'm trying to write an extension that observes HTTP requests, and specifically POSTs. I'm having trouble accessing all of them - some things are slipping through, and I don't know why. I assume it's ...
2
votes
1answer
226 views

Testing SocketChannel NIO

I just wrote some NIO-code and wonder how to stress-test my implementation regarding SocketChannel.write(ByteBuffer) not able to write the whole byte-buffer SocketChannel.read(ByteBuffer) reading ...
2
votes
2answers
1k views

WCF wsHttpBinding “There was no channel that could accept the message with action”

[Update] Solved the Problem by generating a new web.config. Possible error was the second endpoint ("mex"). [Update/] I have a webservice in IIS. I'm trying to call a function but i get an ...
2
votes
2answers
730 views

get FileChannel without using java.io.* (use pure NIO)

Recently I got a comment to this answer that I should stay away from java.io if I want to use "pure NIO". This is the simplified code (copy a file): private static void copy(File source, File ...
2
votes
2answers
864 views

WCF channel lifetime with repeat calls

Maybe this is an obvious question, maybe it isn't. Imagine a GUI control application where every button push calls a different function on a remote WCF service. Button usage is frequent at ...
2
votes
2answers
4k views

WCF ChannelFactory and Channel caching in ASP.NET client application

I´m building a series of WCF Services that are going to be used by more than one application. Because of that I´m trying to define a common library to access WCF services. Knowing that each service ...
2
votes
2answers
1k views

Antlr hidden channel whitespace problem

I have the following Antlr grammar: grammar MyGrammar; doc : intro planet; intro : 'hi'; planet : 'world'; MLCOMMENT : '/*' ( options {greedy=false;} : . )* '*/' { $channel = HIDDEN; }; ...
1
vote
1answer
87 views

CSP Channels with native threading in Python

I'm looking for an implementation of CSP channels on top of native threads in Python. I've seen a few libraries about but they include everything but the kitchen sink. Specifically, I'm looking for ...
1
vote
1answer
66 views

How to Return DTO Nicely Without Closing Connection in WCF

My WCF Service in C# looks like this. [ServiceContract] public class MySecretService { [OperationContract] [FaultContract(typeof(ErrorMessage))] public MyDTO ReturnMyDTOMethod(int ...
1
vote
2answers
79 views

How can I read a certain amount of Bytes into a Buffer?

The following problem: I have a large textfile with each line containing 13 bytes. I do not want to read the file line by line in the common way using InputStream. I am trying to use NIO Channels and ...
1
vote
1answer
123 views

ZeroMQ in javascript client

Have anyone used ZmqSocket.js successfully? I'd like to know how can it be used to establish a safe channel between the browser and a zeromq server app. Is there other/better options for such use ...
1
vote
0answers
126 views

android youtube channel on listview

hi i want to extract videos from a youtube channel and show them into a listview with preview picture and title and when click on it lauch the youtube App. Is there any example I can follow? Thanks ...
1
vote
2answers
247 views

WCF Channel and ChannelFactory Caching

So I've decided to up the performance a bit in my WCF application, and attempt to cache Channels and the ChannelFactory. There's two questions I have about all of this that I need to clear up before I ...
1
vote
1answer
49 views

What is the difference between write and send on NIO channels?

I'm building a UDP communication system with Java NIO, and browsing through the javadoc for the APIs I noticed that channels have a write primitive and a send primitive. I have prototyped and tried ...
1
vote
1answer
130 views

how to close the Channel for Writing

We are using Netty 3.2.3 version and want to close the channel from writing according to a certain calculation. We are closing the channel by: channel.setInterestOps(channel.getInterestOps() | ...
1
vote
0answers
88 views

ServerConfig.getChannel() doesn't work despite compiling with services-config.xml

I'm developing a pure AS3 application using BlazeDS for backend communication. Currently I'm defining the AMFChannels at runtime using something like this: var amfChannel:AMFChannel = new ...
1
vote
1answer
585 views

WCF ProtocolException : Bad Request 400 (related to http message size)

I am trying to pass a base64 encoded string over WCF using WebHttpBinding. I get the cryptic error 'Bad Request 400' that the server is not responding. I know its related to the size of the string ...
1
vote
1answer
263 views

Why is caching WCF channels a bad thing?

I've been reading a lot of WCF articles online and it seems like most people cache the ChannelFactory objects but not the channels itself. It appears that most people are afraid to use channel caching ...
1
vote
1answer
254 views

How to read messages from an IRC channel using an IRC bot written in Bash?

I could not find much documentation on IRC bots written in Bash so here is my question. I have a simple bot that can join a channel and write messages into the channel. However, how do I read ...
1
vote
0answers
241 views

Getting currently playing song name in AVRCP or Establishing browsing channel in AVRCP

I am trying to create a AVRCP app on Andriod, from which I will be connecting to another device (smart phone). Currently I am able to play, pause songs of other device from my app, but I want to get ...
1
vote
1answer
230 views

Pseudo Tcp channel

What is a pseudo-tcp channel and how can it be implemented?
1
vote
1answer
491 views

Matlab: applying estimated transfer function to a signal to simulate channel

I'm trying to simulate an audio transmission channel from some samples: I have original recordings and the ones recorded with distortion. I'm using tfestimate() in order to obtain a transfer function ...

1 2 3