Start Application
The JScript below starts the application and shuts it down. If the COM object of the 32-bit XMLSpy cannot be found, the code attempts to get the COM object of the 64-bit application; otherwise, an error is thrown. If an instance of the application is already running, the running instance will be returned.
Note : | Pour XMLSpy 32-bit, le nom enregistré ou l'identificateur programmatique (ProgId) de l'objet COM est XMLSpy.Application. Pour XMLSpy 64-bit, le nom est XMLSpy_x64.Application. Néanmoins, n'oubliez pas que le programme d'appel accédera aux entrée de registre CLASSES dans sa propre ruche de registre, ou groupe (32-bit ou 64-bit). C'est pourquoi, si vous exécutez des scripts en utilisant l'invite de commande standard et Windows Explorer sur Windows 64-bit, les entrées de registre 64-bit seront accédées, et pointeront vers le XMLSpy 64-bit. Pour cette raison, si les deux XMLSpy 32-bit et 64-bit sont installés, une gestion spéciale est nécessaire afin de pouvoir appeler le XMLSpy 32-bit. Par exemple, si on part du principe que Windows Scripting Host est le programme d'appel, procéder comme suit : |
1.Changer le répertoire actuel à C:\Windows\SysWOW64.
2.Dans la ligne de commande, saisir wscript.exe suivi du chemin vers le script que vous souhaitez exécuter, par exemple :
wscript.exe "C:\Users\...\Documents\Altova\StyleVision2025\StyleVisionExamples\API\JScript\start.js"wscript.exe "C:\Users\...\Documents\Altova\XMLSpy2025\Examples\API\JScript\start.js" |
// Initialize application's COM object. This will start a new instance of the application and |
The JScript code listed above is available in the sample file Start.js (see Example Files).