| Numéro d’ID de bogue |
BUG-000122888 |
| Envoi | June 6, 2019 |
| Dernière modification | February 12, 2025 |
| S’applique à | ArcGIS Roads and Highways |
| Version trouvée | 10.6.1 |
| Système d’exploitation | Windows OS |
| Version du système d’exploitation | 2012 |
| Statut | Known Limit
Après examen par l’équipe de développement, il a été déterminé que ce problème est lié à une limitation connue du logiciel sur laquelle Esri n’a aucun contrôle. Pour d’autres explications, reportez-vous à la section Informations supplémentaires correspondant au problème.
|
Informations supplémentaires
This is a limitation of web browsers and how they read version names that include special characters like \. If the URLs created include this character (\), utilize the Python snippet below to transform the URL to be correctly read by the browser.
#Parse the WMX tokens passed as system argument variables into the web URL
log_write(log_file, 'Version: ' + Job_Version)
if "\\" in Job_Version:
VersionList = Job_Version.split(".")
Owner = VersionList[0]
OwnerList = VersionList[0].split("\\")
Domain = OwnerList[0]
OwnerUsr = OwnerList[1]
Version = VersionList[1]
#Web_Version = '%22' + Owner + '%22.' + Version
Web_Version = '%22' + Domain + '%5c' + OwnerUsr + '%22.' + Version
log_write(log_file, 'Formatted web version: ' + Web_Version)
#DB owned version
else:
Web_Version = Job_Version
log_write(log_file, 'Formatted web version: ' + Web_Version)
Étapes pour reproduire
ID de bogue: BUG-000122888
Logiciel:
- ArcGIS Roads and Highways