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

learn more… | top users | synonyms (1)

0
votes
1answer
58 views

Converting bytes retrieved over a php socket to a integer

I am using the netty API to create a Java server which sends if a client programm sends anything to the server a number like 5. It is a integer with 4 bytes. I think it should be the same like writing ...
0
votes
2answers
82 views

Objective-C Design Help Needed, Need Protocol Possibly?

I have a situation where ClassA contains a UIView property. I have two children of ClassA, ChildA and ChildB, both set this UIView property for themselves with two different types of UIView ...
0
votes
1answer
254 views

What are the realtime communication protocols available for the web?

I recently came across WebSockets and my mind was blown about the possibilities they bring. I searched for a full list of such realtime (and near-realtime) communication protocols and technologies - ...
0
votes
1answer
184 views

Serial port data exchange protocol [closed]

I want to integrate my breathalyzer, into our program (C#, WPF). Is there a standart convention or protocol for exchanging data between serial port and pc. This is data i recieve from my ...
0
votes
0answers
60 views

eMMC Protocol Test suite

is there any off the shelve eMMC (4.5 or above) protocol testing suite available or that any one knows?. I could see eMMC bus analysers available and even electrical/compliance testing solutions ...
2
votes
1answer
40 views

White-list of URI protocols for XSS prevention?

If I allow a user to post a URL to a page, then I create an <a> tag with that URL, I have to first check to see if it is safe. I know that javascript: protocol would be un-safe as it would run ...
0
votes
1answer
46 views

why server cant push data with http?

why http based on request/response?why server cant push data with http to client directly and must has to be response of client request? in start of connection i know that client has to send request ...
1
vote
0answers
257 views

Using PPP on an Android tablet

I have been looking for a way to use the point to point protocol in an android application, but I didn't succeed. I firstly checked if the module is supported by my tablet kernel, and so, I executed ...
1
vote
1answer
73 views

What are things to think about when making a server-client application protocol? [closed]

One issue I can't wrap my head around is an efficient way to actually communicate between the server and the client(s). Every network enabled application I've made so far has used ObjectInputStream ...
2
votes
2answers
275 views

Git fetch single file from remote repository programatically

I'll say up front that this question is similar in nature to this. There's one key difference that makes this unique: I want to use the raw git protocol (see here and here if you're unfamiliar with ...
0
votes
1answer
216 views

iPad storyboard app - popover and modal delegates

I'm pretty new to iOS development and I'm coding my first iPad App. I have 3 questions: 1) I noticed that there is a UIPopoverControllerDelegate Protocol for delegates of Popovers. However, I ...
1
vote
1answer
54 views

Why isn't byte order standardized? [duplicate]

Possible Duplicate: What are the benefits of the different endiannesses? Byte order or endianness refers to the ordering of a sequence of elements (e.g., words, bytes, or bits) stored in ...
1
vote
3answers
78 views

Proper way to import delegate protocols

I try to import as very little as possible in my header files (using the implementation file instead), and for classes we can use @class, but what about protocols? If I try to declare a protocol that ...
0
votes
1answer
74 views

Multiplexing data over socket

Basically I'm trying to have 2 - 3 file transfers from the same socket BUT all of them at the same time and yet not to interrupt messages sent back and to client/server. Similar to a chat program ...
0
votes
0answers
114 views

Hid Global.Multi-ISO Mifare reader Binary Protocol

can any one explain how the binary protocol of HID-MULTI-ISO Mifare reader works? I am sending a frame to MIFARE reader (HID HF multi-ISO reader), but it failed. according to the datasheet, the frame ...
0
votes
0answers
67 views

How to access NVD devices?

I'm wondering if theres a protocol to access NVD devices, such as network monitors. For cameras, I developed an RTSP client implementation, but I see several drawbacks in using RTSP for NVD devices. ...
0
votes
1answer
85 views

Simple data exchange between servers

I am completely new to web development, so please forgive me in case this question is superfluous. Here is what I am trying to do: I have multiple Arduinos (equipped w/ EthernetShields) that are ...
0
votes
1answer
23 views

Network protocol for consistent mobile clients requests

Is there a protocol (or framework) that ensures that when a request fails, it fails on both the client side (iOS, Android, etc) and server side, and when it succeeds, successes on both sides? The ...
0
votes
1answer
1k views

java.net.MalformedURLException: no protocol:

Why I am getting no protocol if i have http in the url path? Log: network: Connecting http://xxx.ccc.local/upload/up.php?aa=0&bb=Ap%F3lice+de+Seguro&cc=1028&from=documentos with cookie ...
7
votes
1answer
147 views

Clojure: Listing all deftypes that implement some protocol within the namespace

I have a protocol and several deftypes implementing it within one workspace. How can I list all deftypes that implement following protocol? I've came to the solution that filters data from ...
0
votes
0answers
14 views

CrossDE custom protocol registering

Is it possible to register custom protocol handler (i.e foo:action — like http:// address) for all (or most of) linux desktop environments? Maybe it can be done using some xdg-open APIs? I use Qt, if ...
0
votes
1answer
74 views

Getting System.AccessViolationException while calling a memberfunction using pointer to a class

using namespace std; class Layer { protected: Layer *lower; Layer *upper; public: Layer(Layer *lo,Layer *up):lower(lo),upper(up) {} virtual void send()=0; virtual void ...
0
votes
1answer
763 views

Open Google Maps App iOS 6 (web App)

Is there any protocol that I can use to open an address in the (now downloadable) Google Maps? This is not a native app, just a web app/site for Safari (web clip). Does Google provide any such ...
0
votes
2answers
126 views

iphone development: how can I inherit from more than one class? [duplicate]

Possible Duplicate: Objective-C multiple inheritance In my iPhone app I want to use googleAnalytics but the thing is I Have to inherit from GAITrackedViewController which is provided by ...
1
vote
2answers
137 views

how to upload configurations using freecwmp

Hi I am using freecwmp as a TR069 client. I found the source code and steps from freecwmp.org. I have tested the code with openacs for the following features : downlaod, get/set parameters, reset in ...
2
votes
5answers
169 views

About protocols in Objective-C [closed]

I have some questions about protocols in OBJ-C. I often see lines that declare an id object with a protocol, for example: - (NSInteger)tableView:(UITableView *)tableView ...
0
votes
2answers
37 views

Receive messages with a protocol?

I'm currently learning Obj-C and more specifically - protocols. I will need to make up a scenario here for my question to make sense. First example (with a delegate). I'm a UIView subclass which ...
0
votes
2answers
181 views

Protocols for communicating over web sockets

I'm working on the client-side of a project with a large and complex server-side component. The client will be deployed as an mobile app among other contexts. For client-server communication, there ...
2
votes
4answers
84 views

What are the difficulties of implementing stateful web protocols? [closed]

As per my knowledge, HTTP is called a stateless protocol because each command is executed independently, without any knowledge of the commands that came before it. This is the main reason that it is ...
0
votes
0answers
32 views

stun protocol : why multiple requests & why port number changes in subsequent response

in a sip call, before the actual data transfer, there are lot of stun flows over udp. i understand why stun is required. But even after the client gets the binding response message, it keeps on ...
0
votes
0answers
52 views

Objective C - 2 level hierarchy protocol

I am trying to define protocols during making my iPhone app. There are 3 view controllers. mainviewcontroller.h #import "ViewControllerA.h" @interface MainViewController:UIViewController ...
2
votes
1answer
49 views

How to use deftype to implement an associative structure in Clojurescript

I would like to provide a Clojurescript implementation of vector based on Javascript Typed Arrays, which supports assoc, replace etc. I think I want to do that (maybe there's a better way, or maybe ...
5
votes
1answer
150 views

Reasons behind the choice of 172.16/192.168? [closed]

It is a known fact that there are three blocks of IPv4 Addresses that were chosen to be reserved for private networks: 10.0.0.0 - 10.255.255.255 (10/8 prefix) 172.16.0.0 - ...
2
votes
1answer
71 views

@protocol with integers

I am trying to make a protocol for a detail view for a tableView. The detail view has a question and then an answer. If I get the answer correct, it will set an integer to increase by 1 in a protocol ...
0
votes
0answers
36 views

is there a client that implements the Instant Message Sessions extention to SIP?

I am trying to find an SIP client that implments the Instant Message Sessions which is described here: http://www.jdrosen.net/papers/draft-ietf-simple-message-sessions-01.txt I need it so I could ...
0
votes
1answer
69 views

Good Protocol Practice/Template for sockets?

Right, I'm looking for some more advanced flexible protocols to implement to my sockets. I'll be transferring data, video, audio and text through the single same TCP socket. The current protocol I'm ...
0
votes
2answers
183 views

Why doesn't webFrameLoadDelegate protocol work?

I am just starting out at Xcode, and I'm trying to make a OS X web browser. I want to figure out when my webview is loading and when it isn't. I've already looked at a lot of pages both from here ...
1
vote
1answer
169 views

Data Transfer Protocol Design

I am writing a protocol to transfer GBs of data over the network to try to teach myself a little bit about programming on protocols. I will be using TCP. Now, I am concerned about how should I design ...
0
votes
1answer
25 views

How to Login to Facebook and Go Back to Application

This is what I wanna do. User press Sign in Via facebook. I do: Facebook * facebook =[[Facebook alloc]initWithAppId:api_key andDelegate:self];; if (![facebook isSessionValid]) { [facebook ...
1
vote
0answers
204 views

writing custom protocol handler in Chrome

I want to write a protocol handler for an application in Chrome. In Internet Explorer we can do this using plug-gable protocol handler.Reference this, and in Firefox XPCOM utilities are available. I ...
3
votes
1answer
71 views

Can we have protocol with implementation?

I want to set a singletonProtocol. Classes that implement that protocol will support +(id) singleton Obviously I will implement that singleton method. It's a waste to re implement the same thing ...
0
votes
0answers
42 views

how to find out request protocol in apache module

How I could find out whether request scheme is http or https in apache 2.2? I looked thought the request_rec structure, but could not find any working reference to the used scheme.
5
votes
2answers
199 views

How to identify a protocol method is optional during runtime?

I have my protocol defined. I have mentioned two of my protocol methods as optional. During run-time, how can I find out whether the particular method is optional or not? Is there any way to find out ...
1
vote
1answer
105 views

Windows - Start Command and Protocol Handlers

I am trying to establish a web protocol for "sublime" in IE9. I followed the "add a protocol" guidelines here: http://msdn.microsoft.com/en-us/library/aa767914(v=vs.85).aspx Now, unfortunately I ...
0
votes
1answer
187 views

Google TV stream Protocls Android

I am working on an application for google tv with Visio device , i want to know which streaming protocols are avalable for google tv out of these. Can any body give me the reference along with the ...
0
votes
0answers
8 views

web protocols with “user data” field [closed]

As part of the design of a web protocol that is on top of http, I'm looking for examples of other web "agents" and their protocols. Eg, the calling web app invokes the web agent via an HTTP Post with ...
0
votes
3answers
244 views

Why doesn't routing table use physical address in place of IP address [closed]

Routing tables do not use physical address and instead use IP address. Once a router has found a path/rule matching for an IP datagram, it uses the next hop/destination IP address and changes it to ...
0
votes
0answers
88 views

Method in protocol don't work properly

I don't understand why this code work properly for example in - (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event { UITabBarItem *item1 = [self.tabBarController.tabBar.items ...
0
votes
1answer
215 views

Programming routing protocol for MANet in Java(UDP)

I'm programming mobile ad hoc network routing protocol in JAVA (using UDP). That routing protocol consists of ring topology (each node as one predecessor node and one successor node). First, I've ...
0
votes
1answer
33 views

Avoid method not found for protocol methods

My Cocoa AppDelegate contains a reference of type ID to it's main view. The reference is polymorphic because it may point to a subclass of PDFView or a subclass of NSImageView, depending on the origin ...

1 3 4 5 6 7 32