protocols

Commit protocol

Hi, I'm building a REST web service that receives a request and must return "Ok" if the operation was done correctly. How could I deal with the possibility of the loose of the connection while returning this "Ok" message? For example, a system like Amazon SimpleDB. 1) It receives a request. 2) Process the request (store and replicates...

Delegates and protocols objective c

Hi, I followed on some advice given on this very forum and I am still having difficulty I have the following: #import <UIKit/UIKit.h> @protocol UIViewForWheelProtocol - (void) returnImageNumber:(int)imgNum; @end #import <UIKit/UIKit.h> #import "UIViewForWheelProtocol.h"; @interface UIViewForWheel : ...

Tablet(iPad/Android)-Server Communication Protocol

Hi All, I am going to build a client-server application. The client here is an iPad (or an android-based) tablet. The server is a normal pc. Both the clients and the server are connected to the same network (using WiFi). Is there a standard way (protocol) for communication between the clients and the server? Are there any framework th...

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 adding new protocol variants It would help development to explore the protocol variants from the shell My current model (alreday described in ...

How do I use the Windows Mail Protocols? (C#?)

Well, for my program(s) I'd like to let the user send me an e-mail with any errors. Instead of relying on a forsaken SMTP server, I decided to let the user use his very own e-mail client to send an e-mail to a specified address. So what I need is: A sender (should not be changeable) (example: [email protected]) An attached file...