Okay... I worked off-forum with MelanieH on this and we solved it. Here's how:
You must set this cam up in AbelCam as Web Video with IP Cam as the Interface.
Set up the Web Video URL as a JPG Source (not MJPG), Asynch, and fill in the following stuff.
Web Video URL = http://xxx.xxx.xxx.xxx/cgi/jpg/image.cgi
Authentication User: Username
Authentication Password: Password
Where:
"xxx.xxx.xxx.xxx" = IP address of the camera
"Username" = a valid username for the camera
"Password" = the password for Username
This WILL work. Filling in valid info for Authentication is mandatory NOT optional.
The camera also offers an MJPG stream. The URL for the stream is:
http://xxx.xxx.xxx.xxx/cgi/mjpg/mjpeg.cgi
This will NOT work with AbelCam.
Reason: this camera returns non-standard headers in its MJPG stream. Specifically, the Content-type: image/jpeg header is missing from the beginning of each "part" (frame) of the multipart/x-mixed-replace stream.
Standard is:
boundry string
Content-length:
Content-type: image/jpeg
{image data}
boundry string
Content-length:
Content-type: image/jpeg
{image data}
boundry string
{and so on per frame}
The TV-IP110 instead transmits:
boundry string
Content-length:
{image data}
boundry string
Content-length:
{image data}
boundry string
{and so on per frame}