Hello Ed,
Your assumption is quite good.
Ed Leafe wrote:
I have no experience with AFP, so I'm not sure how those pages
should be called. But for apache, check out the AddType directive,
and possibly the ScriptAlias directive.
Here's our standard configuration for Apache:
#
# Dynamic Shared Object (DSO) Support
#
# To be able to use the functionality of a module which was built as a DSO you
# have to place corresponding `LoadModule' lines at this location so the
# directives contained in it are actually available _before_ they are used.
# Statically compiled modules (those listed by `httpd -l') do not need
# to be loaded here.
#
#LoadModule isapi_module modules/mod_isapi.so
<IfModule mod_isapi.c>
ScriptAlias /AFP3 "C:/Programme/AFP3/"
<Directory "C:/Programme/AFP3">
# Whether or not you have preloaded an ISAPI extension,
# all ISAPI extensions are governed by the same permissions
# and restrictions as CGI scripts. That is, Options ExecCGI
# must be set for the directory that contains the ISAPI.
Options +FollowSymLinks +ExecCGI
AllowOverride None
Order allow,deny
Allow from all
</Directory>
# Location of the ISAPI library.
ISAPICacheFile "C:/Programme/AFP3/AFP3.dll"
</IfModule>
# Add new handler(s) to process Active FoxPro Pages.
AddHandler isapi-isa .dll
AddHandler afp-script .afp .afpa .afpi .code .config .prg .fxp .dbc .dbf .fpt
.cdx .dcx
Action afp-script /AFP3/AFP3.dll
_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the
author, and do not constitute legal or medical advice. This statement is added
to the messages for those lawyers who are too stupid to see the obvious.