Mobile Portals


API for browsing, adding, editing and deleting Mobile Portals.

URLs

References

Looking up a Resource (single objects, lists and tabular data)
Creating a Resource
Updating a Resource
Deleting a Resource
Mobile Profiles API

Notes

Mobile Portal Object

{
  "MobilePortalId": 0,
  "MobilePortal": "",
  "IpAddress": "",
  "MapUserName": "",
  "MapUserPassword": "",
  "MapUrl": "",
  "RtpUserName": "",
  "RtpUserPassword": "",
  "RtpUrl": "",
  "ConnectTimeout": 0,
  "ResponseTimeout": 0,
  "PortalType": "ptNone",
  "Enabled": false,
  "Description": "",
  "Notes": ""
}

Table Definition

MOBILE_PORTALS

This table stores the mobile portals in the system.

Field Name Type Size Description
MOBILE_PORTAL_ID smallint 2 Primary key.
MOBILE_PORTAL varchar 40 The name of the mobile portal entry.
IP_ADDRESS varchar 40 The IP address of this mobile portal.
MAP_USER_NAME varchar 40 The user name used when connecting to the portal’s MAP server.
MAP_USER_PASSWORD varchar 60 The password used when connecting to the portal’s MAP server.
MAP_URL varchar 250 The URL that should be used when sending MAP requests to this mobile portal.
RTP_USER_NAME varchar 40 The user name used when connecting to the portal’s RTP server.
RTP_USER_PASSWORD varchar 60 The password used when connecting to the portal’s RTP server.
RTP_URL varchar 250 The URL that should be used when sending RTP requests to this mobile portal.
PORTAL_TYPE tinyint 1 Foreign key into the MOBILE_PORTAL_TYPES table.
CONNECT_TIMEOUT tinyint 1 When the system tries to establish a connection, the system will wait this many seconds before considering the connection to have failed.
RESPONSE_TIMEOUT tinyint 1 When the system tries to send a request, the system will wait this many seconds before considering the request to have failed.
ENABLED bit 1 Specifies whether or not this mobile portal can be used by the system.

0 – Disabled 1 – Enabled
DESCRIPTION varchar 40 The description of this entry.
NOTES varchar 1024 Notes for this entry.