The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
66 views

c# Open Windows 8 Application by url posted on facebook

I'm creating a Metro Application that allows you to share some content. At this moment It's possible to share an url (e.g http//www.stackoverflow.com) on facebook. What I actually want is to invite ...
0
votes
0answers
15 views

Windows Service to feed URL to Different Browsers Dependent on URL Text

I would like to develop a Windows service or protocol handler that when a user clicks on a link to open a URL, the service scans the text of the URL and directs the URL to the appropriate browser ...
1
vote
0answers
31 views

Trying to open an application with parameter via an Application Protocol Handler

I am currently trying to figure out an issue with an Application Protocol Handler I've created. Following the directions listed on MSDN ...
0
votes
0answers
23 views

Registry protocol handler equivalent to command line

I have my app registered as ssh protocol handler like this: Registry [HKEY_CLASSES_ROOT\ssh\shell\open\command] @="\"d:\\mine\\code\\myapp.exe\" \"%1 %2\"" I'm testing it with: <a ...
3
votes
1answer
187 views

chrome 25 iframe customize protocol don' twork

i have protocol (like http) with scheme managed with 3rd party App registered in android. I.e,someapp://someaction or something like that. before upgrade chrome to latest version(chrome 25), it works ...
0
votes
0answers
70 views

How to get POST data which using custom protocol handler C++

I have implemented a custom protocol handler. Now i am trying to get the POST data when a post request is made to my custom protocol. So far i have nsiProtocolHandler::NewChannel in which i changed ...
0
votes
1answer
62 views

Firefox XPCOM extension not working after installation (C++)

I have implemented a protocol handler extension in C++ using Gecko SDK. When the dll is copied to C:\Program Files (x86)\Mozilla Firefox\components every thing works perfectly. But when the the same ...
0
votes
1answer
50 views

Error compiling sample firefox protocol hander gecko SDK 3.6

I get the following error while trying to compile a sample implementation of firefox protocol handler. I am using Gecko SDK 3.6, Visual Studio 2010 on Windows Vista. I think the sample is very old and ...
3
votes
0answers
205 views

Customized protocol handler in chrome

I would like to open my win 8 app through link in Chrome. Unfortunately, i can see the link but clicking on it do nothing. I read about navigator.registerProtocolHandler and made something for me. ...
2
votes
2answers
478 views

protocol handler

Requirement: We want to launch an external compare tool (like BeyondCompare or WinMerge) from a web page, through a button or link. The text file paths should be passed to the tool on its launch, so ...
2
votes
1answer
141 views

How to get the TCM custom protocol handler working in Internet Explorer 64-bit?

One of the features of Tridion I use a lot is its "protocol handler". For those not familiar with that feature: if you paste the TCM URI (e.g. tcm:1-23-32) into the address bar of Internet Explorer on ...
3
votes
3answers
994 views

Programatically retrieve list of installed apps that support a given file type

While it is clear we cannot retrieve a list of installed applications on iOS, are there any tricks to allow us to determine the list of apps registered for a given file type? That is, the list the ...
0
votes
1answer
111 views

Display active document in IE through my Protocol Handler

The protocol handler I have implemented using pluggable protocol interfaces of IE is rendering HTML files pretty well in IE. The next step is being able to render active documents such as doc, ppt, ...
5
votes
1answer
816 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
116 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 ...
2
votes
1answer
917 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", ...
2
votes
3answers
4k 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: ...
3
votes
2answers
3k 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 ...
1
vote
1answer
346 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
1answer
217 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
537 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 ...
12
votes
3answers
749 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 ...
11
votes
4answers
7k 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. ...