Slashdot Mirror


.Net:... 3 Years Later

Ashcrow writes "EWeek has posted an article on Microsoft's .NET initiative. It's been three years since we were first introduced to .NET and virtually none of the promised advantages have come true. Is it time for Microsoft to move on?"

86 of 906 comments (clear)

  1. Yes by mrmez · · Score: 3, Interesting

    I'm quite pleased to have been able to move from ASP to PHP in the past three years - although at least .Net seems better than the options which preceeded it.

    1. Re:Yes by xThinkx · · Score: 4, Interesting

      I agree, as a Penn State Student I have worked with both .NET and Unix/PHP/Perl/Apache environments. Without a doubt, the latter of the two was far superior in every aspect, INCLUDING EASE OF USE. PHP has got to be the easiest freakin language ever, and Apache trumps IIS with the ability to do the majority of configuring with one file, instead of having to browse through a maze of tabbed windows with options, checkboxes, pop-up boxes, etc.

      Without a doubt, the only reasons to use .NET would be if (a), you already have a Microsoft solution and for some reason you want to keep it, or (b), you fall to marketing hype.

      Oh yeah, did I forget to mention STABILITY and SECURITY...

      --
      Let's get one thing perfectly clear, I did not vote for George W Bush, and I do not endorse what he does or says.
      "
    2. Re:Yes by mingot · · Score: 5, Insightful

      Without a doubt, the latter of the two was far superior in every aspect, INCLUDING EASE OF USE. PHP has got to be the easiest freakin language ever

      A lot of things are "easier" than ASP.NET/ADO.NET coded using an OOP language. For simple things you're better off using something like PHP or ASP/VBS. Of course when project complexity reaches a certain point you'll start to find real advantages to going with a modern approach that seperates the presentation layer from the business layer. Of course taking this approach can make writing a simple application seem daunting, but in the long run it pays off.

      It has a lot to do with simply knowing what sort of application you're going to be writing and picking the proper tool for the job.

      Apache trumps IIS with the ability to do the majority of configuring with one file, instead of having to browse through a maze of tabbed windows with options, checkboxes, pop-up boxes, etc.

      Totally. 100% agreed. Much easier to administer Apache via it's text configuration IMO.

    3. Re:Yes by Anonymous Coward · · Score: 3, Insightful

      .NET is not about all those programming languages on which Microsoft put the .NET tag on. Its about writing code and applications that can use components distributed all over the network and written in completely different languages - without having to cope with stuff like CORBA. I like the whole concept a lot and have to admit i was really impressed of the whole thing after i tried not to turn down a good idea just because it came out of the realms of the evil empire. Check the docs on the Microsoft web site about what you can do with .NET before starting another ASP vs. PHP flamebait.

    4. Re:Yes by alext · · Score: 3, Insightful

      Gosh, sounds like XML-RPC.

      Guess which came first?

    5. Re:Yes by johnnyb · · Score: 3, Insightful

      The fact that it's a marketing bullet point means nothing. When I talk to people actively using it and it making sense and working for them, I'll believe it.

    6. Re:Yes by TheLastUser · · Score: 3, Insightful


      It's just easier to use a gui - not faster but certainly easier.

      Maybe for you it is, personally I find a nice clean xml config file way easier to deal with.

      I remember one incident trying to get iis to serve up a file. I had to alter the "security" settings in no less than 3 different iis menus befor the frickin thing would serve it up.

      The menus are like a maze that one must climb through. The feature that you want could be anywhere in that maze. With XML and a decent editor you can just do a find.

      they fall somewhat short on some of the advanced features businesses need for enterprise apps

      Or perhaps just think they need after a bunch of marketing mumbojumbo. There are pretty big sites on the net that use Apachr/PHP, Bravenet.com comes to mind, you could probably find others at netcraft.com I don't use this setup personally, but I see a quite a few large sites that do, and they seem to be making money.

      it's java for windows basically

      I will never understand why people would write in a "java for windows" when they can write in a Java for all operating systems. C# seems to me like a less sophisticated version of Java that has the added drawback of locking you in to a single platform.

  2. nah... by wza · · Score: 5, Funny

    Is it time for Microsoft to move on?

    nah, it's time Microsoft to move over...

    --
    bada bing
  3. Reality is quite nice though by mccalli · · Score: 4, Insightful
    The marketing hype surrounding .Net evaporated, true. However as a means of developing for Windows in virtual machine which supports multiple languages, the actually technology is still going strong.

    And so it should - it's better than the alternatives which preceded it. It's just important to divorce the .Net marketing cloud from the actual technology on the ground.

    Cheers,
    Ian

    1. Re:Reality is quite nice though by Ooblek · · Score: 4, Insightful
      I would have to agree. One of the problems is that even Microsoft is still releasing products that are based on BizTalk and Commerce Server, which seems sort of counter-intuitive. If you look at some of the new products being released by Microsoft Business Solutions (aka Great Plains), you have to wonder what they were thinking. Their business portal product is based on BizTalk, their .NET CRM application talks to the financial application through BizTalk, and they still have their e-commerce packages that are based on plain-old ASP and COM+.

      I will say though that I have recently been working on a project to allow a unix legacy system talk to a web service to do real time credit card authorizations from a COBOL application. Using GCC 3.3, libxml2, libxml++, and libwww to post to a web service, it appears to be transacting quite nicely. I can see a lot of legacy application adapters being developed in this manner in the future. Now if only some of the documentation of these libraries were better....

    2. Re:Reality is quite nice though by CynicTheHedgehog · · Score: 5, Interesting

      What I like about .NET:

      - The way codebehind is implemented, and the ASP.NET page lifecycle
      - Custom controls
      - Properties and indexers
      - Collection and foreach
      - Events and delegates
      - app.config and web.config
      - XCopy deployment
      - Newsgroup support

      What I don't like about .NET:

      - Buggy implementation
      - Crappy file I/O package
      - DLL Versioning (Pain in the ass. Just deprecate!)
      - Crappy API documentation
      - A lot of default behaviors, little of which is intuitive, predictable, or documented
      - The inability to use classes effectively for things they weren't designed to work for, even though they would be perfect for the job. This is largely due to shortsighted design and access constraints (private methods, un-settable properties, etc)

      In other words, I love the CLR design and syntactical shortcuts and hate the class libraries and implementation. The feature set is very wide but not very deep. It's painfully obvious where they've set their focus (ASP.NET, ADO.NET) and where they haven't (file I/O, date/time manipulation, string formatting, etc). You develop like lightening until you reach a point where you want to refine it a bit and make it do something very specific, then you spend weeks trying to figure out what it's doing, why it's doing it that way, and how to work around the default behavior.

      It's a good product for small projects, but if you're doing enterprise applications, you're better off implementing a lot of this stuff yourself. A good example are typed DataSets...they manage rowstate and updates and such, which saves a lot of time in the short term, but a lot of the time you want much finer control and a looser coupling between business objects and the data schema. Unfortunately, you can't touch the rowstate directly, which leads to some pretty interesting (and ugly) solutions.

    3. Re:Reality is quite nice though by FatRatBastard · · Score: 5, Insightful

      Agreed about technology vs marketing hype, but there's something about .NET that has bothered the hell out of me. They technology (or at least the hype around it) is at odds with the business reality at MS.

      MS claim that .NET will be open and cross platform, but the only way this can happen is if cross platform means "across *our* platforms."

      Currently MS makes the bulk of their money from the OS and Office. If they truely made .NET cross platform (or let something like Mono take hold) then that starts to eat into both their server and desktop base. I mean, why would anyone pay MS $$$ for each desktop / server if you could choose between *BSD / Linux / VMS / Un*x / et al? For instance, if I had cycles to burn on an IBM mainframe it would make sense to host my .NET services on it, assuming it was truely cross platform.

      So basically I fail to see how MS could inplement a businees plant such that .NET would generate more money than the potential loses from the hit they'd take on server / desktop licenses.

      Again, MS makes (prints???) money by selling OSs and Office (everything else is just a rounding error). You can be damn sure they're not going to do anything to threaten that cash cow. The interesting thing will be how MS ties .NET to its own OSs. The big draw about web services is that they're supposed to facilitate easier communication / data sharing between disparate systems.

    4. Re:Reality is quite nice though by Glock27 · · Score: 4, Interesting
      See, you linux junkies don't really know crap about MS, do you?

      Far too much, in most cases.

      In most cases, the CLR out-performs native Win32 because of better heap management, caching, and other little things here and there.

      Said heap management, caching, etc. couldn't have been implemented in a pre-compiled language?!? Sure.

      And there will be cross-platform compatibility once linux developers finish Mono.

      So long as Microsoft sees fit not to exercise it's massive patent portfolio. I'd sure bet my business on Microsoft playing nice...not.

      If anything that runs on a VM is slow - it's Java. It has to JIT everything before running it while the CLR JITs on demand and it even does that faster!

      That would depend on which Java implementation you're talking about. There are fully pre-compiled Java systems available, however the VM based versions are very competitive. They are certainly neck and neck with the CLR...and are available on many platforms, now. Even enterprise class platforms. :-)

      Java has tremendous momentum - which .Not has largely failed to affect.

      --
      Galileo: "The Earth revolves around the Sun!"
      Score: -1 100% Flamebait
    5. Re:Reality is quite nice though by Chester+K · · Score: 4, Insightful

      They technology (or at least the hype around it) is at odds with the business reality at MS.

      MS claim that .NET will be open and cross platform, but the only way this can happen is if cross platform means "across *our* platforms."


      .NET is about interoperability, not cross-platform execution. The big reason Microsoft is behind .NET is to get Windows a foothold in shops currently based around Unix.

      --

      NO CARRIER
  4. In Soviet Russia... by gowen · · Score: 4, Funny

    it's called .nyet

    --
    Athletic Scholarships to universities make as much sense as academic scholarships to sports teams.
    1. Re:In Soviet Russia... by Em+Emalb · · Score: 3, Funny

      You've had that one waiting in the wings for months now haven't you?

      Heh. Dr Pepper tastes funny after going through your nose. Yuck.

      --
      Sent from your iPad.
  5. New MS project announced! by Dark+Lord+Seth · · Score: 4, Funny

    It's called "Microsoft Passport"! I thought it sounded familiar but when I asked, they waved their hands at me and said "This project is new..." so it has to be! Can you imagine the advantages? Logging into hotmail automagically using MS Passport, using Passport as some sort of all-round login system... Heck, you can even use MS Passport as an instant messenging system! Wow!

  6. Time to move on? by bgarcia · · Score: 3, Funny
    Is it time for Microsoft to move on?"
    Yes. After 3 years, they should be coming up with some new innovative idea that they will bet the company on <rolls eyes>.
    --
    I'm a leaf on the wind. Watch how I soar.
  7. NO tolerance for standards wars by mekkab · · Score: 4, Insightful

    GM's Scott issued a strong warning to Microsoft, Sun and the other players in the Web services industry, that enterprises will not tolerate the standards wars of the past. "We have no appetite for it," he said

    Exactly, so he and everybody else is sitting back and waiting for a clear winner with mature functionality to materialize.
    In other words, he's saying "Screw .net, let some other schmuck take the cost of developing it. WE got screwed on ISO networking and Token ring! Twice bitten, 3 times shy!"

    --
    In the future, I would want to not be isolated from my friends in the Space Station.
    1. Re:NO tolerance for standards wars by zero_offset · · Score: 4, Interesting
      And again, the part everyone fails to understand about .NET (mostly due to Microsoft's crappy marketing) is that remoting in .NET is a fully pluggable artchitecture. So whatever standard emerges, you can still use .NET. Just handle your remoting in a reasonably abstract way, then switch the damned thing on the fly.

      Hell, some of the basic tutorials that came with the .NET beta (and probably with the release version, I never got around to looking at them again) showed you how to do this. A local binary component communications channel was transparently switchable to an HTTP-based protocol using policies which were controllable by an administrator... re-programming and re-compiling not required.

      Fight all the standards wars you want, then just plug in the winner and get back to work.

      --

      Slashdot quality declines as the number of hot grits posts decreases. - Provolt's Law, Apr-09-2005

  8. What? by Anonymous Coward · · Score: 5, Funny
    virtually none of the promised advantages have come true
    What nonsense. I use .NET every day and it has delivered all of its promised advantages.
  9. It takes insight to notice these things take time. by Sheetrock · · Score: 5, Insightful
    Very few of today's Internet standards were recognized even within three years as standards. Usenet took seven before it became ubiquitous, IRC took at least four (with DCC still not part of the spec), and even the WWW took six. Remember, it was fundamentally a revision of Gopher technologies, which in turn were an iteration of something else (Archie?)

    Most of .NET was puffery, to be sure (I read a piece on MSDN more or less admitting this), but that's largely because it was a working title given to a number of next-generation technologies that may or may not pan out, many of which haven't been released. You can't really consider C# or Hailstorm to have been around and competing for three years, can you?

    --

    Try not. Do or do not, there is no try.
    -- Dr. Spock, stardate 2822-3.




  10. fun with fud. by x0n · · Score: 5, Insightful

    Woe betides us once more: brace yourselves for another flood of misinformed, biased and downright incorrect assertions from both sides of the fence. Please, no "c# is java", ".net is slower than java" or other such empty statements. If you've worked with .NET for 6 months plus (remoting/asp.net/interop/ado.net), great. We welcome your comments. Perl monkeys need not apply.

    Likewise for you "java" programmers out there who in actuality have only ever compiled one applet, and it was a recompilation of a decompiled shareware scroller that you removed the copyright notice from. Well done. On the other hand, if you've solid experience developing beans, rmi and other such projects, we also welcome your comments.

    The rest of you shut up and learn.

    Rant over.

    - Oisin

    --

    PGP KeyId: 0x08D63965
  11. Hyperlinking frenzy by palad1 · · Score: 4, Funny

    Hi,
    I am all for html hyperlinks but I think I can find Eweek's website, as well as microsoft's website and its dot net section, especially after three years.

    Of course I know, I wouldn't be bothered if I didn't try to read the article. Who reads the articles on slashdot anyways?

  12. What about Linux by fudgefactor7 · · Score: 4, Insightful

    All the Linux vendors out there pretty much said that they were going to take over about 3 years ago too...is it time for them to move on as well?

  13. all about the Benjamins by AssFace · · Score: 5, Insightful

    say the words "dot net" and you get to add so much to the cost of projects that it immediately makes it worth it to switch over.

    that is the only reason I could see why .NET might ever catch on.
    I'm not saying it is a useless bit of technology, I'm just personally partial to using any number of existing technologies that do the same thing and are cheaper to implement.

    my current employer is retarded when it comes to computers and they paid someone to do a very basic web project in "dot net" because there was a general misunderstanding in the difference between the domain and the programming structures.

    In the end it cost them a ton and now it is costing them more to maintain. I am trying to get them to port it all over to a much lighter system (php on linux or freebsd), but they are currently not interested.

    --

    There are some odd things afoot now, in the Villa Straylight.
  14. 's GOOD by joynt · · Score: 3, Insightful

    I'm not afraid to admit it, I like .net. My job has become a whole lot easier, taking projects that could have taken weeks and turning them into days. ADO .net was my best friend last month and c# was my mistress. My company is re-doing just about everything as a web service and .net is making it that much easier. The fact that Visual Studio makes everything so easy just takes the load off of our extremely tiny R&D group which is relied on for every single technical question/project/advice. Maybe .net isnt all that it could have been, but it is great tool for any developer... unless you dont have windows, then I guess your just screwed.

  15. .Net a complete success by tanguyr · · Score: 5, Insightful

    .Net was (and still is) a marketing ploy to counter the sudden gains in mindspace being made first by Sun with J2EE and later by "web services" in general. Judging from the fact that most PHBs have heard about it it seems to have worked quite well - the fact that they (or, it seems, almost anybody) have no idea what it does it besides the point. As long as MS is still getting column inches ("comparing .Net to Crack Cocaine" or whatever) then it's working for them just fine, thanks. This isn't anything new - MS practically invented the word "vapourware" back in the 90's. I'm not saying .Net does nothing, i'm saying that the engineers got there after the marketing department and the advertising budget.

    /t

    --
    #!/usr/bin/english
  16. .Net by Anonymous Coward · · Score: 5, Funny

    At least it's doing slightly better than GNU/Hurd.

  17. Question by pubjames · · Score: 5, Funny


    Has anybody worked out what it is yet?

    1. Re:Question by Sven+Tuerpe · · Score: 4, Funny
      Has anybody worked out what it is yet?

      The result of a bug in Word. It was supposed to be .NOT but Word autocorrected it and nobody noticed.

      --
      http://erichsieht.wordpress.com/category/english/
    2. Re:Question by Drakonian · · Score: 3, Interesting

      I couldn't figure it out until I read this Ars technica article on .NET. Highly recommended.

      --
      Random is the New Order.
  18. .NET was a success, Microsoft-style by shoppa · · Score: 3, Interesting
    By announcing .NET as vaporware, Microsoft prevented any other vendors from doing anything similar. Not only that, but because ".NET" was going to be The Next Big Thing, they prevented other software houses from making any sales of existing working software while everyone waited for .NET to come along.

    This is hardly a new strategy for Microsoft. And in the .NET case they succeeded on a collosal scale.

  19. Re:You are kidding, right? by Anonymous Coward · · Score: 4, Informative

    Obviously moderators have no clue what .NET even is because it has nothing to do with what he is talking about. The only part of .NET that exists now is the programming framework. I highly doubt that his "ping" times have been halved because he use C#. Even a moderator with a slight knowledge of computers will realize that ping time has nothing to do with the OS.

  20. Re:You are kidding, right? by linuxci · · Score: 3, Insightful

    Sounds like MS Marketing BS, but 1 and 2 are possible on most UNIX systems, Linux and pre-.net versions of Windows, so that's not new.

    Why would .net affect ping times? If it did, was this compared to older versions of Windows, Linux or Solaris?

    A few weeks uptime is nothing to brag about.

    As for total cost of ownership, it's always a case of your mileage will vary, it depends on where your staff has most skills. Personally I consider maintaining unix systems a lot easier and a lot less effort so that would cut down the TCO in that case. Get a bunch of McSE's and the results would be different, as would getting someone with an equal balanced knowledge in windows and unix.

  21. Speaking for myself by m00nun1t · · Score: 5, Insightful

    As a pretty experienced web developer, I've worked at some level (some more than others) with most of the popular platforms: ASP, PHP, Cold Fusion, JSP and ASP.NET (very little perl, which I've always regretted if just for completeness).

    From that perspective, ASP.NET just totally rocks my world. I can debug more easily. Performance is better. It encourages good architectural practices. And my productivity has gone through the roof - I haven't done any formal tests but based on personal experience I'd say I can develop at *least* 30% faster with ASP.NET compared to any other platform, possibly more. The difference is most pronounced in more complex systems where it really shines. For less than, say, a thousand lines of code it probably doesn't save as much time, but I rarely work on that anyway.

    So, maybe .NET has "failed" and maybe not, but for me, ASP.NET has improved my working world radically. Don't knock it till you've tried it.

    1. Re:Speaking for myself by pubjames · · Score: 5, Funny

      From that perspective, ASP.NET just totally rocks my world. I can debug more easily. Performance is better. It encourages good architectural practices. And my productivity has gone through the roof - I haven't done any formal tests but based on personal experience I'd say I can develop at *least* 30% faster with ASP.NET compared to any other platform, possibly more.

      I absolutely agree. Since discovering .NET my life has changed! I can concentrate for longer, I'm more confident with girls and my armpits have a wonderful spring morning freshness. .NET, because you're worth it!

    2. Re:Speaking for myself by truthsearch · · Score: 4, Insightful

      Other than Cold Fusion I've also worked with all of these. The largest learning curve definitely goes to ASP.NET. My overall preference is easily PHP. One factor is many things can be done with far less code in PHP than ASP.NET. The only advantage ASP.NET has over anything else is the tool, VS.NET. It's not the technology that's saving development time. It's the tool helping to write the code and debug that's the real time saver. So from a business point of view it may be the right choice since the tool's good enough to make up for some overly complex platform requirements. But if you get good at manually typing PHP it's far and away superior based on my experiences and from others I've read.

    3. Re:Speaking for myself by m00nun1t · · Score: 4, Insightful

      You are right about the IDE being a big part of the advantage of ASP.NET (and I should have mentioned it), but it certainly can't take all the credit.

      IMHO the biggest thing in ASP.NET that leaves PHP for dust is the separation of code from layout. The other big one (and closely related) is easy componentisation. These two make life so much easier, and speak to much of the architectural niceties I mentioned in my original post. Not only can it be done, but it's easy to do and the flow *encourages* you to do it. I love a tool that makes it easy for me to do things the right way.

      I do agree ASP.NET has a steeper learning curve than PHP (or any of the others listed, with the possible exception of JSP). Based on my experience, it's a price well worth paying.

      For a small project, PHP would usually be my first choice, but anything medium to large, IMHO, ASP.NET is just miles better. Not trying to start a religous war as I do respect PHP, but I thought this was interesting, a comment from a respected member of the PHP community: http://www.edwardbear.org/blog/archives/000189.htm l

    4. Re:Speaking for myself by scrytch · · Score: 3, Informative

      .NET and php are orthogonal. There's one effort underway to port PHP to .NET, for one. I recommend getting some understanding of the ASP.NET architecture before making statements like this, because it's like saying "php is better than fastcgi" (considering you can run php as a fastcgi).

      The main problem I have with PHP is that it's not OO. Objects are syntactic sugar for grouping functions, but objects are by default copied by value, and worse yet, always compared by value, not by identity (so when $a === $b at one point, it might not later, even with the same objects, because they got the implementation so wrong). PHP5 is supposed to fix that, though things like its error handling still leave much to be desired (try eval'ing code with a syntax error -- your script will die, and you can NOT stop it. sort of defeats the purpose of eval, don't it?)

      But that's all off the topic of .NET, which is a platform, whereas PHP is simply a language.

      --
      I've finally had it: until slashdot gets article moderation, I am not coming back.
    5. Re:Speaking for myself by sheldon · · Score: 3, Insightful

      Without using frames I just wanted to dynamically change the controls within a page.

      Huh? There are multiple ways to do this, at the simplest level you throw a number of controls on the screen, possibly grouped with panels, and then change the Visible tag accordingly to display the one you want.

      On a more complex level, you can create a number of controls which all inherit from a base class, and then instantiate the one you need into the main page. I've been working with the Dotnetnuke framework, and this is the entire basis of how it operates, as custom controls inherit from PortalModuleControl and are loaded dynamically at runtime according to database criteria for the page.

      We gave 3 others a chance at it, two of them full time and true Microserfs.

      Microserf? What is this, a contest to see who can act most like a child?

      Since then I've tried other things and come to the same conclusion.

      I guess it's nice that you came to a conclusion, it's just unfortunate that you are trying to extend your technical incompetence onto others.

      ASP.NET has rocked my world as well, and I am barely even scratching the surface of functionality.

  22. Re:So much... by mgs1000 · · Score: 4, Funny

    "Double or nuthin'?" - Steve Balmer

  23. .Net was never clearly defined by cait56 · · Score: 5, Insightful

    Three years in and I believe it is fair to say that most people do not understand exactly what .Net is -- other than a vague "trust me" monolithic solution.

    Which I believe is the core of its problem. While there are some fools who will buy anything that fill in the name of their favorite supplier offers, more of the market wants to make decisions for themelves.

    From the little I've had time to study .Net, there were a few aspects of it that were indeed superior to what had proceeded it on the market. But the information to make a cohesive strategy was just missing. What if I liked the characteristics of the run-time engine, but needed to stick with CORBA interfacing?

    The most telling flaw in the strategy, for me, was that you could find entire racks of books on .Net. But absolutely none that explained the basic wire protocols used. They were all "How to Program a .Net application inside one box using language Y".

    When I'm designing a system, the language used on each box is the last detail that I consider. I want to understand the interactions of the remote systems, how dependent they are on each other, how they evolve seperately, how the failure of one will affect the others, etc.

    1. Re:.Net was never clearly defined by zero_offset · · Score: 5, Interesting
      You are exactly correct in that most people don't know what .NET really is, and that includes people using it, and Microsoft itself. Once again, Microsoft marketing has screwed the pooch. They were so hot and bothered to tie .NET to the buzzword of the day (Web Services) that they overlooked a great deal of important features and capabilities.

      If you ignore the marketing noise, though, it is itself a cohesive strategy, but it's quite a wide-ranging thing and it's hard to get the right perspective on it. The problem is that you probably started looking too early. The first round of books were all written based on the betas (I reviewed many of them for various publishers), and they were all targeted at teaching the world the basics of .NET.

      There are now many books that explain the guts in great detail.

      To continue with your specific example, there are MANY projects which support or are working to implement CORBA remoting for .NET. A simple Google search for ".NET CORBA remoting" yielded tons of results.

      Microsoft marketing is Microsoft's own worst enemy...

      --

      Slashdot quality declines as the number of hot grits posts decreases. - Provolt's Law, Apr-09-2005

    2. Re:.Net was never clearly defined by johnmckeon · · Score: 4, Insightful

      Three years in and I believe it is fair to say that most people do not understand exactly what .Net is -- other than a vague "trust me" monolithic solution.

      It seems to me that this has been a problem whenever MS introduces a new technology (COM, COM+, ActiveX). I can find plenty of people using these terms, but no one can give me a two or three sentence summary of what they are. Unfortunately, it seems like .NET is having the same problem.

    3. Re:.Net was never clearly defined by cait56 · · Score: 5, Insightful

      On a point-by-point comparison, .Net frequently is superior to Java. It falls short on the fundamental points you raise: interoperability, and more importantly seperability. Using Java you know exactly which technologies you are embracing, and which you are leaving out. Java/XML, Java/RMI, Java/Corba... It's all your decision.

      The other feature that .Net has is superior native execution, it was designed to be translated to native code. The .net virtual machine is better defined than the JVM is. But I agree that on whole, the tradeoff is not worthwhile.

    4. Re:.Net was never clearly defined by IamTheRealMike · · Score: 3, Interesting
      .NET is going to be used heavily for Windows desktop apps anyway. People will use it, and love it.

      The fact is that Win32 is a steaming cowpat of an API. This is rammed through my head time and time again whenever I am forced to use it. It has some of the most braindamaged behaviours in the world - it's so bad that practically nobody uses it in fact. It's kind of sad, but it's not really possible to write Windows programs without a (usually expensive) IDE and wrapper library to help you.

      Well, .NET is mostly just Microsoft creating yet another wrapper, albiet one that doesn't suck quite as much as their previous attempts did. That's just as well, perhaps one day the sheer hell of Win32 will be banished forever, much the same way that nobody pokes the BIOS anymore to print stuff to the screen. To be honest, I think that'll happen more because of Linux than .NET replacing Win32 entirely, but only time will tell.

    5. Re:.Net was never clearly defined by scrytch · · Score: 4, Informative

      .NET is the new ActiveX. ActiveX by itself was this nebulous definition, but what it boiled down to was nothing more than COM. .NET boils down to three things behind the marketing umbrella name:

      * the .NET Virtual Machine: Basically the same idea as other bytecode compiled languages, like UCSD Pascal (ooh you thought I was going to say JVM, well sun didn't invent the idea). Write once, deploy anywhere where windows (or mono) is. It has some features not seen in JVM's, like cached JIT code, so it doesn't have to rerun the JIT every single time you run the app.

      * The .NET Common Language Runtime, including the system library: This is intended to replace the Win32 API with something as easy to use as most Visual BASIC libs, getting rid of HWNDS and HRESULTS and __farcall lpzsFoobletch and so on.

      * Web services: Really just the first application of the first two, but Microsoft is plugging this SOAP-based stuff like the second coming. I somehow don't see it replacing RPC for communication with system services, but there it is.

      --
      I've finally had it: until slashdot gets article moderation, I am not coming back.
    6. Re:.Net was never clearly defined by alext · · Score: 4, Interesting

      .Net has is superior native execution

      I'd be interested in some benchmarks. My experience in fiddling with some numerically-intensive code is that Sun JVM 1.4.1 is about 4 times faster than a Dotnet release of 18 months ago. I haven't tried a more recent version.

  24. Troll explained by metamatic · · Score: 4, Informative

    1, 2 and 4 are things UNIX has been able to offer for years.

    3 is highly dubious. What's the connection between SOAP, virtual machines, and ping times?

    5 is pure Microsoft marketing--look at their ads. Fact is, time after time independent analysis shows that TCO is lower for non-Microsoft solutions, both closed and open source.

    --
    GCHQ Quantum Insert installed. If only our tongues were made of glass, how much more careful we would be when we speak
  25. Re:You are kidding, right? by Michael+Hunt · · Score: 5, Insightful

    You, Sir, are a troll :)

    Albeit, a very good troll in that you ALMOST had me going until I read point 4. Upon rereading your other points:

    1) 'Single-source logons' are a function of AD/Kerberos under 2000/2003. In a corporate environment, they give you all the benefits you're claiming that .net does. The '.net passport' stuff hasn't really taken off (is anybody apart from hotmail and msn using it?)

    2) How does this have anything to do with .net? Remote access is a function of authentication (AD/KDC as above in a 2000/3 environment) and security (leased line or 'VPN'.) .net has nothing to do with the latter part of the equation.

    3) Since the various .net RPC mechanisms use a more verbose protocol than traditional MS/DCE RPC calls, I fail to see how this could be the case, unless you're using the 9/10 of your TCO saved in (5) to buy bigger pipes.

    4) My windows 2000 servers at work usually only get a reboot when someone installs a hotfix. Since the patch lifecycle is test->uat->production, we have ample warning for this. Uptime, on average, is around 5-6 months. These machines are everything from AD controllers supporting thousands of users, to RDP/MS TS boxes with 50-odd users each.

    5) correct me if i'm wrong, but isn't .net more expensive, being subscription based? I realise that this isn't the whole of the TCO equation, but windows servers are windows servers, and no amount of point and click window dressing is going to reduce the amount of manpower required to run systems well.

    I'm no Windows apologist (check my posting history,) but surely your argument is bunk :P

    IHBT. IHL. HAND.

  26. Re:It can do most of what they say... by GrantZ · · Score: 4, Funny
    Absolutely!

    I am a software engineer and have written apps in Java, VB, and PERL. I have a friend who has been an M$ developer for about 5 years, and just called me a month or 2 ago to let me know that there is this thing called "design patterns" ... just for .Net. There is some M$ website that apparently broke the lid open on the concept of patterns this year (don't know URL). Of course, so did Christopher Alexander in the late 70's, and over 100 others since then... but M$ didn't endorse them until this year. My friend is cool and all, but the general software engineering ignorance was staggering.

  27. Re:they have ZERO chance by Malc · · Score: 3, Informative

    Have you actually developed ASP.Net pages? It doesn't sound like it. It's certainly not restricted to rebranded Visual Basic. It's language neutral. I've worked with some developed with C#. Visual Studio .Net is an excellent tool too... it's fantastic for debugging multiple binary and scripting processes, and stepping almost transparently straight in to database stored procedures and then back out to the web page. PHP4 might be good, but the current ASP.Net and its supporting tools are pretty good too. You have to pick the right tools for the right job, and sometimes that means ASP.Net rather than PHP4.

  28. .NET = Windows API 2.0 by Anonymous Coward · · Score: 5, Insightful

    .NET has little to do with anything .NET. It's a new Windows API designed to turn Windows into a virtual machine like Java so it can be architecture independent. That's what CLR and C# and all the rest of that stuff is about. It's about MS getting off x86-32 and into a larger world of ia64, amd64, and maybe even ppc64. CLR is the new Windows runtime. Once the move is complete, Windows will be able to run on anything and apps will not have to be recompiled at all. This will make Windows more portable than *nix.

    1. Re:.NET = Windows API 2.0 by blakestah · · Score: 3, Insightful

      It's a new Windows API designed to turn Windows into a virtual machine like Java so it can be architecture independent.

      That statement is a laughable sham, and I am sure M$ is glad you brought it up. Windows controls the hardware, and not the other way around. It has been this way for a long time - Windows killed Alpha, for example. .NET is all about providing a web programming interface that fits better with Windows than Java, to force lock-in on the operating system AND the network interface. It is like Java without platform independence, so that Microsoft can make even more money. Predictably, the developer tools are so simple even a Visual Basic monkey can make a web application. Predictably, the bytecode interpreter is buggy and insecure - this is not what will win the battle. Microsoft will make life REALLY easy for developers, they will make development costs low for web companies, and .NET will attempt to throw Java out the window.

      I wonder if Redhat and Sun's attempt to open source java will have any impact on this emerging battlefield??

  29. If Sun didn't invent Java would .NET exist? by wukie · · Score: 4, Insightful

    If Apple didn't implement Xerox's windows would Microsoft have created a version?

    If Apple hadn't invented multi-media for micro-computers would Microsoft have it's own implementation?

    Microsoft haven't done any (apart from Word for Mac, then later Windows) inventing of their own, and what they have done, has always been a poor copy! .NET is a perfect example.

  30. They must be doing SOMETHING right by chia_monkey · · Score: 4, Insightful

    Think about it...for three years they've been talking about this amazing .NET thing. And every year the masses go "what the hell is this?" and each year it gets a feature here dropped and a feature there dropped. And yet, after three years, people still talk about it. People still want to develop for it. People are still holding out from developing with any of the other options because of .NET.

    So...it may not DO anything just yet, but in terms of stalling development on other platforms and continuing to put MS in the news, I'd say it's a success.

    --

    "He uses statistics as a drunken man uses lampposts...for support rather than illumination." - Andrew Lang
  31. Re:From "Great" to old ideas by zero_offset · · Score: 3, Interesting
    C# is too inspired by Java? Java syntax was inspired by C. Big deal. C# is still a better language. The devil is in the details. Show me boxing in Java.

    .COM is not "included in" with the CLR in any way. The CLR supports something called COM-interop, but that's just backwards compatability. You can make a fully compliant CLR on another platform which never goes near COM but still runs full .NET applications.

    And finally... "ASP.NET is lauging out loud"? What the hell does that even mean? I personally don't like ASP.NET, but at least it's far more consistent than PHP is or probably will ever be.

    Return to class, you obviously have some catching-up to do.

    --

    Slashdot quality declines as the number of hot grits posts decreases. - Provolt's Law, Apr-09-2005

  32. Re:Well... by chef_raekwon · · Score: 5, Funny

    try to cram linux down everyone's throat as the be-all, end-all solution to everything

    ahhh, Linux. The cause of, and solution to, all of life's problems....

    --
    We're like rats, in some experiment! -- George Costanza
  33. Re:So much... by PhysicsExpert · · Score: 5, Interesting

    The main problem with .Net is that it ties you to a specific OS which makes it a pain from a business economics point of view

    Here at the lab for example we run a lot of mission critical syatems written in Java. Although these systems are ultra reliable they are slow and as such we are severely hampered by the hardware we can afford.

    A few months ago we got a .Net system to trial and we migrated some of the apps over to it for evaluation. The results showed that .Net was so much faster than java and the support for multi threaded processes far superior. From a technical point of view we wanted to switch but the university wouldn't let us. Switching to .NET would mean swapping from NT to XP and they just wouldn't meet that level of cost.

    If someone would port .NET to linux it wuld become a viable option but until then I think will only ever be a niche product.

    --
    All that glitters has a high refractive index.
  34. In my Experience . . . by Badgerman · · Score: 4, Insightful

    The results are really odd. .NET adaption went slower than I expected. It was crammed down our throats . . . and no one really seemed to care.

    Then, recently (last year) I've seen a real explosion in .NET. Literally I think 75% of Microsofts pushing the tool was useless or even backfired. Time seemed to be needed.

    As a developer who has worked in a variety of languages, OVERALL, .NET has some good ideas mixed in with some unexpectedly lame ones. In general I'm able to develop faster and more efficiently (In some cases I've developed ASP.NET applications over twice as fast as ASP, yet with far less ASP.NET experience), but there are moments of strange and odd roadblocks.

    Do I think .NET will rule the world? Not really. It's just one of many options. Web development and related technologies seem to be in a phase that's a mix of overcautious and overenthusiastic, and I don't think anyone is sure where things are going right now.

    Will Microsoft give up on .NET? I don't expect they will - too much of an investment, too much behind it. It'll get altered and poked and prodded and integrated, but it'll be around in some form for awhile.

    --
    "The Sage treasures Unity and measures all things by it" - Lao Tzu
  35. Re:Emperor's New Clothes test... by finkployd · · Score: 4, Informative

    A fairly stable OS that will run on a majority of hardware

    I'll give you fairily stable (2000 and XP are pretty good) but majority of hardware? Sure, you can have any processor you want as long as it is x86 (or StrongARM if you want winCE). I can't run Windows on Sparc, s/390, PPC, Alpha (well, NT 4 could), IBM's new 970, etc. Sure it supports the majority of consumer devices, but there is much, MUCH more to the computing world than Mom and Pop's PC. Windows is very small outside of this realm.

    I have yet to find a distro of linux that won't mess up on my IBM laptop after about 2 weeks of running or will recognize all of my USB stuff on my desktop properly on install

    Which laptop and which distros have you tried? I have run Redhat 7.3 and 9 on my T23 and have never had a problem (including using my USB devices). I might be to help you out or at least point you to some docs if you interested in getting it running.

    Finkployd

  36. .NET Proof Of Concept by Ilan+Volow · · Score: 4, Funny

    .NET proves without a doubt that it is possible for an entire industry to fake an orgasm.

    --
    Ergonomica Auctorita Illico!
  37. .net web services by blowdart · · Score: 4, Informative

    Microsoft did a bad job marketing .net. First it was web services, then came SQL.net and Windows.net. Even now article like the quoted eweek one talk about .net as it it's simply web services. Add to this the weenies that talk about passport as if it's the be all and end all of .net.

    So what have they delivered for the developer? (what follows is my opinion, as someone who has used it and is still using it)

    Well there's Visual Studio, an excellent IDE for those that use IDEs.

    There's C#, VB.Net and an architecture that has allow Python.net, Perl.net, Fortran.net, Cobol.net and others. The multitude of languages comes into its own when you realise that objects written in one language are easily used in every other language, so you can have 1 developer using Perl, another using C#. Try that in Java. Try any cross language development in Java.

    There's the .net framework, an nice OO library which is, of course, available to any .net language.

    There's ASP.net which makes development of event driven sites a hell of a lot easier than embedded your own hidden frames and attaching page loads of those frames as javascript events trigger.

    There's WinForms, yet another forms interface, but as it's usuable in any language there is no more bodged MFC.

    Of course you do have web services, easy SOAP libraries, really nice XML support, remoting and other funky stuff.

    Should MS give up? Hell no, they've produced a wonderful environment for developing for windows. Developing more than web services.

    I don't think you can comment on .net unless you've used it. Journalists need not apply, nor should MS marketing people :)

  38. Heck no they shouldn't be moving on.... by Asprin · · Score: 4, Interesting


    There are some compelling advantages to .NET -- REAL compelling advantages. The thing is that it's takes a boatload of time for a new development platform to get to the mainstream: You're looking at two or three years to get the developers comfortable enough to start working with it, then another two or three years to get their apps ported over and another year or two to roll those out to customers.

    I figure we should start seeing real concrete examples of the advantages of .NET in, like 2005-06.

    Don't believe me?

    USB.

    Or even better, how about Win32? We *still* have at least two industry-specific Win16 apps that are under a current maintenance contract. Hell, most of the non-MSOffice Win16 crap was just replaced around four years ago with the Y2K upgrades, so we're still in the process of depreciating it!

    All of MS's apps will be .NET in November, but contrary to what the open source community believes, MS Office will only get you so far -- it is by far not the most important piece of software we run. The developers are the key, and MS understands this. You need to get **THEM** interested in developing on a new platform (.NET, MONO, Java, LAMP, ELF or whatever) about five years before you want anything to happen.

    --
    "Lawyers are for sucks."
    - Doug McKenzie
  39. What .Net REALLY is by Trolling4Dollars · · Score: 3, Insightful

    To misquote David Byrne, its, "...same as it ever was..."

    Microsoft is simply taking what they already have and making some changes in the way these components work together and within the context of the internet. The end result should be a computing experience that is fairly smooth to the end user and provides a lot of what's already out there but with different names and faces. This is why they claim to "innovate". Innovation is taking existing "stuff" and using it in new ways. That's not exactly what they do though. Instead they take existing stuff and use it in the same ways they are already used but call them something else.

    Examples:

    In UNIX we have daemons
    In Windows they have "Services"

    This provides enough of a distinction that the less technically inclined person is going to thing Services are somehow different. But they are really no more than daemons or backgrounded apps.

    In X Window System we have "Window Managers"
    In Windows XP they have the "Theme Service"

    Don't believe me? Go stop the theme service in XP and tell me what changes. Just the Window widgets and borders and the look and feel of the Start bar.

    In UNIX we have "mount points" for file systems.
    In Windows 2000/XP they have the ability to mount a drive in an empty NTFS folder.

    Microsoft is very good at taking these existing concepts, renaming them and then claiming them as their own innovations even though they haven't changed how the technologies are actually used. They've only renamed them. .Net is no different. It will be internet services integrated into the OS with all the "new security" that Palladium will bring and a big happy Microsoft smiley face on the front.

    Unix = Here's the internet. Go learn some stuff and have fun.

    Microsoft = Here's .Net. It's all ready to go... have fun! :)))

    Personally I prefer the Unix approach, but that's just me.

    Oh, I almost forgot:

    In Soviet Russia we only had two TV channels. Channel One was pro da. Channel Two consisted of a KGB officer telling you: Turn back at once to Channel One.

    -- Yakov Smirnoff

  40. Development good, marketing bad by boatboy · · Score: 5, Interesting
    When .NET first came out, our development team took the plunge, and it has greatly improved development time and the quality of our code. Where scripts and hacks dominated our development before, it's now run off compiled, modular code. .NET from a programming standpoint is a great tool.

    The only problem I see is MS's marketing strategy of attaching ".NET" to everything. This just confused the term. There really was no reason to call "Windows 2003 Server" "Windows .NET Server", and they finally realized that. My guess is that their marketing geeks saw the success of the "development phase" and went overboard.

    Whatever the case, .NET development is good, is here, and will stick around. Slashdotters should welcome it too- There's alot of open source momentum building behind .NET related tech. Take a look at the surge of C# projects in SourceForge, and the push to implement it in linux (Mono and Portable.NET).

    From what I've read here, most of the objections fall into two categories:
    • I don't know what .NET is.
    • I don't like Microsoft as a company
    On the first, if you limit the scope to .NET Framework and associated languages, it's pretty easy to grasp what it is, and see why it's good.
    On the second, if this is your sole reason, you're being illogical. That would be like brushing off a good idea from a fellow developer because you didn't like his office.
  41. I'm convinced by TheZax · · Score: 5, Funny

    What nonsense. I use .NET every day and it has delivered all of its promised advantages.

    OK, AC, you have me convinced with your insightful argument.

    I use .NET, AND.ORG/.COM/.EDU every day, and I agree 100%.

    --

    JWall: GUI client for IPTables
  42. Re:I'm not buying it either by finkployd · · Score: 3, Interesting

    Exactly, which is why it takes forever to develop and so many OSS jobs fails - it doesn't make any money! That is the point of business now, isn't it? Or have we finally switched to a utopian society, because that's what it's going to take for most OSS companies (ex: linux vendors) to profit).

    Remember, open source came about and was very successful long before it became a buzz word on wallstreet. Most of us could care less if anyone makes money on OSS, just like before. If the Johnny-come-lately corporations figure out how to make a buck on someone else's work, more power to them. If not, no skin off my back, I'll keep working on OSS and using it. So will, I suspect, many others.

    Everyone tries to measure the success of OSS by corporate standards. OSS will live with or without corporate support. Sure the corporations have made it more "legit" in the eyes of some larger companies, and have certainly raisied awareness by bringing the concept into the open. But hey, if they all pack up and leave tomorrow you think OSS will go anywhere? Sure it will be smaller. It will also again be primarily comprised of folks who genuinly care about what they are doing and enjoy it, and well no longer have the wannabe coders and con men just trying to make a quick buck.

    Besides, Redhat seems to be doing ok (considering the economy right now). Mandrake filed for Chapter 11 but appearently they are back on the right track and just signed a large deal with HP. IBM is...well IBM. What is changing is every yahoo that thinks they can write a general utility (or internet client, or database, or whatever) and make it rich off of that is getting a rude awakening.

    OSS software in many cases is not quite up to par with commercial offerings. However the rate at which OSS software is improving is staggering. The commercial world seems stagnant. I don't see much improvement or innovation coming from there at all. Most just seem to be reinventing existing tech or adding useless eye candy.
    Microsoft Active Directory? I liked it back in the 90s when it was called DCE and Kerberos. .Net? A common runtime library for multiple languages? OS/390 has had that for a good decade as well also. SOAP? gee we haven't seen RPC with discovery features before. And let's face it, there is almost nothing that commercial software can do that a determined OSS coder (or team) with enough free time cannot duplicate. Baring some kind of global ban on the concept of Open Source, I just don't see it going away or losing momentum.

    Finkployd

  43. .NET is hurting development by wandazulu · · Score: 5, Interesting

    I'm a Windows developer who in the year 2003 is using a product that came out in 1998. The venerable Visual Studio 6. The first version of VS.net gave absolutely nothing to straight C/C++ developers who were not interested in C# or windows forms or what-have-you, but instead wanted to write good solid code using an ISO-standards compliant compiler for backend work. VS.net gave us nothing new.

    VS.net 2003, that's a different story. It does all the things I want to do in a C++ compiler, but apart from the cost, what do you suppose is keeping the bosses from approving it? That's right: .NET. I have told everyone that it actually has a decent C++ compiler, but everybody thinks that it can only be used for .NET work.

    So here I am, about to go back to a compiler that has no partial template specialization, a version of STL that I have to patch *by* *hand*, and if I want to look something up? Well, I've got my msdn help files from October 2001 to explain it to me, because that was the last version that integrated with VS6.

    By pushing .NET they've done a good job of alienating the core base of people who write the back end code where too-fast-is-not-fast-enough. Maybe it'll come to the point where if you want to write services or databases or anything where speed and size are most important, you'll use a totally different compiler, say, Borland or Metrowerks. But if you're going to do that, why not also look at other platforms, say, Linux?

    Just my $0.02

  44. Re:So much... by Randolpho · · Score: 4, Informative
    The main problem with .Net is that it ties you to a specific OS which makes it a pain from a business economics point of view
    Um.... MS is currently developing the .Net framework for *nix, at least according to this article (2nd to last paragraph), but until it's finished, there's the DotGNU Project, or Mono to tide you over.
    --
    "Times have not become more violent. They have just become more televised."
    -Marilyn Manson
  45. I have to agree by uradu · · Score: 4, Insightful

    I don't know how much platform independence has been a consideration, but they probably just got sick and tired of plain old Win32 and MFC. If nothing else, it gave them a chance to finally bring out a decent framework, just like everybody else already has. Must be so liberating for them to finally be able to code a dialog box dynamically without having to fool with resources and message map macros. Microsoft have finally discovered proper OOP and class frameworks. Welcome to the '90!

  46. It's all about the Pentiums by Joe+U · · Score: 4, Interesting

    We're all missing the real point of .net

    The true reason behind the .net push is to create a bunch of easy to use high level languages to compile down to basically the same code, then let that code run on Win32 platforms and Win64 platforms without making changes.

    When the 32 to 64 bit switch starts, the .net apps will be ready to go. The win32 apps will require a translation layer.

    Combine that with the fact that the Windows (NT/XP) kernel already supports multiple architectures, win32, posix and os/2 are the 3 common ones. I'm willing to bet that .net will show up in the kernel in the next version of Windows.

  47. Re:It actually outperforms J2EE by a lot by Inf0phreak · · Score: 4, Insightful
    Consider this: Microsoft's EULA states that you may not publish a review of .Net's performerance without their explicit written permission. Now tell me if you really think that there will be any negative reviews of it?

    MS knows it's a dog. It's as simple as that.

    --
    ________
    Entranced by anime since late summer 2001 and loving it ^_^
  48. Re:So much... by Mr_Silver · · Score: 3, Insightful
    The main problem with .Net is that it ties you to a specific OS which makes it a pain from a business economics point of view

    The main problem with Office and Exchange is that they also tie you to a specific OS. Yet they seem to have done rather well.

    I'm sure .Net has many failings, but only being tied to one OS' is probably not the vast majority of companies lists. There are plenty of places out there that are happily MS-centric.

    --
    Avantslash - View Slashdot cleanly on your mobile phone.
  49. Re:From "Great" to old ideas by goodviking · · Score: 4, Interesting

    Show me boxing in Java.

    OK. Boxing, Typesafe Enums, ...etc. It's a fun read.

    When Java was first released, umpty squat years ago, it introduced a lot of good concepts to the wider programming community (yeah yeah, smalltalk blah blah blah). The good news is, the language is adapting and evolving based on a community input process, and real world feedback. There are some things that maybe should or could have been done in different ways, but all in all, I keep comming back.

  50. Re:It takes insight to notice these things take ti by pmz · · Score: 4, Funny

    You can't really consider C# or Hailstorm to have been around and competing for three years, can you?

    With Microsoft, yes, we can. Anyway, I was suprised to read that it's been three years already. This means we're due for .NET's replacement next year. Perhaps, this time around, we'll see a microkernel architecture with XXML (extensible XML, yea!) all implemented within a web services-based virtual machine. With that in 2004, I can't wait for 2008!

  51. Silly by Overly+Critical+Guy · · Score: 5, Insightful

    It is far from time for them to move on. Longhorn will be entirely .NET based. The latest betas already have explorer.exe running as .NET managed code. The old, crufty Win32 that Slashbots loved to bash is finally being replaced, and all Slashbots can do is find new ways to complain.

    This is just Slashdot getting its weekly naysaying in. .NET is coming and will be here to stay with Longhorn, and enough people like .NET to have started work on a version for Linux.

    --
    "Sufferin' succotash."
  52. Re:J2EE by Get+Behind+the+Mule · · Score: 5, Insightful
    If its time from Microsoft to move on from .NET then its time for Sun, IBM, Oracle, etc to move on from J2EE.


    That's one company with the one technology, and three companies plus "etc." with the other. Wouldn't it make more sense for Microsoft to drop .NET and join everyone else with J2EE?
  53. Re:Not all your base belongs to us by nick_urbanik · · Score: 5, Funny
    Your sig (you may change it in response to this, I hope):
    chown -R us ~your/*base*

    Sorry, but I think that you may have meant by your sig:
    find ~your -name '*base*' | xargs chown us

    The problem with your sig is that you only change the ownership of the base immediately below ~/your home directory, not all your base in directories more than one level below. The problem is that the shell will only expand the *base* in the home directory.

    I hope you can further develop your base chowning skills further, so that all of it belongs to us.

  54. PHP and OO by tolan-b · · Score: 3, Informative

    When we use PHP (which we use for projects that we need to get out the door faster, amongst other reasons), we always write in OO. Given the choice we work in J2EE because of it's strong typing and enterprise features such as distribution, transactions, scalability etc..

    While PHP4s OO support is far from all it could be (no default pass by reference...), you can still seperate out into nice data abstraction / business logic / presentation layers just as well as most other OO languages. Hell we even use the J2EE enterprise patterns in PHP4.

    PHP5 is looking set to fix most of the annoyances with PHP4s object model, adding unified constructors, method argument hinting, interfaces, pass by reference by default and so on.

    My point is, although a lot of people see it as such, you shouldn't write off PHP4 as a purely procedural language

  55. Technical Stuff by Joe+U · · Score: 3, Insightful

    Just to clarify, win32, posix and os/2 are not kernel archetictures, they are API's for the kernel. (There's a document somewhere I read about 6 years ago that explains it better)

    x86, alpha etc are the platform archetictures. At the moment, x86 is the only one in use since Alpha, MIPS and PPC seem to be non-viable, at least to Microsoft, but I expect to see some new ones as time goes on.

    My point was that .net should be a native API in the next rev of Windows. .net on Win32 will only be around until the older Windows revisions become obsolete.

  56. Windows95 all over by MGrie · · Score: 3, Insightful

    Did anyone else get the idea, that Microsoft is in effect pullig the same management/technology stunt it did with Windows95/98/ME all over?

    E.G. Win95 mostly served the purpose of creating a middleway between DOS and the Windows Api. All DOS apps ran more or less, and all apps build in the "new" windows api worked a lot better (ofcourse). Then, after 5 years, when even the last software vendor had switched over, they could introduce Windows2000, that ran these Apps better than anything before it, and was build upon actually usable technology.

    So... think about .NET and it's primary feature of machine independent code.
    Could MS be planning to have programmers create all of the smaller, not that speed dependent frontend apps to the .Net runtime, so they can finally drop the ever aging 80x86 architecture sometimes down the road?

  57. You have GOT to be kidding me... by tenchiken · · Score: 3, Informative

    It's posts like this that make me want to abandon Slashdot after 5 years of faithfully following, commenting and posting stories. Let's set some things strait:

    (before anyone accuses me of being Microsoft marketting, I have no links to the company, and am a huge fan in OpenSource. I have both a windows and a Linux box, and I spend more time hacking on Linux for fun, and hacking on .NET to get paid....)

    1) Microsoft has completly committed to .NET. Longhorn's new features are all managed code.

    2) Microsoft's most profitable Business Aplications are being ported as we speak. BizTalk, Office, and the OS all have managed serviced components now, and the next version of SQL will have extremly rich CLR support.

    3)My experience as a Technologist is the reverse. We have gone from no .NET projects (all perl and Java) to four this year, and my guess is that we will see as many as six or seven next year (smallish shop).

    4) The knowledge curve works for you. My experience is that in Assembly 10% of stuff is "easy" the rest you need to look up, in C, 40% of the stuff is easy, the rest you need to look up, in C++ it's about 50/50, in Java it's closer to 75/25. In C# on .NET, it's about 90/10. That last ten can be a bitch, but no less then Java's 25%.

    5) Having strugled with AXIS and several other varients of Web Services for Java, I have to say, they pretty much suck rocks (GLUE excepted, although at least the last version I was playing with still equired source access to code to generate services). On the other hand, the extremly rich API and Metadata abilities in .NET make web services insanly simple (maybe to simple, new developers may use them too much).

    6) Interoperability rocks in .NET. Not just platform (mono is doing a great job) but also interop based on the WS-I stack.

    7) Java is at best a niche platform. When was the last time you saw any non server/specialized software written in Java? Of the top ten software software packages (Windows, Office, SAP, PeopleSoft, Oracle, SQL, Quicken, Quickbooks, TaxCut, Microsoft Money) how many of them are actually written in java? 0/10. Microsoft owns 90% of the CPU market. Microsoft has decided to slip .NET until Longhorn, but it is out there in the hands of extremly productive developers.

    8) .NET has only been released in a non beta form for about 1 year. Since then Microsoft has already done a major upgrade to the development platform, and a major release of the CLR. Whidby will add more features.

    9) Reflection, Inspection, Attributes and Events. Simpler in .NET, more powerful in .NET.

    10) ASP.net is a solid step up from ASP. Seperate of presentation and business logic is much more solid, the rendering pipeline is more powerfull, and the security features rock.

    11) ADO.net makes simple database projects (CRUD) easy. Will anyone use Datasets for a large enterprise application? Probably not, but it is still there and powerful.

    12) Sun fails the Dogfood test. Number of critical applications in Solaris that are or are being ported to Java? None, ask Sun why that is (not scalable, not fast). How much of Windows is being ported? The whole Shabang (see Longhorn). I will be happy to re-examine Java seriously for ongoing work when Sun's rm6 utilities (including the command lines) are written in Java.

    13) Not only that, Sun is now lifting features from .NET, clearly there is some new and cool features here to get the ever slow sun to actually change their precious language.

    14) Compact Framework. Share code between WinCE devices and your platform. Tie them together via Webservices with a single click of the mouse.

    15) Rich clients. Have the interoperability and accessability of the web without stateless programming enviornment and pretty graphics.

    16) Integrati

  58. .NET a definite upgrade, good competition for Java by shodson · · Score: 4, Insightful

    If you've been building Windows apps for a while you have welcomed .NET because it makes building Windows apps much simpler than the complexities of VC++ and rescues us from having to deal with the hoakiness of VB. As a long-time Java developer as well I am glad to have a full set of OOP features in a VM-like environment like there is in Java available to me. If Java supported the Windows desktop more elegantly and efficiently then .NET wouldn't matter as much, but Swing is dismally slow and cumbersome for Windows apps, though JDK 1.4.2 is supposed to be better. But look at the rift IBM's SWT has caused in the Java/desktop community.

    And I don't agree .NET is just about desktop apps. It makes building distributed apps easier as well, if you want to use web services. I do believe, however, J2EE is still a stronger alternative for large-scale distributed apps. But let's face it, nobody cared much about web services until .NET. Not that a lot of people care too much now, but it's seen as the future of distributed computing, from an internet-scale basis, by just about everybody. What else is there, CORBA? RMI? EJBs? Puhleeze. Firewall unfriendliness is the biggest challenges for these protocols. And the Java camp has been working feverishly to add web services support to their platform and developers have been demanding it. See J2EE 1.4, Apache Axis, Sun's WSDP, BEA's "as-easy-as-VB" WebLogic Workshop IDE for building web services, etc.

    The best thing .NET has done perhaps is light a fire under the pants of those in the Java camps. Since .NET's release Sun and the major Java vendors have been scrambling to "answer" some of the advantages of .NET and the cool features of C#. The JCP is trying to respond more quickly. The upcoming JDK 1.5 will have most language changes since 1.1 (generics, foreach iterations, attributes) in an attempt to meet or beat some of C#'s strengths over Java, etc. And the prospect of open-sourcing Java is becoming more of a reality as Sun's stranglehold on the standard has slowed the pace of Java's improvement and started to cause some splintering among some previously strong supporters of Java (aka, IBM, creating SWT, not showing up at this year's JavaOne, etc.)

  59. VA software - hello Java, goodbye .Net by kshkval · · Score: 3, Interesting

    The Department of Veterans Affairs is a large and influential health care entity... a lot of health care organizations look to the VA for software leadership. Last year, VA programmers started to develop the latest generation of new apps for the Computerized Patient Record System (CPRS), probably the most widely distributed and multifaceted GUI-based medical record app in the U.S. The coders worked for about 6 months with .Net and then junked the whole thing for a variety of reasons, adopted Java for the newest and most innovative apps and have not looked back. Of course, many of the VA programmers are still in love with MUMPS, but there are not many MUMPS programmers graduating anymore. Bailing on .Net and adopting Java has got to say something about the relative ease of programming w/ Java or at least the cost of software development.