I want to know how the xml-rpc works in xen core. I want the sample xml formate sent to xen core while login from XenCenter. Can anyone help me with that? I am not willing to use API provided by xen, I think we can make a connection via traditional http post. Please help.
1
There are 1 best solutions below
Related Questions in XML-RPC
- How can i use filter value in a xmlrpc function?
- how to check xmlrpc default time?
- how to know the default time for xmlrpc timeout
- How to Download Sales Order Invoice from Odoo 15 Using XML-RPC or JSON-RPC in Python Flask Without SSH Access?
- The quantity to produce must be positive!" When Setting Manufacturing Order to 'Done' Status via XML-RPC
- XML-RPC Request in JavaScript
- MAUI and XML-RPC
- Stop following the partner in Odoo 17 at creation time
- Order from draft to confirmed by xmlrpc (Odoo 16)
- PHP 8.2 xmlrpc unable to initialize module
- python3 xmlrpc socket timeout in docker
- Python XMLRPC post.date does not work with Wordpress
- Zend XmlRpc Client gzinflate out of memory on php 7.1
- How to Create an Invoice for Rental Order in Odoo 15.2 Using XML-RPC?
- How to fix http.client.IncompleteRead error while dumping database on remote server
Related Questions in XEN
- Ansible xenserver_guest module not setting static IP on AlmaLinux 9 guest OS
- XEN package installing through yocto
- Compile error when using Newlib with Xen project
- Understanding Groovy retry() and catchError()
- XenAPI Library - C#
- Is there any way to open BitLocker on Windows10 OS drive(C:) automatically on StartUp that is running on XenOrchestra vm machine?
- Import VDI on XCP-NG from stdin
- Getting the running time of Xen guest domain (RTEMS)
- Getting the running time of Xen guest domain
- How to set IP address to alpine linux as Dom-U on Xen hypervisor?
- Xen on ARM: boot page tables setup
- guest OS on Xen can't connect to Domain-0
- xen hvm : no console
- UEFI Runtime Services: Role and Function Within an OS
- Ansible community parted module asking "Are you sure you want to continue", is there an override
Related Questions in XENAPP
- Microsoft.Web.WebView2 / .NET Framework 4.8 WinForms application + Published application run-time error (REGDB_E_CLASSNOTREG)
- ApplicationSettingsBase.Save: Unable to save config to file
- Powershell script tool to rename profile folders in networks share
- Continue powershell script execution even if a reboot is encountered
- Citrix : What is the difference between outputmodes
- List all disconnected sessions that are running for 4 hrs and log off them
- Send message to citrix client driver
- How to debug the Citrix ICA error "The session limit has been reached"?
- automating the tests where application running under citrix xenapp
- Wrapping apk with MDX ToolKit - Failed to merge resources from ManagedApp
- CertificateVerificationFailed while trying to get Citrix License Information
- Why popup of wpf app is being closed on xenapp?
- Decide a different 'main' IP for a specific process
- error installing xen-api-sdk using opam : No package named xen-api-sdk found
- Indentify unique users across XenApp farm with Powershell
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I am sharing how I make it work.
This is the xml formate you need to provide for login in XEN SERVER. So make XML as XEN SERVER expects and make a connection and post the xml. It will return the expected response.
it you return a XML like
Then parse the XML to get the data and save necessary data for further use. You can have a good idea about XML formate and return type from XEN API Documentation
Best of luck. And feel free to ask any question.