API call from client to autosys server - scheduler

How can we create a API call from autosys client to server.
For suppose I want to sendEvent, How can I send it?

Related

Notification for client connection establishment in server

I am using nghttp2 C++ library (version 1.30) to implement a web server using nghttp2::asio_http2::server. In the deployment many HTTP client connects to the sever and invokes several REST API over time before diconnect. The nghttp2 C++ library provides on_connect which helps to know when the connection is established in the client application.
Is there any simialr way to execute any call back or get notification in the server when the client connects? It is required to get the notification before the REST API is invoked. For example if a client connects and invokes two REST API, the server should be notified once. If I provided handler to server.handle, thats get invoked for each REST API call.
Notification/callback in server code

Rest API notifications from server to client (client independent)

I want my backend service being able to send notification to client with http connection being closed already. Let’s say using terminal to make curl request having response in several seconds and having connection closed I want to receive some sort of notification in terminal in several minutes by some trigger on backend. Is it possible to achieve such a goal?

Fiddler not capturing Talend tRestClient calls

I am using tRestClient component in my Talend job to call a REST API. The REST API call is working fine when sent through Postman. But it is giving 500-Internal Server Error when executed through Talend job.
I want to investigate it further using Fiddler. Is there any special setting I need to do in Fiddler?
Place a tSetProxy before the tRestClient, and set your fiddler proxy address and port so that traffic goes through Fiddler.
For me it's localhost 8888.

Continous listening of Messages from Azure Service Bus Queues via REST possible?

I am able to perform REST DELETE operation to receive and delete messages from Azure service bus queues.To perform this we need to externally call the REST api.
Is there any feature to perform polling,as soon as the message is available in the queue via REST API, we should pickup the message automatically with out external invocation to initiate the message pickup from queue.
Continuous listening of messages from queue via REST is possible?
Continuous listening of messages from queue via REST is possible?
I don't think that there is a way just send rest a request that could continuous listen of messages from queue. As send a REST API request and just a response.
But we could continuous listen of messages from queue with Azure Webjob, Azure function or Azure logical App to trigger Service bus queue message. For more information you could refer to following tutorials.
Azure Service Bus bindings for Azure Functions
Azure WebJob Service Bus trigger

SAP DI Server - How to issue first request?

I have set up a Windows server using SAP Business One, and am trying to fire up the DI Server.
I would like to make a HTTP request with a SOAP body, but I don't know what URL to put in postman.
I also can't figure out how to run the example files in the installation folder for DI Server.
Does anyone know how to get started with DI Server?
Unless you are also using B1WS, starting the DI-Server service doesn't give you a listening HTTP server. You need to write your own listener, for instance as a simple .ashx page hosted under IIS, which accepts a request and passes it to the Interact method of the SBODI_Server.Node object.
See: https://blogs.sap.com/2014/07/28/connecting-an-add-on-to-sap-business-one/