A common means for (un)related objects to communicate with each other.

learn more… | top users | synonyms (1)

0
votes
2answers
12 views

SimpleStocks protocol usage (Apple sample code)

In the SimpleStocks sample code provided by Apple, dataSource is defined as follows: property (nonatomic, weak) IBOutlet id <APLSimpleStockViewDataSource> dataSource; and then used variously ...
-1
votes
1answer
11 views

Json Request on web/http protocol in loadrunner

i need to send json payload to a given URL usin web/http protocol. I have a web url and a payload only. how do i send the request ? Thanks a lot in advance pushpak
1
vote
2answers
38 views

Objective-C protocol syntax

Here are 2 lines of code from Apple's own SimpleStocks sample code (APLSimpleStockView.m) NSInteger dataCount = [self.dataSource graphViewDailyTradeInfoCount:self]; NSArray *sortedMonths = ...
1
vote
2answers
26 views

How to send HTTP requests to the v8 debugger?

The V8 javascript engine implements this debugger protocol. I start V8 (node.js) and I can connect through the browser to the open port (5858). What is the format of a request that needs to be send to ...
0
votes
2answers
62 views

How to change boolean code to int code in java [closed]

I am trying to change some code in my admin panel because of some recent changes in my protocols. What I am trying to do is change the code from boolean to int. I will state now I am a complete novice ...
0
votes
1answer
16 views

C# based lightweight application layer protocol - alternative to HTTP

I'm pretty new in C# and I'm developing C#(WPF) application with client/server architecture, and I'll need to communicate between two machines(only short JSONs, however a lot of them), and HTTP is too ...
-1
votes
1answer
103 views

Delphi XE4 conversion from ObjC Class / protocol? [closed]

How to use ObjC Class with Protocol from Delphi XE4 ? ObjC : Write ObjC Class with protocol Delphi : Write Interface code Delphi : Compile & Run App Delphi : When Press Button in ...
0
votes
0answers
35 views

Mixed polling & event-driven serial protocol implementation

I'm working on a Java library (for Android, but that's of little relevance) that communicates with a hardware device using a serial port, via a protocol that mixes synchronous queries (polling) and ...
0
votes
1answer
37 views

What NSTextFieldDelegate trully is?

The declaration of NSTextFieldDelegate really confuse me a lot. In Xcode, I click "jump to defination" of NSTextFieldDelegate, and found: @protocol NSTextFieldDelegate ...
0
votes
2answers
25 views

protocol and delegate not accessing method

I am trying to pass some data back to my UIView, its abit of a complicated situation I will try to explain it. I have my mainViewController // request is made to RequestClass requestClass // ...
0
votes
1answer
63 views

FFMPEG static build with RTMP support?

Is there any FFMPEG static build(linux CentOS in my case) download link with an RTMP support(--enable-librtmp)? I have try to build one but it's unsuccessful.
0
votes
2answers
37 views

Communication between container, delegate protocol not working?

I'm building an iPad app with storyboards. I have a "data page" (view) where I put one big container with a tableview which contains data. then I have 3 small containers above, also with tableviews, ...
0
votes
0answers
18 views

Avro JSON Serialization Example for RPC

I'd like to use an AVRO like (JSON) serialization for RPC calls, but I don't need (and thus want) to use the AVRO parser/serializer. I'm struggling with finding a meaningful example of the JSON ...
0
votes
1answer
81 views

adb protocol failure using install and push

I cannot install apk files to my phone using adb install. I cannot push apk files to my phone's sdcard using adb push. In both cases adb gives me "protocol failure", followed by a notice that it is ...
-2
votes
0answers
9 views

Where is the memcached protocol published? [closed]

I know that I can communicate with memcached using a CLI over telnet, and I know about libraries such as libmemcached that handle communication for you. I'd like to know something about the protocol ...
0
votes
1answer
34 views

curl: unsupported protocol(https) in CentOS6 - related with jansson

I am following jansson tutorial below. https://github.com/akheron/jansson/blob/master/doc/tutorial.rst#id2 while I code like tutorial, I faced a problem. this jansson thing uses curl library, and ...
-2
votes
1answer
31 views

