Hi,
You must be doing something wrong. I just tested it and it works fine for me.
Here's what I do:
First make sure the Library Server is enabled:
- In the left pane select 'Services & Plug-ins' => 'Media Network' => click Options
- Make sure the check in 'Use Media Network to share this library and enable DLNA' is on
Start a browser and do the following:
- Type the following Url: http://localhost:52199
- You should now see the 'Library Server' main menu
- Click the 'MCWS (Web Service)' menu item
- You'll now be presented with all the interfaces you can use
If I, for instance, click the 'Alive' example (which fires
http://localhost:52199/MCWS/v1/Alive) you should see something like:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
- <Response Status="OK">
<Item Name="RuntimeGUID">{AEBD3140-649A-4A12-9991-304CA839AA38}</Item>
<Item Name="LibraryVersion">20</Item>
<Item Name="ProgramName">JRiver Media Center</Item>
<Item Name="ProgramVersion">16.0.164</Item>
<Item Name="FriendlyName">Speedy</Item>
<Item Name="AccessKey">CNcvbV</Item>
</Response>
If you only want to see library items with type 'audio' do the following:
http://localhost:52199/MCWS/v1/Files/Search?Query=[Media Type]=Audio&Action=mpl
This causes MC to collect all Audio Types and will send you a search result in the form of a 'Search1.mpl' file which has results like this:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<MPL Version="2.0" Title="MCWS - Files - 9244">
<Item>
<Field Name="Key">373</Field>
<Field Name="Filename">C:\Users\Public\Music\Sample Music\Kalimba.mp3</Field>
<Field Name="Name">Kalimba</Field>
<Field Name="Artist">Mr. Scruff</Field>
<Field Name="Album">Ninja Tuna</Field>
<Field Name="Genre">Electronic</Field>
<Field Name="Comment">Ninja Tune Records</Field>
<Field Name="Date">39448</Field>
<Field Name="Bitrate">192</Field>
<Field Name="Image File">INTERNAL</Field>
<Field Name="Duration">348,0550000000000068</Field>
<Field Name="Track #">1</Field>
<Field Name="Disc #">1</Field>
<Field Name="Media Type">Audio</Field>
<Field Name="Album Artist">Mr. Scruff</Field>
<Field Name="Date Imported">1303378644</Field>
<Field Name="Skip Count">7</Field>
<Field Name="Last Skipped">1305186408</Field>
<Field Name="File Type">mp3</Field>
<Field Name="File Size">8424803</Field>
<Field Name="Date Created">1247549558</Field>
<Field Name="Date Modified">1304683245</Field>
<Field Name="Compression">CBR (MPEG-1 Layer 3)</Field>
<Field Name="Publisher">Ninja Tune</Field>
<Field Name="Composer">A. Carthy and A. Kingslow</Field>
<Field Name="Sample Rate">44100</Field>
<Field Name="Channels">2</Field>
<Field Name="Bit Depth">16</Field>
</Item>
<Item>
...
</Item>
</MPL>
Take a close look at the options in the different interfaces and you'll see that there's almost nothing you can not do with MC.
Regards
Paul Sinnema