XojoCloud

From Xojo Documentation

Module

The XojoCloud namespace contains classes and modules used by Xojo Cloud.

Members

Name Description
FirewallPort Allow you to securely open and close ports in the firewall if you need to connect to an outside service.
XojoCloud.RemoteNotifications Allows the sending of remote notifications to iOS devices via a Xojo web application running on Xojo Cloud.

Notes

You must prefix usage of these members with the XojoCloud namespace. For example, this code opens firewall port 587:

Var fwp As New XojoCloud.FirewallPort(587, XojoCloud.FirewallPort.Direction.Outgoing)
fwp.Open() // This call is synchronous
If fwp.isOpen() Then
// Do what you need to do
fwp.Close() // Optional, but if you will not using the port, we recommend it.
End If

See Also

TargetXojoCloud, FirewallPort, RemoteNotifications