In a mozembed application, I need to provide support for custom URI schemes, in addition to the standard http://... How can I achieve this ?
You need to implement the relevant nsIProtocolHandler and register it. See
http://lxr.mozilla.org/seamonkey/source/netwerk/base/public/nsIProtocolHandler.idl You may also need to implement an nsIChannel implementation for that protocol (the channel that newChannel() will return).
