Page 3 of 3

Re: Problems with Samsung TV (UN55D6420)

Posted: Fri Mar 29, 2013 5:35 pm
by Optimus_prime
That line is from the legacy HTTP header info the TV's used to send prior to 2 years ago. It's just left in there but can be removed as it's not used anymore. I've re-written it to be in my config to be this
For D series:

Code: Select all

UserAgentSearch=SEC_HHP_[TV]

UserAgentAdditionalHeader=USER-AGENT
UserAgentAdditionalHeaderSearch=([A-Z]{2}[0-9]{2}[D]{1}[0-9]{4}/1.0)
For the rest:

Code: Select all

UserAgentSearch=SEC_HHP_[TV]

UserAgentAdditionalHeader=User-Agent
UserAgentAdditionalHeaderSearch=([A-Z]{2}[0-9]{2}[A]{1}[0-9]{4}/1.0)|([A-Z]{2}[0-9]{2}[B]{1}[0-9]{4}/1.0)|([A-Z]{2}[0-9]{2}[C]{1}[0-9]{4}/1.0)|([A-Z]{2}[0-9]{2}[E]{1}[0-9]{4}/1.0)|([A-Z]{2}[0-9]{2}[E]{1}[A-Z]{1}[0-9]{4}/1.0)
But UMS doesn't like having "User-Agent" in the "UserAgentAdditionalHeader" as it fails build testing

Re: Problems with Samsung TV (UN55D6420)

Posted: Fri Mar 29, 2013 5:40 pm
by Optimus_prime
Hmm..i had to make up the http headers as i guess they look like..
Surely not for every size, but maybe for every series, something down the line of:

EH and ES series

Code: Select all

SEC_HHP_\[TV\]UE\d{2}E[S|H]\d{4}
Examples:
User-Agent: SEC_HHP_[TV]UE55ES8005/1.0 DLNADOC/1.50
User-Agent: SEC_HHP_[TV]UE46EH5300/1.0 DLNADOC/1.50

E series

Code: Select all

SEC_HHP_\[TV\]UE\d{2}E\d{3,4}
Examples:
User-Agent: SEC_HHP_[TV]UE64E8000/1.0 DLNADOC/1.50
User-Agent: SEC_HHP_[TV]UE51E550/1.0 DLNADOC/1.50

D series

Code: Select all

SEC_HHP_\[TV\]UE\d{2}D\d{3,4}
Examples:
User-Agent: SEC_HHP_[TV]UE40D5003/1.0 DLNADOC/1.50
User-Agent: SEC_HHP_[TV]UE40D403/1.0 DLNADOC/1.50
Also you are forgetting that Samsung split the regions they send there TV's to, that's contained in the first 2 letters, e.g the E in UE40D5003 means your in the Europe. so if you use it like that, D series TV's from australia won't get detected as ours have an A instead of E, e.g UA40D5003

Re: Problems with Samsung TV (UN55D6420)

Posted: Fri Mar 29, 2013 5:45 pm
by squadjot
ow,yea thanks, i knew there was stuff like that i was missing.. oke then , i edited them =P