15

I registered my own URL scheme.

https://msdn.microsoft.com/en-us/library/aa767914.aspx

how do I create my own URL protocol? (e.g. so://...)

Link example: oce://10000

IE, firefox, windows explorer handle it fine. Id 10000 is opened correctly in my app.

Is it possible make this links clickable in Skype? I already find this unanswered support ticket http://community.skype.com/t5/Windows-archive/Custom-URI-scheme-handlers/td-p/3627869

Community
  • 1
  • 1
SelvirK
  • 925
  • 3
  • 18
  • 42
  • 1
    Doesn't seems like MS are going to allow custom schemes. All I can suggest, use http protocol links (like `http://oce/10000`) and catch them with simple http webserver, embedded in app... – ankhzet Dec 20 '15 at 22:41

3 Answers3

3

You can build a redirect page as suggested here: http://www.developerstalk.net/building-a-redirect-page.aspx

Hen Wagner
  • 201
  • 3
  • 12
2

Maybe the easiest way to do this is simple redirect.

Use .htaccess and 301 redirect to desired location. That's the most easiest way. Then just let the server deal with everything.

Josip Ivic
  • 3,639
  • 9
  • 39
  • 57
1

Ideally, an application need to launch/execute URIs it doesn't support or recognize with the OS shell. Skype may be ignoring custom URIs as a security precaution. They don't want to launch unknown applications.

gn1
  • 526
  • 2
  • 5