—– This API is obsolete and no longer functional. The method body has been fully commented out. Calling this endpoint does nothing and returns no response. It is retained in the API surface for backward compatibility only. Do not use this API in new integrations.
Previously, this endpoint was intended to be called by infoRouter’s internal maintenance scheduler to trigger server-side self-maintenance tasks such as index cleanup, session expiry, and background job execution. These maintenance operations are now managed automatically by the server’s built-in background service infrastructure without requiring an external HTTP trigger.
/srv.asmx/MaintenanceBeat
GET /srv.asmx/MaintenanceBeat
POST /srv.asmx/MaintenanceBeat (form data)
SOAP Action: http://tempuri.org/MaintenanceBeat
This API accepts no parameters. The CancellationToken it receives internally is injected by the ASP.NET Core framework and is not a caller-supplied argument.
| Parameter | Type | Required | Description |
|---|---|---|---|
| (none) | ” | ” | No parameters are accepted. |
This endpoint returns no response body. The HTTP response is always 200 OK with an empty body, regardless of whether the call succeeded or failed, because the implementation is a no-op.
No authentication ticket is required. This endpoint was intended for internal system use only and has no access control.
GET /srv.asmx/MaintenanceBeat HTTP/1.1
Response: 200 OK with empty body.
POST /srv.asmx/MaintenanceBeat HTTP/1.1
Content-Length: 0
Response: 200 OK with empty body.
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:tns="http://tempuri.org/">
<soap:Body>
<tns:MaintenanceBeat />
</soap:Body>
</soap:Envelope>
Fully obsolete: The implementation was commented out as of infoRouter 8.1 and later. Calling this endpoint has no effect whatsoever.
No response body: Unlike all other infoRouter APIs, MaintenanceBeat returns void. There is no XML response, no success/failure indicator, and no error element.
No parameters: The endpoint takes no caller-supplied parameters.
System use only: This endpoint was never intended for use by external integrations or third-party clients. It was an internal scheduling hook.
Replacement: Server maintenance is now handled automatically. There is no replacement API for this functionality.
(None “ this is a standalone obsolete endpoint with no functional equivalent.)
This API returns no error codes. The endpoint always returns HTTP 200 OK with an empty body.