6 Replies Latest reply on Apr 5, 2004 4:12 PM by ianh

    Benchmark JBoss vs. WebLogic

    timkk

      Hello,

      are there any accomplished benchmarks available which shows JBoss vs. Weblogic.
      I was visit the CeBIT in Hannover and there a Bea-employee told me that WebLogic will be faster than JBoss, but I don't think so and I search a benchmark, which i can use in my thesis.

      Thanx
      tim

        • 1. Re: Custom class with Jboss.net
          ianh

          The usual place for application objects is ... tara ... the application package, in your case the the ejb-jar.

          To deal with these classes, JBoss.net/Axis however needs mapping information in the form of a serializer/deserializer pair (e.g. a Bean(De)Serializer that canonically maps bean properties to xml elements). This can be specified in the webservice deployment descriptor (in your wsr) as follows:



          Note that as of JBoss3.2, these descriptors can be easily generated using our jboss.net xdoclet module and tag annotations in your custom objects:

          /**
          * A serializable data object for testing data passed to an EJB through
          * the web service interface.
          * @author jung
          * @version $Revision: 1.1.2.1 $
          * @jboss-net:xml-schema urn="hello:HelloData"
          */

          public class HelloData
          implements java.io.Serializable
          {
          private String name;

          public String getName()
          {
          return name;
          }

          public void setName(String name)
          {
          this.name = name;
          }
          }

          Hope that helps,
          CGJ

          • 2. Re: Benchmark JBoss vs. WebLogic
            acoliver

            The BEA license prohibits you from downloading BEA and benchmarking it against JBoss and then publishing it. You can find ones were BEA or IBM published their own benchmark against JBoss but of course they say what you expect.

            • 3. Re: Benchmark JBoss vs. WebLogic
              rechete

              hello,tim
              do you have any infomation about accomplished benchmarks available which shows JBoss vs. Weblogic.
              could you give me some advice?
              anyway,thank you in advance.
              my email: rechete@hotmail.com


              • 4. Re: Benchmark JBoss vs. WebLogic

                Hi!

                I've done some intensive search for published benchmarks and found resources on the net where was claimed to have benchmarked several J2EE compliant AS against each other. But it is as always there were apples and oranges compared (or pears as you would say in german).

                Benchmarking is rocket science and a great deal depending on your specific application and AS tuning.

                If you want a meaningful result, do it by your own, with your own application.

                From a lukewarm point of view both have their assets and drawbacks and in general I would not make my decision on raw performance. I.e. to bring another buzz word in play you may take TCO (total cost of ownership) into your consideration: You can compensate lower speed with more instances which may be less expensive if you don't have to pay licenses -- or more expensive if the hardware, operation and support cost is higher than the cost for licences.

                • 5. Re: Benchmark JBoss vs. WebLogic
                  tomdee

                  We were running BEA WLS and yes it has faster IO but that's only if
                  you are using a proprietary native IO module.

                  Anyway, we've switched our entire farm from WLS to JBoss and haven't
                  looked back.



                  • 6. Re: Benchmark JBoss vs. WebLogic
                    slaboure

                    Can you elaborate on this native IO feature? what does it handle specifically? file access? network access?

                    thanks