How to dump out data dictionary in rmdstestclient

I see that the rmdstestclient has a -ddict argument which I believe in theory dumps out the data dictionary to a file. I'm having trouble getting this argument to work. I tried running the program with -ddict {output_file} but didn't anything getting written out. I also tried running it with -ddict True since it looks like the default argument is "False" but don't see where the data dictionary is getting outputted to. Has anyone ever gotten this to work? What's the right set of arguments that I should be passing in?

Best Answer

  • zoya faberov
    zoya faberov ✭✭✭✭✭
    Answer ✓

    There is no argument to -ddict switch.

    For example, this set of switches works for me to capture dictionary from the infra

     .\rmdsTestClient.exe -h MY_ADS -S MY_SERVICE –ct rssl -f curr_items.txt -ddict -m -X -v -of curr_capture.txt

    where "curr_items.txt" is my subscription items file and "curr_capture.txt" is my captured output

    To go on and to capture subscribed items I use -dfile

      .\rmdsTestClient.exe -h MY_ADS -S MY_SERVICE –ct rssl -f curr_items.txt -ddict -dfile "MY_DICT_PATH\RDMFieldDictionary -m -X -v -of curr_capture.txt

Answers