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

learn more… | top users | synonyms (1)

101
votes
7answers
41k views

What's the difference between a POST and a PUT HTTP REQUEST?

They both seem to be sending data to the server inside the body, so what makes them different?
50
votes
9answers
17k views

how do I create my own URL protocol? (e.g. so://…)

Ok, please bear with me as this is sorta difficult to explain. I have seen... http://www... ftp://blah.blah... file://blah.blah... unreal://blah.blah... mailto://blah.blah... What is that first ...
36
votes
2answers
11k views

Cast an instance of a class to a @protocol in Objective-C

I have an object (a UIViewController) which may or may not conform to a protocol I've defined. I know I can determine if the object conforms to the protocol, then safely call the method: ...
29
votes
6answers
6k views

NSNotificationCenter vs delegation( using protocols )?

What are the pros and cons of each of them? Where should I use them specifically?
28
votes
1answer
6k views

Checking to see if an optional protocol method has been implemented

Does anyone know the best way to check to see if an optional protocol method has been implemented. I tried this: if ([self.delegate respondsToSelector:@selector(optionalProtocolMethod:)] ) where ...
28
votes
5answers
12k views

Which protocol? svn:// or http(s)://?

There are 4 common protocols for network access of SVN. svn://repos svn+ssh://repos https://repos http://repos The wikipedia page doesn't say much about the differences of the 4 ...
26
votes
14answers
3k views

Are binary protocols dead?

It seems like there used to be way more binary protocols because of the very slow internet speeds of the time (dialup). I've been seeing everything being replaced by HTTP and SOAP/REST/XML. Why is ...
26
votes
1answer
5k views

SPDY module for IIS7 [closed]

My goal is to implement SPDY protocol (a new experimental protocol by GOOGLE) on IIS servers. SPDY is a TCP based application level protocol and as such I am guessing that I have to work at TCP ...
24
votes
7answers
7k views

How to implement a network protocol?

Here is a generic question. I'm not in search of the best answer, I'd just like you to express your favourite practices. I want to implement a network protocol in Java (but this is a rather general ...
23
votes
2answers
2k views

Simple explanation of clojure protocols

I'm trying to understand clojure protocols and what problem they are supposed to solve. Does anyone have a clear explanation of the whats and whys of clojure protocols?
22
votes
3answers
4k views

How do the protocols of real time strategy games such as Starcraft and Age of Empires look?

I'm interested in how the protocols (and game loop) work for these type of games; any pointers or insights are appreciated. I guess the main loop would have a world state which would be advanced a ...
21
votes
7answers
6k views

Implementing Bittorrent Protocol

I am looking for a tutorial/blog post on how to implement bittorrent protocol step by step. How it works? How do you make requests to peers? and talk to trackers. I do not mind the programming ...
20
votes
2answers
7k views

How do I register a custom URL protocol in Windows?

How do I register a custom protocol with Windows so that when clicking a link in an email or on a web page my application is opened and the parameters from the URL are passed to it?
19
votes
10answers
12k views

Simple serial point-to-point communication protocol

I need a simple communication protocol between two devices (a PC and a microcontroller). The PC must send some commands and parameters to the micro. The micro must transmit an array of bytes (data ...
19
votes
2answers
16k views

What is the difference between DTR/DSR and RTS/CTS flow control?

What's the difference between DTR/DSR and RTS/CTS hardware flow control? When is each one used? Why do we need more than one kind of hardware flow control? :)
19
votes
8answers
8k views

Xcode: Possible to auto-create stubs for methods required by Protocol interface?

Coming from an Eclipse / Java background, one of my favorite features is the ability to quickly stub out all the methods required by an interface. In Eclipse, I can choose 'Override / implement' from ...
19
votes
3answers
4k views

Can a category simultaneously implement a protocol?

If a category I'm creating for a class adds methods that also fulfill the contract set out by a protocol, I'd like to flag that category class as implementing the protocol, and thereby indicate to the ...
18
votes
15answers
13k views

How to detect browser's protocol handlers?

I have created a custom URL protocol handler. http:// mailto:// custom:// I have registered a WinForms application to respond accordingly. This all works great. But I would like to be able to ...
18
votes
2answers
4k views

Running a function periodically in twisted protocol

I am looking for a way to periodically send some data over all clients connected to a TCP port. I am looking at twisted python and I am aware of reactor.callLater. But how do I use it to send some ...
18
votes
5answers
10k views

How to Make a Basic Finite State Machine in Objective-C

I am attempting to build an FSM to control a timer in (iphone sdk) objective c. I felt it was a necessary step, because I was otherwise ending up with nasty spaghetti code containing pages of if-then ...
18
votes
5answers
3k views

A good serial communications protocol/stack for embedded devices?

After writing several different custom serial protocols for various projects, I've started to become frustrated with re-inventing the wheel every time. In lieu of continuing to develop custom ...
17
votes
5answers
9k views

Defining categories for protocols in Objective-C?

In Objective-C, I can add methods to existing classes with a category, e.g. @interface NSString (MyCategory) - (BOOL) startsWith: (NSString*) prefix; @end Is it also possible to do this with ...
17
votes
1answer
1k views

Can a category implement a protocol in Objective C?

I have a category on NSDate and it would be convenient if it could implement a protocol I previously created. Is this possible? what's the correct syntax for this?
17
votes
2answers
6k views

Chrome Console Error: chromeHidden.Port.dispatchOnDisconnect

NO idea what that means. Been developing some facebook apps and some apparently related js errors show up. According to this thread it's a lazy load issue. I am running chrome with the default ...
16
votes
4answers
10k views

How can I send and receive WebSocket messages on the server side?

How can I send and receive messages on the server side using WebSocket, as per the protocol? Why do I get seemingly random bytes at the server when I send data from the browser to the server? It the ...
15
votes
5answers
9k views

Good tutorial about the FIX protocol? [closed]

Is anyone aware of a good tutorial/book which describes the FIX protocol? I need to connect to a FIX server. It supports a limited number of messages and I'd like to write my own FIX engine.
14
votes
10answers
2k views

Why HTTP protocol is designed in plain text way?

Yesterday, I have a discussion with my colleagues about HTTP. It is asked why HTTP is designed in plain text way. Surely, it can be designed in binary way just like TCP protocol, using flags to ...
14
votes
4answers
9k views

Cannot find protocol declaration

So I have been looking around for the last couple of hours but haven't been able to find a solution to this - I would highly appreciate any help. I have two view controllers A and B, and they both ...
14
votes
1answer
8k views

Difference between protocol and delegates?

What is the difference between a protocol and a delegate, and how can we declare variables in protocol class?
14
votes
2answers
200 views

What latency is required to make software fax using only speaker and mic?

The Story I don't possess any fax hardware, so its hard for me to communicate with people who have a fax noise answering on the phone. It is hard even to imagine that in 2012 people are still using ...
13
votes
10answers
25k views

Why Does RTP use UDP instead of TCP?

I wanted to know why UDP is used in RTP rather than TCP ?. Major VoIP Tools used only UDP as i hacked some of the VoIP OSS.
13
votes
3answers
8k views

How to fix “Protocol Not Implemented”

When I make a new controller called TestController, I insert <UITableViewDelegate,UITableViewDataSource,UITextFieldDelegate,UISearchBarDelegate> to the interface of Test.h When I run the ...
13
votes
6answers
2k views

Name me a Binary Parser. A parser for binary data

So, I'm getting this data. From the network socket, or out of a file. I'm cobbling together code that will interpret the data. Read some bytes, check some flags, and some bytes indicate how much ...
12
votes
2answers
12k views

Difference between https protocol and SSL Certificate

What is difference between https protocol and SSL Certificate that we use in web browser? Aren't both of these used to encrypt communication between client (browser) and server?
12
votes
4answers
4k views

Is there a good library for dealing with the Modbus protocol in .NET?

Does anyone know of a good (preferably open source) library for dealing with the Modbus protocol? I have seen a few libraries, but I am looking for some people's personal experiences, not just the top ...
12
votes
1answer
840 views

How does clojure's defrecord method name resolution work?

After defining a record and the interfaces it implements, I can call its methods either by its name or using the java interop way using the dot operator. user=> (defprotocol Eat (eat [this])) ...
12
votes
4answers
1k views

Why is OAuth designed to have request token and access token?

In the OAuth protocol, a service consumer will ask a user to authorize a request token in the service provider domain, then exchanges the request token for a access token from the service provider. ...
11
votes
2answers
6k views

Objective C : Given a Class id, can I check if this class implements a certain protocol? Or has a certain selector?

I want to use this for an object factory: Given a string, create a Class, and if this Class supports a protocol (with a Create() method) then alloc the class and call Create.
11
votes
7answers
5k views

binary protocols v. text protocols

does anyone have a good definition for what a binary protocol is? and what is a text protocol actually? how do these compare to each other in terms of bits sent on the wire? here's what wikipedia ...
11
votes
4answers
3k views

Is TCP Guaranteed to arrive in order?

If I send two TCP messages, do I need to handle the case where the latter arrives before the former? Or is it guaranteed to arrive in the order I send it? I assume that this is not a Twisted-specific ...
11
votes
1answer
3k views

GWT RPC data format

how does the data format for Google Web Toolkits (GWT) RPC calls look and how are IsSerializable objects transmitted. I know that Java Seriallizable transmittes some kine df binary format, but is this ...
11
votes
3answers
8k views

What's the difference between data source and delegate?

I have a fundamental question related to Cocoa frameworks design patterns. What's the difference between delegate and data source? Both of them could use @protocols declaration, but some classes or ...
11
votes
1answer
364 views

Why are clojure protocol methods often wrapped by functions?

Often when I see clojure protocols in a library, the protocol methods will be wrapped in a function, often with little added functionality. e.g.: (defprotocol Pfoo (foo-method [this])) (deftype ...
11
votes
2answers
957 views

HTTPbis - what does bis mean?

I've often seen "bis" appended to versions of protocols (eg v.34bis or httpbis). What does "bis" mean or stand for? A telecom engineer I know thinks it might be French in origin.
11
votes
4answers
13k views

How does DHT in torrents work?

I'm coding a p2p implementation that I would like to make decentralized however I'm having some trouble grasping how DHT in protocols like bittorrent work. How does the client know where the peers are ...
11
votes
6answers
4k views

objective-c protocol defined in its own .h file?

Unless I'm missing something, it seems arbitrary in which .h file I put the protocol definition. I'm even wondering if it could be in it's own .h file... (in Java, it's in its own file)
11
votes
1answer
241 views

What are the similarities and differences between the typing features in Typed Racket and the type-like features in Clojure?

Clojure has some interesting features for representing types including but not limited to deftype, defprotocol, reify and extend. What are the similarities and differences between the typing ...
11
votes
3answers
3k views

Objective C protocols usage

I have a homework question which confused me, really badly. Below is a brief explanation of a question. Imagine you are developing an application that stores contact information. The address ...
11
votes
2answers
5k views

Getting http/https protocols to match with <iframe> for maps.google.com

I am trying to use an <iframe> include of a google map, however the console is throwing several errors due to a mismatch, but there is no apparent mismatch, so I'm assuming it must be a ...
10
votes
12answers
2k views

In protocol design, why would you ever use 2 ports?

When a TCP Server does a socket accept on a port, it gets a new socket to work with that Client. The accepting socket remains valid for that port and can accept further clients on that port. Why did ...

1 2 3 4 5 32