.net C# API to Magento via XML-RPC

Since I’m starting to get back to writing .Net C# again, I decided to dig around for anything Magento related and found a nice XML-RPC based library, that will allow you to utilize Magento’s API. Samples are provided and seem to be pretty straight forward, however they do note a lot of the returns even though stated as an integer or such, but tend to most always return a string. Which leads me to believe its something with the XML-RPC in between the two, and PHP’s love to turn most any type into a string. Here is one of the examples to get your gears turning:

?View Code CSHARP
1
2
3
4
#region Product Image Examples
//// gets the product image current store view (doc says int returned, but is string)
string myProductImageCurrentStore = ProductImage.CurrentStore(apiUrl, sessionId, new object[] { });
Console.WriteLine(myProductImageCurrentStore);

You can find the full API here, along with some notes:
:arrow: .NET C# Object Library for Magento

Direct download link to the API:
:arrow: Ez.Newsletter.MagentoApi_v1.0.zip

Possibly Related Posts:


This entry was posted in Magento Commerce and tagged , , , , , . Bookmark the permalink.

4 Responses to .net C# API to Magento via XML-RPC

  1. This is my first time comment at your blog.
    Good recommended website.

  2. Martin says:

    J have problem to start working with it, can you write where how to run this extension.

  3. Metin2 yang says:

    I like this blog ,very nice!

  4. Thank you for posting…

blog comments powered by Disqus