SendMessage
Bizerba SOAP API (_connect.BRAIN)
Direct Communication TCP/IP
Example Requests
Single Command
let result = await app.businessFunction({
//Common Parameters for all functions
functionName: "BizerbaSoap",
methodName: "SendMessage",
silentMode: false, //false is default. If set to true, the Gebra Suite will not show an error message box. it is up to you to inform the user.
url: "192.168.0.54", //The URL of Bizerba WebAPI
device: "GLPmaxx", //Device to be addressed
message: "A!GD10|USD;-2;333" //BxNet command
timeout: 15 //Timeout in seconds for the request
});Multiple Commands
let result = await app.businessFunction({
//Common Parameters for all functions
functionName: "BizerbaSoap",
methodName: "SendMessage",
silentMode: false, //false is default. If set to true, the Gebra Suite will not show an error message box. it is up to you to inform the user.
url: "192.168.0.54", //The URL of Bizerba WebAPI
device: "GLPmaxx", //Device to be addressed
message: "A!LV01|GD02|lb;-3;222|GD10|USD;-2;333|LX02" //BxNet command
timeout: 15 //Timeout in seconds for the request
});Multiple Commands as an object array
Multiple Commands directly from a sqlRead result
Example Response
Last updated