Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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 the app.

Is this possible with Delphi (5 Enterprise), or not? If it's available in later versions, we'll look to sourcing a license for that.

Cheers!

like image 325
Drarok Avatar asked Feb 11 '10 17:02

Drarok


1 Answers

MSDN has an article explaining the whole thing. It describes the registry entries you need to set up, and it describes the command line that Internet Explorer will use to invoke your program.

There's nothing to prevent you from writing a protocol handler in any Delphi version you want.

like image 133
Rob Kennedy Avatar answered Nov 07 '22 09:11

Rob Kennedy