ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Communication / Salesforce functions
  • Possible error cases:
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
SFDisconnect (Function)
In french: SFDéconnecte
Disconnects:
  • the Salesforce platform.
  • the current Salesforce session.
  • the specified Salesforce sessions.
Example
// Connexion à Salesforce
Cnx is sfConnection
Cnx.Login = "balthazar@gmail.com"
Cnx.Password = "azerty" + "XXB12VCZ54"
IF SFConnect(Cnx) = False THEN
	Error("La connexion a échoué")
	RETURN
END
...
// Déconnexion (première syntaxe)
IF NOT SFDisconnect(Cnx) THEN
	Error("La déconnexion a échoué")
END
// Connexion à Salesforce
Cnx is sfConnection
Cnx.Login = "balthazar@gmail.com"
Cnx.Password = "azerty" + "XXB12VCZ54"
IF SFConnect(Cnx) = False THEN
	Error("La connexion a échoué")
	RETURN
END
...
// Déconnexion (deuxième syntaxe)
MesSessions is array of strings
Add(MesSessions, Cnx.SessionInfo.SessionID)
MonRésultat is array of sfDisconnectResult
IF SFDisconnect(Cnx, MesSessions, MonRésultat) = False THEN
	 Error("Une déconnexion a échoué")
	 Trace(MonRésultat[1].Success) // Affiche 0
END
Syntax

Disconnecting the Salesforce platform Hide the details

<Result> = SFDisconnect(<Salesforce connection>)
<Result>: Boolean
  • 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>: sfConnection variable
Name of the sfConnection variable to be used.

Disconnecting one or more sessions Hide the details

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

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.
Component: wd300ggl.dll
Minimum version required
  • Version 14
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/27/2025

Send a report | Local help