You do not write files using xml-rpc, it is a communication protocol. You use your php or asp to write files. Are you OK:
$myFile = "/home/vikas/hft/common/internal/config/trader/master/bk_strategy-ptr-to-real-file.h"; $fh = fopen($myFile, 'w') or die("can't open file"); fwrite($fh, $content); fclose($fh);
But why the file is a .h extension if it will not be .xml or maybe .txt or .php, depending on what you want to do with the subsequent response.
source share