Slashdot Mirror


User: Black+Hand

Black+Hand's activity in the archive.

Stories
0
Comments
3
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 3

  1. Re:Hey, you insensitive clods!... on Microsoft Remains Firm On Ending VB6 Support · · Score: 1

    Ah, but the real question is whether you are using the 16-bit or 32-bit version!

  2. Gutted J++ features are now in VB.NET on Does .NET Sound Like Java? · · Score: 2

    VB.NET will implement many Java features, in most cases using Java syntax. For example:

    • "Imports" statement to create references to external objects
    • Inheritance via "Extends" statement (but only single inheritance AFAIK)
    • Support for constructors
    • Ability to "throw" exceptions. Exception handling will now have a Java-like syntax, and client classes can choose which exceptions they will handle, as opposed to VB6's clumsy Err handling.

    There are also other major syntax and implementation revisions in VB.NET which make it incompatible with VB6. Nice touch!

    J++ lives, it just has a new name.

  3. Re:Can someone please help me out? on Sun & Microsoft Square Off With XML Standards · · Score: 1

    Both these solutions use XML as a transport mechanism for RPC. Don't know about the Sun product, but BizTalk (the framework, not The Server(TM)) is essentially a wrapper around SOAP (see W3C standard). SOAP sends in/out parameters in plaintext with a few wrapper XML tags to tell the server what to do with it. The preferred method of SOAP transport is HTTP POSTs.

    The difference between these products is how they unwrap the XML to actually make the procedure calls. In any case one could easily write an application to do the unwrapping and call the procedures. BizTalk (The Server(TM)) creates a visual drag-n-drop interface that allows the user to never even learn XML. This is its selling point (at $25K+ -- ouch!)

    If you don't mind getting your hands dirty with the XML, there's no reason to bother with these products for small to medium scale projects, since bare SOAP is easily implemented using server side scripting or even CGI.