MIME Registration
To open our CHF file on a remote server, the MIME type must be registered on the Server PC.
Microsoft Personal Web Server or
Microsoft Internet Information Server (IIS)
Create the following string value in the registry and reboot the PC:
KEY: HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\InetInfo\Parameters\Mimemap\
NAME:
"application/x-pcANYWHERE-Remote,chf,,5"
VALUE:
leave blank
Netscape Enterprise Server
To get your server to properly recognize new MIME types or file extensions, add the new types or extensions to the 'mime.types' file in your server's 'config' folder. Below is a sample 'mime.types' file from a Netscape Enterprise Server.
|
#--Netscape Communications Corporation MIME Information
# Do not delete the above line. It is used to identify the file type.
type=application/octet-stream exts=bin,exe'
type=application/oda exts=oda
type=application/pdf exts=pdf
type=application/x-pcanywhere-remote exts=chf
.
.
type=magnus-internal/imagemap exts=map
type=magnus-internal/parsed-html exts=shtml
type=magnus-internal/cgi exts=cgi
|
If you edit the 'mime.types' file, do not add spaces around the equals (=) signs or after the commas in the 'exts=' list. For example, use 'exts=bin,exe' not 'exts=bin, exe'.
|