ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

New WINDEV and WEBDEV 2024 feature!
Help / WLanguage / WLanguage functions / Web-specific functions / WEBDEV Application Server remote control functions
  • Properties specific to WBAdminApplication variables
  • Functions that use the WBAdminApplication type
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
The WBAdminApplication type is used to define all the advanced characteristics of an application deployed on a WEBDEV Application Server. You can define and change the characteristics of this application using different WLanguage properties.
Remark: For more details on the declaration of this type of variable and the use of WLanguage properties, see Declaring a variable.
Example
login is WBAdminAuth
login.ServerAddress = "http://xxxx"
login.User = "myuser"
login.Password = "mypassword"

Applications is array of WBAdminApplication
Applications = WBAdminListApplication(login)
FOR i = 1 _TO_ Applications.Count  
     Trace(Applications[i].Name)
     Trace(Applications[i].OwnerAccount)
END
Properties

Properties specific to WBAdminApplication variables

The following properties can be used to manipulate a variable of type WBAdminApplication:
Property nameType usedEffect
OwnerAccountCharacter stringApplication owner account.
NameCharacter stringApplication name.
TypeInteger constantType of application:
  • WBAdminTypeSite: Site.
  • WBAdminTypeSOAPWebservice: SOAP web service.
  • WBAdminTypeRESTWebservice: REST web service.
  • WBAdminTypeWebSocket: WebSocket.
Remarks

Functions that use the WBAdminApplication type

The following functions use WBAdminApplication variables:
New in version 2024
WBAdminDeleteApplication
Deletes an application from a WEBDEV Application Server.
New in version 2024
WBAdminListApplication
Returns the list of applications on a WEBDEV Application Server, for a given account and a given type.
Minimum version required
  • Version 2024
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 04/10/2024

Send a report | Local help