Tagged Questions
The custom-protocol tag has no wiki summary.
6
votes
2answers
1k views
Tools for experimental Protocol Design & Development?
Are there any open source, high level tools that would facilitate and simplify development of experimental network protocols (TCP/UDP) using a GUI?
Basically, something like a dynamic state machine ...
5
votes
4answers
1k views
Custom protocol in linux?
I am attempting to port one of my hobby project to linux. Preferrably to Mono since it is written in C#. But I am looking into Python as well.
One of the feature of the application is that it needs ...
3
votes
2answers
564 views
Url protocol handler security warnings
I have a custom url protocol handler for urls of the form myhandler://path/to/something. This is registered to a locally installed client application that handles the requests and does "the right ...
2
votes
2answers
232 views
Haskell Binary Parsing
I've been trying to implement a protocol parser in haskell and I'm pretty new to the language, especially when it comes to monads. I've been using binary-0.5.0.2 and have described the header and all ...
2
votes
1answer
475 views
Reading Split TCP Packets
I have written most of the code to handle incoming packets for my server. The format for packets is always int/int/int/string/string, and the first int is the size of the packet. I need to figure out ...
2
votes
1answer
81 views
String version of term_to_binary
I'm trying to write a simple server that talks to clients via tcp. I have it sending messages around just fine, but now I want it to interpret the messages as Erlang data types. For example, pretend ...
1
vote
2answers
344 views
Custom protocol handler in chrome
How do i set up a custom protocol handler in chrome? Something like:
myprotocal://testfile
I would need this to send a request to http://mysite.com?query=testfile, then send the httpresponse to my ...
1
vote
1answer
44 views
Serial Port device protocol safe practice: Identification, polling
I'm creating a simple device that sends data to a Windows PC over serial COM ports.
I'd like the software to be able to scan the available COM ports until it recognizes the device. The problem is, if ...
1
vote
2answers
32 views
Rules for using # sign in a custom URL
In an HTTP URL, the hash sign (#) signifies an anchor within a page and may only appear once.
Is this a universal rule for all URLs? If I want to implement a custom URL protocol, can I use the ...
1
vote
2answers
309 views
C# TCP Server Reply Packet Issue
I have been banging my head against my code for the better part of the day, and I am completely stumped. Basically, the source game engine has a documented protocol for its RCON (Remote Console Over ...
1
vote
3answers
178 views
How To Tell Whether a Protocol is Valid In Javascript [closed]
Possible Duplicate:
How to detect browser's protocol handlers?
A certain software (non-browser based) installs a custom protocol when it is installed. Thus, if the software is ...
1
vote
0answers
138 views
If Star Trek was a communications protocol [closed]
I'm trying to develop a multi-purpose, lightweight communication protocol for a microcontroller device network. Yes - this is reinventing the wheel, but I don't think this particular wheel is ...
1
vote
0answers
100 views
How to create custom URI handler to retreive image resources in DLL file?
I have several image filés embedded as resources in a DLL file! I want to create my own custom protocol handler to be able to write HTML code to access these resources.
For example, on a computer ...
1
vote
1answer
200 views
Blank responseText in XMLHttpRequest when running in custom protocol in FireFox?
I am writing a FireFox add-on that displays webpages from my server as control and info panels. These panels were written and work in regular URLs, but when I try to access them through a custom ...
0
votes
0answers
93 views
Requesting custom protocol in Kohana 3.2
I'm attempting to request a custom protocol from a Kohana script.
I have the following code:
$uri = 'spotify:user:sonycmguk:playlist:1x4ozPlECFO8wTPyPCbJ4U';
$request = Request::factory($uri);
...
0
votes
1answer
41 views
sending video by hand-made protocol
I'm going to develop an application, whose main task would be send video frames captured from device camera to server. Server uses protocol over TCP. I heard that Apple restricts developers from using ...
0
votes
0answers
73 views
Opera: Handling of custom protocol
I have registered a custom protocol (i.e. myprotocol:) in Windows 7 as described at MSDN, and got it to work via Start->Run, Internet Explorer and partially Opera. All of these places I can type ...
0
votes
1answer
33 views
Can you POST to a user defined protocol URL?
Browsers enable you to define a user defined protocol handlers (e.g., moomoo://someplace.com?foo=1).
Which browsers enable you to POST to a user defined protocol?
<form ...
0
votes
2answers
86 views
Connecting a desktop application with a website
I made an application using Qt/C++ that reads some values every 5-7 seconds and sends them to a website.
My approach is very simple. I am just reading the values i want to send and then i make an ...
0
votes
2answers
59 views
How many times should I retransmit a packet before assuming that it was lost?
I've been creating a reliable networking protocol similar to TCP, and was wondering what a good default value for a re-transmit threshold should be on a packet (the number of times I resend the packet ...
0
votes
0answers
65 views
Implement custom URL handler for java SE application
When user click a button on my webpage, it should open my j2se app and pass some parameters into it. I think custom url handler is best fix in my case, not applet or java web start. How to implement ...
0
votes
1answer
260 views
wireshark generic dissector- using the packet sequence to define the message
I am not sure if stackoverflow is the right place to put this question, but it seems like.
I am trying to write a dissector using the generic dissector plugin (http://wsgd.free.fr/). I have a small ...
0
votes
0answers
45 views
Implement a Custom Protocol Prefix in WPF (not XBAP)
I want to define a Custom Protocol Prefix (see: http://msdn.microsoft.com/en-us/library/aa767914(VS.85).aspx) like "JERRY".
I want to use this prefix to launch a WPF application, passing ...
0
votes
4answers
36 views
Approaches to programming application-level protocols?
I'm doing some simple socket programming in C#. I am attempting to authenticate a user by reading the username and password from the client console, sending the credentials to the server, and ...
0
votes
2answers
181 views
URL schemes (Protocol handler) programming for Windows?
This page explains how to make a Mac application to handle custom URL schemes. How can I do the same thing with PC?
0
votes
1answer
107 views
Custom URL Protocol avoiding security warnings
I'm researching whether it would be possible to use Custom URL Application Protocols (such as custom://) to launch my application but it looks like all implementations modify the HKCR. This causes ...
0
votes
4answers
252 views
defining custom protocol
I have a custom class.And I want if any other class instantiate it then it "must" have some specific method.
How to achieve this?
I don't want to inherit it cause I m not adding any extra feature or ...
0
votes
1answer
158 views
Does calling a protocol method pass program flow control?
I know this is quite possibly a lame question, but I've pulled three consecutive all-nighters and I'm very blurry. And I'm new to Objective C and Cocoa Touch.
I've created a class that provides a ...
0
votes
3answers
209 views
Valid characters for URI schemes?
I was thinking about Registering an Application to a URL Protocol and I'd like to know, what characters are allowed in a scheme?
Some examples:
h323 (has numbers)
...
0
votes
1answer
235 views
Handling Custom Protocols
I'm looking to respond to an event from a web browser, hopefully any web browser. I'm working solely on windows and I came to the conclusion a custom protocol (I.E. myprot://collection/of/strings) is ...
0
votes
3answers
366 views
Tool for network traffic analysis of a custom protocol
The protocol is very simple and is developed on top of TCP. I need to analyze a big libpcap dump file to calculate the average value and standard deviation of the conversation time and of the number ...
0
votes
4answers
239 views
Communicating from website to desktop application (not vice-versa)
I am designing an application such that it will have to react to certain actions required by the website, mostly the same way Last.FM client does (if you have used one)
The way Last.FM client works ...