Encontrar

Resumen
· 12 ago, 2024

【週間ダイジェスト】 8/05 ~ 8/11 の開発者コミュニティへの投稿

Artículo
· 11 ago, 2024 Lectura de 2 min

第七章 解析时使用进程私有全局变量

第七章 解析时使用进程私有全局变量

默认情况下, Web 客户端在解析请求或响应时通常使用本地数组内存。可以强制它改用进程私有全局变量;这使 Web 客户端能够处理非常大的消息。

为此,请指定 Web 服务类的 USEPPGHANDLER 参数,如下所示:

Parameter USEPPGHANDLER = 1;

如果此参数为 1,则 Web 客户端在解析请求或响应时始终使用进程私有全局变量。如果此参数为 0,则 Web 客户端始终使用本地数组内存来实现这些目的。如果未设置此参数,则 Web 客户端使用默认值,通常是本地数组内存。

可以在运行时覆盖此参数。为此,请设置 Web 客户端实例的 UsePPGHandler 属性。

Comentarios (0)1
Inicie sesión o regístrese para continuar
Artículo
· 10 ago, 2024 Lectura de 2 min

第六章 定义单向 Web 方法

[toc]

第六章 定义单向 Web 方法

通常,当 Web 客户端调用 Web 服务时,会返回 SOAP 消息,即使该方法没有返回类型并且在 数据平台中执行时不返回任何内容。

在极少数情况下,可能需要将 Web 方法定义为单向的。此类方法不得返回任何值,并且消息不需要 SOAP 响应。

注意:通常不应使用单向方法。请求-响应对更为常见、更受支持且更受期待 — 即使对于没有返回类型的方法也是如此。

要定义单向 Web 方法,请将该方法的返回类型定义为 %SOAP.OneWayWSDL 未定义此 Web 方法的输出,并且 Web 服务不返回 SOAP 消息。

Comentarios (0)1
Inicie sesión o regístrese para continuar
Anuncio
· 10 ago, 2024

[Video] How Netsmart Moved to InterSystems IRIS in the Cloud

Hi Community,

Play the new video on InterSystems Developers YouTube:

⏯ How Netsmart Moved to InterSystems IRIS in the Cloud @ Global Summit 2023

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! 👍

Comentarios (0)1
Inicie sesión o regístrese para continuar
Pregunta
· 10 ago, 2024

VS Code Connection

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 Comentario
Comentarios (1)2
Inicie sesión o regístrese para continuar