How to Access OS API from .Net

Asked by naangilsunder

Hi,
   am a .Net programmer i tried access the Nova using WebRequest as below. my request is successful & am able to get the response.

http://172.16.1.12:8773/services/Cloud/?AWSAccessKeyId=cbd71939-d13d-4fa9-bf5b-3d315cabe733:CNext&SignatureVersion=1&Version=2007-01-19&ImageLocation=MMT&Action=DescribeKeyPairs&Timestamp=2011-09-07T19:39:37.994Z&Signature=s2/UKhV41vYSa5S39dVM34FZwJQ=

now my Question is

  1.how can i access OS API using .Net.
  2.Whats the difference between AWS API and OS API

Thanks in Advance

Question information

Language:
English Edit question
Status:
Solved
For:
OpenStack Compute (nova) Edit question
Assignee:
No assignee Edit question
Solved by:
Brian Lamar
Solved:
Last query:
Last reply:
Revision history for this message
Best Brian Lamar (blamar) said :
#1

1) OS API is available on the 8774 port. Documentation around authenticating and querying the OS API (versions 1.0 and 1.1) can be found at http://docs.openstack.org/

2) The EC2 API (on port 8773) is based on the Amazon EC2 API and follows the specifications outlined by Amazon. The OS API is more or less a new version of the Rackspace Cloud Servers API which follows the specifications outlined by Rackspace. As such the two API look completely different but provide many similar features around spinning up servers in the 'cloud'. Amazon's API is more RPC-based and Rackspace's approach is more resource-centric.

Hope this helps!

Revision history for this message
naangilsunder (naangilsunder) said :
#2

Thanks Brian Lamar, that solved my question.