At times you require to re-register (unregister and register) the Citrix XenApp XML service on application server to address any XML Service configuration changes. When you re-register the XML service, it actually being removed along with configuration first and created afresh with a new configuration as specified. This helps you to see if there is any XML configuration issues that are causing problems in your environment.
Re-registering Citrix XenApp XML Serivce on Application Server
Here are the quick command lines that enables you re-register the XML service on application server.
[code language=”text”]
C:\>net stop "Citrix XML Service"
The Citrix XML Service service was stopped successfully.
C:\>net stop IMAService
The Citrix Independent Management Architecture service is stopping.
The Citrix Independent Management Architecture service was stopped successfully.
C:\>"C:\Program Files (x86)\Citrix\System32\ctxxmlss.exe" /U
C:\>"C:\Program Files (x86)\Citrix\System32\ctxxmlss.exe" /R8080
Citrix XML Service: The service is now registered on port number 8080.
C:\>net start IMAService
The Citrix Independent Management Architecture service is starting..
The Citrix Independent Management Architecture service was started successfully.
C:\>net start "Citrix XML Service"
The Citrix XML Service service is starting.
The Citrix XML Service service was started successfully.
C:\>
[/code]