Slashdot Mirror


Microsoft To Enter Hosting Business

TM84 writes "InformationWeek reports on Microsoft's latest revenue plan. Within one year the company plans to offer hosting implementations of Sharepoint as well as CRM and ERP applications." From the article: "One thing is certain: Microsoft is exploring myriad ways to deploy and charge for software, ranging from subscription models a la MSN to easier ways for companies to buy incremental products not in their current Enterprise Agreements. Some industry observers liken the hosting move to the 'turn on a dime' shift that Microsoft executed years back when it discovered the Internet. When asked which other products and services Microsoft would host, another Microsoft insider said, 'Everything. Hosted Office. Everything hosted.'"

206 comments

  1. 2nd place again by mustafap · · Score: 1

    Looks like they do read Sun's press releases :o)

    Hosted Office? Not from Microsoft thanks. I'd rather go with the power of Ajax.

    http://www.writely.com/

    Or OpenOffice. Or anyone. But not Microsoft.

    --
    Open Source Drum Kit, LPLC deve board - mjhdesigns.com
    1. Re:2nd place again by Anonymous Coward · · Score: 1, Insightful

      Microsoft invented Ajax

    2. Re:2nd place again by mustafap · · Score: 1

      Fair comment, but that isn't a reason to host with them, is it?

      --
      Open Source Drum Kit, LPLC deve board - mjhdesigns.com
    3. Re:2nd place again by zootm · · Score: 1

      Good point, although their technology was a little more proprietary than AJAX, it certainly did the same things. Was before computers were powerful enough to really take advantage, though.

    4. Re:2nd place again by Anonymous Coward · · Score: 2, Interesting

      MSFT pioneered AJAX..not google...Outlook web access ..money etc were one of the first apps on AJAX ..

    5. Re:2nd place again by chrismcdirty · · Score: 1

      I believe MSFT's technology used for OWA is called ATLAS.

      --
      It's like sex, except I'm having it!
    6. Re:2nd place again by SatanicPuppy · · Score: 1, Flamebait

      It's not the first time they've tried to host services, but they've never been successful at it.

      The problem is, they want too much control and lock in. It's not enough for them to just sell a service, they need to sell a service that is addictive like crack, and latches on to your business model like something from Alien which can't be removed without killing the host.

      Many businesses are understandably concerned about this.

      --
      ad logicam Claiming a proposition is false because it was presented as the conclusion of a fallacious argument.
    7. Re:2nd place again by LDoggg_ · · Score: 1

      >>Was before computers were powerful enough to really take advantage, though.

      How so?
      Parsing xml isn't anything special, and AJAX xml messages tend to be small anyways to overcome bandwith restrictions. And since xml needs to be well formed, the code using it doesn't need to be as forgiving as say, code to display random html.

      The only reason (and good one, IMHO)that AJAX is gaining popularity recently is that the XMLHttpRequest javascript object is available in browsers other than IE and no longer proprietary to microsoft.

      --

      "If they have both, tell them we use Linux. And if they have that, tell them the computers are down." -Dave Chapelle
    8. Re:2nd place again by zootm · · Score: 1

      The only reason (and good one, IMHO)that AJAX is gaining popularity recently is that the XMLHttpRequest javascript object is available in browsers other than IE and no longer proprietary to microsoft.

      I'd love to believe that, but at the time that the MS solution was first made, MS had even more of a control over the browser market than they do now, really. Many of their proprietary nonsense things ended up on webpages, and there's little reason to believe this wouldn't either. I'm not sure if it had XML support, though.

      I agree that the reason AJAX is now gaining popularity is fueled by what you say. And also because it can do really neat things without the need for browser plugins and the like. I'm just not sure it's the reason that the older systems like it didn't take off. A contributing factor, sure. I guess what AJAX really has is people capable of looking at the technology and and realising its potential in this way.

    9. Re:2nd place again by LDoggg_ · · Score: 2, Insightful

      >>I'd love to believe that, but at the time that the MS solution was first made, MS had even more of a control over the browser market than they do now, really. Many of their proprietary nonsense things ended up on webpages, and there's little reason to believe this wouldn't either. I'm not sure if it had XML support, though.

      Microsoft released Interent Explorer 5.0 in september 1998. This was the first version to have the XMLHttpRequest object.

      AJAX was possible over seven years ago.
      That said, until firefox implemented it, I didn't even think about using it in web applications.

      --

      "If they have both, tell them we use Linux. And if they have that, tell them the computers are down." -Dave Chapelle
    10. Re:2nd place again by BaseLineNL · · Score: 2, Informative

      Nope, it's AJAX alright. The Atlas Client Script Framework is an extensible, object-oriented 100% JavaScript client framework that allows you to easily build AJAX-style browser applications with rich UI and connectivity to web services. With Atlas, you can write web applications that use a lot of DHTML, Javascript, and XMLHTTP, without having to be an expert in any of these technologies.

    11. Re:2nd place again by zootm · · Score: 1

      To the best of my knowledge, it was Google messing around with it that really kicked off the whole "fad" thing of it right now, but I'm not sure if they were more innovative or just high-profile. Certainly when they started using it, it looked very new to me.

    12. Re:2nd place again by I'm+Don+Giovanni · · Score: 1

      Ajax apps have been around long before Google started using it, but I think that Microsoft's Outlook Web Access was the first widely deployed such app (deployed by businesses, not the masses).

      --
      -- "I never gave these stories much credence." - HAL 9000
    13. Re:2nd place again by Anonymous Coward · · Score: 0

      The only reason (and good one, IMHO)that AJAX is gaining popularity recently is that the XMLHttpRequest javascript object is available in browsers other than IE and no longer proprietary to microsoft.

      AJAX is possible without the XMLHttpRequest object*. All you need are frames and javascript. The real reason that it is getting more popular now is that DHTML is supported on more browsers.

      * For the curious:
      1. Make a page with a frameset, and one or more hidden frames (zero-width for example.)
      2. When you want to make an asychronous request, set the src element of a hidden frame to the URL of a request (you can use a form and POST it if you need to send more data.)
      3. In the response, send down a page with a script tag that simply sets a variable to the response data. This data can be rich data structures, arrays of objects, whatever you like, eg:

      <script>
          var oResponse = new Array("array", "of", "strings", "example");
      </script>

      4. In the response page, also return an empty body tag with an onload script to call a function to notify the caller that the request has completed, passing the oResponse variable, eg:

      <body onload="frames.main.AsychronousResponse(oResponse) ;"></body>

      5. ???
      6. Profit!

      This has been possible for ages (almost a decade?) but you couldn't do much with it (except in IE of course) due to the lack of DHTML support. And even when other browsers started supporting DHTML, they did it in different ways thatn IE, making it difficult (to say the least) to support more than one browser.

  2. MS Reactionaries - the next big thing by yancey · · Score: 5, Insightful

    Is it me or has Microsoft become highly reactionary? Google says they are going to start hosting things like databases and office applications on the web and *bam* suddenly Microsoft says the same thing. Mac OS uses the graphics processor and OpenGL to provide dazzling desktop effects and *bam* suddenly Microsoft says their next version of Windows will have the same thing. I'm sure there are probably many other examples. Can Microsoft not come up with useful new technologies on their own? Are they brain-dead followers blantanly copying everybody else's ideas?

    --
    Ouch! The truth hurts!
    1. Re:MS Reactionaries - the next big thing by Anonymous Coward · · Score: 2, Interesting

      What have OSS developers come up with on their own lately?

      What exactly is wrong with implementing a good idea, regardless of who came up with it?

    2. Re:MS Reactionaries - the next big thing by Iriel · · Score: 4, Insightful

      has become? Has always been. I'm honestly not trolling, but Microsoft is not smart in the innovative sense as much as they are at keeping an eye out for a good thing. Say what you want about whether or not MS will rape and pillage that good thing for the almighty dollar, but when they see something work, they know how to exploit that with their marketing to be 'good enough' to come out on top. At least, more often than not. Another great example is that they just joined Yahoo! with the Open Content Alliance, now that almost everyone is poo-pooing Google Print.

      --
      Perfecting Discordia
      www.stevenvansickle.com
    3. Re:MS Reactionaries - the next big thing by Anita+Coney · · Score: 3, Insightful

      "What exactly is wrong with implementing a good idea, regardless of who came up with it?"

      This shouldn't have to be explained, but when a person or entity can only steal ideas, that means they ran out of ideas. When a company runs out of ideas, the shark is jumped and the decline begins. Thus, we're witnessing the beginging of the end of Microsoft as a relevant force in the computer industry.

      "What have OSS developers come up with on their own lately?"

      A bullet-proof OS that NEVER gets viruses, spyware, etc. We could only dream that Microsoft would follow that lead!

      --
      If someone says he and his monkey have nothing to hide, they almost certainly do.
    4. Re:MS Reactionaries - the next big thing by rolfwind · · Score: 3, Informative

      I noticed the same: all MS seems to do lately is flail about blindly attacking fad after fad to make money. It seems to be a lack of vision for what the future holds so they instead chase after every rainbow for that pot of gold at the end.

      Of course, with billions in the bank and their core businesses still sucessful - they can afford to do this. But for how long? I doubt with this (lack of) leadership, they'll innovate anything in the next 10-15 years. Though the one big sucess with this tactic was that they had was the Xbox, though I argue that this was a natural outgrowth of the PC/OS business, but at least they have a decent games division for it.

      The reason they do this is mentioned previously: cash in the bank - it wants to flow places and be put to use. However, I think Google has the better idea with employees playing around in their spare time and from that new business ideas get implemented.

      I'm sure enough people at MS are just as smart but the management is stifling them because they are too scared and want to protect the core businesses. Thus any 'new' business ideas are reactionary - the managers are reacting. Not acting on their own initiative.

    5. Re:MS Reactionaries - the next big thing by zootm · · Score: 2, Insightful

      A bullet-proof OS that NEVER gets viruses, spyware, etc. We could only dream that Microsoft would follow that lead!

      Linux is no more resistant to spyware than Windows, and viruses are only significantly different in a multiuser context (which isn't what most desktop installs are). Calling it bulletproof is entirely untrue.

    6. Re:MS Reactionaries - the next big thing by Anonymous Coward · · Score: 1, Informative
      A bullet-proof OS


      Did you mean: A bulletproof OS kernel with 1% market-share?

    7. Re:MS Reactionaries - the next big thing by Anonymous Coward · · Score: 1, Insightful
      "What exactly is wrong with implementing a good idea, regardless of who came up with it?"

      Not a thing. You just can't call yourself "innovative" then.

    8. Re:MS Reactionaries - the next big thing by ThosLives · · Score: 1
      It depends on what the goal is. If the goal is to provide known technologies at the lowest cost or highest value to the general population, then you don't have to come up with new ideas, you just have to come up with ways to produce / deliver the desired product at a lower cost or with higher value. It's a variant of commoditization. For instance, how much better would it be for the population if every car company could manufacture any other company's design? You could get the style you want and the competition would have to be on quality and cost. Right now, people compromise on quality/cost in favor of design or vice-versa.

      Rather than being the first to market, Microsoft might be the one that takes advantage of the mass adoption phase; there are many studies out there about the benefits and detriments to being first to market and the adoption cycles of new technologies.

      So, it really does depend on what your goals as an organization are. It takes a bit of swallowing one's pride, but despite the things that we can complain about regarding any corporation, think about the ancillary benefits that arise and how to effectively, smoothly change the operating philosophies of the companies rather than calling for disruptive sudden changes in philosophy. (Of course, sometimes a culling is necessary, but that's another issue entirely.)

      --
      "There are a dozen opinions on a matter until you know the truth. Then there is only one." - CS Lewis (paraprhase)
    9. Re:MS Reactionaries - the next big thing by Anonymous Coward · · Score: 2, Insightful

      "A bullet-proof OS that NEVER gets viruses, spyware, etc. We could only dream that Microsoft would follow that lead!"

      You must've missed the linux mozilla site in korea infection the other day. Yes it's rare, but so is linux. People say the numbers of users correlation to infection idea is flawed, but they're proof is never convincing.

      "This shouldn't have to be explained, but when a person or entity can only steal ideas, that means they ran out of ideas. When a company runs out of ideas, the shark is jumped and the decline begins. Thus, we're witnessing the beginging of the end of Microsoft as a relevant force in the computer industry."

      Same tired old argument, nobody says chevy is dead because they didn't invent the car, or the idea of putting radios in cars, or cd players, or airbags, chevy puts that stuff in their car and people buy it on its merits, only with software do people have this irrational "didn't invent it first" kneejerk reaction, and it's baseless, a company doesn't need to invent something first to have the most successful product and that's not going to change no matter how bad yall want MS to die because some stupid company made 1 standalone feature that they used later. Apple does this a lot and it's considered trolling to mention it, hell at least MS can write their own OS without wholesale stealing of BSD. If MS stole almost the entire BSD source everybody on slashdot would be howling about how much they suck if they can't write their own OS, when apple does it it's hailed as a "brilliant move". If reimplementing your own code to do something similar to some dinky companies standalone feature in your OS is stealing so is typing "cp freebsdsource\* macosxsource\*"...

    10. Re:MS Reactionaries - the next big thing by Mr_Silver · · Score: 2, Insightful
      Is it me or has Microsoft become highly reactionary? Google says they are going to start hosting things like databases and office applications on the web and *bam* suddenly Microsoft says the same thing.

      Every product I've ever worked on has taken months if not years of business cases, planning, design and management before it is even mentioned to the public.

      I find it highly doubtful (although possible) that a company like Microsoft, hell any big company, would just announce they too are doing something immediately after a competitor if absolutely no thought had been put into it previously.

      It wouldn't surprise me if this service has been in the planning for a hell of a lot longer than people think.

      --
      Avantslash - View Slashdot cleanly on your mobile phone.
    11. Re:MS Reactionaries - the next big thing by zootm · · Score: 2, Insightful

      Google says they are going to start hosting things like databases and office applications on the web and *bam* suddenly Microsoft says the same thing.

      Someone announced it first, and MS are making an attempt at keeping up. Seems sensible from a business context, although yes, it's "reactionary", however this:

      Mac OS uses the graphics processor and OpenGL to provide dazzling desktop effects and *bam* suddenly Microsoft says their next version of Windows will have the same thing.

      Any idiot could tell you this was the way things were going to go. OSX got it out first, since they don't really have to worry about backwards hardware compatibility (since they control the hardware and software platforms).

      Can Microsoft not come up with useful new technologies on their own?

      Yes, they can. Just because they don't come up with all new technologies doesn't mean they don't come up with some. The wonderful thing about computer science/software engineering (and the terrible thing about software patents) is that everyone can borrow ideas from one another to advance the environment as a whole. Software patents break this, which is why we're all so pissed with them. .NET and ClearType are two technologies which, off the top of my head, are MS-led and useful. There's more, a quick look at their research area shows that they've got a huge number of world-class people working on next-generation stuff.

      Microsoft do business like assholes. We know this, they have in the past and they probably will in the future. They've also made some fantastically stupid choices with software before. But, believe it or not, their technologists are not generally bad. Many of them are very, very good, and many of their technologies are very nice, useful, and so on. It's the business that kills them most of the time, and although I'm not the greatest fan of the way they conduct themselves, I do think it's unfair to claim that they're considerably less innovative than many of their competitors (although I think there's a good case for Google there).

      Defending MS on Slashdot. I've lost my fucking mind.

    12. Re:MS Reactionaries - the next big thing by Anonymous Coward · · Score: 0

      "What have OSS developers come up with on their own lately?"
      There're hundreds of things in variety of software. But last recently known innovative product is w/o any doubt is FireFox. OpenOffice.org has also lots of innovative features that's god send for frequent office application users. Linux Kernel is just another story.

    13. Re:MS Reactionaries - the next big thing by giorgiofr · · Score: 1

      Please, take this piece of advice from me. Go found a start-up, study what your competitors do, learn which of their ideas are good and IGNORE them completely. Instead, only do things people are not interested in. Come back and report when you go bankrupt - shouldn't take long.

      --
      Global warming is a cube.
    14. Re:MS Reactionaries - the next big thing by Anonymous Coward · · Score: 0
      Several things that Microsoft has attempted to rip-off and patent (E pager, SPF etc) but that isn't the point. F/OSS devs never used "innovation" as a defense in anti-trust proceedings. F/OSS developers didn't attempt to undermine European democracy pushing software patents to "protect innovation". F/OSS developers don't run competitions like Microsofts "Thought Thieves".

      If MSFT borrow ideas, they should pay for them as they would have the world pay them for using their ideas (except they're not Microsofts ideas because Microsoft never invented anything - a minor detail). If you still don't understand what's so offensive about Microsoft, then please, for the good of humanity go fuck yourself in the face with a handgun.

    15. Re:MS Reactionaries - the next big thing by Anonymous Coward · · Score: 0

      zealous fool.... microsoft have invented lots of thing such as .Net

    16. Re:MS Reactionaries - the next big thing by Foofoobar · · Score: 4, Interesting

      Over promise... under deliver, remember? This is the Microsoft way. It's not plan well and then have a well structured launch. First they make promises and then they work on delivering. It's been this way with almost every single one of their products. They see someone making alot of money making a product and say 'me too! me too!' and then make loads of promises and lots of hype and then when it's delivered, the product only has half the features they mentioned and doesn't work well at all until at LEAST the third version. Did I just describe every Microsoft product? OOps.

      Nothing new here.

      --
      This is my sig. There are many like it but this one is mine.
    17. Re:MS Reactionaries - the next big thing by Anonymous Coward · · Score: 0

      I guess you've never used Linux! Give it a try - you'll be happily spyware and virus free for many years to come!

    18. Re:MS Reactionaries - the next big thing by Iriel · · Score: 1

      which Steve Ballmer had already admitted to having stagnated (.Net, not himself [though both are true ^_^]).

      I'm not saying they don't create anything, and in fact I'm sure they have created a few things that are quite grand, but the majority of their successes have come from immitation rather than innovation. I'm not a complete OSS/GNU/Linux/Mac/anti-MS zealot, regardless, the fact remains that immitation is the sincerest form of flattery and competition. Microsoft has always been a demi-god of competition in this right for good or ill.

      --
      Perfecting Discordia
      www.stevenvansickle.com
    19. Re:MS Reactionaries - the next big thing by ozmanjusri · · Score: 1

      What have OSS developers come up with on their own lately?

      I'm sure plenty of people will give you examples, but the correct answer is that OSS developers don't need to.
      Computer users have given Microsoft more than sixty billion dollars for their operating system software over the past ten years. The cost of production of Windows is close to zero, the same cost as OSS software which you can get for free. What we've been paying Microsoft for is their development costs, and if development and innovation from Microsoft is minimal, we're not getting what we're paying for.

      Whether XP SP2 is $60,000,000,000 better than NT4, I'll leave up to you to decide.

      --
      "I've got more toys than Teruhisa Kitahara."
    20. Re:MS Reactionaries - the next big thing by Sweep+The+Leg · · Score: 0

      Apparently you lack understanding of market based economics. Competitive response. It has a name. But I agree, they do seem to be a little lax in the innovation business, but then again has that ever actually been their business. I see it as them just leveraging their competitive advantage, which is simply make things marketable and in some cases *gasp* better.

    21. Re:MS Reactionaries - the next big thing by zootm · · Score: 2, Insightful

      I have a Linux box, a (Free)BSD box, and a Windows box. None have spyware. That does not, however, mean that they're all spyware-proof. Quite they opposite. The problems which allow spyware on Windows, other than security problems in IE which are (although it pains me to say it) largely fixed now, are problems with the architecture of computers in general. Other operating systems avoid it by it just not being worth the while of someone to write a spyware system, not some magical immunity.

    22. Re:MS Reactionaries - the next big thing by imbroken3a · · Score: 1
      Can Microsoft not come up with useful new technologies on their own? Are they brain-dead followers blantanly copying everybody else's ideas?
      Yes they can. There are a lot of things Mircosoft makes that you never hear about on technology sites. Look into the Microsoft kitchen for example.
    23. Re:MS Reactionaries - the next big thing by Anonymous Coward · · Score: 0

      >>zealous fool.... microsoft have invented lots of thing such as .Net

      Yeah, but I liked it better when it was called java. They invented java right?

    24. Re:MS Reactionaries - the next big thing by Sweep+The+Leg · · Score: 0

      I'll bet my 60,000,000,000 on that. Do you take cash?

      Meet me in Nigeria for details.

    25. Re:MS Reactionaries - the next big thing by tpgp · · Score: 2, Insightful

      A bullet-proof OS that NEVER gets viruses, spyware, etc. We could only dream that Microsoft would follow that lead!

      Linux is no more resistant to spyware than Windows, and viruses are only significantly different in a multiuser context (which isn't what most desktop installs are). Calling it bulletproof is entirely untrue.


      You're correct that calling Linux bulletproof is untrue - however Linux is far more resistant to spyware and viruses then Windows - as desktop PCs are multiuser (I guess you don't have kids or work in a large corporation).

      A friend of mine uses Linux for precisesly this reason - his kids can hose their account - but his data will be safe.

      --
      My pics.
    26. Re:MS Reactionaries - the next big thing by Anonymous Coward · · Score: 1, Insightful


      But that lack of spyware and viruses has nothing to do with the techincal strengths or lack thereof of Linux. It has to do with it's insignifigance in the desktop arena, which makes it unattractive as a target.

    27. Re:MS Reactionaries - the next big thing by csguy314 · · Score: 1

      Can Microsoft not come up with useful new technologies on their own? Are they brain-dead followers blantanly copying everybody else's ideas?

      Uhhh... yeah. You must be new here...

      --
      This is left as an exercise for the reader.
    28. Re:MS Reactionaries - the next big thing by zootm · · Score: 1

      Agreed, using Windows multiuser in this way works too, however, but obviously the Administrator account either has to have limited access, or the person using it has to be a bit more careful.

      As for corporate uses, I count that as a different area than "desktop" (correctly or not). By desktop I mean "home", if I was meaning corporate I'd say "workstation". But on the other hand in a corporate context it's not really any safer since there is (or should!) be controls put on user accounts, and there are frameworks for doing this.

      A multiuser home PC is a good example of where Windows can fall down though, yes. But it's only really relevant to viruses (limiting Spyware to one user account isn't a huge benefit since it's non-damaging and generally easily-detected), in my own opinion. Then again, I say "desktop" where I should say "home", so what do I know :D.

    29. Re:MS Reactionaries - the next big thing by Retric · · Score: 1

      That is part of the problem, but IE is the root cause of a lot of spyware. When simply going to a website will infect your machine then there is going to be a lot more infections running around. After I switched to firefox I have been spyware free. But I also avoid Outlook, sit behind a NAT and avoid running "cute" programs. With MS just about everything is a security hole. I mean can open office files carry a virus? The secret to keeping a system spyware free is not running un-trusted code and not using programs like bonsai buddy that are somewhat openly spyware. As to removing spyware it's a lot harder to hid on a UNIX system than it is on windows.

    30. Re:MS Reactionaries - the next big thing by zootm · · Score: 1

      The secret to keeping a system spyware free is not running un-trusted code and not using programs like bonsai buddy that are somewhat openly spyware.

      I agree

      As to removing spyware it's a lot harder to hid on a UNIX system than it is on windows.

      I disagree. Well, not really, but there's no effective difference. People who can use UNIX or Windows will know where to look. People who can't will not.

    31. Re:MS Reactionaries - the next big thing by Retric · · Score: 1

      "I disagree. Well, not really..."

      To clarify I am not talking in terms of the user I am speaking about the tools. The "best" spyware removal tools are ~90% effective on windows, I think they can do better in a Unix environment.

    32. Re:MS Reactionaries - the next big thing by Zerbs · · Score: 1

      How do you think Microsoft got started in the first place? Bill Gates isn't some technical founding father that brought innovation to the masses. Remember he bought the original version of DOS, even if his buddies did dress it up a bit afterwards. Remember windows style GUI environments got their start at Xerox. There is a history of being reactionary here. Bill Gates is more an exceptional businessman who knows how to take advantage of emerging technologies and situations to generate big profits than he is some great visionary of users computing experiences.

      --
      "22 astronauts were born in Ohio. What is it about your state that makes people want to flee the Earth?" Stephen Colbert
    33. Re:MS Reactionaries - the next big thing by zootm · · Score: 1

      I'm not sure — I mean, they'll need to install to the user's home dir somewhere probably, but you'll still end up using signatures and so on to detect specific pieces of software, which is where it all falls down, to some degree. The problem's more identification, as opposed to just finding the files.

      Possibly, though.

    34. Re:MS Reactionaries - the next big thing by penguinrenegade · · Score: 1

      Apple didn't steal BSD wholesale - they used it under the terms of the license.

      Microsoft didn't steal wholesale from BSD - they just used parts of it like the TCP/IP stack.

      Both of them acted properly, although I recall that Microsoft didn't include the copyright and advertising clause properly at first.

      But I agree with your point on Microsoft running out of ideas. Hosted Office - just remember that they will start to host your documents soon enough after that. THAT is enough not to utilize hosted software from anyone - I prefer to own my own documents.

      Mod away!

    35. Re:MS Reactionaries - the next big thing by electroniceric · · Score: 1
      The wonderful thing about computer science/software engineering (and the terrible thing about software patents) is that everyone can borrow ideas from one another to advance the environment as a whole.
      Spot on. THis is totally true of ClearType: there were some font-improvement and sub-pixel hinting idea kicking around out there, and MS brought them together and built a nice usable engine for them. Kudos. .NET is an interesting amalgam. It definitely borrows very heavily from Java (C# is so Java-esque it's absurd), and combines a basic idea with a very forward-looking one: obviously MS needed a way to bind to its libraries (MFC/Win32 API) from a variety of languages (like the KDE language bindings), but it wanted to make all them work within a JIT compiler system. Thus the idea of "hosted" languages all running within a common runtime, which in my mind is a very forward-thinking approach. It will be interesting to see if this PHP joining Eclipse makes any push in that same direction.

      I also agree with you that Microsoft has built some great software in its day. Excel continues to set the standard for spreadsheets, and underpins a huge amount of business analytics. When IE5 was released it broke new ground for browser usability. They've also built some shite, and the fact that they're so insistent on the "my way or the highway" approach makes working with their software totally aggravating.

      MS really does have a lot of catch-up to do in the hosting environment. My experiences dealing with Windows as a hosting server have been miserable - it's almost impossible to tell what the current configuration of some component unless it's exposed through some control panel type page, and even if you do figure out how it's configured you generally have to have an Administrator make some GUI change. That's not to suggested that *nix hosted doesn't have its own frustrations, but you can usually figure out more less what's going on. It looks like Monad represents a new direction in that sense, but they really need to do something to expose the registry via command line to make it more transparent, or better yet, ditch the registry. I'll bet the registry accounts for more than half of the unrecoverable Windows corruptions I've seen, and it's a performance bottleneck to boot. We'll see if they can pull off that kind of change.
    36. Re:MS Reactionaries - the next big thing by zootm · · Score: 1

      Monad apparently has registry support. I think that the registry deserves a chance though, it is distributed and recoverable these days, although I'm not sure if how that is done is immediately obvious. And if the registry is a "performance bottleneck", I'd think it was being used improperly. I like the idea of the registry, and I don't think that there's a fundamental problem with the idea that is a problem, although its implementation has been and is shoddy in many ways, although it is improving.

      Other than that, completely agreed.

    37. Re:MS Reactionaries - the next big thing by Anonymous Coward · · Score: 0

      and this is modded +4 insightful?

      Linux is no more resistant to spyware than Windows

      Linux is more resistant to spyware maybe only because it doesn't run IE! I spend many, many hours cleaning spyware off of Windows systems every month. The clients that I move to Firefox or Mozilla no longer have any problems with spyware. And the problems with IE are all by design! not programming errors, not bugs, but because IE is doing exactly what Microsoft designed it to do! Most of the spyware problems I find all start with BHOs. Nasty things like Hotbar exist only because Microsoft made it possible for them to exist. I hope OSS programmers never, ever get as stupid as Microsoft programmers!

      viruses are only significantly different in a multiuser context

      Bullcrap! The single biggest liability in Windows is the Registry. All programs have to have access to the Registry in order to install. Access to the Registry gets you access to system settings. How many times have you had to fix the TCP/IP stack on a Windows machine by restoring the Registry settings for it? How many spyware/viruses act by changing Registry settings? It is the height of stupidity to put sensitive system settings in the same structure that programs must have access to in order to install. And the recent band-aids that Microsoft has implemented to prevent changing system settings are just that: band-aids over a gaping open wound in the basic design of the OS.

      Calling it bulletproof is entirely untrue.

      Maybe. There are always problems. But in Linux's case (and BSD and *nix in general) they are errors and bugs, not inherent, by-design choices that compromise the underlying system soooo much that you can never be sure a system is locked down.

    38. Re:MS Reactionaries - the next big thing by electroniceric · · Score: 1

      The registry's idea of a centralized (and as you point out, distributable/replicable) database style solution for configuration is in itself not a bad idea. However, configuration is one of those situations that begs for tree-like information, rather than flat relation information - hence the slow but steady migration of almost every text configuration file towards XML or a variant. So if it's powered by a DB thoroughly comfortable with trees, that's great. And it may finally be getting there.

      But there's still very little that's as robust as a text file and a filesystem. I think a happy medium would be something that enforced some kind of syntax on all config files, and provided a single interface to them when you wanted it, but still allowed them to work basically as text files.

    39. Re:MS Reactionaries - the next big thing by hey! · · Score: 1

      reactionary

      Hmmm. A "reactionary" is somebody who opposes progress... I think you mean "reactive"

      In any case, Microsoft is simply a company that understands competition, and has its own style that's worked well for it over the years. I coach a little martial arts. Once people get over the cringing stage, there are three characters of fighther: aggressors, runners, and counter-punchers. Microsoft is a counter puncher, whihc means they are reactive and opportunistic. Counter punchers don't like to attack rashly because it exposes them to attack; they don't like to run around because it wastes energy. What they like to do is watch and react, messing up the other guy's move then slipping in their own hit. A good counter puncher reacts so quickly he often moves simultaneously with his opponent.

      The basic strategy is to keep your opponent making moves in order to take advantage of his mistakes. The more futile actions on the part of your opponent, the greater the opportunities for you. A simple and reliable tactic for this is to throw the same techique as his opponent -- or more precisely an approximate mirror image move. In boxing you'd right jab against a left cross, and there are analagous leg technique pairings in the asian martial arts such as a front leg snapping kick to a rear leg front kick. The counter puncher's mirror attack has little chance of succeeding, but it's a highly effective defense because the two attacks can't occupy the same space at the same time. Foiling the first move also prevents the other guy from setting up a combination (e.g. high/low, cross/hook etc).

      Counterpunching is in part a personality traint, but it is a particularly comfortable strategy for a big fighter whose size limits his overall agility but has quick hands and a good eye. In technology terms this describes Microsoft precisely. They can't change their core products overnight, but they're smart and attentive and as quickly as most people can get a feature out the door, Microsoft can probably duplicate it. Once they may have reacted after their opponents moved into a space, but no longer. But they're too skillful for that now. These days it appears they launch their responses to potential threats close to instantaneously. While the near transparency of their copying might seem embarassing, it's sound tactics for them.

      Two products cannot occupy the same market position. Micrsoft has no pressing interest in this market position, except that it should remain empty until such a time as they themselves decide to occupy it. True, profit would be nice, but the bar is lower for Microsoft: to succeed they need only ensure the other guy fails. In that sense,Microsoft is a very conservative force in technology. Nobody wants to innovate in any space Microsoft currently occupies, and Microsoft is careful that nobody lay claim to any space adjacent to it.

      Of course spectators love an aggressor. In technical terms, this would be an innovator. Somebody who takes risks, moves into take control of the other guy's space from him. Aggressors can win if they're faster, much stronger, or simply intimidating enough. But since a short term stalemate suits a counterpuncher fine, he has a bit of an advantage over an equally matched aggressor. He'll probably win, so long as the he doesn't get lazy, inattentive, or let bad luck break his fighting spirit. A really good fighter doesn't fight in his natural untrained mode, but according to the needs of the moment. So a native aggressor can beat an equally matched counter puncher, if his tactics are superior.

      Bringing this down to earth, Google can beat Microsoft at this game if it (1) is substantially faster to creating a product and capturing market position, which is its natural mode of competition. (2) It is truly focused on beating Microsoft, which may be a bit foreign to its culture. Thoughts like "Cutting off their air supply" are tinged with at least a bit of evil in them. Otherwise, Microsoft spoils this for Google, resulting in nothing being accomplished, or Microsoft wins outright.

      --
      Post may contain irony: discontinue use if experiencing mood swings, nausea or elevated blood pressure.
    40. Re:MS Reactionaries - the next big thing by zootm · · Score: 1

      Possible, yes, but the problem is that to have a semantically-powerful enough syntax, you'd end up with something (as a minimum) that's not easily manually fixed when it dies anyway, like XML. Everything's a tradeoff though.

    41. Re:MS Reactionaries - the next big thing by nolife · · Score: 1

      Just like Apple with a portable music player, a portable video player and selling content online. The concept was already there and in use. Market forces and a specific companies application of that idea regardless of who first did it first, determines who gets a majority of the market share.

      --
      Bad boys rape our young girls but Violet gives willingly.
    42. Re:MS Reactionaries - the next big thing by thelexx · · Score: 1

      "People say the numbers of users correlation to infection idea is flawed, but they're proof is never convincing."

      Then you, and the person who modded you up, are either retarded or are willfully ignoring the obvious.

      On the lack of MS innovation, you say "Same tired old argument". Yeah, and a true one too. Name _one_ _fucking_ _thing_ MS has truly innovated at, besides marketing and lawyering.

      And guess what? Your arguments are themselves the 'same tired old' arguments that the MS apologists have been waving around for years now.

      --
      "Gold still represents the ultimate form of payment in the world." - Alan Greenspan, 1999
    43. Re:MS Reactionaries - the next big thing by electroniceric · · Score: 1

      That's true that in order to be semantically power it would need to be complex. I was thinking that it wouldn't need to run for regular config file reads, tho - maybe some kind of file alteration monitor could inform the syntax-checker when files were changed. Anyway, that's enough attention to an idle thought... Everything is indeed a tradeoff.

    44. Re:MS Reactionaries - the next big thing by kokorozashi · · Score: 1

      You must not be a Mac person if you're realizing this only now.

      Either that or my sarcasm detector is offline.

    45. Re:MS Reactionaries - the next big thing by zootm · · Score: 1

      Indeed, that system is getting a bit complicated in itself, though. You might end up better with a centralised system that is internally and silently decentralised, rather than a decentralised system which is centralised externally anyway. But yes. Wildly off-topic. :)

    46. Re:MS Reactionaries - the next big thing by Anonymous Coward · · Score: 0

      Microsoft stealing other people's ideas is nothing new - That's how Microsoft was founded; By stealing other people's ideas.

      Why should it be different now?

    47. Re:MS Reactionaries - the next big thing by Anonymous Coward · · Score: 0

      Xbox a success? Maybe Live and Halo 1-2 were great for gaming, the Xbox was hardly a success. They lost, what $4 billion over the last 4 years?

    48. Re:MS Reactionaries - the next big thing by vertinox · · Score: 2, Insightful

      Linux is no more resistant to spyware than Windows, and viruses are only significantly different in a multiuser context (which isn't what most desktop installs are). Calling it bulletproof is entirely untrue.

      However one of them gives you out of the box protection of a burlap sack and the other gives you at least a standard kevlar vest.

      Sure, they can be both penetrated by a .50 armor peircing round but...

      Given the option I'll take the kevlar vest.

      --
      "I am the king of the Romans, and am superior to rules of grammar!"
      -Sigismund, Holy Roman Emperor (1368-1437)
    49. Re:MS Reactionaries - the next big thing by vertinox · · Score: 1

      But that lack of spyware and viruses has nothing to do with the techincal strengths or lack thereof of Linux. It has to do with it's insignifigance in the desktop arena, which makes it unattractive as a target.

      Maybe that just means the target audience of Linux users are just less likley to click "Yes" on the dialog box "Is it ok to install 'this random application you have never seen before'?".

      --
      "I am the king of the Romans, and am superior to rules of grammar!"
      -Sigismund, Holy Roman Emperor (1368-1437)
    50. Re:MS Reactionaries - the next big thing by zootm · · Score: 1

      To be fair, that analogy is only really relevant with pre-SP2 Windows. The missing protection is essentially there now.

    51. Re:MS Reactionaries - the next big thing by rtb61 · · Score: 1

      Every time microsoft's share price starts to drop they always end up claiming something. New features in an existing program (that never materialize), a new piece of vapour ware (self explanatory), a new business strategy (that is actually just a re-badged old strategy that never took off), a new media format (that it will control for ever and have exorbitant license conditions that strangely enough, nobody else wants), claimed superiority in every thing computers (the idea if the pay enough people to shout it loudly enough people will believe it, hey don't laugh, it used to work ten years ago) and if all else fails more personal advertising space for the genitals of tinylimp the beast of Redmond ;-).

      --
      Chaos - everything, everywhere, everywhen
    52. Re:MS Reactionaries - the next big thing by Decker-Mage · · Score: 1
      Actually a lot of the supposedly imitative stuff that you are attributing to brain-dead following by Microsoft has been years in the making if you track what they are doing behind the scenes. For instance, MS has been trying for almost a decade to deliver software as services mostly, methinks, to insure a steadier revenue stream, or at least that's my read of the various things I've seen leak out over the years. Expect to see this also proposed for the Project Green development effort results. If anything, quite a bit of what Microsoft Research is working on flows the other way out to the rest of industry as they aren't exactly a very secretive bunch unlike some corporate labs. For instance, AJAX wouldn't exist if MS hadn't put XMLHTTPRequest() and XMLHTTPServerRequest() in the browser API. I was wondering for years when someone would pick up on what you could do with it as it was a natural to combine it with the XML capabilities of SQL Server, and no, I wasn't that interested in doing anything with it myself.

      Sorry to disillusion you, if I have, and I'm sure this will not be a popular opinion here on Slashdot where everything MS does is evil, monopolistic, and a carbon-copy of what other people have already done with the intent of driving them out of business. Oh well, donning asbestos underwear .

      --
      "[I]t is a wise man who admits the limits of his knowledge or skill, and that pretending either causes harm." --Terry Go
    53. Re:MS Reactionaries - the next big thing by drsmithy · · Score: 1
      To be fair, that analogy is only really relevant with pre-SP2 Windows. The missing protection is essentially there now.

      Correction: the "protection" that was always there is now turned on by default.

    54. Re:MS Reactionaries - the next big thing by drsmithy · · Score: 1
      As to removing spyware it's a lot harder to hid on a UNIX system than it is on windows.

      There's *at least* as many weird and wonderful places to hide malicious code in a typical unix system...

    55. Re:MS Reactionaries - the next big thing by zootm · · Score: 1

      I was referring to the new controls in IE, but yes, the firewall protections fit that bill.

    56. Re:MS Reactionaries - the next big thing by zootm · · Score: 1

      Maybe that just means the target audience of Linux users are just less likley to click "Yes" on the dialog box "Is it ok to install 'this random application you have never seen before'?".

      It means both. Linux is a much smaller target for desktop users, and it's typically used by technically-literate people anyway.

    57. Re:MS Reactionaries - the next big thing by kimvette · · Score: 1

      Linux is more resistant to spyware for the same reason that *BSD, Solaris, IRIX, HP/UX, and practically every other *nix and *nix-like OS out there is (indented for emphasis):

      Unless you're enough of a fool to install code from untrusted sources as root, and you're enough of a fool to run anything but administrative tasks as root, damage will be confined to ~ (the *nix equivalent of %userprofile%). This is contrary to Windows where it's recommended you not have administrative rights but where in fact many applications demand that you be a local administrator or they refuse to run (Quickbooks Pro comes to mind here). So, even though some environments such as Gnome or KDE/kwin now feature browsers integrated into the desktop to some extent, if an exploit IS ever found in (konqueror|epiphany) the damage will be limited to ~ (the user's home directory space) and will not extend to the rest of the system because user-instantiated processes simply do not have access to areas outside of that userspace. <BOFH>However if you run as root or made yourself a member of the root group or another group with access to mission-critical directories, you deserve to lose data </BOFH>

      Now, if you want to contend that Windows is more susceptible because people hate Microsoft, or because Windows is more dominant in the marketplace, or any other reason, read the above again. And again. And again. If you still don't understand or agree, read up on unix permissions, how the userspace works, the root account, and also Windows permissions and the history of why it is so difficult to lock down (poor programming practices, backwards compatibility requirements, etc.). There ARE Linux and Unix viruses, but tend not to spread (they're almost entirely "proof of concept" routines) BECAUSE of the nazi-like permissions in *nix-type operating systems. Not only do you need root access locally to spread damage beyond ~/ (and yes, /tmp files owned by ~) but you need root access on the system you are trying to infect as well. "It just ain't gonna happen" unless you have a truly clueless "sysadmin" or a lazy sack of shit sysadmin.

      --
      The Christian Right is Neither (Christian nor right). See: Matthew 23, Matthew 25, Ezekiel 16:48-50
    58. Re:MS Reactionaries - the next big thing by Anonymous Coward · · Score: 0

      You seem to think that as Linux becomes more popular, and "every grandmother and grandfather" are looking at pictures of their kids online using a Linux box, that there isn't going to be an application that will require root. True, the architecture says that this shouldn't be necessary...but when Windows was first released, that architecture didn't require administrator access either.

      it's the most popular applications which will be the demise of Linux...

      Ironically, there aren't any of those now.

    59. Re:MS Reactionaries - the next big thing by S.O.B. · · Score: 1

      Sure Microsoft ripped off Java (which ripped off C and Smalltalk) but Micorsoft Bob was all theirs.

      --
      Some of what I say is fact, some is conjecture, the rest I'm just blowing out my ass...you guess.
    60. Re:MS Reactionaries - the next big thing by Anonymous Coward · · Score: 0

      That strategy *is* Microsoft's primary means of existence. It's a rather unbeatable strategy too. I think whomever figures out how to smash the strategy will instantly force Microsoft into becoming the old IBM, and replace Microsoft as the 800lb gorilla in IT.

      As Microsoft copies the innovations of other companies(good old "embrace and exstinguish"), bundles the innovation into their interrelated pre-existing software, year after year it becomes easier just to go with Microsoft as a near-total solution and platform, than go with a total solution comprised of individual software products which perform specialized tasks("nobody was ever fired for buying IBM"). Since the vast majority of PCs are needed to perform repetitive, almost commoditized tasks, Microsoft can target the largest common denominator of uses for PCs and own the entire market. Who cares if 20% of the users need more specialized software? Let those users go to secondary software markets.

      And this makes it harder to compete with Microsoft year after year, since they end up bundling more and more copied products together, they end up becoming the de-facto standard. They were ruled to be a monopoly afterall, and got a slap on the wrist for it.

    61. Re:MS Reactionaries - the next big thing by kimvette · · Score: 1

      You're wrong though - I think you're missing the history of the operating systems and how things came to be the way they are:

      In the beginning, EVERYONE was a superuser on Windows. Win3x has absolutely NO security. Win9x has absolutely NO security. OS/2 had minimal security. WinNT (NT/2K/XP/2K3) carries this baggage in the form of backwards compatibility, and unfortunately application developers have not changed their development habits to respect security concerns. So, this leaves users having to be power users at minimum, or far too often, local administrators, in order to run applications like Quickbooks, Garden Graphics (a niche market CAD package), many games, and countless other applications.

      Sure, you can make Windows Install service run elevated so anyone can install an app, but that doesn't change the fact that once Joe "non-admin" User gets Quickbooks Pro installed, he still cannot run it until his account has local administrator privileges. Quickbooks requires that because they haven't changed their architecture to assume a locked down box - they assume that their software will be installed on the same old systems that Quickbooks 2.0 was installed on - Win3x or Win9x, with absolutely no security whatsoever (so in essence everyone was root).

      This will never happen in Linux/Solaris/*nix because applications developers have had to contend with this from the very beginning of *nix at Bell Labs.

      --
      The Christian Right is Neither (Christian nor right). See: Matthew 23, Matthew 25, Ezekiel 16:48-50
    62. Re:MS Reactionaries - the next big thing by a11 · · Score: 0

      Yes, Linux is more resistant. I define resistant as: an out of the box install, taking all the defaults. give the machine a public IP. the more resistant box will take more time to get cracked. the windows box will go down first. THAT IS AN OBSERVED FACT. If I choose linux, I will get hacked less.

      And, by the way, you're a fucking retard. the guy was not talking about linux. you assumed that for some reason, probably your lack of education. when someone says bulletproof open-source OS to me, I think BSD, not Linux.

  3. Way to shaft your partners, Microsoft! by LibertineR · · Score: 5, Interesting
    Oh, this is great. I look forward to calls from all my hosting clients asking me about this. "Will Microsoft be cheaper?" "Will they help me design my web parts, since I am just too stupid to do it right myself?" Oh, its a beautiful thing.

    But then, we partners cant say "Hey, if we host you, we'll knock off 30% on that Open Licence Agreement". Thank you, Microsoft. If for anything, just for tossing a big FUD ball into the pool.

    1. Re:Way to shaft your partners, Microsoft! by Anonymous Coward · · Score: 1, Insightful

      You're a partner of Microsoft? haha! loser.

      What did you expect?

    2. Re:Way to shaft your partners, Microsoft! by Johnny+Mnemonic · · Score: 2, Insightful

      "Partners", from Microsoft's perspective, has always just meant "learn from them so that you can do what they do better."

      This is true since the mid-80s: witness Apple. They partnered until they learned enough to do it their own way, and then dominated the market. They've done it dozens of times since.

      That you didn't see this coming really is your own fault. Do you think that Microsoft thinks it has "peers" in anything? No. They see themselves as the big fish in a big pond, and if you haven't been eaten yet, it's just because you're less tasty than the others. Your mere survival doesn't make you "friends."

      If anyone knows this, it's Google. They've treated Microsoft as the enemy from day one, and rightly so.

      --

      --
      $tar -xvf .sig.tar
    3. Re:Way to shaft your partners, Microsoft! by vinlud · · Score: 1

      Using 'FUD' regarding to this topic is quite a load of BS
      Microsoft is a commercial enterprise, ofcourse they will try to earn as much money as they can, and if hosting is one of the ways to go, why not? It makes sense.

      People here are so blinded by hate they forget it's a company, not just a NGO or research institute.

      --
      Repeat after me: We are all individuals
  4. Well, they already are in the hosting business... by kah13 · · Score: 3, Funny

    ...with Hotmail and Groove (you can buy Groove services from them, rather than run your own servers). However, this does sound a little too much like its justified by "well, Google is doing it!", which isn't exactly true. Running hosted services is a difficult proposition, unless you can either quickly crank out SLAs or its all zero-admin. Its not something they've really done before, but I suppose it worth a try, since it will give them lots of experience in improving their admin interfaces for Windows Server 2k* as well as learning first hand the risks caused by the security holes in their products.

  5. "Everything hosted" by deanj · · Score: 3, Funny
    another Microsoft insider said, 'Everything. Hosted Office. Everything hosted.'"


    FINALLY .... a place for all that spam I've been getting.

    1. Re:"Everything hosted" by Anonymous Coward · · Score: 0
      FINALLY .... a place for all that spam I've been getting.

      Not to mention pr0n. Everything hosted, they say.

  6. Yay by Anonymous Coward · · Score: 0

    That's good because it's freaking HARD to get sharepoint installed and running. Especially together with Metastorm. It's useful and cool when it's running, but until then . . . ARGH!

  7. Do hosting companies have a survival instinct ? by Crashmarik · · Score: 4, Insightful

    Its going to see how many companies keep hosting on Microsoft products. Do they really want to use their competitors product ? Especially a take no prisoners competitor like Microsoft ?

    The situation should be comparable to when pepsi decided to get into the restaurant business and handed coke a great marketing tool. And it now seems, that the only fast food places that serve pepsi are owned by pepsico.

    1. Re:Do hosting companies have a survival instinct ? by azaris · · Score: 4, Insightful

      I doubt Microsoft want to put their enterprise hosting partners out of business, after all they are paying bundles in license fees, training, certification etc. I have a hunch that Microsoft are having difficulties finding partners willing to host certain products in a large enough scale and they decided it's just easier to do it themselves. I certainly wouldn't want to host Navision or Exchange for any reasonably large number of users.

    2. Re:Do hosting companies have a survival instinct ? by k3s · · Score: 1

      Microsoft if the proverbial 500-pound gorilla.

      Hosting companies would be wise to avoid Microsoft, but so would Sony (Play Station 2), RIM (Smart Phone), Adobe (PDF, Flash), etc.

      If I owned a software company, I would declare war on Microsoft.
      - Remember that every dollar you give M$ is ever additional dollar they can use against you.
      - Ensure that your products worked on Microsoft, but also Mac and Linux.

    3. Re:Do hosting companies have a survival instinct ? by Anonymous Coward · · Score: 0
      The situation should be comparable to when pepsi decided to get into the restaurant business and handed coke a great marketing tool. And it now seems, that the only fast food places that serve pepsi are owned by pepsico

      Uh, name one.

      If you're thinking taco bell, pizza hut, kfc, etc, you'd be wrong. Yum Brands was spun off from pepsi a long long time ago.

    4. Re:Do hosting companies have a survival instinct ? by Amouth · · Score: 1

      I don't mind hosting exchange for users... the web mail for 2003 is nice... and the outlook2003 cached exchange mode is nice... even for large number of users... the trick is.. for all mail that come in and goes out... i have some slackware boxes handling everything... mail comes in to send mail.. and is handled for spam/virus then passed to exchange.. user sends mail exchange forwards it to send mail and it handles the rest.. i know it seems like an odd way of doing it but it is quite nice.. you have exchange which is nice for work groups and companies but none of it's flaws in the fact that it can't handle mail with the rest of the world right.. And when exchange might happen to die sendmail will buffer so nothing is lost...

      --
      '...if only "Jumping to a Conclusion" was an event in the Olympics.'
  8. Saturated Market by Karzz1 · · Score: 4, Insightful

    It seems as though MS is trying everything they can to enter new markets to make up for their lack of growth options with the OS and Office markets. From the sounds of it, they are going to try and proprietarize this venture and I dont see what the advantage would be for most customers. I can see small companies with 100% outsourced IT possible trying this, but not too much else.

    Anyway, to sum up, this looks like another example of MS entering a market too late to make much impact. Just my 2cents.

    --
    Beware of he who would deny you access to information, for in his heart he dreams himself your master.
    1. Re:Saturated Market by Anonymous Coward · · Score: 0

      It seems as though MS is trying everything they can to enter new markets to make up for their lack of growth options with the OS and Office markets

      Yes, those billions in profits are starting to shrink, I can hear the desperation in their voices now :)

      Anyway, to sum up, this looks like another example of MS entering a market too late to make much impact.

      True, the hosted application market is completely saturated. Plus, going up against all those established big boys like, like, uh, like. Well, either way it's too late, Google has already announced an entry, so pretty much everything after that is of no consequence.

    2. Re:Saturated Market by rbochan · · Score: 1

      Heh.
      Once upon a time it was "embrace and extend", now it's "saturate, diffuse, and confuse".

      --
      ...Rob
      The American Dream isn't an SUV and a house in the suburbs; it's Don't Tread On Me.
    3. Re:Saturated Market by Karzz1 · · Score: 1

      Yes, those billions in profits are starting to shrink, I can hear the desperation in their voices now :)

      Market share != income. The market is pretty much saturated for those products (office/os) unless MS can edge their way into some 3rd world countries (China etc...), areas that are familiar with MS but not familiar with paying for MS products.

      True, the hosted application market is completely saturated. Plus, going up against all those established big boys like....

      Let me finish that sentence for you with just a few examples off the top of my head: Oracle, Peoplesoft, IBM and Siebel.

      --
      Beware of he who would deny you access to information, for in his heart he dreams himself your master.
    4. Re:Saturated Market by demachina · · Score: 1

      "and I dont see what the advantage would be for most customers"

      The answer is there is almost no advantage for customers. The only thee advantages I can see in hosting things like office on the web:

      - if you move around a lot, and you are not taking an office suite enabled computer, laptop, PDA or cellphone, with you, then you would have access to your documents and office suite as you move.

      - you get regular updates though its open to debate if you actually want regular updates since most people want office tools that they know work, know how they work and most people really don't want continuous updates, especially ones under someone else's control.

      - you get security patches and someone else maintains it. security patches are easy enough to automate without taking the host app plunge.

      The many down sides:

      - you completely shred the privacy and security of your documents. Maybe this is OK if you write nothing but fluffy personal docs but if you produce confidential business documents and spreadsheets the LAST thing you want to do is keep them on a server operated by strangers. Maybe, maybe you could count on Microsoft to write and honor a privacy policy but you will never know if a rogue employee at MSN is dancing through your docs looking for stuff they can exploit for insider stock tips or identity theft.

      - It is dramatically easier for a rogue police state like the U.S. increasingly is to go knocking at Microsoft's door and go dancing through your documents looking for trumped up terrorism charges because they need a show trail, or shopping for fishy financial dealings. Its somewhat less bad hosting email on the web since, unless you are encrypting it, it is already bouncing around for all to see, but that is not so for your internal company email, personal and business documents.

      - You have a copy of OpenOffice or Office 97. It works wonderfully, always has, always will as long as the computer hangs together which could be 10 years since hardware is plenty fast and rich with storage so we really don't need to upgrade hardware or office softare very often anymore. Oh and as long as Microsoft doesn't intentionally obsolete it by dropping support or changing file formats to force you to pay them for upgrades. Having golden oldie software that does the job is great for consumers, totally sucks for Microsoft because their revenue is going to plateau. Solution, they have to sucker consumers in to paying them every year to rent software, so instead of buying once and owning forever you pay Microsoft as much as they care to charge for their service each year.

      If you are so foolish to fall for hosting all your docs on the web, make damn sure that you can easily get them all out if and when you realize its a bad idea.

      --
      @de_machina
    5. Re:Saturated Market by Anonymous Coward · · Score: 0

      Yes, those billions in profits are starting to shrink, I can hear the desperation in their voices now :)

      Microsoft also have budgets set up that they have to meet or cause stock holders to doubt in their company and strategies... The longer such doubt can go on, the more it hurts, not unlikely far more so than the actual losses from lacking sales and such things. A businessman can't think "oh doesn't matter if we start losing profits, we still have a lot to take from". He'll run a company into the ground in no time.

    6. Re:Saturated Market by Mr.+Roadkill · · Score: 1
      I can see small companies with 100% outsourced IT possible trying this, but not too much else.
      Considering how some of the point-and-drool "administrators" at some of those small companies look after their Exchange servers, I'm failing to see a down side...
  9. Hosted Office? by jkind · · Score: 2, Interesting

    What does this mean exactly? When I want to edit a Word document I have to be online?
    "Microsoft's hosting push is expected to target the gamut of users--including small companies with five to 10 PCs and no dedicated IT staff--who may want to do things like share calendar items but not worry about how that is accomplished."
    Couldn't an undergrad CS student develop an app that could do this for said small IT company.

    --
    ~jennifer.k~
    1. Re:Hosted Office? by Karzz1 · · Score: 1

      After thinking about it a bit... what advantage does a shared electronic calendar offer an office with only 5-10 computers? Couldnt a whiteboard handle all the calendaring they would need? Maybe one person to update it and send an email to staffers? I fail to see where a "web services portal for collabaration... bla bla market speak bla" could prove to be cost effective.

      --
      Beware of he who would deny you access to information, for in his heart he dreams himself your master.
    2. Re:Hosted Office? by OakDragon · · Score: 2, Informative

      You're telling me, brother! We have a similar situation (about 10-15 "real" users in the whole place). Our needs are actually very simple, the primary one being a shared contact/customer list for email and phone purposes. However, the boss wants the "latest and greatest" from Microsoft. Oh, well, he's paying for it...

    3. Re:Hosted Office? by OakDragon · · Score: 1

      What does this mean exactly? When I want to edit a Word document I have to be online?

      Don't worry, you will have an off-line version called, um, Word.

    4. Re:Hosted Office? by azaris · · Score: 1

      After thinking about it a bit... what advantage does a shared electronic calendar offer an office with only 5-10 computers? Couldnt a whiteboard handle all the calendaring they would need?

      Bah... whiteboards! A pen and paper is all they need. No, scratch that, a piece of flint and a big rock to carve on. An replace e-mail with pidgeons.

    5. Re:Hosted Office? by ctr2sprt · · Score: 2, Interesting
      What does this mean exactly? When I want to edit a Word document I have to be online?
      I think what it means is that, if you don't want to buy Office outright (for example), you can pay a small monthly or yearly fee and use it online. For home users, not a big deal, but for a business it could be really handy. No need for local installs, just a web browser. Built-in easy document sharing. The license costs would be split into monthly payments, so it's more affordable for smaller companies who live from month to month. And MS could probably reduce the license costs because they'd be able to ensure your compliance. Right now, if you buy 50 licenses of Office, you can install Office on 5000 computers. But with a web-based system, MS could limit you to a set number of concurrent users.

      This would also let employees work from home or on the road without needing laptops, or with laptops but without keeping the document on there. ("We need those FY 2005 financial reports, but Bob has the latest version on his laptop and he's in Cancun for a week!")

      I can see definite potential for this.

      Couldn't an undergrad CS student develop an app that could do this for said small IT company.
      There are already apps to do this. But none of them are really easy to set up or maintain. If something breaks, or you want to change the configuration, you have to hire someone to fix it (and wait for them to get around to it, during which time you may be losing business). But if you get your calendar app hosted and supported by the same company as the one doing your web and mail, which you'd have anyway...

      I'm not saying it's a brilliant idea on the part of MS. Hosted Exchange would get you money hand over fist, because no one wants to pay the astronomical fees for an in-house Exchange admin. But the hardware requirements for Exchange are so high I'm not sure you'd actually be able to turn those huge revenues into profit.

    6. Re:Hosted Office? by B3ryllium · · Score: 1

      Pigeons have a better audit trail than email.

    7. Re:Hosted Office? by qodfathr · · Score: 1

      I suspect it will be built off of some form of ClickOnce technology which will, in theory, be the best of both worlds. A client-side application which launches with a click on a web page, remains available when offline, and auto-updates whenever online.

      I agree that there will be a monthly or annual fee. Although a pay-as-you-go plan at, say, $0.03.minute might also be interesting. (Of course, it's bad enough when I forget to hang up my cell phone; just imagine keeping a web browser window accidently open over a long weekend!)

      --
      Yes, it's true. This man has no dick.
    8. Re:Hosted Office? by somersault · · Score: 1

      if you want to share your documents with everyone, all you need is a fileserver, or even just a computer that will always be on the network with a read/write folder shared, and VPN access for those who are out on the road/at home. And exchange is pretty easy to run for the most part.. if you have any reaaaal problems you can just call in a qaulified exchange admin. Extortionate rates there but as you say, maybe better than having an admin in house. I'm still hopeful to go on an MCSE course soon though just to get another qualification (last 3 admins before me were sent on them, then promptly left within a year or 2.. hehe..)

      --
      which is totally what she said
  10. Cool by kevin_conaway · · Score: 3, Insightful

    From what I hear, a lot of depts have trouble implementing these Sharepoint solutions and other things. If you could get actual Microsoft people to run these solutions for you, I think it would save people a lot of headaches.

    Isn't this what a lot of other companies like IBM are doing anyway? "Heres your software. What you don't want to run it yourself? Thats fine, we've got this nice shiny datacenter here, we'll take care of it for you!"

    1. Re:Cool by $RANDOMLUSER · · Score: 4, Funny
      >IT folks who specialize in M$ products aren't the sharpest tools in the shed.

      How can you say that? They've got certifications and everything ;-)

      --
      No folly is more costly than the folly of intolerant idealism. - Winston Churchill
    2. Re:Cool by kotkan · · Score: 2, Insightful

      Thank you for that rational non-bashing comment. Offering another way to use their software is not an inherently bad thing. Windows problems aside (which are big), Microsoft as an apps company is pretty talented, and what they buy or copy often (not always) improves over time after a false start or two. Some products I dislike from Microsoft due to security issues, flakiness, design issues, or too-proprietary output: Exchange, Word, Frontpage, Project Some products I think work very well: SQL Server, Excel, Powerpoint for what it does (it should be banned on principle, but not because it fails its mission). Other products that were very bad have been improved - e.g. Windows Server 2003. Still has some issues, but works well and easily and quite effectively hosts our helpdesk app, my website, many other services. I think Sharepoint might be a great service, and if that's the hosting vehicle I would not write this off. I'm still looking forward to Google offer OpenOffice, etc. online, but this anything-but-Microsoft kick is getting kind of old. Every group, genre, licensing approach, motif, whatever has examples of comparatively good stuff (Apache) and comparatively bad stuff (Kino on Linux). I'm p*ssing in the wind here I know, but get off those high horses already and smell the coffee - or talk to some average users in organizations that deploy Windows properly.

      --
      --- take the red pill ---
    3. Re:Cool by Sweep+The+Leg · · Score: 0

      Does knowing linux make you any sharper? Thought so. When will you realize the majority of IT people are dummies.

    4. Re:Cool by Anonymous Coward · · Score: 0
      From what I hear, a lot of depts have trouble implementing these Sharepoint solutions and other things. If you could get actual Microsoft people to run these solutions for you, I think it would save people a lot of headaches.

      It isn't the *hosting* of sharepoint that gives me headaches, it's the *using* of sharepoint.

      If we switched to MSFT-hosting, we'd still have all the same annoyances using it - we'd just be paying mor for the pain.

      The thing that would actually save me pain is when the Microsoft product that they host for me is Windows - so I don't need to maintain all those damn insecure desktops - and all our users can use a thin client hopefully runningn something more solid. But I don't think that's anywhere on the microsoft hosting roadmap.

    5. Re:Cool by poot_rootbeer · · Score: 1

      Isn't this what a lot of other companies like IBM are doing anyway?

      Sure, but IBM's been doing hosted computing services since before Bill Gates dropped out of college. They have generations of expertise. I see no reason to trust that Microsoft's attempts to enter the market will be business-ready out of the gate, or possibly ever. Not with their product history.

    6. Re:Cool by advid · · Score: 1
      It isn't the *hosting* of sharepoint that gives me headaches, it's the *using* of sharepoint.


      God yes.

      To be fair, though, Sharepoint is decent if it does exactly what you want already. It's when you start wanting to tweak it to meet your needs that it becomes a nightmare.
      --
      - "I'll probably get modded down for this."
  11. Everything hosted? by Anonymous Coward · · Score: 4, Funny

    Anyone else read that as everything hosed?

  12. From the article by Dekortage · · Score: 4, Interesting

    "Ozzie, the former chairman of Groove Networks, has been charged with leading Microsoft in this area." If only that was a criminal charge.

    Elsewhere: "How much competitive advantage does e-mail give any company? Wouldn't those internal IT resources be better deployed elsewhere?" said one Microsoft source, who asked not to be named.

    You mean, you won't need to buy email server software and support from MS?

    --
    $nice = $webHosting + $domainNames + $sslCerts
    1. Re:From the article by advocate_one · · Score: 1
      Elsewhere: "How much competitive advantage does e-mail give any company? Wouldn't those internal IT resources be better deployed elsewhere?" said one Microsoft source, who asked not to be named.

      ask yourself this one simple question... As a business, do you really trust Microsoft not to peek at your confidential emails etc.??? If your data is hosted on their servers, then it isn't your data anymore.

      --
      Donald 'Duck' Dunn: We had a band powerful enough to turn goat piss into gasoline.
  13. Which insider ? by alexhs · · Score: 5, Funny

    When asked which other products and services Microsoft would host, another Microsoft insider said, 'Everything. Hosted Office. Everything hosted.

    But isn't that insider a newly hired, "lower-level business person" who did not understand the company's obligations ?

    --
    I have discovered a truly marvelous proof of killer sig, which this margin is too narrow to contain.
  14. Microsoft Hosting by ChrisF79 · · Score: 1, Funny

    Please join me in a prayer asking that the servers run BSD and Apache. I'd hate to see people's sites/apps/etc go down instantly.

    --
    Finance tutorials and more! Understandfinance
    1. Re:Microsoft Hosting by AndreiK · · Score: 1

      A prayer is about all you can ask for.

    2. Re:Microsoft Hosting by Anonymous Coward · · Score: 0

      That's funny - you're a 'troll' for making a true statement but the parent is 'funny' for trolling!

      The slashdot hive mind at work is a wonderous thing!

  15. Just another step by keraneuology · · Score: 4, Interesting
    While the (theoretical) advantages are clearly there, I'm not convinced that this is the best move for small businesses. The big boys of Ford, GM, Lucent and EDS would all love to be able to have internal office hosting for thin client terminals that make it a piece of cake to deploy new desktops, but for small 10-15 user offices with expensive and relatively slow network connections there just isn't enough value in putting your entire productivity in the hands of Ameritech, Comcast or shudder Qwest. In my office if the network goes down it is terribly inconvenient but I can still compose replies to emails that stack up in my inbox, examine reports, and engage in many other productive activities. If a construction crew digs up a network cable, if the DNS goes flewkey on me or if another Paris Hilton prawn video comes out and everybody for miles around clog up the bandwidth then I'm left high and dry with nothing to do.

    From the MS POV, it is very difficult to pirate a hosted app and makes it easier to enforce EULA clauses along the lines of You may not use the Software in connection with any site that disparages Microsoft, MSN, MSNBC, Expedia, or their products or services (FrontPage 2002).

    Personally, I don't think that the company that allows "low level" employees to announce company-wide projects that violate anti-trust agreements without review by upper management can be trusted with confidential and sensitive documents that I create. But that's just me.

    --
    If the g'vt kept the data on you that google does you'd better believe you'd be calling it "doing evil"
  16. How about "Hosted Windows" by G4from128k · · Score: 4, Insightful
    As a Macintosh owner I have occasionally really needed Windows. I've spent money on various emulators (e.g., SoftWindows) and even bought a Pentium laptop at a garage sale for $35. But I never used these things as much as I thought -- only 3 or 4 times in the last 20 years. Hosted Windows for $4.99/day would be a good way to use Windows once every 5 years or so.

    Of course if MS can provide Hosted Windows then Google could provide hosted whatever (GLinux?) and things would get interesting.

    --
    Two wrongs don't make a right, but three lefts do.
    1. Re:How about "Hosted Windows" by romanr · · Score: 1

      Lets see - hosted Windows @ $4.99 per day is $1821.35 per year.

      Sounds good to me - where do I sign up?

  17. This has sort of been an on/off thing with MS by grasshoppa · · Score: 4, Insightful

    They get warm to it, then it goes cold for a while. Then they warm up again.

    The reason? Some new exec ( I'm guessing ) dreams up a way of sustainable yearly revenue, only to find that people's network connections aren't good enough yet. Sure, in the redmond area I'm guessing their inet connections are as solid as t1s, but the rest of the country is severely lacking in even enough bandwidth to pull this off, nevermind the reliability of the line.

    This is an idea before it's time, and quite frankly, the implementation would appear to leave much to be desired. Not only that, but are still a ton of security considerations to take into account.

    --
    Mod me down with all of your hatred and your journey towards the dark side will be complete!
    1. Re:This has sort of been an on/off thing with MS by jafiwam · · Score: 1

      They should roll this out in one of those high population density places that have huge high bandwidth penetration.

      South Korea gets trotted out as being "advanced" because they have lots of apartment complexes with 10 meg fiber to every apartment.

      The US isn't ready for this stuff yet I think. Especially since most of the protocols for MS networking (file shares and such) are dirt slow once you get below the 10 megs of available traffic space. Ever try running a share across a T1 line? It doesn't work to well. So they'll be hacking together some hybred of HTTP or FTP to do all of this.

      I for one, simply wouldn't trust any other company to hold our data. The next step is "search your data!" which means there is a database somewhere with the contents that you no longer own and control like Gmail. For personal email like Gmail or Yahoo it's fine. For company strategy, internal prices lists and HR documents, it is NOT fine.

    2. Re:This has sort of been an on/off thing with MS by ksjfhdsalf · · Score: 0

      I've had broadband for years and any corporation worth a damn has fibre or something fast. Hell Starbucks has enough bandwidth to get hosted apps. Before it's time NO, full of nothing but worthless microsoft apps, YES.

      I'm waiting for google to host my desktop free with ads before I switch away from local OS implementation.

      I'd pay for this MS crapity-poo for a remote sales force for a small-midsized office that doesnt have the IT people to host their own apps, but that's about it.

    3. Re:This has sort of been an on/off thing with MS by grasshoppa · · Score: 1

      I've had broadband for years and any corporation worth a damn has fibre or something fast.

      That must be nice for you. Most of us, however, don't live in an area where fiber is available for anything less than 2grand a month. And the t1 I have out here is flaky, for a t1. Typically, about 1 outage a month.

      I thank you for your reply however, as it shows the mentality of an MS exec I was referring to.

      --
      Mod me down with all of your hatred and your journey towards the dark side will be complete!
  18. Yes, of course... by Liam+Slider · · Score: 1, Funny

    We already know everything at Microsoft's hosed. Oh...HOSTED! That's very a different story. So basically, what they are saying is...they want to move to a model where they screw you over and over, and you pay each time you're screwed. No surprise they are moving to that business model really...Microsoft has always acted like a two bit whore.

    1. Re:Yes, of course... by Anonymous Coward · · Score: 0

      Thank you for that rational, fact laden point. You've really given us a lot to consider!

  19. Could be a big mistake by Microsoft by RoLi · · Score: 3, Insightful

    If they don't pay attention and become competitor in the "normal" hosting business, Windows by hosters could share the same fate as OS/2 on PCs: Companies don't like to put competitor's products on their products.

  20. Microsoft or some 3rd party? by Raindeer · · Score: 3, Interesting

    I like the idea of hosted apps alot. I like it most for small (1 employee) to medium size enterprises (250 employees). Now that Fiber to the Businesses start to get some steam it is a logical step. If you're running a small to medium size company like a law firm, consultancy, factory, shop etc. the IT department is not the core of the business if it exists at all. Where it exists it only comprises up to 10 percent of the workforce which means too small an amount of people to actually have a clue of all the different branches of IT. (How many people do you know that have in depth knowledge of CRM, ERP, security, internet applications, databases, hardware, switches, archiving etc etc. You do know such a person? a SME can't afford her) So if you need several of these apps, you're in serious staffing trouble.

    Outsourcing seems the way to go. Let a knowledgeable company or group of companies run and maintain your apps for you. However, who would you trust to do that? For general programs like Office, probably Microsoft or Google would be a good choice as any. For specialised/customized programs, like CRM and ERP, I would go for a 'local' guy that is approachable. I would most definitely not opt for a company that is as huge as Microsoft to run my customized programs, because I'll end up in Helpdesk HELL.

    In my ideal world I would go to a company that offered me a subscription like model to a whole range of desktop apps (photoshop, acrobat, office, visio etc etc) and a company that runs my serverside apps and specialized apps) It could save alot of money on IT-people and specialized rooms etc. (And probably get me into trouble some other way)

  21. haha! by char1iecha1k · · Score: 0, Flamebait

    What about confidentiality, and security? would you trust MS to host your OS/office functions?

  22. Innovation by RahoulB · · Score: 1

    Microsoft are famous for their innovation. Look at the list of innovative products:

    DOS,
    Windows,
    Visual Basic,
    SQL Server,
    Word,
    Excel,
    Internet Explorer,

  23. and what about quality of service? by Anonymous Coward · · Score: 0

    Unlike software, which is usually paid for up front (and had no guarrantees), what will MS do to retain hosted customers after the next wave of BSODs/worms/viruses?

    The service may have no guarrantees, but annoy your customers too much and your revenue stream goes somewhere else.

  24. ooh boy!! by mayhemt · · Score: 0

    Now do I get those blue screens on a webpage??!!! Sounds Innovative to me!!

  25. Hosted EULA... by TheIndifferentiate · · Score: 4, Insightful

    I imagine their EULA for the hosted stuff would be just like their Hotmail one in that the user completely indemnifies them if they lose all the user's files like what happened to some Hotmail users a while back. Mmm... One of the biggest arguments they use against GPL/OSS is that there is no one to hold accountable for it if something goes wrong-What's the difference here? Oh, you are paying for someone to not be accountable.

    1. Re:Hosted EULA... by Anonymous Coward · · Score: 0

      I don't agree. The difference being that hotmail, for the most part, is a free service. Why wouldn't a company want to be held responsible for losing data on a free service? Yea, we hosted you're email for free for 3 years, we lost some data... and now you're seeking monetary compensation for your loss...

    2. Re:Hosted EULA... by TheIndifferentiate · · Score: 1

      I said their EULA will hold them harmless to users PAYING for their hosting. Hotmail was an example-PAYING customers don't get any assurance that their data will not be lost either. Microsoft doesn't give you any guarantees with their non-hosted software either. The best you can do when using it is hope that your IT staff knows how to safeguard your data. That's your insurance policy. If you let them host your stuff, you not only throw that insurance policy out the window (pun not intended, but humorous nonetheless), but you expose your data to whatever ill fortune may befall it when it goes outside your network.

  26. It could work by Anonymous Coward · · Score: 1, Interesting

    People are willing to pay big bucks so they can read email on their Blackberries. This could be an extention of the same idea. You have some kind of cheap network appliance(s), you can do your work anywhere on any of your various machines; desktop, pda, phone, Blackberry, etc. You don't have to worry about syncing anything to anything else. It would be very convenient. Imagine being in a meeting and never having to worry about a file that only exists back on your desktop. The boss (or customer) asks the embarassing question and voila, you pull up the file you need and answer him. This is not to say that I'm going to do it myself, but I know lots of other people who would.

  27. Hmm. by displaced80 · · Score: 2, Funny

    another Microsoft insider said, 'Everything. Hosted Office. Everything hosted.'" .... before slumping face-first into his cornflakes?

    Sounds like someone needs to lay off the amphetamines for a while...

    --
    What's the frequency, Kenneth?
  28. Just a matter of numbers by jscotta44 · · Score: 2, Insightful

    Yes, Microsoft's hosting partners are paying a bundle in licensing fees. But, they-the hosting companies-are making it back plus a substantial profit. This is just a classic cut out the middleman move. Microsoft will charge a bit less than the current hosting companies can and will will still make the licensing fees plus the profit that the hosting companies previously enjoyed.

    The question for many of the hosting companies is whether or not Microsoft will enter their specific niche by introducing their own products or will simply purchase a company in the niche to get a jump start. A good example of this would be SalesForce.com or eBay. Actually, I look for both to be purchased by Microsoft. I think that SalesForce.com is already deep in bed with Microsoft and they are the leader in the space. eBay has to be looking over its shoulder with Google supposedly firing up a competitive service. So they both seem to me to be acquisitions that Microsoft could and would make.

    1. Re:Just a matter of numbers by azaris · · Score: 1

      Yes, Microsoft's hosting partners are paying a bundle in licensing fees. But, they-the hosting companies-are making it back plus a substantial profit. This is just a classic cut out the middleman move. Microsoft will charge a bit less than the current hosting companies can and will will still make the licensing fees plus the profit that the hosting companies previously enjoyed.

      Granted, but it's not obvious that destroying fruitful business partnerships by entering into direct competition is necessarily more productive. It all depends on the situation in ways which can be complicated. For example, if they sell 10 Exchange seats+support to a customer who wants hosted Exchange, they get the license fees for the seats and the profit from the support, but they also get the costs of running the data centre, which might or might not be a profitable business in the future. On the other hand, if they sell the licenses to a VAR, who trains two of their people to host those seats (MCSE + MSDN memberships), they get not only the license fees and the money for training, they can cut out the investment and risk related therein. So it's not really cut and dried that they would make more money in every single case by getting rid of the VAR.

      The question for many of the hosting companies is whether or not Microsoft will enter their specific niche by introducing their own products or will simply purchase a company in the niche to get a jump start.

      Hosting off-the-shelf products (Microsoft as well as FOSS) is a difficult business anyway, since it's such an easy market to enter. To make it in the hosting business you really need your own product or some special expertise that other players don't have to gain an edge. Microsoft might have muscle, but it's not hard to compete against their products in terms of quality and price. Other major software companies are probably even worse in this aspect. At least Microsoft can afford to cut prises to one third of what SAP, for example, are asking.

  29. Obvious by Anonymous Coward · · Score: 1, Interesting
    Within the next 6 months, expect to see MS buy some existing companies that already do hosted service. MS clearly doesn't have the deep experience with Hosted service. Keeping in mind that MapPoint.NET is rather small and only on a small cluster of server in a load balanced setup. MSN is consumer oriented and doesn't have any Service Level Agreements to deal with.

    It's good to see MS go this direction, but frankly, it's going to take 3-4 years to get enough experience to really run hosted service reliably. Not to mention, they'll have to hire and train a huge team of IT people to manage these systems on a day-to-day basis. Unless MS figures out how to get windows server to the point where it takes 1 admin per 50 boxes, they're going to have a nightmare on their hands. Coordinating thousands of servers with hundreds of admins is going to be a management problem.

  30. hosting maybe by badriram · · Score: 1

    MSN has always offered some kinds of hosting, but now they offer sharepoint as hosting. OK lets see here, sharepoint has been available for a long time. So MS offering their product that existed pre google ideas, as a host, which also pre existed google is copying. MS has been trying to get into software as a service, and when they launced sharepoint a lot of people figured that is where they were heading.

    I guess it is slashdot, for every valid argument that are a million others that just dont make any sense. Oh but i do agree in general MS does copy things, but which company does not. If someone betters you better be copying and improving...

  31. And Now For Your Host... by no_pets · · Score: 0

    ...Clippy!

    --
    "A government is a body of people, usually notably ungoverned." - Shepard Book Quoting Malcolm Reynolds
    1. Re:And Now For Your Host... by Spy+der+Mann · · Score: 1

      ...Clippy!

      "Hello there! Looks like you're trying to build a website!"

      GAHHH! :( I'm gonna have nightmares tonight!

  32. MyInternetPC by jscotta44 · · Score: 1

    You should take a look here:

    http://my-internetpc.com/

    Scott

    1. Re:MyInternetPC by chez69 · · Score: 1

      looks neat, except for this quote

      Up to 20 times faster than Virtual PC on a Mac. It uses Apple X11 technology to deliver Windows XP super computing technology without the headaches!

      supercomputer? ha ha ha

      --
      PHP is the solution of choice for relaying mysql errors to web users.
  33. Microsoft's survival may hinge on hosting by corporatemole · · Score: 0

    I think MS is starting to see that software is becoming a commodity. OpenOffice may not be a better product than MS Office, but it offers a compelling alternative. Linux may not have a better desktop, but, again, it offers a compelling alternative. Both are free, both will, in time, be as pretty and feature rich as the MS alternatives. And, one day, you will be able to turn granny loose on both of them and have her be productive and not pester you for support. So, how is MS going to make money when free, good rival software becomes ubiquitous? By trying to see what they can put up on a "hosted" model. Although, with Web 2.0 (specifically the no-walled-gardens idea), I'm not so sure how they are going to make hosting work. But it should work for a moment.

  34. Outsourcing by Tekoneiric · · Score: 1

    I wonder when MS will get into the IT infrastructure outsourcing business to insure that companies use only MS server and PC software. I can see them out bidding companes and coming in, dumping all their mainframe and unix systems then replacing it with Windows based systems.

    --
    *It's not what you can do for the Dark Side but what the Dark Side can do for you!*
  35. Re:Well, they already are in the hosting business. by Anonymous Coward · · Score: 0

    Geez you sound like all of a sudden MS is going to start testing their products or something.

  36. MS wanting to host is nothing new by Fazed · · Score: 2, Informative

    During comdex 1999 (the 20th anniversary of comdex btw) Bill Gates during his keynote speach spent the whole session evangelising about how we were going to see a shift in the software ownership paradigm. He was refering explicitly to ASP based activities and at the time said they were going to start providing hosted applications that would be rented to users.

    The following is cut n pasted from http://www.microsoft.com/billgates/speeches/11-14c omdex.asp

    MR. GATES: Now I'd like to show another great new thing that's available online, David Jaffe is going to help us take a look at what we call Office Online, and this is a new way, just one of the new choices you have, of how you want to get at any Windows application.

    MR. JAFFE: As you mentioned, that's absolutely right. As you mentioned, another element of choice for users is something that we announced earlier this week called Microsoft Office Online, which delivers Office 2000 as a service over the Internet. This provides even more choice for users in accessing their software and on any device. So, let's go ahead and see how this works. You'll see here that we have a Windows 98 PC and that there's virtually nothing on this machine other than the operating system.

    Now, the real excitement of Office Online is that with just a user name and a password, I can go ahead and access the Windows 2000 desktop and all my Office applications via the Internet without even a single bit residing on my local machine.

    (Applause.)

    MR. JAFFE: Now, one key advantage of Office Online is that users can get the most up-to-date software without having to do a single thing. So, for example, if there was an update, such as a service release, the latest anti-virus software, or even a new expense report template, it can be updated automatically without the user having to do a single thing.

    So, let's go ahead and check out our Office applications. So, I'm going to go ahead into Excel 2000. As you can see, this is the full version of Excel with all the tools that I'm normally familiar with, such as the Office Assistant, which allows me to ask my questions in my own words. Now, the Office Online has a number of interesting user support scenarios.

    So, for example, say I'm a new Excel user, and I have no idea how to access the expense report template that was previously added. Office Online makes it possible not only for a support engineer to watch what I'm doing with my permission, but actually take control over my machine, and show me how to solve that problem. So, we'll go ahead and have my support engineer actually show me how to find this expense report template. So, you'll see, hands-free, it's going out and showing me exactly where my expense report template is. Now, this is a pretty simple example, but you can imagine the benefits that this will show with even a more complex scenario.

    So, now here that we have our expense statement, I'm going to go ahead and fill out a little bit of information, such as my name, my Social Security Number, and my department. Now, suppose we had a power outage and my machine were just shut down without warning. Now, in the past, this might have been very problematic. I would have probably lost a lot of my data. With Office Online, this is not a problem. Now, I could go ahead and reboot the same machine or, in this case, I'm just going to go over and switch to a new machine, and I'll go back and log on with Microsoft Office Online, and I'll put in my password, the same password that we used before.

    In just a second you'll notice that the expense report template comes right back up, exactly where we left it. You'll see that all the data is there, and in fact, even the question that I asked the office in this thing would still be there, as well. Now, what makes this possible is that the applications are actually being run on the server instead of my local machine. So we've recently seen how Office Online h

    1. Re:MS wanting to host is nothing new by iluvcapra · · Score: 1

      This is a good comment, but this most important part is at the end

      MR. GATES: A key point is this ability to run applications up in a hosted environment should simply be one choice of where you want to run code. When you write the code you shouldn't have to think, do I want it hosted, do I want it running on a PC server, or do I want it to be possible to run that code on a laptop, so that a mobile sales person or worker could actually have that application with them when they go home or when they visit a customer's site. What you need is one architecture that lets you write an application and allows the code to run in all three of those places, without any modifications.

      What this amounts to, in the context of this conversation, is that smart developers will be watching if MS eats its own dogfood and implements its hosted applications in .NET and really does use roughly the same implementation for the hosted and local applications. If MS has a whole team of developers writing a workalike Exchange and Office in ASP.NET while the original apps stay off the .NET framework, outside devs will have abit of trouble taking .NET seriously, and the hosted apps will be redheaded stepchildren (like MS Works was in the 90s). Note that Mr. Gates says that "this ability to run applications up in a hosted environment should simply be one choice of where you want to run code." He didn't say "will be" and certainly didn't say "it's our design goal and our application roadmap."

      IMHO, shared applications and single-user applications are completely different, and you really can only maximize the usefulness out of either by coding for either use. Also, even in the relatively lax security of my industry (the film industry), nobody would trust that their document was secure from prying eyes over a network, regardless of the level of encryption. Gnutella has taught the executives in my business that internet+share=bad.

      --
      Don't blame me, I voted for Baltar.
  37. The REAL question by amliebsch · · Score: 1
    I agree that what's really going on here is Microsoft seeing the value of subscription-based services. I think they'd be willing to sacrifice one-shot licensing (especially given the fairly weak rates of upgrade purchasing) in favor of a steady monthly payment. As you mentioned, there are a lot of advantages for the user in this arrangement as well (including, likely, free upgrades), though of course the big disadvantage is that if you stop paying, Office stops working. But the real $64,000 question:

    No need for local installs, just a web browser.

    Would this mean the ability to run LiveOffice in any sufficiently advanced browser - on any platform? Would MS be so bold as to enable non-Windows/Mac users to use LiveOffice? On the one hand, they are extremely loathe to undermine the necessity of their flagship product: Windows. On the other hand, they must also realize that getting at least Office revenue from a Linux customer is better than none at all. It will be interesting to see how this plays out.

    --
    If you don't know where you are going, you will wind up somewhere else.
  38. Hosted Reliability by Aumaden · · Score: 2, Interesting

    This could be a lose/lose proposition for MicroSoft.

    They have touted their system as being capable of "five nines" (99.999% uptime per year, or, only 315 seconds of downtime per year). As being cheaper to operate and less vulnerable than Linux.

    If they run BSD/Apache as another poster suggested, they admit FOSS makes a better platform. If they run their own software they risk major loss of face if^H^Hwhen servers BSOD, hang, get infected.

    It will a lot harder to blame admins for security issues when MicroSoft is the administrator.

    Or maybe their customers will simply turn a blind eye to it all. Much as they have reliability and security problems in the past.

  39. I think you've got it by solomonrex · · Score: 1

    They're already running a lot of servers, so I'm sure they view this as an extension, the way that google looks at hosting videos and 2gigs of email for everybody. Once you start managing data centers that extensively, these "little" experiments are a lot less risky.

    But, there's a big difference here. Microsoft sells development and server software and Google and Yahoo don't. If Microsoft competes with every customer they have, soon they won't have any.

    I know I wouldn't partner with M$. Everyone is at risk. They own game companies and make hardware. They develop MSN messenger and Cluster servers. Do you understand how insane it was to take on Sony? They're like a rabid dog. No one is safe and this proves it.

  40. I behold the day... by Ruvim · · Score: 1

    ...when one of Microsoft=hosted sites will be /.ed. That will be chears!

  41. Own nothing, have everything? by Quevar · · Score: 1

    So, is this kind of like Napster's slogan: "Own nothing, have everything?"
    http://www.theregister.co.uk/2005/10/27/napster_se lls_nothing/

    Microsoft is going to start renting out it's software online allowing them to change things at a whim and if you are late paying, they will pull the plug on all of your applications? Somehow, this doesn't seem to make sense for many companies since they keep their computers and software for many years. Just look at the Microsoft Assurance Program:
    http://www.microsoft.com/licensing/programs/sa/def ault.mspx

    So far, there has been very little that has been useful from it. This program is the main reason why Vista will ship in 2006 whether it is ready or not. This program will be up for renewal starting in 2007 and no company is going to sign up again unless the OS was updated within their past term - that is a big chunk of their money. This is also the reason why I would encourage everyone to stay clear of Vista - they are going to push it out regardless of what is wrong with it because they will probably be sued otherwise by all of these companies.

  42. the next big thing : MS Pro-Active Security Model by da5idnetlimit.com · · Score: 2, Funny

    Dear Customers,

    We are happy to announce that, in addition to providing hosting services for our customers, we decided to integrate a first class security model on the server to preclude any hacking worries.

    The system, as the front line ms system on your network, will also manage all security related matters - anytime an attack will occur, this system will be the first to fold! Because we implemented it so well, we can garantee that the system will then resist all effort to bring it back online, even if you have administravte access, protecting you from any mischief that can be tried by the evil hackers.

    The use of the installation cd and quick call to our sales rep services will allow you to reinstall everything in no time and be ready for the next emergency, knowing you have a disaster plan ready with us, your partner, microsoft..

    Contact your local sales....

    --
    It takes 40+ muscles to frown, but only four to extend your arm and bitchslap the motherfucker
  43. This is good, and MS-bashing is for children. by kotkan · · Score: 1

    Hey kids, Over two decades I have supported and/or deployed UNIX, NetWare, Linux, BSD, DOS, Apple OS 6,7,8,9,X, and Windows 3.x/95/98/2K/XP/03/Vista. It is never so black and white. We may look forward to Google hosting OpenOffice, but this anti-Microsoft bashfest is very tired. Every ecosystem has examples of good (Apache, Ruby) and not-so-good (Kino). You don't like a product, forego it. MS is as free to host as Google (also a for-profit company) and I applaud the admission (finally) that fatter clients are not the only answer. Many thanks to Google for forcing the issue with AJAX dev. Ya ya, MS is usually derivative, but Apple copied Xerox-PARC, KDE and Gnome copy both. OpenOffice seems to dupe MS Office. PHP and ASP imitate one another. Imitation is flattery, profitable imitation business. If laws are broken, prosecute. Otherwise, like it or not, and I may not, smart capitalists often win. True of every open market. Many users may appeciate hosting via Microsoft, users who are not idiots but who are familiar only with Office and have better things to do than learn another set of tools which none of their coworkers or friends use or understand. I have tried my best to steer family members to OS X to no avail. Why fight this? I'm surely p*ssing in the wind, but get off those high horses already and smell the coffee - or talk to average users in orgs that deploy Windows properly. Better to give them what they want (Office, etc.) in a cleaner, more controlled manner than to force them to trash what they know and are comfortable with. Office without the desktop miantenance requirements? Bring it on!

    --
    --- take the red pill ---
    1. Re:This is good, and MS-bashing is for children. by Skiron · · Score: 1

      I disagree. Looking at ANY of MS track record, would you trust your documents with them? I wouldn't, not in a millions years.

  44. Re:the next big thing : MS Pro-Active Security Mod by zootm · · Score: 1

    Hahahaha. Quite. This is part of the reason that people are trying to make program problems chargeable to the authors of a system — closed-source systems and the flexibility of computers give people endless opportunities that don't fit into the normal laws for suitability of a product.

  45. Which color? by xactuary · · Score: 3, Funny
    I wonder, which color will their hosted screen of death be?

    --
    Say hello to my little sig.
    1. Re:Which color? by Spy+der+Mann · · Score: 1

      I wonder, which color will their hosted screen of death be?

      #0000FF, by any chance?

  46. The follower not catching up anymore by SgtChaireBourne · · Score: 2, Interesting
    I noticed the same: all MS seems to do lately is flail about blindly attacking fad after fad to make money. It seems to be a lack of vision for what the future holds...
    MS has always been a follower. Their lack of vision is nothing new, but I suppose that's why the PR team has been out prasing Chairman Bill's as a visionary. How much of a visionary can you be when your company/political movement is based on the fast follower strategy?

    More interesting question for me is why the sudden need for more revenue?

    Is OpenDocument threatening that much to cut into their hold on people's data? MS Office is one of the two areas that don't lose money for MS. The lock they have on the file format keeps people buying MS Office. If they lose the lock, then they lose MS Office revenue. The lead developer for MS Office, Gagne, is quitting, that's got to hurt, too.

    The other of the two is MS Windows. And that is nearly 100% driven by OEM sales, aka the sale of new machines with MS Windows pre-installed. New machine sales have been flat, flat, flat since right before the end of the dot-bomb scams. So far MS has been able to keep everything quiet about the deals with the OEMs to excluded or discourage selling non-Windows OSes pre-installed. The MIT $100 notebook directly or indirectly will put pressure on that. Only with a monopoly can it charge 80% profit margins, without a monopoly, the monopoly rents go away.

    Also the company's stock has not been doing so great. How much of the company's revenue used to be from buying and selling its own stock or from activities like new issues of stock?

    --
    Beta is broken and the link to classic doesn't work. Stop wasting our time or there won't be anybody left here.
  47. Oracle by EraserMouseMan · · Score: 2, Insightful

    I see this more as a move to compete with Oracle. Not to put all the hosting companies out of business or even to compete with Sun. I think the overall tone is that the infrastructure MS designs to support this will allow them to host anything. Not necessarily that they really intend to host everything.

    Face it, Sun has proven that they don't have what it takes to beat MS. And getting Google to sponsor their office suite isn't enough either.

  48. Haven't they... by staticsage · · Score: 1

    They've been hosting this for a while. http://www.microsoft.com/smallbusiness/online/web- hosting/hub.mspx

    For 50$ a month, their service also comes with a dynamic IP.

  49. stability-robustness and security by natmakarvitch · · Score: 1
    hosting is about platform stability, robustness, security and good performances (to reduce hardware-related costs). is any MS platform adequate?

    WebDSign: thrust the Web by trust

  50. They don't have to innovate by Anonymous Coward · · Score: 0

    they'll just buy someone who does

    but you said so yoruself in a roundabout way...

  51. +555555555 Insightful by bogie · · Score: 4, Insightful

    This is exactly how MS operates. If you actually pay attention from initial product announcement, through Alpha, Beta, RC, and Final, the backtracking is simply incredible. If you look at what MS first promises and then what they end up delivering it's a fair assessment to say that every OS and many products they have released are total failures based on what they were really supposed to be able to do. They promise the world and then upon Final delivery have a product that doesn't accomplish 75% of what you were initially promised. They hype up the next release as the be all end all, and then quietly yank feature after feature from the real release. I don't know of any company that is as bad as MS at announcing vaporware year after year after year. I also don't know any company that is as good as MS at pulling the wool over everyone's eyes year after year after year. Never mind that the products are usually buggy for several product revisions. Hell with 2000 out of the box you had to wait for hotfixes to even get features that were "officially" in the product when you bought it.

    --
    If you wanna get rich, you know that payback is a bitch
    1. Re:+555555555 Insightful by SgtChaireBourne · · Score: 1
      I don't know of any company that is as bad as MS at announcing vaporware year after year after year. I also don't know any company that is as good as MS at pulling the wool over everyone's eyes year after year after year. Never mind that the products are usually buggy for several product revisions. Hell with 2000 out of the box you had to wait for hotfixes to even get features that were "officially" in the product when you bought it.
      Not being a MS Windows user I only notice the server side stuff on the rare occasion. What "officially there" features were missing from 2000 (or XP or 2003 etc) ? And what features looked like they were there, but never really worked or required extra fixes. I recall the search function on the IIS server never really worked. LDAP and or Kerberos were broken on AD.
      --
      Beta is broken and the link to classic doesn't work. Stop wasting our time or there won't be anybody left here.
  52. Reality check by LibertineR · · Score: 1

    Uh, I used to work for Microsoft. I think I know FUD when I see it. I dont hate the company, it just aint the company anymore that I worked for years ago. I dont see how Microsoft makes money on this, because customer service has never been their best weapon. I think this is all about customer lock-in, a familiar tactic. What I hope, is that they find a way to bring their partners along in this, and let us benefit from this initiative. But I aint holding my breath.

    1. Re:Reality check by Anonymous Coward · · Score: 0

      I think this is all about customer lock-in, a familiar tactic.

      Still not FUD. Spreading FUD is about spreading lies about another companies services etc to make it look inferior and cause fear, unceratinty and doubt in using them.

    2. Re:Reality check by LibertineR · · Score: 1

      Get your FUD dictionary out, buddy. FUD does not have to be lies. FUD can be a simple strategic idea to slow adoption of a competing product. Example: "Internet Explorer 4 will blow Netscape out of the water, with better performance and closer adherance to standards." Major FUD, but it was also quite true at the time. FUD is just competitive business, and not always just some lie about a competitor's product or vision.

  53. Cant agree completely by LibertineR · · Score: 1

    Until recently, I would have to say that Microsoft as a partner, has been 'berry-berry good to me', so to speak. This one caught me by surprise because I heard nothing about this at all. I guess there was just no good way to break this to us. The bad news is that they have probably destroyed the market until they flesh out what they want to do. Clients will just wait to find out the best way to go.

    1. Re:Cant agree completely by Jason+Earl · · Score: 1

      That's essentially Microsoft's modus operandi. It provides technology that can be used to build cool things, and it then waits for someone else to actually have the ideas and do the work. Once Microsoft's "partners" have determined, through trial and error generally, what businesses are the most profitable Microsoft swoops in and takes the business. Microsoft's partners are essentially doing market research for Microsoft. If the partners become successful enough to catch Microsoft's attention they are doomed.

      IMHO, that's the biggest reason to avoid Microsoft software at all costs. If you are in the software business you are either currently competing with Microsoft or you are soon to be competing with Microsoft. If you try to compete with Microsoft using its tools you are going to lose by default.

  54. It has its uses by bxbaser · · Score: 1

    Aside from reliability speculation, think about where this would be needed.

    Drasticly lowers startup costs if you need to supply a large number of employee's.

    Bussiness's can scale much faster when experiancing rapid positive growth.

    For places that always deploy the latest software this can certainly make things cheaper.

    For linux only shops this can provide a windows box without licsense worries.

    Whats needed now is a really thin client box, if ms can sell a sub $100 dollar box for access that will further increase the doability of this.

    Its certainly not for me but thats not to say it will not be extremely popular.

    Aside from all this its that full circle thing come back to haunt me again.
    think mainframe computing

  55. Turn on a Dime by Tony · · Score: 1

    Some industry observers liken the hosting move to the 'turn on a dime' shift that Microsoft executed years back when it discovered the Internet.

    By "discovered" they mean, "Ignored it until it smacked them over the head, forcing them to spin around in a circle (looking like they were turning on a dime), until they came to their senses and said, 'Hey, free dime!'"

    --
    Microsoft is to software what Budweiser is to beer.
  56. One Big Fat Target by alucinor · · Score: 1

    Wow, crackers and script kiddies around the world are going to oggle this kill and salivate.

    --
    random underscore blankspace at ya know hoo dot comedy.
  57. Yikes.... by seanvaandering · · Score: 1

    I run some sites, and trust me when I say its a complete ripoff.

    GoDaddy may not be the best option for servers but for 500 Gb of bandwidth for $34.95/month and 10 Gb of space on their Virtual Server options, it sure beats the hell out of Microshaft, and I'm willing to overlook that they shut off the Apache service when the server load gets too high (I know someones literally watching the CPU load values because sometimes I can spike it to 10.000 and nothing happens and sometimes the apache service stops when the load is over 1.000).

    I didn't even bother looking for their overage charges, but im sure they are astronomical as well. All it takes is a Slashdotting and you've already gone over your limit.

  58. History of AJAX by b4k3d+b34nz · · Score: 1

    ATLAS is Microsoft's attempt to compete for some of the attention AJAX is receiving by integrating AJAX calls into .NET code.

    Here's the history for AJAX:

    1. Microsoft creates Outlook Web Access and uses iframes to transfer data back and forth without having to refresh
    2. In an attempt to make OWA better, the Outlook team develops an ActiveX control (called XMLHTTP) that can be called to send and receive data without refreshing. The ActiveX control is then integrated into IE.
    3. To offer support for what would eventually be called AJAX, Opera, Netscape, Mozilla, Safari, etc. build in support for an object called the XMLHTTPRequest.
    4. As browser support spread, web developers began using the XMLHTTPRequest and Microsoft's XMLHTTP ActiveX control in conjunction with other Javascript capabilities to develop speedy, applications, most notably Google Suggest, GMail and Google Maps
    5. Jesse James Garrett and the rest of the crew at Adaptive Path http://www.adaptivepath.com/publications/essays/ar chives/000385.php decided to call the method AJAX (Asynchronous Javascript and XML), popularizing the technique as well as screwing it over with a gay name
    6. A lot of people(like me) think they're cool 'cause they don't have to refresh their page to send and receive data.
    7. Microsoft pops back into the game in an attempt to integrate AJAX techniques into .NET web applications. Good idea, but it's a little late. They should have started development about a year ago.
    --
    Grammar Lesson: you're is a contraction of "you are"; your means you possess something; yore means days gone by.
    1. Re:History of AJAX by Anonymous Coward · · Score: 0

      Um, your nick is "b4k3d b34nz" and you're called Ajax a gay name?

      I mean, "baked beans" in leet-speak isn't exactly what I'd call the height of cool.

    2. Re:History of AJAX by b4k3d+b34nz · · Score: 1

      that's the point. i don't need your approval anyway.

      --
      Grammar Lesson: you're is a contraction of "you are"; your means you possess something; yore means days gone by.
    3. Re:History of AJAX by Anonymous Coward · · Score: 0

      You forgot:

      -3. Microsoft sees a threat from Netscape
      -2. Microsoft adds DHTML support to IE 4.0: shipped October 1997 (note: before google is even founded)
      -1. Microsoft creates a team that essentially invents AJAX (in 1997, 1998) to test the idea of the browser as an applications platform
      0. Microsoft demos the technology at the 1998 company meeting, but otherwise ignores it. The demo technology never ships in exactly that form...

      THEN
      1: Microsoft creates OWA.

  59. I think you've got it-Evolution. by Anonymous Coward · · Score: 0

    So basically MS is becoming an ASP, aka Service Bureau.

    "I know I wouldn't partner with M$. Everyone is at risk. They own game companies and make hardware. They develop MSN messenger and Cluster servers. Do you understand how insane it was to take on Sony? They're like a rabid dog. No one is safe and this proves it."

    Why should they be? If roles were reversed? Would all these "partners" hold back, because it's taboo? Evolution isn't a "hold-back" methodology.

  60. Reminds me of Simpsons by Psionicist · · Score: 1

    This reminds me of an old simpsons episode. Burns made a bet with another nuclear plant his baseball team would win in a baseball contest. Too win Burns hired several famous baseball players. Anyhow, somewhere in this episode Bart and Millhouse plays baseball at school. They are chosing teams. Bart picks one of the kids in school, Nelson or so. Suddenly Mike Scioscia or someone walks by. Millhouse asks if Mike wants to play in his team. He accepts. Now Bart (slightly annoyed) picks another of the school kids. Another famous baseball player walks by. Millhouse picks him. Repeat, and Millhouse team is full of awesome, famous baseball players, and Barts team has a bunch of kids.

    Now, this is relevant if we by "Bart", mean "Microsoft", with "Millhouse" mean "Google", and with "famous baseball player" mean "good ideas". Is it just me, or are pretty much every single one of Microsofts ideas simply _bad_? Google comes up with an awesome idea. Microsoft figures out something imensly stupid. Repeat.

  61. Great for thin clients (maybe much lower TCO) by kotkan · · Score: 1

    Have a look at WindowsCE-based thin clients like the HP T5500. I just bought one for $100 on eBay and it probably has all I will need to run hosted MS Office without the hassle of maintaining a Windows desktop. It can surf stand-alone, independent of any Terminal Server, via my cable/DSL router. It also makes a pretty decide RDP or ICA client and VT terminal emulator.

    I would not recommend this for multimedia, games, or anything high-end, but for hosted Office or AJAX-type apps it should work fine, and it looks and feels like WinXP so MS junkies will be less likely to gag at the idea.

    The biggest problem with Windows is fragile/buggy desktop configs. Yank the desktop, problem solved (mostly). My Windows Server 2003 boxes at work, home, and ISP godaddy.com have never failed me in over a year of regular usage. I avoid certain aspects including MS Exchange and heavy dependence on AD.

    --
    --- take the red pill ---
    1. Re:Great for thin clients (maybe much lower TCO) by Zermatt · · Score: 0
      I always thought that .NET (in fact, the whole business model for MS) was to migrate to a subscription based service.

      The thin client model lends itself to this.

  62. Microsoft or some 3rd party?-ASP, appliances. by Anonymous Coward · · Score: 0

    Look up, software appliance, ASP (aka service bureaus for you old-timers), and network appliances.

    Basically the world is moving to "software as a service".* Be it hosting at a central site, remote access. e.g. ASP.

    Or hosted at the clients site, remote maintainance and upgrade. e.g. software appliance

    A network appliance sits in between the two. Kind of like "software appliance" on hardware tailored for the purpose. e.g. storage, spam protection, security, multimedia.

    *This is one of the reasons the new GPL will be problematic.

  63. Microsoft Is Trying To Buy The WWW by Anonymous Coward · · Score: 0
    Microsoft's goals:
    1. get rid of those awful NetCraft web stats that show Apache is by far the most popular web server,
    2. buy the WWW: buy servers, server farms and web-hosting companies until there's no one left w/o M$ technology.

      Microsoft will initially pay hi wages to hire away expertise from currently successful web hosting firms.

  64. Not a bad idea per se, just bad because it's MS by limabone · · Score: 1

    To be honest, having to deal with incompatible systems all day long, a fully integrated solution for a manufacturing facility would be a godsend. Linking ERP, Time & Attendance, Payroll, Financials, as well as day to day backoffice stuff (email, etc) would be fanastic if appropriate controls were in place. MS hasn't been particularly strong with that regard.
    Dealing with custom interfaces for all these interconnected systems sucks.

  65. Housing != Hosting by 4of12 · · Score: 1

    Sorry for misreading the article.

    It reminded me of an old cartoon in the early days of the AOL MSN wars where Joe Consumer's latest computer indicated that it "works best with Microsoft House":)

    --
    "Provided by the management for your protection."
  66. It is about the Data .... by psuedo_samurai · · Score: 1

    Makes perfect sense from the supplier standpoint. Low entry cost, easy to integrate additional services, locked in monthly revenue. But, this is a nightmare from the consumer standpoint. Can you imagine using a "Total Hosted Solution" where the Sales guy accidentally just deleted a bunch of iportant conacts (and don't tell me that this analogy never applied to you). Just try and get that data back without paying through the nose. Or even worse, imagine trying to use a 3rd party non-MS product. "Oops, that isn't supported!" Or what if you decide to go elsewhere .... just imagine the nightmare of trying to get the data out of a MS hosted site. Short term = low entry cost. Long term = grab your ankles.

  67. Hotmail? by serutan · · Score: 2, Insightful

    ""Hotmail, you know, the world's biggest e-mail system, is hosted by us [said Gates]."

    Oh yeah, Hotmail. That's that big system they host on UNIX machines, isn't it?

    1. Re:Hotmail? by Anonymous Coward · · Score: 0

      "Oh yeah, Hotmail. That's that big system they host on UNIX machines, isn't it?"

      http://searchdns.netcraft.com/?host=.hotmail.com

  68. SharePoint Sharing? by O+Great+One · · Score: 1

    As someone who is FORCED to use this worthless app in our office I can only say I would not wish it on the world in any way, shape or form. Once again MS is trying to insure that you only do business their way.

  69. Wow "Microsoft To Enter Housing Business" by Anonymous Coward · · Score: 0

    That's what I thought it said at first.

    OMG

  70. Enterprise Applications - Not Windows or Office! by krouskop · · Score: 1
    Read the article please.
    Within a year, the Redmond, Wash.-based company plans to offer hosted implementations of SharePoint as well as CRM and ERP applications, several sources said.
    And understand Microsoft makes software other than Windows and Office.
    MS's move is about hosting enterprise applications (CRM, ERP, Sharepoint, e-mail) not Office or Windows. (Aside: I don't know how you would "host" an OS to begin with ... I know there is speculation Google is trying to do this but I can't ever see a day when a web site manages processes, controls your video card, etc ... ?!)
    Hosted enterprise applications are all the rage, especially because a small business can't afford a massive CRM implementation, but they can pay a per-seat monthly license fee. And if MS is copying anyone, it's Salesforce.com - not Google. Salesforce.com is a hosted CRM application (one of the three main applications the article mentions MS about to offer as hosted). Google currently doesn't provide hosting for any enterprise applications.
  71. Microsoft is already doing this by randyflood · · Score: 1


    Microsoft is already doing this. They have every single application that you can run on a PC hosted remotely so that people can use it. And it is even on a distributed grid network. Some customers even have thousands of machines clustered together, and remotely manage them with gui-based client administration tools. The capability to add new clients to your existing cluster is already built in to all versions of Windows by default when they ship. I just wasn't aware that it was a feature...

    --
    Randy.Flood@RHCE2B.COM
  72. The big question will be... by ylikone · · Score: 1

    Will their servers run Linux?

    --
    Meh.
  73. Yer all a buncha whiners by Anonymous Coward · · Score: 0

    Yer all a buncha whiners. I for one will never put my data in the hands of a 'hoster'.
    I will never run any software that I don't have the complete master disk for, and I will never pay any subscriptions for software. I have all the software that I will ever need
    anyway and there is nothing that has come down the pike from any of these monopolies that lead me to believe that they intend to improve my ability to do my business. All of the microsoft 'office' products have become bloatware filled with features I neither want nor
    need but do in fact make the software features that I do want, like moving grafix on a
    word processor page, obscure or impossible to use. What HAS come down is more and more
    corporate spyware, adware, crippleware, DRM, CRM, RAT's, and other stuff probably more
    secret. I cannot use any office product after Office 97 because all the documents have secret code that call microsoft for some reason kept secret from us to this day. They can all drown in their 'security', so called 'rights', and whatever. All I want is a
    spreadsheet that works and games that are fun and a database that manages data. The
    industry produced them in the nineties and they still work today as well as they ever did. Barring the hardware industry acting in collusion with the software industry to the effect of disabling old software on new hardware, I should never have to buy anything new. As for the internet. Screw em. All my business computers are electrically and radiologically isolated from the internet. Microsoft will never be
    able to sell my sales contacts and bare costs to my competitors or to the Chinese.