Oracle Fights EpicRealm Patents
An anonymous reader writes "Oracle is now fighting EpicRealm's web patents after Safelite settled with EpicRealm, then asked Oracle to pay, as per their software license agreement. EpicRealm's patents are vague and 'describe a technique where a web site updates only part of a website instead of having to rebuild the entire page. That may look a lot like DHTML, but apparently it isn't the same.'"
The Commission seems to have made its favorite dead cat return from the grave (where Parliament overwhelmingly sent it just months ago) this week:
See recent links to key articles on Slashdot, as well as the latest attempts to spin the issue uncovered (alleging double jeu - albeit in "Austrian" only, so far).
Fear not, English teachers: IMDb says there's even an orthographically correct movie release (presumably still not quite suitable for classroom viewing though).
I found the patent that EpicRealm holds. It was filed in 1999.
EpicRealm patent
Basically, the patent is about the web server receiving a request, and handing the request off to a page server. The page server finishes the request and responds to the client while the web server continues to handle other requests.
This sounds very similar to many web applications in use today (J2EE, ASP.net, etc.). There are usually a few processes running with J2EE (the one I'm most familiar with). One handles the HTTP requests and then hands it off to another process to dynamically create the web page. The second processes send the generated page back to the HTTP processes, which sends it to the client. In the meantime, the HTTP process could have been handling other HTTP requests.