Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

27
votes
9answers
7k 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 ...
22
votes
6answers
14k 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?
20
votes
7answers
3k 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 ...
19
votes
2answers
6k 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: ...
17
votes
1answer
4k 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 ...
16
votes
5answers
2k 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 ...
16
votes
4answers
1k 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 ...
16
votes
10answers
5k 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 ...
13
votes
3answers
911 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 ...
11
votes
3answers
4k 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 ...
11
votes
5answers
1k 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 ...
10
votes
1answer
404 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])) ...
10
votes
2answers
3k 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 ...
10
votes
7answers
3k 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 ...
10
votes
3answers
2k 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 ...
10
votes
7answers
2k views

Are stateless protocols considered better to use over stateful protocols?

I can see that stateful protocols lead to less botched together 'emulated state' like cookies. but testing becomes a lot harder to ensure that your implementation is correct and reconnects, and ...
10
votes
3answers
3k 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?
9
votes
2answers
6k 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? :)
9
votes
12answers
6k 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 ...
9
votes
9answers
1k 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 ...
8
votes
1answer
303 views

What's wrong with the following Clojure protocol?

In Clojure 1.2: (defprotocol PP (foo [bar]) (foo [bar baz])) => PP (extend-protocol PP Object (foo [bar] 1) (foo [bar baz] 2)) => nil (foo "hello!") => ...
8
votes
4answers
745 views

Clojure Protocols vs Scala Structural Types

After watching the interview with Rich Hickey on Protocols in Clojure 1.2, and knowing very little about Clojure, I have some questions on Clojure Protocols: Are they intended to do the same thing ...
8
votes
4answers
500 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. ...
8
votes
1answer
777 views

Overriding equals, hashCode and toString in a Clojure deftype

I'm trying to create a new type in Clojure using deftype to implement a two dimensional (x,y) coordinate, which implements a "Location" protocol. I'd also like to have this implement the standard ...
8
votes
5answers
4k views

Good tutorial about the FIX protocol?

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.
8
votes
10answers
802 views

Which network protocol to use for lightweight notification of remote apps?

I have this situation.... Client-initiated SOAP 1.1 communication between one server and let's say, tens of thousands of clients. Clients are external, coming in through our firewall, authenticated ...
8
votes
6answers
3k views

NSNotificationCenter vs delegation( using protocols )?

What are the pros and cons of each of them? Where should I use them specifically?
8
votes
5answers
5k 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 ...
8
votes
9answers
824 views

Vote for the best protocol for the given scenario

I have a design decision to make. I need your advice. Requirements: A server and a client. client is typically a mobile phone. Connected through the Internet. Server and client want to talk to each ...
8
votes
3answers
2k views

Why does the iPhone SDK use categories, rather than protocols, for some delegates?

My understanding is that protocols are like interfaces in other languages -- they declare expected methods -- while categories allow you to add new methods to existing types (perhaps even types you ...
8
votes
5answers
3k views

Compliance test for OpenID providers

What automated standards-conformance tests are there for OpenID providers? I'm making changes to the implementation of an OpenID provider, to bring it from version 1.1 of the standard to version 2.0. ...
8
votes
11answers
15k 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.
8
votes
2answers
2k 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 ...
7
votes
2answers
200 views

Where to implement a protocol using boost::asio?

I am trying to implement a simple serial port protocol. It goes like this: discard all data until 0xff is received read header (node address and data length, 4 bytes) read data (max. 64 bytes) read ...
7
votes
2answers
123 views

How to build robust data apis in clojure

Hi guys : I find that my clojure apps get structurally coupled very rapidly due to the lack of a data API...- I have maps with keys that have names which, if mistyped , cause exceptions to be thrown ...
7
votes
1answer
645 views

Android webview, start ACTION_VIEW activity when the url could not be handled by webview

Actually I know how to start the market app by URL filtering with my custom webview client, but I want to make it more generic, that is to check each URL, not only the market url, but also some other ...
7
votes
1answer
99 views

Does a subclass inherit the protocols of its parent class in Objective-C?

Suppose I have a parent class that implements a protocol: @interface GameViewController : UIViewController<GamePrizeDelegate> { ... } And then I make subclasses of it: @interface ...
7
votes
2answers
302 views

What is the optimal number of nodes in a BitTorrent swarm?

What is the optimal number of nodes in a BitTorrent swarm? I think that there is a mathematical way to express the most efficient number of nodes. To be honest I have a problem with just having an ...
7
votes
1answer
200 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?
7
votes
2answers
500 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?
7
votes
1answer
215 views

How to design a flexible Erlang protocol stack creation API

Unsatisfied with my current approach I'm just trying to redesign the way I build protocol stacks in Erlang. The feature ordered by importance: Performance Flexibility and implementation speed ...
7
votes
3answers
277 views

How does the App Store website know if iTunes is installed?

As a user, I really love how the Apple App Store website on a browser can tell if I have iTunes installed or not and can act accordingly. For example, if I go to an App's page like "Remember the ...
7
votes
1answer
287 views

@protocol extends @protocol

can @protocol extend @protocol ? @protocol Prot1 : Prot2 @end like in java: public interface Interface1 extends Interface2 { }
7
votes
4answers
1k 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 ...
7
votes
4answers
1k views

Bluetooth Protocol?

Ok, this might just be a dumb question, but I was wondering if Bluetooth follows TCP or UDP protocol? From my knowledge of network protocols (which isn't much), I would say that it doesn't follow ...
7
votes
6answers
2k 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 ...
7
votes
4answers
2k views

Twisted and p2p applications

Can you tell me: could I use twisted for p2p-applications creating? And what protocols should I choose for this?
7
votes
12answers
648 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 ...
7
votes
3answers
460 views

How can I learn about proprietary hardware communication?

If I have two pieces of hardware (say a PC with a custom ISA or PCI card connected to a piece of hardware using some crazy cable) and want to see as much as possible about the conversations between ...
6
votes
3answers
73 views

Objective C protocols requiring the implementation of at least one of a set of methods

In Objective C, protocol methods can be required or optional: @protocol AProtocol @required -(void) aRequiredMethod; @optional -(void) anOptionalMethod; @end Is there an elegant way to say the ...

1 2 3 4 5 19