No edit summary |
No edit summary |
||
(6 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
<message>Write the content here to display this box</message> | |||
Adding this method to your SysSingleton and marking it with Eco.ExternalLateBound=anyvalue can give you access to the running Turnkey system's URL address: | Adding this method to your SysSingleton and marking it with Eco.ExternalLateBound=anyvalue can give you access to the running Turnkey system's URL address: | ||
SysSingleton.GetSystemUrl():string | SysSingleton.GetSystemUrl():string | ||
Line 12: | Line 13: | ||
Please note that this is the URL of the TurnKeyserver. Thus, an action originating from TurnKey needs to set the URL. This action may be necessary to persist the address for server-side jobs or SysAsync tickets running on MDrivenServer. | Please note that this is the URL of the TurnKeyserver. Thus, an action originating from TurnKey needs to set the URL. This action may be necessary to persist the address for server-side jobs or SysAsync tickets running on MDrivenServer. | ||
Note that this function (and all ExternalLateBound ) | Note that this function (and all ExternalLateBound ) is only available at the TunrkeyLevel - not the MDrivenServer level. | ||
''Maybe you searched for GetServerUrl - but the name is GetSystemUrl (Leave this for better indexing).'' | ''Maybe you searched for GetServerUrl - but the name is GetSystemUrl (Leave this for better indexing).'' | ||
==== Additional methods ExternalLateBound method on SysSingelton ==== | ==== Additional methods ExternalLateBound method on SysSingelton ==== | ||
Additional methods ExternalLateBound method on SysSingelton as SHA512ComputeHash, SHA256ComputeHash and BitConverterToString are found here: [[SHA512ComputeHash, SHA256ComputeHash and BitConverterToString]] | Additional methods ExternalLateBound method on SysSingelton as SHA512ComputeHash, SHA256ComputeHash and BitConverterToString are found here: [[Documentation:SHA512ComputeHash, SHA256ComputeHash and BitConverterToString|SHA512ComputeHash, SHA256ComputeHash and BitConverterToString]] | ||
[[Category:MDriven Turnkey]] | [[Category:MDriven Turnkey]] | ||
[[Category:MDriven Server]] | [[Category:MDriven Server]] | ||
{{Edited|July|12|2025}} |
Latest revision as of 05:48, 18 February 2025
Adding this method to your SysSingleton and marking it with Eco.ExternalLateBound=anyvalue can give you access to the running Turnkey system's URL address:
SysSingleton.GetSystemUrl():string
Making the method "IsQuery" makes it available in OCL (not only action language) - and you can write things like this:
SysSingleton.oclSingleton.GetSystemUrl()+ '/SiteAssets/ProjectReportTemplate.odt'
...this will fully qualify the address to a report template found in SiteAssets.
Or maybe you need a QRImage with a fully qualified URL back to your system:
ZXing.QRImage(300,300,SysSingleton.oclSingleton.GetSystemUrl()+ '/Turnkey/AngularApp#/ToolInfo/'+self.Guid.asstring)
Please note that this is the URL of the TurnKeyserver. Thus, an action originating from TurnKey needs to set the URL. This action may be necessary to persist the address for server-side jobs or SysAsync tickets running on MDrivenServer.
Note that this function (and all ExternalLateBound ) is only available at the TunrkeyLevel - not the MDrivenServer level.
Maybe you searched for GetServerUrl - but the name is GetSystemUrl (Leave this for better indexing).
Additional methods ExternalLateBound method on SysSingelton
Additional methods ExternalLateBound method on SysSingelton as SHA512ComputeHash, SHA256ComputeHash and BitConverterToString are found here: SHA512ComputeHash, SHA256ComputeHash and BitConverterToString