I am using Unified Remote to control JRiver and since the out of the box remote was very lacking I created my own and its working great. I can actually post the XML if anyone is interested, however I am now working on creating a new button set to launch my favorite playlist.
This is an example of what I have now which actually works great. I used the Web remote and went to playlist and put the command that used here
<Action Name="JRiver PL Web Media">
<ActionRef Name="Post" Target="Core.Web" Extra="http://localhost:52199/WebRemote/library.html?LibraryLocation=1008&Command=Shuffle"/>
</Action>
This works great except the Web Remote requires my password and Unified Remote does not allow POST/GET with password Authentications. When I disable my password in the JRiver settings my remote works fine however I later realized when updating things on my separate PC that JRiver requires a password to do any changes so I had to put the password back.
I noticed the MCWS does not require a password and seems to do basically the same thing with REST logic however I have not been able to figure out how to trigger a playlist. Can anyone help I found the command to display all of my playlists and found this information surrounding the playlist I want to play
<Item>
<Field Name="ID">
531723557
</Field>
<Field Name="Name">
Kids Favs
</Field>
<Field Name="Path">
Kids Favs
</Field>
<Field Name="Type">
Playlist
</Field>
</Item>
Question is how can I play a playlist through MCWS?