Slashdot Mirror


Web Services Making Software Coexist?

jgeelan writes "Despite the competitive uproar, coexistence of J2EE and .NET will be the norm and most sophisticated IT organizations will deploy on both development platforms. Who says so? No less an authority than the CTO of J2EE powerhouse BEA Systems, Scott Dietzen, writing in this month's Web Services Journal. Dietzen acknowledges that an ongoing conflict is in progress between Java and C# and between J2EE and the .NET server family and is refeshingly honest, admitting that "there is some truth to the 'write once, test everywhere' complaint against Java." His overall conclusion: ".NET is finding a sweet spot for programmed user interfaces, while J2EE continues to enjoy its sweet spot for server-side applications." Unusual honesty by someone so highly placed. Isn't this just what the software industry needs more of, in these increasingly interoperable times?"

76 of 191 comments (clear)

  1. Honesty or idiocy? by AJWM · · Score: 5, Interesting

    ".NET is finding a sweet spot for programmed user interfaces,"

    On a single platform, perhaps. It's true enough that early editions of Java's Swing weren't the swiftest UIs on the block, Swing has to contend with being platform independant. How well does a .NET UI run on a Solaris workstation?

    The UI for most server-side applications is probably HTML, anyway, so I'm not sure what his point was. I suspect BEA is just making nice noises toward .NET to gain a foot in the door of MS-only shops, although it is certainly true that at the SOAP level .NET and J2EE could interact.

    We'll see how long that lasts when/if .NET market share catches up with J2EE. (Embrace and extend, anyone?)

    --
    -- Alastair
    1. Re:Honesty or idiocy? by TummyX · · Score: 5, Insightful


      On a single platform, perhaps. It's true enough that early editions of Java's Swing weren't the swiftest UIs on the block, Swing has to contend with being platform independant. How well does a .NET UI run on a Solaris workstation?

      The UI for most server-side applications is probably HTML, anyway, so I'm not sure what his point was.


      That is the point. C#, ASP.NET and VS.NET are the perfect combination if you want to make HTML based UIs. You just drag a button onto a webpage, double click and write the event handling code in C#. The C# is compiled into a server side component along with some ASPX pages. The UI is completely HTML based and cross platform. The HTML generated can be transformed to work on all types of browsers (utilising the features of each). Anything that can't be done client side is done on the server side.

      You pretty much write HTMl pages the same way you would write a standard GUI application and .NET takes care of the rest. Its a great way to program HTML UIs. And I think that was part of his point.

    2. Re:Honesty or idiocy? by wadetemp · · Score: 3, Informative

      How well does a .NET UI run on a Solaris workstation?

      Actually you answered your own question. It runs fine, if its an ASP.NET UI. Working on HTML/JavaScript based UI is nearly the same process as developing a client side UI in .NET, given the event-based programming model and similar UI classes for both. Granted, you can't yet run a pure Windows.Forms application on Solaris, but you didn't ask "how well does a .NET Windows Forms UI run on a Solaris workstation," did you? :)

    3. Re:Honesty or idiocy? by AJWM · · Score: 2

      You just drag a button onto a webpage, double click and write the event handling code in C#. The C# is compiled into a server side component along with some ASPX pages.

      Okay, I'll grant you that seems like a pretty cool development environment (for that sort of thing). But it isn't .NET specific, there's no fundamental reason why a similar IDE couldn't be done for JSP. Indeed, it probably already has.

      --
      -- Alastair
    4. Re:Honesty or idiocy? by AJWM · · Score: 2

      you didn't ask "how well does a .NET Windows Forms UI run on a Solaris workstation," did you? :)

      Well not specifically, no, but the context was comparing with Java and Swing. Swing is hardly the UI used by JSP or servlets, HTML/JavaScript is.

      Kind of a moot question, otherwise, eh?

      --
      -- Alastair
    5. Re:Honesty or idiocy? by RevAaron · · Score: 5, Informative

      I don't know about for Java, but VisualWorks Smalltalk (there's a free, non-commercial version for download for Mac OS, Mac OS X, Linux, Windows, many other Unices) that does something like this. Using one single UI builder, you construct a GUI for the traditional GUI application. From the same spec it generates, a web application and interface. You define callbacks and such just like you would for a regular app, and VisualWave (the web app toolkit) takes care of the rest of it.

      VisualWorks has had this ability for quite a while, at least 4 years or so, which was the first time I played with it. I don't doubt that there may have been something before it that did the same thing, but it preceeds .NET and probably even a similar Java tool.

      --

      Working toward a usable PDA environment in the spirit of Newton OS: Dynapad
    6. Re:Honesty or idiocy? by DunbarTheInept · · Score: 2
      The programmer's IDE is not a feature of the language nor the .net archetecture. For example, tab-completion of function names is not a feature of Visual Basic. It's a feature of MS Developer Studio.

      HTML generated can be transformed to work on all types of browsers (utilising the features of each)

      Or it could have just been written to te W3c spec in the first place. No, that wouldn't be the MS way. Instead make something that has to know which browser you are using and change its behaviour accordingly. (Which of course fails utterly to be *forward* compatable with new and improved browsers you haven't heard of yet. I'm sick of websites that tell me I need to "upgrade" to Netscape 4.76 or I.E. 5.0 when I'm running something *newer* that would work if the site would just send me the HTML it would have sent to one of those two browsers.)

      --

      Don't label something "offtopic" unless you know the topic well enough to tell what's on topic.

    7. Re:Honesty or idiocy? by zacks · · Score: 2, Interesting
      no one here seems to acknowledge macromedia products here, slashdot readers amkes the world seems to be php and mysql based... mysql is not a proper relational database (yet).... just becase something is free doesn't mean it's the best solution... when a developer costs more than one software license per day, the argument looks a little weak..

      the real agurment here is how long does it take to develop out of the box a simple or complex application... cold fusion is simple a much faster language, yes it's actually more 4gl than 3gl, but what are u trying to do? pull some data out of the database and display it....

      in cf that means 2 tags (opened and closed) and var names and html

      <cfquery name="test" datasource="localserver">
      select name, email, description
      from users
      where active = 1
      order by name
      </cfquery>

      <cfoutput query="test">
      #name# - #email#
      #description#
      </cfoutput>

      looks quite clean huh?

      why not look at at coldfusion mx, a j2ee application server, where the tag based language makes things simple and you can always fall back to java.

      The when you want a more complex decent ui than is possible with html, use flash, w3c dom is great but not so prevalent..

      and flash makes for a much for reliable user expierence than dhtml

    8. Re:Honesty or idiocy? by m3573 · · Score: 2, Informative

      Smalltalk has been phased out by IBM, and the widget elemnts etc are old.

      Squeak is being developed and it's open source: it looks like a toy but its approach to user interaction using "morphs" is interesting.

      Cincom (its smalltalk site slashdotted? :) ) is developing version 7 of visualworks smalltalk, and it will surely be out before i finish checking out all the features of version 5 :)

      The widgets are a little dated indeed, but being a very modular system there may be GUI enhancements to download, try looking around.

      I'm impressed with some smalltalk environment features, like being able to modify some code (which gets dynamically recompiled, no "build" command) and having the changes reflected on the application while it is running, being able to inspect and extend system classes (smalltalk applications merely extend the system, in fact), being able to save and restore all classes and variables i'm working with in a single image file or in distinct packages.

      I'd like to know if there is a java environment with similar features.

    9. Re:Honesty or idiocy? by TheAncientHacker · · Score: 3, Insightful

      But, some of us actually want to use features not in all browsers. I don't really want to have to code separate versions of every page for Netscape 1.0 and for Lynx. You see, the world has changed since 1994. Really. It has.

      Anyone who's done web pages for real has had to deal with browser compatibility. The ASP.NET approach of emitting different HTML for different browsers makes this a LOT less of a pain.

    10. Re:Honesty or idiocy? by RevAaron · · Score: 2

      IBM's VisualAge for Java has features similar to many Smalltalk environments. Surprise, surprise- it was written in Smalltalk. :)

      I personally do development in Smalltalk (using Squeak), and I love it. One of my projects over the last few years was enhancing the IRC client built into Squeak. I was adding the ability to have bots. In a couple days of hacking, I didn't have to restart the application once- all objects of the classes being changed had the updated methods as soon as I saved them. Then, I wasn't a newbie anymore, but it still amazed me then, and still does now. I shudder to think how much time extra it would take to have to recompile and restart after every insigificant change of code.

      Aaron

      --

      Working toward a usable PDA environment in the spirit of Newton OS: Dynapad
    11. Re:Honesty or idiocy? by AJWM · · Score: 2
      The motivation behind using HTTP is a dubious one at best. The basic idea is to get around corporate firewalls.

      While I don't disagree that using HTTP is often dubious, getting around firewalls isn't the only reason. (Heck, a lot of this stuff is on intranets behind the firewall anyway.)

      Other reasons include:
      • HTTP is a "connectionless" protocol, ie the connection is not held open (well, HTTP 1.1 aside). This means if somebody walks away from his computer in the middle of a session he isn't still tying up a socket and process (and possibly a DB connection) on the server. Which means overall you can get away with a smaller server, resources are shared better.
      • HTTP is a pretty simple protocol, that means it's easier to implement and can be squeezed into smaller code or devices. It's also pretty ubiquitous, there are all kinds of libraries to support it. Not true if you're rolling your own protocol. (I know, I've rolled a few of my own when HTTP's statelessness is more trouble than it's worth.)
      • HTTP lets you use a browser as a standard and ubiquitous client if you need user interaction (as you point out, the client isn't necessarily a browser.) That makes UI development easy and cross-platform. The only other choices that come to mind for readily and widely available clients are things like NNTP, SMTP, FTP or telnet, none of whice really lend themselves to generalized interactive client/server use (except telnet, if you're into the command line interface). Or X, but then you spend a lot of work on the GUI.
      And of course now that it has become a big deal, there are a ton of tools out there to make it simpler to develop and deploy such apps.
      --
      -- Alastair
    12. Re:Honesty or idiocy? by Bodrius · · Score: 2

      I think Apple's WebObjects did a decent job with Java in that respect.

      The problem is that the .NET tools are more polished, and the J2EE tools are lacking. The advantage of Java, right now, is the J2EE de facto standard... it's already doing what the companies want it to do, and they already have an investment in it, and there's no reason not to have the equivalent of a VS.NET for J2EE that works without propietary dependencies.

      --
      Freedom is the freedom to say 2+2=4, everything else follows...
    13. Re:Honesty or idiocy? by IamTheRealMike · · Score: 2
      You pretty much write HTMl pages the same way you would write a standard GUI application and .NET takes care of the rest. Its a great way to program HTML UIs. And I think that was part of his point.

      But surely you get a lot less flexibility? I seem to recall MS tried to rewrite Outlook in DHTML, the project bombed, as HTML (even with loads of IE extensions) just wasn't suitable for user interfaces. That's why Mozilla created XUL (which is). How does it deal with things like snap-off toolbars, popup menus, zigzagged underlines and all the other stuff that's either impossible or extremely hard to do with HTML?

      It sounds like you'd end up with an extremely limited and rather slow widget set - a bit like AWT in fact. On the other hand, I haven't tried it, so what do I know?

    14. Re:Honesty or idiocy? by DunbarTheInept · · Score: 2

      I don't really want to have to code separate versions of every page for Netscape 1.0 and for Lynx.
      Well, it's a good thing that what I advocated was the exact opposite of that, then.


      Anyone who's done web pages for real has had to deal with browser compatibility. The ASP.NET approach of emitting different HTML for different browsers makes this a LOT less of a pain.
      But the types of servers you speak of don't check for *features* supported. They check for brand names, and that's the complaint I have. Just because a browser visiting your page is one you didn't test for, that doesn't automatically mean it can't do the features you need. It's that broken mentality that makes new up-and-coming browsers like Opera have to lie about what kind of browser they are in order to use certain sites developed with a mentality similar to yours. The reason they have to lie just to get the HTML shipped to them is that the servers aren't programed with a default case of "just spit out w3c standard stuff and if the browser can't deal with it that's the browser's fault." So places that program only to IE, or only to IE and Netscape continue to believe the lie that those are the only browsers that exist (because people have to browse with the user-agent string set to the lie that they are IE or Netscape), and that's what shows up in all logs then.

      --

      Don't label something "offtopic" unless you know the topic well enough to tell what's on topic.

    15. Re:Honesty or idiocy? by DunbarTheInept · · Score: 2

      The problem you complain about is smaller that the problem that is generated when servers check for browser type and assume that all browsers not of that type will fail utterly. I'd much rather be fed an incompatable page with sloppy layout than NO HTML AT ALL and an error message that just lies and says my browser doesn't support feature foo when it fact it does.

      --

      Don't label something "offtopic" unless you know the topic well enough to tell what's on topic.

    16. Re:Honesty or idiocy? by TheAncientHacker · · Score: 2

      Actually, ASP.NET reads the header, looks that up to see capabilities and emits based on capabilities.

    17. Re:Honesty or idiocy? by DunbarTheInept · · Score: 2

      Then explain why when opera lies and pretends to be IE it gets a better page sent to it than when it is honest and calls itself opera.

      --

      Don't label something "offtopic" unless you know the topic well enough to tell what's on topic.

    18. Re:Honesty or idiocy? by TheAncientHacker · · Score: 2

      Simple. Because the capabilities of specific browsers are kept in a table on the server that has to be maintained for new browsers. If the owner of the server doesn't bother then new entries are unrecognized and default back to a more generic set of capabilities.

  2. More Python Please! by supton · · Score: 2, Insightful

    Ugh... I'm sick of these industry horses wearing blinders. There are more than two choices, of course. When .NET and J2EE developers finally get sick of watching their compilers sing and dance, I'll still be here adding new features to my Python applications at run time in a much better language. :)

    1. Re:More Python Please! by AJWM · · Score: 2

      Oh, you can make J2EE sing and dance with Python, too, if you want.

      You have heard of Jython (nee JPython), haven't you?

      (And you can add new features to Java applications at run time too (ClassLoader? JavaBeans? hello?). But of course you knew that. :)

      --
      -- Alastair
    2. Re:More Python Please! by RevAaron · · Score: 3, Interesting

      And I'll be building even better applications via a web, telnet, or regular GUI interface at runtime in a much better language, Smalltalk. :)

      But yeah, you're very right. There are many options other than .NET and Java. I know there isn't much for Python, but there are a few companies (IBM, Cincom, GemStone) that provide real commercial support for their web app server products.

      --

      Working toward a usable PDA environment in the spirit of Newton OS: Dynapad
    3. Re:More Python Please! by TheAncientHacker · · Score: 2

      Of course, you could always use python.NET to write your ASP.NET pages if you don't want to learn C#.

      http://starship.python.net/crew/mhammond/dotnet/ in dex.html

    4. Re:More Python Please! by RevAaron · · Score: 2

      Heh.

      If you look hard enough, you'll find similar arguments against all other programming techniques, languages, and frameworks. When it comes down to it, programming at all is just another waste of time.

      There's a lot more to OOP than lies and FUD. If it's too hard for you to grasp, that's fine, you can continue using BASIC, no one will mind.

      --

      Working toward a usable PDA environment in the spirit of Newton OS: Dynapad
    5. Re:More Python Please! by Tablizer · · Score: 2

      (* Perhaps you have the luxury of creating non-modular software all by yourself in a cave. *)

      Oh, so procedural/relational programs are "non modular". I would rather have consistent modules rather than speggetti modules of OOP. Every fricken OO guru designs differently from each other. Picasso Black Art that OO. OO is GOTO's at a larger scale.

      Further, "modularity" needs to be relative in many cases. There are multiple division candidates for any non-trivial app, and the smarter OO fans and Stepanov (STL) have reconized this problem. One size and one division dimension does not fit all.

      P/r apps better handle relativism IMO by using relational and boolean formulas rather than hard-coded noun structures. It is easier to change a formula than shuffle code around.

      Formulas are more abstract and flexible than hard-coded GOF-like structures. Think virtual. OOP is old fashioned hand-built bricks and mortar.

      There is no fscken evidence that OO makes for better biz apps, and take OO away until you gets some.

      "Got Evidence?"

      "No, I use OO"

    6. Re:More Python Please! by Tablizer · · Score: 2

      (* Even in non-OO languages (esp. C, since there are a lot of C programmers about), people still use design patterns that are OOish or hacks that approximate OO. *)

      Well, C sucks. Burn C, not all procedural/relational paradigms just because one language sucks eggs. Besides, C is usually not used for custom biz apps, the domain of my primary complaint. (Perhaps OO shines in some domains, however, the industry is shoving it down everybody's throat).

      (* So don't give me the "OO is lies and FUD" BS... explain WHY you think its all one great big lie. *)

      Because there is NO EVIDENCE that it is better. I want to see actual biz-app code under change-impact-analsys, not cliches and brochure-talk meant for gullible PHB's.

    7. Re:More Python Please! by Tablizer · · Score: 2

      (* If it's too hard for you to grasp, that's fine, you can continue using BASIC, no one will mind. *)

      Yet Another False Dichotomy. BASIC is hardly the best that procedural can be.

      The hardest thing to grasp about OOP is why the hell people would jump (blindly) into it without any evidence that it is better.

      Is Science Truly Dead?

    8. Re:More Python Please! by RevAaron · · Score: 2

      Then you can use Pascal, judging by your comments, you're a big fan. You're allowed C if you really want to impress your friends.

      What is wrong about using OOP? I like it. It works great for me. I find I can organize code much more logically. Also, sending messages to entities is a more natural way of getting something done, for me. \

      You remind me of the atheist who thinks every x-ian to be some preaching asshole. I'm not interested in "converting" you to the "one true way" of OOP, so why do the same to me?

      What has science to do with this? Liking OOP rather than procedural programming is a matter of preference, not science. I probably could out-code you if there was some rule about OOP; what that make OOP better? You could probably outcode me if we were doing procedural style. Does that make PP better? Nope.

      --

      Working toward a usable PDA environment in the spirit of Newton OS: Dynapad
    9. Re:More Python Please! by RevAaron · · Score: 2

      No need to dis Smalltalk, I wasn't (meaning) to dis Python. It's too bad there is no Python IDE akin to what you get even with a free Smalltalk system, like Squeak. The first language that I really god excited about was Python, but when I discovered Squeak, it marked the end of my Python days. While the language has a lot of appealing aspects to me, the environment was a big thing too.

      Oh yes, Zope, good fun there. Zope is interesting- they're basically attempting to recreate a Smalltalk environment for Python, but in a much bigger- in both good and bad.

      --

      Working toward a usable PDA environment in the spirit of Newton OS: Dynapad
    10. Re:More Python Please! by Tablizer · · Score: 2

      (* Then you can use Pascal, judging by your comments, you're a big fan. *)

      I tend to prefer dynamic languages these days.

      (* What is wrong about using OOP? I like it. It works great for me. I find I can organize code much more logically. *)

      What *exactly* does that mean? Is this something objective, or just a "feel"?

      I realize that for *some* people OO may model the way they personally think, but I don't like other's preferences forced down my throat.

      (* I'm not interested in "converting" you to the "one true way" of OOP, so why do the same to me? *)

      I am sick of seeing the industry making *everything* OO. Somebody has to stop the nonsense.

      I just ask for balance. Until X is objectively proven better than Y, or shown that most programmers prefer X, then X and Y should be given equal treatment.

      Simple balance.

    11. Re:More Python Please! by Zeinfeld · · Score: 2
      No need to dis Smalltalk, I wasn't (meaning) to dis Python. It's too bad there is no Python IDE akin to what you get even with a free Smalltalk system, like Squeak.

      I believe that there is a Python .NET in the works. The Visual Studio .NET IDE basically has every good feature from pretty much every good IDE. It is the first I have found with a superset of the Genera functionality - and packaged a heck of a lot better than Symbolics ever did.

      --
      Looking for an Information Security student project suggestion?
      Try http://dotcrimeManifesto.com/
    12. Re:More Python Please! by Tablizer · · Score: 2

      (* Ironically, in many cases no one is saying that OO is better. They're simply describing what they like. *)

      The literature is full of braggings about OOP. Sure, not everybody thinks it is objectively better, but those are not my complaint anyhow.

      (* what kind of non-OO code do you write, and in what language? *)

      There is no one procedural language that has all the features I want. Progress in procedural features pretty much stopped in the late 80's as vendors and compiler makers focused on OOP instead. Thus, the best features never got a chance to consolidate before the era of CPU-driven worries dwindled sufficiently.

      (* You show me why procedural is better. *)

      I *don't* claim it to be objectively better. Just not objectively worse.

      But a generally summary of why I think it is better (for me) is that it does not attempt to use code structures to model entities (nouns) and noun/entity relationships. I relies on the database for those, and (good) databases make virtual, local, and relativistic "noun views" easier than OOP. OOP tends to hard-wire them into code, which is more rigid than using relational and boolean formulas IMO. Half of OO GOF is about hand-indexing stuff it feels to me. That is busywork (and clutter) I would rather slave off to the database engines.

      Most OO fans don't "get" databases IMO.

    13. Re:More Python Please! by Tablizer · · Score: 2

      (* then why not just create an instance of an object to represent that record? *)

      I find that dictionaries (associative arrays) work just fine. Some languages even use a dot instead of (or in addition to) square brackets.

      (* Then, if you find that you need to add some kind of feature or behavior to objects of this class, isn't it easier to add it to the class definition (so that it is available throughout the code, wherever the object instance appears) *)

      How is that better than a function?

      recordHandle.newBehavior() // OOP

      newBehavior(recordHandle) // Function call

      In some languages, you can even do this:

      Execute(recordHandle["newBehavior"])

      essentially using a dictionary entry as a method. However, in practice I don't see a lot of need for such.

      (* But when I needed a new behavior available, I found that it was easier to provide this as a method of the class rather than try to fit it into the procedural parts of my code. *)

      I would have to see a specific example. Where exactly does the procedural version get harder?

      (* Plus, I could always write a new class to aggregate other classes if I needed features of an already-existing class but wanted to expand on those *)

      How is this different from a subroutine calling other subroutines?

      (* At some point, the data needs to be used directly by the code, so flexible data structures such as objects come in handy (rather than cumbersome things like hashes-of-hashes). *)

      I am not sure what you have encountered. Hashes of hashes is usually a sign that you need to design another table.

      I used to use a lot of XBase. XBase was not perfect, I would note, but it made creating and using tables so fricken easy that I never wanted to touch data arrays again. Unfortunately, most existing stuff chose to farm that off to objects rather than improving lite-duty table manipulation. OOP killed table innovation implementation.

      Microsoft is starting to bring virtual and local table engines back into its products, to their credit. However, their API's are a little clunky IMO. You can wrap them with something simpler, but its strong-typing push complicates much of it IMO.

    14. Re:More Python Please! by Tablizer · · Score: 2

      (* Namespaces for one. Namespace pollution can occur very easily on a large project with multiple developers..... *)

      Well, instead of x.y(), you can call it x_y().

      Generally if a routine is meant for only a given module, then you don't really have to worry about overlap in many languages. If by chance you call a global routine with the same name as a local one, then some scope or module qualifier may be warrented.

      If it is "general", then you have to be a little more careful. But, subroutine overlap is not necessarily more problematic than class name overlap. (These kind of things are very language-specific, I must note, and there are different solutions, just as there are different "module" solutions in OOP languages.)

      Besides, are you suggesting that OOP is better *only* because it allegedly has less name-space overlap problems? If that is the best you can claim about OOP, then why the rush to OO?

      Usually people will brag about its "encapsulation" or "abstraction" or "modeling" power, not namespaces. (Although those other guys never justify their preference in black and white. It is just a feeling to them.)

    15. Re:More Python Please! by Tablizer · · Score: 2

      (* You are correct, however I have worked on a project where this was the naming convention (module_function()), and it never failed that someone would break the convention. *)

      But you can also use other approahces if needed. By not hard-wiring it as a requirement, if you need to do something different, you can. For example, commonly-used routines should not be required to use such a convention to keep the code simpler. (The name/expression length should be inversely proportional to its usage frequency.)

      Things get messy in OO also if people don't follow conventions. For example, you can't polymorph (substitute) if a programmer did not use the same method names and/or signatures for similar things.

      (* Actually, I mentioned keeping the data in a consistent state. Encapsulation is usually better with an OO language. If your data members are private they are only accessible by the methods of your class. Again this could be achieved by convention with procedural programming, if everyone follows the convention. *)

      That is malarky. In practice classes don't *own* data, but are merely proxies. There is nothing built into the OO paradigm to make sure only *one* class accesses a given non-language-bound data item. (And if you add that enforcement, it could be added for routines and/or modules also.)

      Even if you could completely "wrap" data, then you end up reinventing a lot of data-base like operations in your class interface. Better to factor all that to the database rather than reinvent it over and over for each class IMO. That just creates OO bloat.

      (* None of those concepts are impossible with a procedural language, but are sometimes made easier by an OO language, since it is a part of the language. *)

      I will beleive it when I see it. Often the conditions assumed for being "easier" or "more change-friendly" are unrealistic. OO doctrine has over-hilighted certain change patterns, making people blind to the change patterns that don't favor OO. It is like TV commercials that pick on say yellow teeth. Before you never noticed it, but after many repeats, your mind focuses in on that (alleged) shortcomming, ignoring others.

      For example, teeth whitening toothpaste has more abrasives in it. In the long run it may damage the outer shell of your teeth. But, you are not aware of that problem because you are sold on the idea that yellow teeth are the main evil.

      This is what OO doctrine has appeared to do IMO.

      So, OO fans hard-wire noun models into code structure and reinvent database operations time and time again and never realize how wasteful and bloaty and maintenance-unfreindly it is because they are "encapsulating" or "polymorphing" like a good little programmer should, according to the passages in the ScrOOPtures.

  3. Interoperability's a bitch... by camusatan · · Score: 2, Interesting
    Probably the biggest complaint that one could have against web services is the difficulty involved in getting separate ones to interoperate.

    Imagine you have a web-based e-mail system. And a web-based word-document reader. One written in J2EE and one written in .NET. Click on a word attachment in the e-mail program, any guess as to whether or not it will open in your word-document reader? Answer is nope!

    That people are just now figuring out that demanding that all things be written in One True Language to be hosted on One True Platform from One Designated Service Provider is kinda sad - doesn't that sound restrictive?

    Of course, my commentary on this issue isn't coming from nowhere - I wrote a service designed to fix the problem, at its core. But just because I'm biased doesn't mean I'm wrong.

    1. Re:Interoperability's a bitch... by mccalli · · Score: 2
      Imagine you have a web-based e-mail system. And a web-based word-document reader. One written in J2EE and one written in .NET. Click on a word attachment in the e-mail program, any guess as to whether or not it will open in your word-document reader? Answer is nope!

      Err...yes, of course it will if you've set the MIME type correctly.

      Cheers,
      Ian

  4. Re:Since when have .Net/C# proven themselves? by wadetemp · · Score: 3, Insightful

    How many months do you have to have worked with them to be considered old dog on the development team?

    18? It's not like it just came out yesterday, the beta has been available for at least a year and a half. Wrox put out books on programming with the beta languages and the beta framework.

  5. Honesty doesn't count for much these days. by SlashChick · · Score: 2, Interesting

    It's an unfortunate truth that saying something honest will get you much fewer eyeballs. Slashdot even perpetuates this by posting purposely controversial viewpoints. I mean, which is more controversial, "Linux and Windows both have their place" or

    "Linux on the desktop is dead! Windows on the server is dead!"

    The fact is that the "x and y both have their place" articles, although honest, are much less likely to get published, because media outlets know that less controversial opinions just aren't talked about as much.

    This thread will be lucky to receive 200 comments. Had the article submitted been "Java is dying! .Net is taking over!" it probably would have had 800-1000 comments. It's sad, but true.

    Having said that, I use PHP. Stop by #php on irc.openprojects.net! </plug> ;)

    1. Re:Honesty doesn't count for much these days. by God!+Awful · · Score: 2

      "Today was much like any other day" is an honest and concise summary of my life, and yet it leads to frequent mundane conversations with my parents, who think I am secretive. The fact is, an article that says "x and y have their place" simply isn't news, just like you wouldn't post a story "cold fusion not discovered today" or "freebsd not hacked today."

      I also disagree with your thread acitivity. This story would no doubt get more responses if it wasn't posted late in the evening.

      -a

  6. Re:Since when have .Net/C# proven themselves? by PyroPunk · · Score: 5, Interesting

    The consulting firm I work at has deployed a Point Of Sale system running on the .Net framework; it's currently running in 4 restaurants. The touchscreen GUI was written in C#, as was the business and data tiers. We use .Net remoting to communicate between the touchscreen and the server. Just started development using the .Net compact framework to let the waiters use Pocket PC devices when taking orders. I've been developing in .Net since June of last year; deployed two intranet sites and an e-commerce site since then. Have been developing in Java since '97. I personally don't consider one better than the other; but then again I'm not out there fighting a religious battle against Microsoft either.

  7. Re:What is a website? by the+eric+conspiracy · · Score: 2

    They view a website as a large monolithic application.

    Applications haven't been "monolithic" for a long time. MVC had it's origins in application design, and anything decent these days is designed with the same 3-tier to n-tier approach that a web site would have.

    It's all in the economics - you have to be able to update one part of the application without the changes propagating throughout the whole application.

  8. Re:BEA is a joke by teetam · · Score: 2
    Isn't eclipse an IDE that is competing with Forte?

    As far as I know, JBoss and Jonas are the free, open-source J2EE appservers competing with BEA. May be you meant one of them.

    --
    All your favorite sites in one place!
  9. Re:BEA is a joke by signe · · Score: 2

    Possibly. Like I said, I've only started evaluating options. I was pointed at Eclipse, and a quick look at it looked like it might be both an app server and an IDE.

    Thanks for the pointers however. More work, more fun. More acclaim when I save us hundreds of thousands of dollars.

    -Todd

    --
    "The details of my life are quite inconsequential..."
  10. Re:Since when have .Net/C# proven themselves? by embarcadero · · Score: 2, Insightful

    Call me a cynical deconstructionist, but I think it's more important to realize what BEA is trying to do with comments like this.

    Clearly, BEA needs to grow over the next decade, and has to be very careful about the inevitable market power that Microsoft will have with .Net. Whether or not you you like it versus J2EE, Microsoft has the deep pockets to basically buy a market position for .Net over the next five years. BEA is king of the hill today, in a Java dominated market. As .Net grows, there will be a new niche opening. That might be filled by Microsoft itself, but it will be just as attractive for a more enterprise-oriented new company to fill if BEA doesn't.

    BEA isn't stupid. It realizes it has to be ready as a potential Microsoft partner, or it risks limiting its dominant position in the application servers and related software market to the Java side of the world. That's why it's being so "honest" about things like this.

  11. Uses by Tablizer · · Score: 4, Funny

    (begin list of real-world uses for web services)









    (end list)

    1. Re:Uses by Tablizer · · Score: 2

      (* anyways, i'm doing some web-services stuff at work using M$ MapPoint mapping *)

      I have not seen anything there that could not be done with HTTP get or post parameters (zipcode=12345&storename=buzzwords_R_us, etc.) and returning XML, comma-delimited lists, or a map image URL.

      Here is a odd example on that site:

      "As an example, let's say you are a waste removal company and you have uploaded the locations of all your dumpsters to the MapPoint .NET service. Along with each record, you have uploaded the pick-up schedule for each dumpster. You can now perform a proximity query to find out which dumpsters in your northeast territory need to be emptied next Wednesday. MapPoint .NET makes it easy to request a map of these returned POI."

      Sounds like a bit more than a "map" service to me. It is MS trying to host *other* biz functions also (such as scheduling) it sounds like. Just another way for MS to get into your pants........pocket.

    2. Re:Uses by glwtta · · Score: 2

      oh come on - there are great real world uses for web services. for one, UDDI, WSDL and SOAP are three more acronyms that make any resume look cooler!

      --
      sic transit gloria mundi
    3. Re:Uses by samael · · Score: 2

      Let's see, I frequently use web based calendars, email, discussion forums, etc.

      I use Livejournal, which has both a web based front end and a Web-API based one (which I prefer posting from).

      I've communicated from a Windows based middle-tier to a tomcat web server using SOAP.

      There's an awful lot of places that having web services is/will be handy.

    4. Re:Uses by TheAncientHacker · · Score: 2

      And nobody could ever have a use for a computer in their home. Just ask the founder of DEC.

      Those who find uses will get rich on them. Those that don't will whine about why the world changed out from under them.

    5. Re:Uses by GrayArea · · Score: 2
      Well, I built a product configurator service (think Dell's build-to-order configuration of computers) for a (very) large computer manufacturer that exposed its functionality as a web service. There were at least five applications downstream including a couple of web front-ends in Windows/ASP that used these services and were all written by other teams in other divisions. There would have been no easier way for us to integrate this many applications on a common configuration engine without web services.

      I'm convinced that web services is a better way of doing things when you need to integrate coarse-grained components on different platforms.

      --
      "The deluded are always filled with absolutes. The rest of us have to live with ambiguity." - Aristoi, Walter Jon Willia
    6. Re:Uses by iabervon · · Score: 2

      Web services are a great idea for intra-company stuff. If you've got some application that everybody needs to use on the same data that doesn't work well in text (say, a project management program), you could either write a GUI for each platform and a protocol for connecting to the server for shared state, or you could have an internal web server running the service, skip both of these steps, and just code behavior.

      For a lot of things, I agree that web services don't make sense on the open internet; there are a whole lot of things that ought to be static pages that get done with jsps (see shop.usps.com, for example).

      I think the real test for whether something should be a web service is whether the users all want to interact with each other. If so, it makes a lot of sense to have a web service. If people are just doing their own thing and don't want to interact, web services don't make a lot of sense.

  12. Re:BEA is a joke by RevAaron · · Score: 3, Insightful

    I'm afraid I don't follow you. Eclipse is an IDE. Like JBuilder or NetBeans, not an application server. Sure, you could build web applications from scratch or using a more primitive product using Eclipse or any other IDE or editor, but Eclipse doesn't replace Weblogic Server any more than emacs.

    Maybe the support people don't follow you either, because you don't have a handle on what you're talking about? Maybe it seems overpriced because you're buying a web app server to do the job of an editor? Perhaps I'm being too harsh, but just some ideas.

    --

    Working toward a usable PDA environment in the spirit of Newton OS: Dynapad
  13. BEA's ploy to keep MS off their back by Infonaut · · Score: 2
    Unless I missed something huge here, the comment: ".NET is finding a sweet spot for programmed user interfaces, while J2EE continues to enjoy its sweet spot for server-side applications" in no way represents BEA giving ground to Microsoft.

    BEA makes money by selling WebLogic, which is an environment for developing server-side apps. He seems to really be saying, "Look, Microsoft, you go mess around with programmed user interfaces, because server-side development is our turf."

    Openly defying Microsoft doesn't usually work, but clever companies have managed to stay out of Microsoft's sights by promising to play well with Microsoft and stay in their niche.

    --
    Read the EFF's Fair Use FAQ
    1. Re:BEA's ploy to keep MS off their back by alienmole · · Score: 2
      Dietzen's comment is aimed at his customers and investors, not at Microsoft. He's simply saying "I hereby concede everything that doesn't matter to us", in a rather pathetic and transparent attempt to stake out a space within which BEA can still matter.

      The fact that he's coming out and making such a statement so early in the .NET lifecycle is presumably an indication that BEA is under big pressure from customers and/or investors to come up with a coherent story of where BEA will fit into the brave new .NET.

      I'm not sure that laying your head down dog-like on the ground and exposing your jugular to Microsoft is really the way to stay in business, though. BEA may think Microsoft doesn't have a sweet spot on the server, but that's a bit like the old joke about dinosaurs: it's OK, dinosaurs won't eat you, they're herbivores. Yeah, but do the dinosaurs know that? I don't think Microsoft knows it's not supposed to have a sweet spot on servers, and Dietzen's position isn't going to make a whit of difference to Microsoft.

  14. Re:Since when have .Net/C# proven themselves? by AJWM · · Score: 2

    18 months is just about long enough to get the experience needed to shake out the first set of design bugs. I vaguely recall it was about that time frame to go from Java 1.0 to 1.1, which saw some significant improvements. But there were still a few more more signficant changes from 1.1 to 1.2 (aka Java2).

    Granted, with .NET Microsoft has the advantage of learning some lessons that Java pioneered, but it's still a Microsoft 1.0 product. There'll be shakeouts yet.

    --
    -- Alastair
  15. Re:Since when have .Net/C# proven themselves? by f00zbll · · Score: 2, Insightful
    It's good to know someone sees C# and java for what it is, A Tool! IMO, it's good that those devices are switching to standard protocols, but it's hardly new. Wireless point of sales systems for restaurants have existed since early 90's. I know for a fact because in southern California, I went to a restaurant where a friend worked that had a wireless sytem. My friend would take the order and it would be sent wireless to a terminal for the cooks to see.

    Having standard ways to do remote communication is good, but all the bloated hype from all the various camps does a lot of dis-service. As far as I'm concerned, all the big tech companies are guilty of it, so it's not like MS or Sun are worse than others. The real benefit for businesses with technologies like C#, Java, .NET and web services is standard protocols and frameworks. The chances of a company finding skilled replacement when staff leave is more likely than a non-standard proprietary system. For me, the hassle of marketoid gibberish is worth it to move towards more standard and flexible ways of developing software.

  16. Re:What is a website? by AJWM · · Score: 2

    Don't kid yourself.

    Management views the website, with its browser interface, as little more than a modern face on the old IBM mainframe application with its 3270-terminal interface.

    The 3270 was a page-mode text terminal that let the app define fields the user filled in or checked off and then click a 'submit' key to send the form's contents back to the mainframe. Sound familiar?

    That the back end now may consist of apps or components spread across several boxes, vs different apps and components in the same big box, isn't that huge a difference. (Just because the apps may have run on the same mainframe doesn't mean the whole thing was monolithic from an application sense.)

    --
    -- Alastair
  17. Re:What is a website? by ekidder · · Score: 2

    Funnily, it sounds very familiar. Perhaps that's because one of my jobs is to convert TN3270 applications (written in Taskmate) to use apache and mod_perl.

    It ain't pretty.

  18. Still lacking specifics by Tablizer · · Score: 2

    (* The modding up of such stupidity is going to finally drive me away from Slashdot, I think. It's hard to blame the morons who post gibberish at nearly every opportunity, when, with useful moderation.... *)

    I notice in all your counter-rantings that you never described an *actual* application, and how .NET or JavaBloatX do it *better* than HTTP, SOAP, FTP, ODBC, etc.

    There are plenty of existing communication approaches out there. Sun and .MS are simply trying to out-acronym the other in the hearts and minds of PHB's.

    In the mean-time, we have open existing K.I.S.S. protocols to get real stuff done without selling out to the battling fat cats and getting shot up in their cross fire.

    Let them battle by themselves, we don't need 'em.

  19. from the Department of Redundancy Department by Tablizer · · Score: 2

    (* You, however, said "web services", and since you're tossing SOAP into it now as if this unrelated to "web services", coupled with your pseudo-rant, I'll assume you're not actually talking about "web services", and are talking about specific frameworks for implementing them. *)

    I suppose a definition of "web services" is needed to clearify this discussion.

    If web services is "using the web to communicate between 2 or more different machines", then "web services" is actually *redundant*, because that is precisely what the WWW is for, isn't it?

    It would be like calling something the "data transfer network" or "transportation vehicle" or "fly-capable airpline" or "floating boat" or "kill-capable military"[1], etc.

    [1] Well, I suppose there are some really lame militaries out there.

    1. Re:from the Department of Redundancy Department by Tablizer · · Score: 2

      (* What it can do is produce a stable, well-architected, extensible application where you previously had 40,000 lines of Perl that burnt your eyeballs to look at. *)

      So it is replaced by 50,000 lines of bloated Java and .NET code.

      I agree that some standardization is needed, however that can be done *without* marrying Bill Sun Gates. You really don't have to bend over to cough, you know.

      Pretty much all you need is an XML parser and an HTTP character encoder/decoder (for ampersands, etc.).

    2. Re:from the Department of Redundancy Department by Tablizer · · Score: 2

      (* Nasty, unreliable screen scraping is replaced with about four lines of code. *)

      Nice little false dichotomy: Screen scraping versus .Net.

      (* Real world uses: how about an order tracking system for companies with hundreds of locations that don't want to lease T1 lines to tie everything together. *)

      Have central servers. You don't need distributed fat clients for that. For those operations that don't fit a web-based interface, then use something like XWT or SCGUI. If that is not feasible, then use VB-like client interfaces for those parts, but avoid bound controls. It can even be self-updating if you do it right.

  20. What's really gonna happen is... by 3seas · · Score: 2
  21. You think BEA is that weak? by Infonaut · · Score: 2
    ... a rather pathetic and transparent attempt to stake out a space within which BEA can still matter.

    Do you mean to imply that BEA is scared with good reason, or that they're scared for no good reason? I guess what I really want to know is whether you feel BEA is weak, or J2EE is weak, or both?

    I'm not sure that BEA is exposing its jugular, but I definitely agree that playing the "we can all get along" game with MS usually leads to catastrophic meltdown. Only a few software companies can truly say that they've been able to successfully partner with MS without being chomped on hard. But using the McNeally approach isn't always successful either.

    It seems that one of the most vexing business challenges of this age is "how do we compete in the same market as Microsoft?"

    --
    Read the EFF's Fair Use FAQ
    1. Re:You think BEA is that weak? by alienmole · · Score: 2
      I don't really know how good BEA's reason to be scared is, I was really just saying that Dietzen's statement seems to demonstrate that they're scared, or perhaps in denial.

      The problem with Dietzen's statement is that it's not really plausible - he's saying that BEA's OK because Microsoft won't find a sweet spot in the application server space. The obvious problem with this is that Microsoft will certainly find a sweet spot in that space, it's just a matter of time. So Dietzen's statement, instead of showing why BEA has a future, actually calls its future into question. He's drawing attention to their weakness, which seems like a questionable strategy. Of course, the weakness is fairly obvious, but if that's the best defense he can come up with, then man, BEA's toast!!

      I'm not saying it's inevitable that BEA will be trampled by Microsoft, but a comment like Dietzen's seems pretty revealing as to what he thinks of their prospects.

      It seems that one of the most vexing business challenges of this age is "how do we compete in the same market as Microsoft?"

      I agree - as a software developer, I've run into this issue personally. It's a big reason I focus heavily on free software, where appropriate, and recommend it to my clients, many of whom have been burned by Microsoft's shifts in direction, lack of standards, and lack of openness. In a sense, Microsoft has been one the best motivating factors for free software. I doubt, for example, that IBM would be doing so much free software if it weren't for Microsoft.

      In a way, BEA is actually caught between Microsoft and free software. Open source J2EE servers are pretty much in their infancy, but the problem for BEA is that the "intellectual property" inherent in today's application servers is really not that difficult to duplicate. So you get free servers like JBoss, and cheap servers (with source) like Resin. I doubt many BEA clients are quite ready to jump ship today, but over time, the standardization and network effects of free & open solutions can become quite compelling. I don't think time is on BEA's side...

  22. MS Model not ready for primetime? by Otis_INF · · Score: 4, Insightful

    LOL :)

    And why's that? WSDL isn't MS proprietry language, it's a standard defined by many companies, and should be used with UDDI, currently in v2.0. .NET is a framework which IS ready for primetime, because it offers all the functionality needed to build mission critical applications which have to serve thousands of users.

    So, f00zbll, show me the beef where .NET falls short when it comes to delivering what's promised.

    ps: I develop a lot of .NET software, I know what I'm talking about.

    --
    Never underestimate the relief of true separation of Religion and State.
  23. j2ee and .net stuff by fedor · · Score: 2, Interesting

    I still don't understand the real advantages of this kind of stuff. Honestly I've tried to understand the whole j2ee stuff, and I still can't. I haven't tried .NET and I will never try it, because all the books about it with titles containing words like 'Enterprise', 'Solution', 'Deploying' and 'Integrated' just make me sick.

    Big companies just try to sell something 'good' for software development. The problem is, that they sell it to suits who just believe the marketing crap of sales people. Most of the time there are no technical people involved in these decisions and people like us just have to work with it, because 'it's good', 'scalable', 'integrated', blkahblahblah...

    I really hope all this crap is over in a couple of years, and we can just use whatever we want to use and know is good. Getting experienced in using progamming languages and tools is the only way to see if things work. My experience is that in projects where they used stuff like J2EE, SOAP and COM, a lot of people where involved (a lot of suits) and the projects last long....over 2 years for a simple web based application!!! Arrgrhgh!! I've seen a lot of those projects and nobody overthere knew how to query a database using SQL how to use TCP-sockets, or what's the HTTP-protocol all about...They laughed at me because I did not want to use Visual Age for Java and I used javac and vi instead. "In Visual Age I cannot not see on which line parse errors occur" was my answer, when they asked what was better about just using the command line. I had to explain the word 'parser'.....

    People on these kind of big projects just had a one week course and some experience with Excel macro's. And who sells those courses....???


    I think, it's all corrupt...

    fedor

    --
    :wq!
    1. Re:j2ee and .net stuff by Tablizer · · Score: 2

      The problem is, that they sell it to suits who just believe the marketing crap of sales people......I've seen a lot of those projects and nobody overthere knew how to query a database using SQL how to use TCP-sockets, or what's the HTTP-protocol all about...They laughed at me because I did not want to use Visual Age for Java and I used javac and vi instead.

      Agreed. It is mostly snake-oil. Everybody is looking for the silver bullet to avoid having to learn things like SQL and HTTP. The problem is that in the end you end up having to fight the "magic" IDE and goofy API's to get what you *really* need the hard way.

      It is all just a big glass of whine: Delays the innevitable, but makes the innevitable worse when it comes.

      The 80/20 [1] rule is a universal fact of life in IT. Perhaps someday somebody will discover the magic IDE/tool/API that gives both, but until then one should learn to avoid the BS.

      [1] The 80/20 rule is that tools that speed up the first 80 percent of the project tend to slow the last 20 percent to a crawl because they don't provide the granularity of control that you need.

    2. Re:j2ee and .net stuff by j3110 · · Score: 2

      Agreed. You don't have to use all of EJB's features that slow down the program on simple programs to get some benefit. I like the security model. Sometimes you need row level security on data, and EJB's make that easy (a couple of lines of code). I don't like data in inconsistant states at all, so transactions that work across multiple database servers is great and it's all configurable in an XML file so I can remove transaction points without toying with the code. DBMS independance is my favorite selling point. If I find a faster database server than MySQL (with InnoDB for transactions) I could change it with one file. If you want to "Upgrade" to Larry Elisson land, or you have to write it to be compatible with a system that is tied to MS's not quite SQL server, you won't have to change your code when the legacy system is reimplemented into the new J2EE system.

      Honestly, some people need to rethink how much performance is really worth? If you can save time by not having to write transactions, security, and testing both (which is a REAL PAIN), you can spend the money or time you saved there to either optimize or buy more hardware (since it supports clustering without you having to write any code, just more machines).

      --
      Karma Clown
  24. Web Services When I Can't Even Get My Email? by Master+of+Transhuman · · Score: 2, Insightful

    How does Microsoft (or anybody else) expect major corporations to run mission-critical stuff over lines provided by ISPs who routinely oversubscribe their boxes and undersubscribe their bandwidth?

    I can't reliably get my Usenet newsfeed without "Connection unexpectedly closed by server" messages.

    Anybody think you can run General Motors or any bank on that basis? Anybody think any ASP isn't just going to be an ISP with a new acronym?

    In a way, until the phone companies get us that infinite bandwidth they were promising a couple years ago, this is good because it will probably kill Microsoft when it becomes apparent that none of this will work for reasons entirely outside the issue of which programming language or object broker is used.

    --
    Richard Steven Hack - This sig is TOO GODDAMN SHORT TO DO ANYTHING USEFUL WITH! MORONS!
  25. .Net vs. J2EE vs. PHP etc by theolein · · Score: 2

    As someone who doesn't have much of an idea as to why webservices are needed (I've read the articles and looked at some examples) because I often just think that the whole idea of web services is like a minutarised packaged version of the ASP boom and flop a few years ago and that there are definitely other ways to do this. To me it seems as if the programming side is as much a marketing push by IBM,MS and others to generate more business than a real innovation.

    To me the idea of webservices seems to be the ability for a client of some kind (could also be a server type of client) to send a stateful request for info to a server of some kind. Since developers have been working around the Browser's lack of state for years and non browser applications can use a myriad of protocols etc to communicate to their server, such as XML-RPC,RMI,CORBA or whatever.

    Turning SOAP and UDDI into a universal standard is nice but can anybody tell me why companies trying to sell web services are any different from companies that tried to make a living (and flopped) with the ASP thing a few years back?

  26. Re:BEA is a joke by (H)elix1 · · Score: 2

    I see others have pointed out the IDE (Eclipse) != App Server. The integration can confuse folks, however. IBM is spending big bucks to make Webshphere Studio -- Eclipse with WAS debugger and build integration their main development tool.

    Anyhow, I've found that IBM will cost you just as much.... except you get something that is much rougher around the edges. Want EJB 2 support? IBM should be out with their first cut in another month or so. BEA went gold within a month of the spec coming out last November. My benchmarks showed it is not even close to a fair fight with the current v4 or beta5 vs BEA.

    Solid EJB containers cost real money. Oracle is getting cheaper -- just starting to work with it. Sun looks like they are giving one away for free, but not sure how solid that one is. JBoss gets pretty high praises from those in developement.

    Low cost IDE's for doing EJB work are the bane of Enterprise Java Bean developemnt. You end up spending big bucks 2K+ for an IDE like JBuilder, or you get something that works for only one App server. If JBoss expands the eclipse tool the same way IBM did, it will be a nice kit.

  27. show me the bennies by Tablizer · · Score: 2

    (* Well...no. But, then again, I've never seen an office suite that couldn't be hand-coded in assembler. *)

    I asked about *benefits* already. Show how the MS/SUN approach is also faster, better, cheaper, gets your shirts whiter, etc.

  28. Drag and drop? by Tablizer · · Score: 2

    That is the point. C#, ASP.NET and VS.NET are the perfect combination if you want to make HTML based UIs. You just drag a button onto a webpage, double click and write the event handling code in C#.

    That is kind of suspect since real HTML is flow-based and not coordinate-based. Thus, MS is probably breaking a standard or making up a new one, unless I am missing something here. (I suppose you could use style-sheet absolute positioning, but that was buggy on some browsers when I tried.)

    (BTW, Remote via-HTTP GUI's are highly possible IMO. Web forms for biz apps don't work very well for non-trivial stuff IMO. There are technology drafts like XWT and SCGUI for remote GUI's. They just need a big-name push.)

  29. correction (Re:More Python Please!) by Tablizer · · Score: 2

    (* There are multiple division candidates for any non-trivial app *)

    That should be "multiple orthogonal division candidates".

    Unfortunately, modularity is often a dead-end goal IMO. Somethings you can split up into a nice black box off to the side, some things you just can't. Rather than chase a dead-end dream of boxing everyhing, we need to think about creating "virtual modularity". This is where you can create the modularity you need for a *particular* need. Relational technology comes the closest to this IMO.

    OO just becomes exponentially complex when it tries these kinds of things because it is pretty much a one-dimensional technology.

    OO is wonderful for those items that fit and change along that one dimension/border, but barfs on those that go against its main grain.