Slashdot Mirror


Browser Cookie Patent

resistant writes "Here's more patent madness, this time on cookies used in browsers. (By now, even Forbes has a commendable attitude about this rampant greed)." This is actually a pretty interesting article for folks not so familiar with why patents are such a big deal in this day and age.

39 of 238 comments (clear)

  1. First Post! by Anonymous Coward · · Score: 4, Funny

    And I patent it!

  2. It DOES make sense! by Occam's+Hammer · · Score: 5, Interesting

    I read an interesting article in the New York times last week that sheds a little light on the practice of filing for these obviously ridiculous patents. Evidently companies are using these useless patents by donating them to universities or organizations and taking a huge tax write off for it. It is starting to make more sense now. $4000 (US) to "research" and file the patent, and then if they happen to get it, donate it to a college and write off the "Value" at $800,000.00! A very large profit without ever having to enforce an obviously unenforceable patent.

    --
    (sig on loan to Smithsonian)
    1. Re:It DOES make sense! by Occam's+Hammer · · Score: 5, Informative

      Here is the story

      --
      (sig on loan to Smithsonian)
  3. Prior Art by birdman666 · · Score: 5, Funny

    I think Nabisco has prior art on this one.

    --

    Nothing from nowhere I'm no one at all
  4. patent the "patent madness" by stonebeat.org · · Score: 5, Funny

    whoever does it, will make lot of money.

  5. I didn't know you could patent cookies by Linux-based-robots · · Score: 5, Funny

    What next? Pies, pasteries, fudge brownies? Where will this madness stop?

  6. My next patten by Flak · · Score: 5, Funny

    I'm going to patten the act of sex. I will be rich beyond all dreams. I will only collect on the act of sex at the birth of a child, but I will charge retroactivlly for all "pratice acts"

    1. Re:My next patten by user32.ExitWindowsEx · · Score: 5, Funny

      Hmmm...wouldn't the USPTO suddenly become the world's largest pr0n repository as millions of people submit 'prior art' ?

      --
      "Evil will always triumph because good is dumb." -- Dark Helmet
    2. Re:My next patten by FyRE666 · · Score: 4, Funny

      Yeah, but you won't make much money from the /. crowd ;-)

    3. Re:My next patten by dargaud · · Score: 4, Funny

      Well, seriously, I'd like to meet the guy who invented sex and see what he's working on now...

      --
      Non-Linux Penguins ?
    4. Re:My next patten by Dog+and+Pony · · Score: 4, Funny

      That would depend on your definition of "Practice act". For one, does it take two to practice?

      Given the one-handed surfing some of these guys do, even a few actual children conceived should bring in a nice sum. :)

  7. Actual real prior art from BBS days by Anonymous Coward · · Score: 5, Interesting

    Anyone remember IEMSI? I think that was it. Anyway, it was a mechasnism that allowed BBS's and dial-up clients to exchange login information to create a session that was persistent. It was actually pretty neat. I remember I lobbied for it be included in Renegade (COTT LANG in da hizouse!). That was close to a decade ago.

  8. Re:Why stop at patenting cookies? by B3ryllium · · Score: 5, Funny

    Better idea: Patent spam. :)

  9. Need to Read the Patent by Pika · · Score: 5, Insightful

    Read the patent - F5 DID NOT PATENT COOKIES!

    They patented the ability to use and set information in cookies for load balancing decisions.

    1. Re:Need to Read the Patent by SlashdotLemming · · Score: 4, Insightful

      Read the patent - F5 DID NOT PATENT COOKIES!

      This has become a daily thing on Slashdot. Alarmist post, no-one reads the article, dozens of people complaining about the same set of high level problems.

      Its evolved into an interesting business model. The ignorant masses (oh god, this has turned into an elitist post!!!) click and click and post their generic detail free complaints while those who care can still find useful information.
      The marriage of paranoia and truth that other news outlets haven't mastered.

      I'd complain, but a 'better' system would never stay in business.
      And anyways, most of my jackass troll posts would never be accepted. ;)

    2. Re:Need to Read the Patent by stevens · · Score: 4, Insightful
      They patented the ability to use and set information in cookies for load balancing decisions.

      And it's still shameless. I've worked with cookie persistence on F5's BigIP load balancers. It uses a cookie to identify which server out of a server pool a particular client should go to.

      This is for load-balanced webservers that keep server-side session data, which is only on one server for any particular client. So the clients are distributed across the pool, but any particular client always goes to the same server in the pool. Simple.

      This is what cookies were made for. Cookies were designed to solve problems where you need a particular HTTP client to keep a piece of data the server needs. This is a piece of data the F5 server needs, and so it uses a cookie to store it on the client. It's not any new innovation.

      Any good developer would've come up with the same solution. This is just patenting "Using Cookies for Application X." Next we'll see "Using Cookies for Application Y." Humbug.

  10. This is not a patent on cookies by squiggleslash · · Score: 4, Interesting
    RTFA. It's a patent on the use of cookies to reunite an interrupted session (say, because your browser crashes) with a particular server where cookies are being used as a session ID.

    Interestingly, as the technology is being used in some kind of load balancing router (if I understand the article properly, it's fairly vague) it actually looks like a hardware patent more than a software one (routers run software, but then so do milling machines...)

    It still looks "obvious" to me, but it's not the patent the submitter claims it to be. Bad submitter! No cookie for you!

    --
    You are not alone. This is not normal. None of this is normal.
    1. Re:This is not a patent on cookies by MrWa · · Score: 4, Interesting
      It still looks "obvious" to me,

      Don't most patents look obvious after the fact? That seems to be the most difficult part about deciding whether these patents are valid - even for a non-technie, once you read the patent, the idea may seem obvious. This doesn't always make the patent invalid, though, right?

    2. Re:This is not a patent on cookies by squiggleslash · · Score: 5, Insightful
      Not in this case. Consider:
      • The use of session cookies was commonplace from the mid-nineties on. IIS pretty much forced developers to send them even if they had no use for them.
      • You load balance. In order for "sessions" to work, all traffic would go to a particular machine, the user being routed to it.
      • You get complaints because just as someone hit the "submit" button on a form, their machine crashed, and they ended up getting billed twice for something because it turned out that the request was sent, and they, entering a second time, redid the entire request. What do you do to fix your software so that when they go in again, they end up at the same place?
      The answer would be staring you in the face. The "bug" is in the session cookie, in that it's not sent to the new server the second time around and the new server can't retrieve the saved session. So you fix the cookie, make sure it contains the information about what server the session is with, and voila! The bug is fixed.

      Essentially, this is patenting a bug fix. That's why it's "obvious", any programmer would have solved the issue the same way.

      Incidentally, I do defend software patents from time to time as being original and easier to think of in hindsight than it was before the invention for the very same reason as you argue. I think One Click was original. I think Amazon's discussion system is original. But I don't think this one is, fixing bugs is never original, and definitely shouldn't be patentable.

      --
      You are not alone. This is not normal. None of this is normal.
  11. Marvin? by Vinnie_333 · · Score: 5, Funny

    I claim this patent in the name of MARS!

    --

    "We shall party like the Greeks of old! You know the ones I mean." - HedonismBot
  12. And in further news... by Anonymous Coward · · Score: 5, Funny

    Sesame Street's Cookie Monster was unavailable for comment.

  13. This is like the Domain Name Land Grab by sielwolf · · Score: 4, Interesting

    Everyone is just trying to get a dollar and a cent out of a tech industry they still think is hemmoraging cash. But here the implications are even worse. The worst thing about a domain name grab is that it points to a hack portal like xupiter.com and that in two years (with the anti-tech economic downturn) they'd probably drop the domain name.

    By having a patent though... well, it can be bad news all around. I wonder, why didn't W3 try and pick up all these patents? Or are they out of their element here?

    --
    What is music when you despise all sound?
  14. what about games? by Kolenkow · · Score: 5, Funny

    Why didn't ID software patent the 1st person shooter? It would've saved humanity from loads of crappy doom-clones.

    --
    Hofstadter's Law: It always takes longer than you expect, even if you take into account Hofstadter's Law
  15. OMFG by Chordonblue · · Score: 4, Funny

    You know, I don't think Keebler's and Nabisco should be forced into licensing cookie technology. There's gotta be some prior art here somewhere!

    --
    "...Well, there's egg and bacon; egg sausage and bacon; egg and spam; egg bacon and spam; egg bacon sausage and spam..."
  16. goon off it all by mlush · · Score: 5, Funny

    I recall a Goon Show where the word 'Help' was copyrighted by Grytpype-Thynne who made a killing by pushing Moriarty (?) into the water and charging him royalties every time he Help!

    Nothing changes :-(

  17. FSC-0056 by Anonymous Coward · · Score: 5, Informative

    Here it is, FSC-0056 EMSI/IEMSI.

  18. Re:Why stop at patenting cookies? by Anonymous Coward · · Score: 5, Funny
    People who shopped for helicopters also shopped for:
    • Seat belts
    • Parachutes
    • Life vests
    • Airbags
    • First Aid kits
    • Survival Rations
    • Mac OS X 10.2 "Jaguar" (Save 5%! Free shipping!)
  19. Better would be by arvindn · · Score: 4, Funny

    If someone patented popups, and enforced it, then I'll be cheering :)

  20. Prior Art by Ted_Green · · Score: 5, Funny
  21. Re:Cookies? Sheesh... by FyRE666 · · Score: 5, Interesting

    [why cookies]

    Any web app developer can tell you that there's half a dozen more reliable and secure ways to persist data.

    Care to list them? Aside from making every simgle page a form, or re-writing pages to append an ID to every single URL link? Cookies are still the most convenient way to maintain a session with lower server-side overhead. Using session cookies is certainly no less secure than the above methods (possibly more so, if the browser history allows another user to continue the session due to bad coding on the server).

  22. Patents not adversarial like other courts... by aquarian · · Score: 5, Informative

    One of the main differences between patent courts and the rest of the court system is that patent court is not adversarial by design. When you go for a patent, you're not under such a heavy burden to prove you're worthy of it. And it's not the government's job to prove you're not, or even to put up a challenge. Other courts are adversarial by design. Each side does whatever it can to prove they're right and the other is wrong. Out of this emerges a winner and a loser. The patent system is not like that. Instead of a right and a wrong, we're left with two maybes, and potentially some new barriers to free commerce.

  23. RTFA by PhuCknuT · · Score: 5, Informative

    This isn't a patent on cookies, this is a patent on load balancers detecting cookies and using them to keep a session associated with a specific server in the load ballanced pool.

  24. 'Greed' not the problem by Ed+Avis · · Score: 4, Insightful

    It's not blatant greed, it's blatant *stupidity*. People and companies will always be greedy. The point is to channel that greed so that it benefits society as a whole. Capitalism with competition is one attempt to achieve this. The patent system, also, should be designed so that when companies act in their own interest they are also benefiting the public - for example, the public gets a benefit in the long run from the invention being published rather than kept secret. But when the patent system is extended to software and particularly when the standards of patentability are so trivial, the behaviour it rewards can become detrimental to the economy as a whole, as the article suggests.

    The answer is not to castigate individual companies for acting in the interest of their shareholders - even though their actions may be immoral, any one case of patent abuse will be a small part of the whole, and persuading one company to stop its actions for fear of bad PR does very little to stop other companies applying for bogus patents or to stop the patent office granting them. The answer is to fix the system.

    --
    -- Ed Avis ed@membled.com
  25. Not all fields benefit from patents by jbn-o · · Score: 4, Informative
    Patents are a critical part of the foundation of successful free markets. Why would anyone want to innovate if not to profit from his innovations?

    Some people forget that computing is one industry that did not always have to deal with patents as it does now. Computing was moving along perfectly well without them, so patents don't come off as necessary to spur innovation, but weapons to needlessly hobble competitors. Patents are being awarded for ridiculous and obvious ideas that stifle the development of software and hardware for all but the richest participants. The consumer does not benefit from this reduction in competition. Furthermore, your point suggests you think that if one industry has patents they all should have them. I suggest you examine the details on how patenting works in each field and you throw out such broad sweeping conclusions.

    For a far more prescient, detailed, and learned view of patents specifically talking about patenting algorithms used in the production of computer software (sometimes inaccurately called "software patents"), listen to or read RMS' talk on patents.

  26. Another reason why patent madness makes sense by Anonymous Coward · · Score: 4, Insightful

    It's always better to apply for a patent than to have someone else apply, win the patent, and then sue you.

    Applying for the patent can be a cost effective defensive move. Then you don't have to go to court and defend your position... you can choose not to enforce the patent and it cost you only the cost of the patent.

  27. bring back patent models by Anonymous Coward · · Score: 5, Funny

    it used to be that you had to present a working model of an invention to the PTO before being granted a patent. This had the effect of both crystalizing the definition of the claims and restricting these to those specifically demonstrated w/ the implementation. Patent drawings have a similar effect though they allow for a more liberal interpretation of the implementation.

    IF these hucksters had to actually show the PTO examiner the implementation of their claims alot of these patents would be either thrown out for obviousness or prior art , or forced to drastically restrict their claims.

    examiner : this looks like a hyperlink ?!?
    huckster : no it's a user joy eliciting interaction actuator.
    examiner : wha ?
    huckster : our claim is on all interactions that make people happy , or result in greater happiness.
    examiner : so if I click this link and it leads to a picture of a cute baby and that makes my smile , you want to own that interaction ?
    huckster : right , that baby would be infinging on our patent.
    examiner : ok then here's your patent for hyperlinking to pictures of smiling babies that make me happy. Good Day

  28. The answer is obvious! by Sanity · · Score: 4, Interesting

    Set up a 501c3 non-profit corp which will act as a pool of patents to be used as a counter-threat against patent racketeering. These large companies can then donate their patents to it, get a tax write-off, and they can simultaenously continue to benefit from the defensive protection of those patents.

  29. Hate obvious patents? Out of work? by Fapestniegd · · Score: 4, Interesting

    The USPTO is hiring patent reviewers.

    In the short amount of time you spend reading slashdot and shaking your fist at "The Man" you could have reviewed (and rejected) an obvious patent.

    Seriously, It is a nice government job, with benefits, and you'd be doing a lot of good.

  30. true and it's older than Reback knows. by twitter · · Score: 4, Insightful
    Reback says that patent abuse has only been a problem for 20 years or so:

    For almost two centuries, the USPTO did a reasonable job balancing the need for incentive against the need for competition. But about 20 years ago the floodgates burst open, and the free-enterprise system has been thrashing in a tidal surge of patent claims ever since.

    The glass bottle making industry shows that this problem is at least 100 years old. Patents were abused so that there were only two bottle making machine companies in the entire US for decades. They used many of the techniques we see in software today. They used their patent ownership to prevent others from making machines of any kind and tried to fence each other off by applying for patents needed to improve each other's machines. They used the non competitive market to demand that all of the equipment be leased, not owned, by actual bottle makers. "Price cutters" were denied the use of equipment and concesions to make bottles were handed out like gold mines to a selected few. The price of glass bottles remained artificially high until plastic and aluminum manufacture was available as a sustitute. The US government coluded with these companies. While they were tried and convicted of anti-trust violations, no real harm ever came to them and there were no gross problems of "over production", as if that were possible. While it's true that patents on busness methods and drawing squares electronically bring new lows to the method, the ends have been achievable for a century.

    --

    Friends don't help friends install M$ junk.