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
- Azure Wordpress deny xmlrpc
- Register new user as authenitcated user in drupal using xml-rpc
- xmlrpc help in java to implement for reverse proxy server
- Ripcord is not working in live server
- xmlrpclib error 'module not found' when trying to access gandi api
- Perl XML-RPC output format/schema
- Python 3 iterate json return object
- Python: use xmlrpc module with a server requiring authentication
- PHP XML-RPC server return code/error do not show in Perl XML-RPC client
- Java XML RPC Client and server
- Android Studio 2.2 Duplicate files exception
- php xmlrpc search error odoo 10
- Laravel scheduler throwing error on executing xml_decode()
- Wordpress xml-rpc client using idhttp fail with EIdConnClosedGracefully on android
- Passing parameters using XML-RPC client in Python
Related Questions in XEN
- Xenserver can't add NFS ISO throught XenCenter
- Quest for a good xen single ip routing config with port forwarding
- Print all the VM's in XenServer using Java API
- setup xen on two phisical interfaces
- XenServer increase vm-disk error
- Whether Virsh migrate VM works with xen hypervisor?
- xenprof: Initialization failed. Intel Processor Model 45 for P6 class family is not supported
- Task Migration in Cloud
- How to retrieve xenstore parameters from WMI interface
- What's meaning of each bit of machine frame address for xen 64bit
- XEN core login process
- Get directory size with xen image
- Connection to xenserver7.2 from xapi throwing exception security.cert
- Hardware assisted virtualization on centos and 32_bit system
- virtual device driver for XenServer
Related Questions in XENAPP
- Time zone issue with Citrix C++/Win API
- XEN core login process
- How to fix WPF render exception on floating panel resize?
- Smart Card Key Containers Cached on Citrix
- Client times out when launching XenApp6 app from internet
- Connecting to customer site with Citrix XenApp
- ApplicationSettingsBase.Save: Unable to save config to file
- Passing parameter from Client CMD through ICA file to launch published Citrix App
- Citrix : What is the difference between outputmodes
- Accessing the active directory info using iOS app through citrix
- Log off citrix session
- Differences between wcfrun32.exe and wfica32.exe
- ICA Protocol with Streamed App's - XenApp
- List all disconnected sessions that are running for 4 hrs and log off them
- Citrix XenApp connection
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 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.