13

Is there something like this for Windows?

If not, what is the easiest/quickest way to test an XML RPC?

Sydius
  • 13,567
  • 17
  • 59
  • 76
  • Nice tool. It would be pretty easy to do something like this in php but windows app... I'll look forward to see if someone know/make one :) – Alekc Mar 25 '09 at 22:24
  • Yes, I might make one if it doesn't exist. Would be a good excuse to make a Linux/Windows GUI app. – Sydius Mar 25 '09 at 23:37
  • 1
    What client did you decide on? – Markus Hedlund Mar 11 '11 at 23:45
  • @Znarkus I ended up making my own in Python. If it were better, I'd release it, but it's very specific to my situation. – Sydius Mar 17 '11 at 22:14
  • You can use Postman as XML RPC client. Set the Content-type: text/xml to header. At choose "raw" for body. Here's my blog post about Postman and XML RPC in Indonesian language. You got the idea https://mul14.wordpress.com/2016/03/22/postman-as-xml-rpc-client/ – mul14 Mar 22 '16 at 01:47

2 Answers2

2

I'm using xmlrpc-test-tool, a browser tool: http://code.google.com/p/xmlrpc-test/

fnagel
  • 654
  • 4
  • 11
0

Browser tools:

Firefox: http://restclient.net/ Chrome: https://chrome.google.com/webstore/detail/postman-rest-client/fdmmgilgnpjigdojojpjoooidkmcomcm

Especially Postman for Chrome is just great!

fnagel
  • 654
  • 4
  • 11
  • 3
    These do not support XML-RPC, am I right? – Kačer Apr 13 '14 at 12:05
  • 2
    @Kačer You can use Postman as XMP-RPC client. Just add "Content-Type: text/xml" to header, and choose "raw" for body. Type any XML you want. Here's the screenshot https://mul14.files.wordpress.com/2016/03/postman-as-xmlrpc-client.png – mul14 Mar 22 '16 at 01:43