Several years ago Spyglass Inc. defined a Software
Development Interface (SDI) that has served as the basis for most common
inter-process communication (IPC) support in current browsers.
For additional information, click the following
article number to view the article in the Microsoft Knowledge Base:
160957
INFO: DDE Support in Internet Explorer Versions
In the original specification, the
OpenURL verb was implemented in DDE as an
XTYP_REQUEST transaction type with the topic of
WWW_OpenURL, where the name of the item that is requested is the parameter to
the
OpenURL verb.
A DDE request uses atoms to identify the name of
the item that is being requested. However, because atom names are limited to
255 bytes, the DDE implementation of
OpenURL cannot open URLs that are longer than 255 bytes. Because of this,
Internet Explorer permits the
OpenURL verb to use the
XTYP_EXECUTE transaction type, where the command string is used to pass the
parameters to
OpenURL. The command string is not an atom and therefore does not have
the size limitation.
However, internally, Internet Explorer still
responds to a
WWW_OpenURL execute transaction as if it were a request transaction, which
causes the DDE client program to receive a return value that indicates an
error. This occurs because a server is supposed to respond to a DDE execute
transaction with a DDE ACK message or NACK message, but in this case Internet
Explorer responds with a WM_DDE_DATA message, which is appropriate for a DDE
request.