Tagged Questions
The protocol-handler tag has no wiki summary.
11
votes
3answers
491 views
Can Delphi be used to create and handle a custom protocol handler?
We have a need to interoperate between one of our web apps and a Win32 app created in Delphi.
A colleague suggested using a custom protocol handler like ourcompany://something to pass information to ...
8
votes
4answers
3k views
How can I add a custom url handler on Windows. Like iTunes itms://
I would like telnet://blah to open putty and not the native windows telnet client.
I don't even know what this 'feature' is called under windows so I'm having no luck find any information about it.
...
1
vote
0answers
161 views
Android WebView Protocol Handler
I am trying to develop an Android browser application using WebView which enables users to access content from a custom protocol. The custom protocol could be foobar://
I want to intercept all ...
1
vote
2answers
54 views
The program name is not shown with protocol handler in Windows 7
Following this page, I could make "alert" protocol handler with Windows 7.
The registry setup is exactly the same as instructed in the page.
The problem is that the Program is not shown on dialog ...
1
vote
3answers
277 views
How to register custom program to handle mailto protocol on Windows 7
OK, it might be a problem with my system but I'm having a very difficult time getting Windows 7 to recognize my custom exe as the default handler of the mailto protocol.
First, I've seen this:
...
1
vote
2answers
499 views
How to quit itself in Objective-C application?
I have a URLHandler that launches some application, the main code is as follows.
@implementation URLHandlerCommand
- (id)performDefaultImplementation {
NSString *urlString = [self directParameter];
...
1
vote
1answer
199 views
Creating protocol handler in new Firefox?
I just came to know that Forefox no longer support XPCOM component for creating extensions ..
I want to create an extension which will handle my protocol which will collect information from different ...
0
votes
0answers
22 views
msnim: handler “feature detection”
Is there any reliable way to determine whether a link starting with a "shadowy" protocol handler such as msnim: will be able to locate an application which can handle it? I'd like to be able to avoid ...
0
votes
1answer
179 views
Custom protocol handlers in Chrome
Is it possible to register a custom protocol handler in Chrome? This code works in Firefox, but not chrome:
navigator.registerProtocolHandler("random",
...
0
votes
1answer
111 views
Determine HTTP Protocol Version in ASHX Handler
Is it possible to determine the HTTP protocol version (e.g. 1.0 vs. 1.1) used for a request within a .ashx handler? I can see all of the header information except for the version in Request.Params.
...
0
votes
3answers
197 views
How to open an app from a browser?
Amazon has the button that opens an app as follows.
Clicking this button opens a 'Amazon Kindle', for my case, 'Amazon Kindle for Mac'.
How is this possible? I mean, how can I program to do this ...