Modify – Robot and RobotAgent Communication Mode

By default, Robot and Robot Agent communication mode is IPC (InterProcess Communication). But this can be changed to WebSocket by executing following configuration changes.


Default behavior:


RoboAgent.exe.config > PrimarySettings/IODiskPaths

 


<add key="CommMode" value="IPC"/>

 

To modify the default behavior, change the key value as mentioned below.


<add key="CommMode" value="WebSocket"/>

 

ErrorDetail class:

 

public class ErrorDetail

{

public ErrorDetail();

public ErrorDetail(string errorCode, string errorDescription, string errorType);

public string Code { get; set; } public string Description { get; set; } public int Priority { get; set; }

public string Type { get; set; }

}