FSN#35623 Putorders webservice laten aanroepen

svn path=/Website/trunk/; revision=28382
This commit is contained in:
Jos Groot Lipman
2016-03-07 13:14:41 +00:00
parent 42ee1aa201
commit 1427de0095
6 changed files with 212 additions and 16 deletions

34
APPL/API/api_flex.asp Normal file
View File

@@ -0,0 +1,34 @@
<%@ language = "JavaScript" %>
<% /*
$Revision$
$Id$
File: api_flex.asp
Description: API voor opvangen van flexfiles
Parameters: Een xml
Status:
Context: (alleen) door Putorders
Notes:
*/
JSON_Result = true;
THIS_FILE = "appl/api/api_flex.asp";
%>
<!-- #include file="../Shared/common.inc" -->
<!-- #include file="../Shared/json2.js" -->
<!-- #include file="../Shared/flexfiles.inc" -->
<!-- #include file="../Shared/upload.inc" -->
<!-- #include file="../api/api.inc" -->
<%
var API = new API_func();
var flexcode = getQParam("flexcode");
var props = flexProps2(flexcode);
__DoLog(props);
Response.Write(JSON.stringify(props));
Response.End;
%>