記事
#InterSystems IRIS
#InterSystems IRIS for Health
お知らせ
#InterSystems IRIS
#IRIS contest
8/05 ~ 8/11 Week at a Glance InterSystems Developer Community
https://cn.community.intersystems.com/node/572441
文章
姚 鑫 · 八月 11, 2024
阅读大约需 2 分钟
第七章 解析时使用进程私有全局变量
默认情况下, Web 客户端在解析请求或响应时通常使用本地数组内存。可以强制它改用进程私有全局变量;这使 Web 客户端能够处理非常大的消息。
为此,请指定 Web 服务类的 USEPPGHANDLER 参数,如下所示:
Parameter USEPPGHANDLER = 1;
如果此参数为 1,则 Web 客户端在解析请求或响应时始终使用进程私有全局变量。如果此参数为 0,则 Web 客户端始终使用本地数组内存来实现这些目的。如果未设置此参数,则 Web 客户端使用默认值,通常是本地数组内存。
可以在运行时覆盖此参数。为此,请设置 Web 客户端实例的 UsePPGHandler 属性。
https://cn.community.intersystems.com/post/%E7%AC%AC%E4%B8%83%E7%AB%A0-%E8%A7%A3%E6%9E%90%E6%97%B6%E4%BD%BF%E7%94%A8%E8%BF%9B%E7%A8%8B%E7%A7%81%E6%9C%89%E5%85%A8%E5%B1%80%E5%8F%98%E9%87%8F
文章
姚 鑫 · 八月 10, 2024
阅读大约需 2 分钟
[toc]
第六章 定义单向 Web 方法
通常,当 Web 客户端调用 Web 服务时,会返回 SOAP 消息,即使该方法没有返回类型并且在 数据平台中执行时不返回任何内容。
在极少数情况下,可能需要将 Web 方法定义为单向的。此类方法不得返回任何值,并且消息不需要 SOAP 响应。
注意:通常不应使用单向方法。请求-响应对更为常见、更受支持且更受期待 — 即使对于没有返回类型的方法也是如此。
要定义单向 Web 方法,请将该方法的返回类型定义为 %SOAP.OneWay。WSDL 未定义此 Web 方法的输出,并且 Web 服务不返回 SOAP 消息。
https://cn.community.intersystems.com/post/%E7%AC%AC%E5%85%AD%E7%AB%A0-%E5%AE%9A%E4%B9%89%E5%8D%95%E5%90%91-web-%E6%96%B9%E6%B3%95
Hi Community,
Play the new video on InterSystems Developers YouTube :
⏯ How Netsmart Moved to InterSystems IRIS in the Cloud @ Global Summit 2023
VIDEO
Hear long-time InterSystems partner Netsmart share its journey to a fully cloud-based delivery model. Netsmart Plexus Cloud offers a secure, HIPAA-compliant hosting option for its broad set of InterSystems-IRIS-based solutions, fully managed and monitored by Netsmart. Learn what architecture and technology choices Netsmart made, the challenges encountered along the way, and the benefits realized by its customers.
Presenters: 🗣 Mike Brand, EVP - Solution Development & Delivery, Netsmart 🗣 Tom Geis, VP - Cloud Technology Services, Netsmart
Enjoy watching and look out for more videos! 👍
https://cn.community.intersystems.com/node/563766
What is wrong in this snippet??
Its an iris lab so nothing so personal that someone can't use it
{
"workbench.colorTheme": "InterSystems Default Dark Modern",
"intersystems.servers": {
"irislab": {
"webServer": {
"scheme": "https",
"host": "35.188.112.210",
"port": 29363
},
"username": "tech",
"password": "demo"
}
},
"objectscript.conn": {
"server": "irislab",
"ns": "USER", // Add your namespace here (e.g., USER)
"active": true
}
}
1 Comment
https://cn.community.intersystems.com/node/572421