Custom protocol in wp7 [closed]

How to make custom protocols work in windows phone 7? I know its achievable in windows store app using protocol declaration. Is it possible in Windows Phone 7 as well?
4
votes
3answers
61 views

Data transfer protocol between different platforms

I need to implement rather simple network protocol: there is device with microcontroller (language is C) and Java application, they should communicate: I need to implement firmware update, and maybe ...
0
votes
0answers
19 views

How to implement network service identification, check if service is as expected (like TCP handshake)

I am implementing service with ZeroMQ (a good abstraction over networking). Ideally it would be cool if client can determine if server is what expected. Example: There are 3 services: Sum service. ...
9
votes
2answers
95 views

How would you idiomatically extend arithmetric functions for other datatypes in Clojure?

So I want to use java.awt.Color for something, and I'd like to be able to write code like this: (use 'java.awt.Color) (= Color/BLUE (- Color/WHITE Color/RED Color/GREEN)) Looking at the core ...
0
votes
0answers
12 views

Multi Protocol Adapter

Is any one aware of a java based framework with which messages can be delivered to multiple protocol. In our problem every message contains an endpoint URL to which this message needs to be ...
0
votes
0answers
14 views

Filter packets using packet size in Ubuntu

I need to filter a protocol (ideally using iptables) that is detected using the sizes of the first piece of data sent and the first piece of data received. This is the logic: if (sentSize1 >= 50 ...
1
vote
1answer
46 views

Class that conforms to a protocol - compile time check

Is this valid syntax? @property (nonatomic, strong) Class<SomeProtocol> myClass; SomeProtocol is defined as: @protocol SomeProtocol <NSObject> @required + (BOOL)isAllowed; @end I ...
0
votes
2answers
30 views

Anyone know how to fix a selector error?

I try to run my project in XCode and I get this error: 'NSInvalidArgumentException', reason: '-[UIView setDataSource2:]: unrecognized selector sent to instance 0x88497f0' All of the ...
0
votes
1answer
42 views

LTE stack protocol development

While reading an article on LTE, I came across a term "LTE Stack Protocol Development". Sadly, there was no further explanation on the term and when I looked it up on google, it turned up all job ...
0
votes
1answer
44 views

How do I forward data to a protocol before dismissing a view manually?

I want to dismiss a view controller manually using dismissViewController:animated. The problem is I want to save a value before I dismiss the view, otherwise it becomes null and I get no data in my ...
0
votes
2answers
43 views

is it possible/correct for a class (not an instance) to act as a delegate?

I'm building the iOS app that is to act as a client for a REST server. So far I've been handling my all my requests in a very simple manner. Whenever I needed to make a call, I'd do something like: ...
0
votes
3answers
59 views

How do I call viewDidLoad Manually?

I'm having a slight problem with iOS. I am passing data back and forth between two view controllers using protocols and manually switching views. My problem is that when I dismiss the top view, ...
0
votes
0answers
18 views

Using Apache Mina (1.7), how can I handle a multi-step protocol?

Background These past few weeks I've been writing and rewriting a JAVA application that acts as both a server and a client. Users can connect to it using Telnet or Flash and communicate with it using ...
0
votes
2answers
23 views

Objective-C: Where to initalize a delegate

I don´t fully understand how to use the Delegation pattern in obj-C. Basically I have a class: DigGameControlLayer.h and in it´s header I define a protocol with one required method that all users of ...
0
votes
0answers
14 views

Is the content length field needed in a non-persistent connection protocol?

The content-length field is necessary if persistent connection is applied in HTTP. However, what if the connection is non-persistent? Is this field still needed? In other words, do we really need a ...
0
votes
0answers
35 views

Ubuntu custom URL protocol handler

I want to ask a question, but I will first show my files <html> <body> <a href="cloudje:firefox">Open firefox</a> </body> </html> My .desktop file: [Desktop ...
0
votes
1answer
25 views

Are the ID in celery's message format per task or per call of a task?

I see in the Celery protocol Docs (http://docs.celeryproject.org/en/latest/internals/protocol.html) that there is an ID in the message. It says that it is the "Unique id of the task (UUID)" It this ...
0
votes
0answers
35 views

Is there any open-source implementation of TWAMP?

I am looking for an open source implementation of TWAMP (http://tools.ietf.org/html/rfc5357). Does anybody know of one?
0
votes
1answer
57 views

Creating a Go-back-N sliding window Client on java

I´m trying to create a Client in java to transfer files over UDP using a Go-back-N sliding window. I'm using a TftpPacket, but that's not relevant for the question. My problem its how am I able to ...
0
votes
0answers
20 views

Distance vector routing protocol

http://i.imgur.com/BNHV77s.png In the attached screenshot is a distance vector routing protocol question. after exchanging initial routing tables (1st iteration) can A -> D by first going to B(3) ...
1
vote
1answer
29 views

Media Resource Control Protocol (MRCP) and Dictation (Speech Recognition without Grammars)

Does Media Resource Control Protocol (MRCP) tells about Speech Recognition but does not tell anything about Dictation (Speech Recognition without sending Grammars).At least I can not find anything. ...
2
votes
4answers
91 views

C# Looking for 2 way communication. (WCF)

My program: Different Clients connect to the Server (User login) Then server starts to Push small data ( below 1KB ) to all of them every second (or less). My questions: What service should I ...
5
votes
3answers
145 views

Server - C#, Client - Flash, data exchange protocol

We are writing online multiplayer game in Flash wish .Net server side, we need duplex channel so communication is done using sockets. Can you tell me some best practices about protocol/format of ...
1
vote
0answers
51 views

TCP congestion window size in slow start phase

I have a question about the increasing rate of TCP sender's congestion window during the slow start phase. Traditionally, the size of cwnd exponentially increases for every RTT. For instance, if the ...
0
votes
1answer
43 views

How Do sequence numbers affect sliding window protocol with fixed window size?

I've been going through, trying to learn this protocol from a book, except at this point they seem to shy away from it, they express that the sequence bit is the number of frames one can send and ...
1
vote
1answer
75 views

Sending messages from other languages to an IPython kernel

Does anyone have any experience of communicating with IPython kernels from outside of Python? If I were trying to send messages from a Python app to an IPython kernel, I'd use the zmq.kernelmanager ...
-2
votes
0answers
21 views

How many IPv6 address per interface? [closed]

How many IPv6 addresses can be configured on single interface? Regards, Shreehari
0
votes
1answer
76 views

iOS Pass data, singleton, extern or via protocols?

Hy all, I am really stuck at data passing in my iOS app. First i have a class with TabBarController and inside another two ViewController. It's a container view with a daily and weekly calendar ...
1
vote
0answers
11 views

Binary structures description in documentation

I would like to describe the C / C++ binary structures that our program receives through its network socket in our user documentation, but I'm not very experienced in representing that data correctly ...
0
votes
0answers
33 views

declaring more than one delegate in a given class

I'm totally confused and in need for urgent help I've declared two protocols @protocol DeletedDelegate <NSObject> - (void) deletedObj: (id) p_objDeleted; @end @protocol BrowseDelegate ...
0
votes
0answers
36 views

Which are the Best Resources for the Gnutella P2P protocol?

I'm looking for using the Gnutella P2P protocol for something other than file-sharing. I want to implement distributed processing using it. For that, I need to learn it in detail. Are there any good ...
0
votes
1answer
24 views

Joystick can't hardly communicate UILabel (strong, retain, weak, etc…)

I'm using CPJoystick which can be found here. https://github.com/Wense/CPJoystick I'm using Xcode 4.6 and the breakpoint stops over there. @property (nonatomic, weak, readwrite) ...
0
votes
1answer
131 views

Unsafe JavaScript attempt to access frame errors with vimeo

Site was working last time I checked but it now seems many of the JS aspects are broken. Tweets have vanished and the jQuery colorbox no longer works? http://www.jamesperrett.co.uk/ Get the ...
0
votes
0answers
50 views

Cocoa protocol handler using NSAppleEventManager and kInternetEventClass/kAEGetURL

This is the Cocoa version of this question: AEInstallEventHandler handler not being called on startup Here's my Info.plist protocol registration: ... <key>CFBundleURLTypes</key> ...

1 2 3 4 5 32