3 Replies Latest reply on Aug 28, 2006 6:13 AM by tfennelly

    JBossESB 4.0 Beta 1 released

    marklittle

      It's out! Go to the labs page and follow the download link. Enjoy!

        • 1. Re: JBossESB 4.0 Beta 1 released
          tfennelly

          NOTE:

          In order to run the TrailBlazer, you may need to create the following "customer_index" table. Check your database!

          Creation scripts....

          Postgres:

          CREATE TABLE public.customer_index (
          uid int8 NOT NULL,
          stamp int8 NULL,
          latest_snap_uid int8 NULL,
          latest_snap_date text NULL,
          name text NULL,
          phone text NULL,
          address text NULL,
          PRIMARY KEY(uid)
          );

          MySql:

          CREATE TABLE `customer_index` (

          `uid` bigint(20) unsigned NOT NULL default '0',

          `stamp` bigint(20) unsigned default NULL,

          `latest_snap_uid` bigint(20) unsigned default NULL,

          `latest_snap_date` text,

          `name` text,

          `phone` text,

          `address` text,

          PRIMARY KEY (`uid`),

          UNIQUE KEY `customer_index_pkey` (`uid`)

          ) ENGINE=InnoDB DEFAULT CHARSET=latin1;


          HSQL:

          CREATE TABLE customer_index (

          uid bigint NOT NULL,

          stamp bigint,

          latest_snap_uid bigint,

          latest_snap_date varchar,

          name varchar,

          phone varchar,

          address varchar,

          CONSTRAINT customer_index_pk PRIMARY KEY (uid)

          );

          • 2. Re: JBossESB 4.0 Beta 1 released
            erfoley

            Maybe it is just me trying to think too early on a Sunday morning...but I can't seem to find the beta 1 download. On the link given:

            http://labs.jboss.com/portal/jbossesb/downloads

            there are only downloads for the alpha release from mid-July. Did the beta get withdrawn for some reason? Or should I just go get another couple hours of sleep and try again?

            Thanks,
            Ed Foley

            • 3. Re: JBossESB 4.0 Beta 1 released
              tfennelly

               

              "erfoley" wrote:
              Maybe it is just me trying to think too early on a Sunday morning...but I can't seem to find the beta 1 download. On the link given:

              http://labs.jboss.com/portal/jbossesb/downloads

              there are only downloads for the alpha release from mid-July. Did the beta get withdrawn for some reason? Or should I just go get another couple hours of sleep and try again?

              Thanks,
              Ed Foley


              Hi Ed. No, you were not seeing things ;-( This download site seems to be causing ongoing issues: http://www.jboss.com/index.html?module=bb&op=viewtopic&t=88645