Microsoft Sues TiVo - The Why of It

 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News Microsoft Sues TiVo - The Why of It
# 1  
Old 01-20-2010
Microsoft Sues TiVo - The Why of It

Microsoft filed a patent infringement suit against TiVo late yesterday. Microsoft says it's really about defending AT&T, which is one of the companies TiVo has already sued over patents. TIVO says it is too. From the San Jose Business Journal:
The action is seen as being related to a lawsuit that Alviso-based TiVo filed against AT&T Inc., claiming the company's U-Verse TV service illegally uses its "time-warping" technology in its digital video recorders.
TiVo is involved in similar disputes with Verizon Communications Inc., the Dish Network and EchoStar Corp.AT&T service uses Microsoft technology for video delivery and digital recording.
That's, in my view, Microsoft spin, that it's doing this to help out AT&T. I would describe it more like this: remember when SCO sued AutoZone for using Linux in its business? AutoZone didn't write Linux. It just used it. So SCO sued an end user. Similarly, TiVo is suing AT&T. But AT&T didn't write Microsoft Mediaroom, the implicated software. Microsoft did. So naturally, AT&T has demanded that Microsoft indemnify AT&T, and so here comes Microsoft, essentially defending itself, because if AT&T loses, it's Microsoft who has to shell out the bucks.

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. Windows & DOS: Issues & Discussions

Microsoft Powerpoint 2003 stops working after 12 April 2011 Microsoft Updates

For the benefit of the community this is a widespread worldwide problem affecting multiple versions of Microsoft Windows. Powerpoint erroneously reports Powerpoint presentation damaged and then often hangs. Until Microsoft sort this out, try removing Powerpoint security update KB 2464588... (0 Replies)
Discussion started by: methyl
0 Replies

2. News, Links, Events and Announcements

SCO sues IBM

http://www.sco.com/scosource/SCOFilesComplaintAgainstIBM.html in my opinion, there is a simple solution to this, a large company, like IBM, should buy the rights from SCO, and then make their rights to UNIX freely available. could they do something likethat? could they even change the license... (6 Replies)
Discussion started by: norsk hedensk
6 Replies
Login or Register to Ask a Question
HTTP::Cookies::Microsoft(3)				User Contributed Perl Documentation			       HTTP::Cookies::Microsoft(3)

NAME
HTTP::Cookies::Microsoft - access to Microsoft cookies files SYNOPSIS
use LWP; use HTTP::Cookies::Microsoft; use Win32::TieRegistry(Delimiter => "/"); my $cookies_dir = $Registry-> {"CUser/Software/Microsoft/Windows/CurrentVersion/Explorer/Shell Folders/Cookies"}; $cookie_jar = HTTP::Cookies::Microsoft->new( file => "$cookies_dir\index.dat", 'delayload' => 1, ); my $browser = LWP::UserAgent->new; $browser->cookie_jar( $cookie_jar ); DESCRIPTION
This is a subclass of "HTTP::Cookies" which loads Microsoft Internet Explorer 5.x and 6.x for Windows (MSIE) cookie files. See the documentation for HTTP::Cookies. METHODS
The following methods are provided: $cookie_jar = HTTP::Cookies::Microsoft->new; The constructor takes hash style parameters. In addition to the regular HTTP::Cookies parameters, HTTP::Cookies::Microsoft recognizes the following: delayload: delay loading of cookie data until a request is actually made. This results in faster runtime unless you use most of the cookies since only the domain's cookie data is loaded on demand. CAVEATS
Please note that the code DOESN'T support saving to the MSIE cookie file format. AUTHOR
Johnny Lee <typo_pl@hotmail.com> COPYRIGHT
Copyright 2002 Johnny Lee This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.18.2 2012-02-15 HTTP::Cookies::Microsoft(3)