.net C# API to Magento via XML-RPC

cropped-40665-1600x900-Widescreen__006728_.jpg

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

:arrow: .net C# API to Magento via XML-RPC

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

Possibly Related Posts:


15 Responses to .net C# API to Magento via XML-RPC Add your comment

  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…

  5. Good coding guide.Some times the coding becomes very difficult to understand and fine the solution.This type of topics help to make us clear.

  6. Nice blog. Thanks for sharing..

  7. james craig says:

    Your posting is too helpful for us. Good wishes to you.

  8. Anonymous says:

    Some times the coding becomes very difficult to understand and fine the solution.

  9. Good coding guide.Some times the coding becomes very difficult to understand and fine the solution.

  10. Atif Sheikh says:

    Hello, nnI am unable to download the first link, it gives an error on opening. and for the 2nd link, can someone help me in starting this code?

  11. Roger Owens says:

    you have a great blog here! would you like to make some invite posts on my blog?

  12. Roger Owens says:

    you have a great blog here! would you like to make some invite posts on my blog?

  13. Jessy Loran says:

    Hi,

    I am getting session expired, try to relogin error when i am calling the api on live server with our code. But same code working on local setup as well as the .net server with a sample project. Can any one facing same issue ?? Magento version that i have is Magento 1.6.1.0.

    Thanks & Regards,

Leave a Reply