intrawebIW当作REST 服务端
Posted 咏南中间件和开发框架
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了intrawebIW当作REST 服务端相关的知识,希望对你有一定的参考价值。
intraweb15
该版本支持HTTPS.SYS通信。
IW当作REST 服务端使用:
procedure TIWServerController.IWServerControllerBaseExecuteRequest(
const Url: string; Request: THttpRequest; aReply: THttpReply;
var Handled: Boolean);
var
s:string;
begin
//if Request.HttpMethod= hmGet then begin
// s:= Request.Params.Values[‘sql‘];
// s:=Request.PathInfo;
aReply.WriteString(‘{"f1:","你好,世界!"}‘);
aReply.SendStream();
//end;
end;
以上是关于intrawebIW当作REST 服务端的主要内容,如果未能解决你的问题,请参考以下文章