博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
intrawebIW当作REST 服务端
阅读量:5463 次
发布时间:2019-06-15

本文共 444 字,大约阅读时间需要 1 分钟。

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;

转载于:https://www.cnblogs.com/hnxxcxg/p/9490245.html

你可能感兴趣的文章
抽象工厂模式
查看>>
Android中Button
查看>>
android 中resources管理
查看>>
CSS !Important及感叹号(!) hack的应用
查看>>
Python中的编码和解码问题
查看>>
TX Textcontrol 使用总结五——添加图片
查看>>
[转]Android中常用适配器及定义自己的适配器
查看>>
openjudge noi 鸡尾酒疗法
查看>>
函数对象、函数对象嵌套调用、函数定义、名称空间与作用域以及名称空间的查找顺序...
查看>>
WCF宿主asp.netMVC 并且发布restfull接口数据
查看>>
bzoj2823: [AHOI2012]信号塔&&1336: [Balkan2002]Alien最小圆覆盖&&1337: 最小圆覆盖
查看>>
四则运算随机生成器
查看>>
deeplenrnig学习笔记——什么是特征
查看>>
Java入门系列-23-NIO(使用缓冲区和通道对文件操作)
查看>>
来自java文档 HashMap类
查看>>
Java中的内部类(一)静态内部类
查看>>
failed to load the jni shared library jvm
查看>>
Javascript编码风格
查看>>
django
查看>>
ASP.NET MVC 3 新特性
查看>>