AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Funciones WLanguage / Comunicación / Funciones Salesforce
  • Possible error cases:
WINDEV
WindowsLinuxJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac Catalyst
Otros
Procedimientos almacenados
<sfConnection variable>.desconectar (función)
Disconnects:
  • the Salesforce platform.
  • the current Salesforce session.
  • the specified Salesforce sessions.
Ejemplo
// Connect to Salesforce
Cnt is sfConnection
Cnt.Login = "balthazar@gmail.com"
Cnt.Password = "qwerty" + "XXB12VCZ54"
IF Cnt.Connect() =False THEN
Error("The connection failed")
RETURN
END
...
// Disconnection (first syntax)
IF NOT Cnt.Disconnect() THEN
Error("The disconnection failed")
END
Sintaxis

Desconectando la plataforma de Salesforce Ocultar los detalles

<Result> = <Salesforce connection>.Disconnects()
<Result>: booleano
  • True if the disconnection was performed,
  • False otherwise.
If the session has already been disconnected or if there was no connection, <Résultat> is True.
<Salesforce connection>: Variable sfConnection
Name of the sfConnection variable to be used.

Desconectando una o más sesiones Ocultar los detalles

<Result> = <Salesforce connection>.Disconnects(<Session identifier> [, <Status report>])
<Result>: booleano
  • True if the disconnections have been performed,
  • False otherwise (if one of the disconnections was not performed for example).
<Salesforce connection>: Variable sfConnection
Name of the variable of type sfConnection to be used.
<Session identifier>: Variable de tipo Array
Array of strings containing the identifiers of the sessions to close.
<Status report>: Variable opcional de array
Array of sfDisconnectResult variables. Once the function has been run, this array contains the status report of each disconnection.
Observaciones

Possible error cases:

  • The Internet connection is not valid.
  • The authentication was not performed properly.
  • The XML response of the server cannot be read.
  • One of the disconnections was not performed.
To find out whether an error occurred, use the ErrorOccurred variable.
Componente: wd300ggl.dll
Versión mínima requerida
  • Versión 24
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 30/09/2024

Señalar un error o enviar una sugerencia | Ayuda local