com.atlassian.confluence.content.render.xhtml.migration.exceptions.UnknownMacroMigrationException: The macro 'next_previous_link3' is unknown.

FAQ

How can I change the device status?

All the sample device types provided in WSO2 IoT Server are configured so that the device status is demarked as active as soon as you download the agent. That is because the device is considered to be registered with WSO2 IoT Server when the agent is downloaded. Having the status as active when you download a device is not mandatory and you can change it when writing the device plugin or APIs for your device. 

For example, in RaspberryPi the device status is configured when writing the APIs in the RaspberryPiServiceImpl.java file by defining ACTIVE as the value for enrolmentInfo.setStatus

private boolean register(String deviceId, String name) {
 try {
  DeviceIdentifier deviceIdentifier = new DeviceIdentifier();
  deviceIdentifier.setId(deviceId);
  deviceIdentifier.setType(RaspberrypiConstants.DEVICE_TYPE);
  if (APIUtil.getDeviceManagementService().isEnrolled(deviceIdentifier)) {
   return false;
  }
  Device device = new Device();
  device.setDeviceIdentifier(deviceId);
  EnrolmentInfo enrolmentInfo = new EnrolmentInfo();
  enrolmentInfo.setDateOfEnrolment(new Date().getTime());
  enrolmentInfo.setDateOfLastUpdate(new Date().getTime());
  enrolmentInfo.setStatus(EnrolmentInfo.Status.ACTIVE);
  enrolmentInfo.setOwnership(EnrolmentInfo.OwnerShip.BYOD);
  device.setName(name);
  device.setType(RaspberrypiConstants.DEVICE_TYPE);
  enrolmentInfo.setOwner(APIUtil.getAuthenticatedUser());
  device.setEnrolmentInfo(enrolmentInfo);
  return APIUtil.getDeviceManagementService().enrollDevice(device);
 } catch (DeviceManagementException e) {
  return false;
 }
} 

What are the available device statuses?

WSO2 IoT Server supports device statuses so that you are able to manage the device lifecycle anyway you prefer using the following statuses.

CREATED

The device status once a device instance is created.

Example: Downloading the virtual fire alarm device agent.

ACTIVE

The device status once the agent starts to communicate with the device.

Example: When the virtual fire alarm is connected to WSO2 IoT Server for the first time, you can configure the plugin so that the device status changes from CREATED to ACTIVE.  

INACTIVEA device that is in the ACTIVE state but there is no communication with the server.
UNREACHABLEIoTS is unable to reach the server therefore, the device status can be configured to be in the UNREACHABLE state.
UNCLAIMEDA device that does not have an owner assigned to it.
SUSPENDEDA device that does not abide by a policy that was enforced on it can be suspended and hence be in the SUSPENDED state.
BLOCKEDIf you want to stop the device from communicating with the server, the device status can be configured to be BLOCKED.
DISENROLLMENT_REQUESTEDThe status of the device once it sends a request to be disenrolled from WSO2 IoT Server.
REMOVEDThe status of the status once the device is disenrolled from WSO2 IoT Server.

How can I disable authentication for MQTT clients?

You will want to reduce the number of steps for testing purposes and see if the communication works accordingly, in such cases or for any other use case you can disable authentication for MQTT clients by following the simple steps given below:

  1. Open the broker.xml file that is in the <IoT_HOME>/broker/repository/conf directory.
  2. Configure the following fields:
    • Define the <authentication> tag as OPTIONAL.
    • Define the <authorization> tag as NOT_REQUIRED.
    <authentication>OPTIONAL</authentication>
    <authorization>NOT_REQUIRED</authorization>

Why do I need to use the iOS Agent?

The iOS Agent is required to perform the following operations. Therefore, if you need to use any of the following operations with WSO2 IoT Server, you need to build the iOS Agent.

  • Report location details to the server.
  • Perform the ring operation.
  • Perform notification operations by sending messages to the device.


Why do I get the APIMClientOAuthException error?

Are you getting the APIMClientOAuthException error after using the change-ip script or after manually configuring the IP or hostname of WSO2 IoT Server? Let's look at why it happens and how you can overcome it.

Check if the IP you defined is referring to another hostname in the etc/hosts file. If yes, make sure to comment it out or remove it from the file. Now start the server again and you won't get the error. Sometimes, the VMs will have a server name or machine name, therefore, a host name entry for that server or machine name must be in the /etc/hosts file in order to start the server. In that case, make sure that you do not use the defined IP to resolve the machine host name. 

Please note that the IP you defined cannot point to any hostname. If it is, then hostname verification failures will cause the above issue.


Do I need an iOS  Agent to enroll a device?

No, it is not mandatory to install the iOS agent for you to enroll your iOS device WSO2 IoT Server.
Please note that the features listed under the Why do I need to use the iOS Agent? section does not work without the agent . For more information on how to enroll an iOS device without the agent, see iOS Device.

How do I generate the MDM APNS certificate?

You can find the detailed steps here. If you are a WSO2 subscribed customer or a WSO2 evaluation support customer, you can get WSO2 support to generate the MDM APNS certificate for you.
You can also use Open Source scripts to generate the MDM APNS certificate. For more information, see MDM vendor singing and MDM APNS certificate generation for WSO2 Iot server.

What are the protocols supported by IoT Server?

The HTTP, HTTPS, MQTT, XMPP and WebSocket protocols are supported out of the box for WSO2 IoT Server to communicate with device agents.
Want WSO2 IoT Server to support additional protocols and implement custom push notification strategies? This is possible with the modular architecture of IoT Server. For more information, see Adding a Push Notification Provider.

com.atlassian.confluence.content.render.xhtml.migration.exceptions.UnknownMacroMigrationException: The macro 'next_previous_links2' is unknown.