Thank you very much for the effort in capturing the diagnostics
I have been looking at the logs and the attempt to capture the xml responses. I am concerned about the following being returned for the reqs 6, 8 & 9 in the list above
This page contains the following errors:
error on line 239 at column 304: xmlParseCharRef: invalid xmlChar value 65535
Below is a rendering of the page up to the first error.
Req 6
http://localhost:32400/hubs/home/recentlyAdded?type=8&X-Plex-Token=xxxxxxxxxxxxxxxxxxxxxxxx
Req 8
http://localhost:32400/hubs?excludeFields=summary&count=12&includeEmpty=1&includeFeaturedTags=1&excludePlaylists=1&X-Plex-Token=xxxxxxxxxxxxxxxxxxxxxxxx
Req 9
http://localhost:32400/hubs?excludeFields=summary&count=12&includeEmpty=1&includeFeaturedTags=1&excludePlaylists=1&onlyTransient=1&X-Plex-Token=xxxxxxxxxxxxxxxxxxxxxxxx
will have to try these with curl.exe (from https://curl.haxx.se/download.html)
Should be easier with curl.exe
Need to download the curl package and extract the curl.exe from the bin folder in the downloaded zip
Download page https://curl.haxx.se/download.html
Go for Win64 - Generic downloads
Two potential downloads to pick from
Win64 x86_64 zip and Win64 x86_64 7zip
I tried both and for some reason the first has no bin folder
So download the 7zip version which downloads curl-7.58.0-win64-mingw.7z
If you do not have 7zip - you can get it from http://7-zip.org/download.html
Unzip the file Win64 x86_64 7zip
Locate the bin folder and from it copy out curl.exe to the directory you are going to work in
lets say you are going to work in directory c:\users\xxxx\downloads
So copy out curl.exe to the downloads folder
Open command window - start / run / cmd.exe and in that window, type in
cd c:\users\xxxxxx\downloads
and then we can run curl.exe commands
picking up 6, 8 and 9
The syntax would be
curl.exe "http://localhost:32400/hubs/home/recentlyAdded?type=8&X-Plex-Token=xxxxxxxxxxxxxxxxxxxxxxxx" > req6b.txt
curl.exe "http://localhost:32400/hubs?excludeFields=summary&count=12&includeEmpty=1&includeFeaturedTags=1&excludePlaylists=1&X-Plex-Token=xxxxxxxxxxxxxxxxxxxxxxxx" > req8b.txt
curl.exe "http://localhost:32400/hubs?excludeFields=summary&count=12&includeEmpty=1&includeFeaturedTags=1&excludePlaylists=1&onlyTransient=1&X-Plex-Token=xxxxxxxxxxxxxxxxxxxxxxxx" > req9b.txt
Running these one at a time and the output will be in the file name we specify at the end of each line
To copy to a windows command line window, select the above command text and copy, then in the window, click in top left corner and select edit and paste
Once you get one to work, the rest would be easy
So we do the requests in command line window using curl and sending the output to file using > filename.txt syntax
I may need you to send me copy of the database - before and after - lets hold fire on that for now and just we try and get the xml and logs