Files
Facilitor/APPL/API/api.asp
Jos Groot Lipman b2393b2a65 FSN#33722 API1 ook basic authenticatie
svn path=/Website/trunk/; revision=26418
2015-09-21 14:04:28 +00:00

27 lines
711 B
Plaintext

<%@language = "javascript" %>
<% /*
$Revision$
$Id$
File: api.asp
Description: switchboard die doorstuurt naar de goede API-file
Parameters:
Context:
Note:
*/
DOCTYPE_Disable = 1;
LCL_Disable = 1;
ANONYMOUS_Allowed = 1;
FCLTEXPIRES = 8*60; // geen database interactie tenslotte
NO_ADDHEADER = 1; // common.inc voert wat globale acties hierdoor niet meer uit
var EXPIRED_PASSWORD_OK = true; // performance
%>
<!-- #include file="../Shared/common.inc"-->
<!-- #include file="../api/api.inc" -->
<%
var API = new API_func(); // controleert vanzelf
__Log("Transferring to: " + API.apidata.file);
Server.Transfer(API.apidata.file);
%>