Questions tagged [custom-protocol]
83 questions
0
votes
2 answers
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 protocol that uses the first packet of a connection…

santiagozky
- 2,519
- 22
- 31
0
votes
1 answer
Is there a way to hide "Open Windows Command Processor" prompt from registry protocol handler?
I have created a custom protocol handler to redirect url from chrome to ie. I followed this link and achieved it - Open Internet Explorer from Chrome using a protocol handler
I have a button in a page and on click user will be redirected to IE from…

gkrishy
- 756
- 1
- 8
- 33
0
votes
1 answer
How call a custom url protocol in C#?
I try to call a custom protocol app from my API in C#.
my custom protocol is installed and I can call it in my browser with "my-app://myParams" URI,
but I don't know how call a custom URL with webrequest. I tried to add a new object implementing…

Serious Cat
- 1
- 1
0
votes
0 answers
What should the URLs for different social media share links look like when using the custom protocols for these social media services?
We have a website that has a component with share links for multiple different social media services (facebook, twitter, xing, linkedin). Now we want the mobile version of the page to use the custom protocol for each social media service (if…

Pascal Folleher
- 1
- 2
0
votes
4 answers
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 returning the authentication status from the server.…

Mantis Toboggan
- 7,295
- 3
- 19
- 11
0
votes
1 answer
Custom browser protocol to open IE with params
I need to implement something similar to this answer
https://stackoverflow.com/a/41749105/1004374
but I have several issues.
I changed it slightly so be able to pass arguments into the url:

Dmitrii Borovoi
- 2,814
- 9
- 32
- 50
0
votes
1 answer
Chrome - No detect Custom protocol if "always open ..." is checked
We use a "onBlur" event to detect if our custom protocol is handled on the OS. This works fine, except when we check the question "always open these types of links in the associated apps". If we check, chrome doesn't detect the custom protoicl is…

Mathieu
- 35
- 5
0
votes
4 answers
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 modifying its functionality in any way.
I thought…

saurabh
- 530
- 1
- 8
- 22
0
votes
1 answer
Application Registration only allows http(s) as Redirect URI
I want to build a desktop application and need the redirect URI to be something like my-app://soundcloud/callback. In the application registration form, it's not possible to enter such redirect URI in the input field because only http and https…

timche
- 131
- 2
- 6
0
votes
2 answers
Not fully getting the concept of custom protocols, Swift 3
I do apologize in advance for asking such a silly question, yet I didn't quite get what I wanted to know from the other answers out there.
Here is the sample code of custom delegate protocol from the Ray Wenderlich iOS course
protocol…

Aidar Nugmanov
- 3
- 4
0
votes
1 answer
Check if a browser supports a custom protocol using JavaScript?
I have an application which needs to be installed on windows machine which uses a custom protocol like "myapp://". So i have a button on a web page which when clicked opens that application.
When i click the button, i need to check whether that…

pogbamessi
- 311
- 3
- 17
0
votes
0 answers
reading file contents on client side using web browsers
I have a software installed on each of my clients computer , the software defines new protocol named when my client invoke the protocol form the browser the software will run in there computer and perform some file transfer operation.
for example if…

Sizar AL Adam
- 1
- 1
0
votes
0 answers
Java nio no-blocking Client server application and custom protocol
I’m working on java.nio no-blocking client server application, the application has a very easy custom protocol as:
MyApplcationProtocol:
int lenpalcket;
int filedone;
String Description
byte[] myBodyProtcol
(the body length is not fixed.)
The…

J.R.
- 2,335
- 2
- 19
- 21
0
votes
1 answer
Javascript SDK API Domains with custom protocols?
So I am writing an application in Node-Webkit/NW.js that needs a "Login to LinkedIn" button. We have to use a custom protocol/domain in order to allow hooking into the Dropbox API (let's call it app://example).
In the Application Details on the…

Josh Dean
- 36
- 2
0
votes
1 answer
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 the best approach here (any objections?). But,…

LostNomad311
- 1,975
- 2
- 23
- 31