Re: [New Plugin] WebServices + Transcoded streaming + Web Interface for TvServer and
shh26_83
read my post about a bug of using a wrong type for totalPhysicalMem above your post. Open the TvServerStatus.aspx.cs and at line 73 change from int totalPhysicalMem to Int64 totalPhysicalMem and at line 82 from totalPhysicalMem = Convert.ToInt32(mo["totalphysicalmemory"]); to totalPhysicalMem = Convert.ToInt64(mo["totalphysicalmemory"]);
totalphysicalmemory system variable has a int64 datatype as mentioned in the .NET documentation and gemx wrongly used the int32 type which causes an value overflow
edit:
gemx
my previous reported bugs were no bugs at all from your code. Somehow I had a groupmap of 2 non existing channels left over in my channelgroupmap table and when trying to read and show any page with "All channels" TV group, the page crashed. No need to investigate further. But some exception handling code would be nice anyway.
shh26_83
read my post about a bug of using a wrong type for totalPhysicalMem above your post. Open the TvServerStatus.aspx.cs and at line 73 change from int totalPhysicalMem to Int64 totalPhysicalMem and at line 82 from totalPhysicalMem = Convert.ToInt32(mo["totalphysicalmemory"]); to totalPhysicalMem = Convert.ToInt64(mo["totalphysicalmemory"]);
totalphysicalmemory system variable has a int64 datatype as mentioned in the .NET documentation and gemx wrongly used the int32 type which causes an value overflow
edit:
gemx
my previous reported bugs were no bugs at all from your code. Somehow I had a groupmap of 2 non existing channels left over in my channelgroupmap table and when trying to read and show any page with "All channels" TV group, the page crashed. No need to investigate further. But some exception handling code would be nice anyway.