0

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, pdf, etc in IE through the protocol handler. I understand I need to implement some interfaces for that but I am not sure of what exactly has to be done. Any pointers will be helpful.

Thanks.

Shikha
  • 7
  • 4

1 Answers1

0

I think you just need to report MIME type properly to IE. Are you taking over HTTP/HTTPS, or creating a new protocol?

Yuriy Gettya
  • 693
  • 10
  • 20
  • I am creating a new protocol handler of my own (using the asynchronous pluggable protocol API for urlmon.dll) and reporting the mime type using BINDSTATUS_MIMETYPEAVAILABLE. But still even after the entire data is read by urlmon.dll from my protocol handler, data isn't rendered. – Shikha Apr 10 '12 at 12:43
  • As I replied to you another question, please study my tp:// implementation and you'll see that it does render various files properly. – Yuriy Gettya May 03 '12 at 21:59