667481 members! Sign up to stay informed.

Sponsored Links


Resources

Enterprise Java
Research Library

Get Java white papers, product information, case studies and webcasts

News News News Messages: 13 Messages: 13 Messages: 13 Printer friendly Printer friendly Printer friendly Post reply Post reply Post reply XML XML XML

BEA interview on Open source strategy and the Beehive project

Posted by: Dion Almaer on September 16, 2004 DIGG
Cliff Schmidt, Product Manager at BEA, has been interviewed on the subject of Open source strategy and the Beehive project. He discusses the reasons for Beehive, and what it contains. He also goes into detail on the how BEA feels about open source: from Apache to Codehaus.

Read the full interview: Open source strategy and the Beehive project

Threaded replies

·  BEA interview on Open source strategy and the Beehive project by Dion Almaer on Thu Sep 16 17:19:50 EDT 2004
  ·  Finally, the Java we've all been waiting for? by Viagra V on Fri Sep 17 01:40:47 EDT 2004
  ·  BEA interview on Open source strategy and the Beehive project by mark lybarger on Fri Sep 17 12:56:04 EDT 2004
    ·  BEA interview on Open source strategy and the Beehive project by Cliff Schmidt on Fri Sep 17 14:50:53 EDT 2004
      ·  Comments on Controls by sri kanch on Fri Sep 17 15:53:38 EDT 2004
        ·  Comments on Controls by Kyle Marvin on Fri Sep 17 17:35:56 EDT 2004
          ·  Thanks Kyle that was informative. by sri kanch on Mon Sep 20 09:30:45 EDT 2004
          ·  Comments on Controls by sri kanch on Wed Sep 22 09:40:07 EDT 2004
  ·  Tool support for Controls by Trond Andersen on Mon Sep 20 07:50:37 EDT 2004
    ·  Tool support for Controls by Cliff Schmidt on Mon Sep 20 13:05:55 EDT 2004
      ·  Eclipse Pollinate by Carl McConnell on Mon Sep 20 21:08:05 EDT 2004
  ·  Beehive and JSF by Chris Braun on Wed Sep 22 11:26:34 EDT 2004
    ·  MVC framework and JSF by Trond Andersen on Sun Sep 26 06:36:41 EDT 2004
    ·  Beehive and JSF by sri kanch on Thu Sep 30 10:02:29 EDT 2004
  Message #138272 Post reply Post reply Post reply Go to top Go to top Go to top

Finally, the Java we've all been waiting for?

Posted by: Viagra V on September 17, 2004 in response to Message #138245
It's good to see that Beehive is trying to take care of some of the Java Internet issues (finally). I'm sure Sun was thrilled enough to send a cake!

BRV
Viagra

  Message #138352 Post reply Post reply Post reply Go to top Go to top Go to top

BEA interview on Open source strategy and the Beehive project

Posted by: mark lybarger on September 17, 2004 in response to Message #138245
i can't find an interview to be read. it appears to be a windows media format.

  Message #138405 Post reply Post reply Post reply Go to top Go to top Go to top

BEA interview on Open source strategy and the Beehive project

Posted by: Cliff Schmidt on September 17, 2004 in response to Message #138352
i can't find an interview to be read. it appears to be a windows media format.
I believe that whether you chose Windows Media or Real Media, you end up with a window that has two frames -- the bottom one should have the transcription. I've found that I need to enlarge the browser window to see the transcription.

BTW, the transcription isn't perfect (as few transcriptions are). If something doesn't make sense, take a look at the video. (of course, it still might not make sense, but then you'll know who to blame. ;-)

  Message #138421 Post reply Post reply Post reply Go to top Go to top Go to top

Comments on Controls

Posted by: sri kanch on September 17, 2004 in response to Message #138405
I saw interviewee beating around the bush on the controls questions, So I could not stop making this comment. I have been working on Workshop 8.1 and controls from when it was released. I think of controls as a facade layer. I think of controls as session facade. The interviewee says that they are essentially javabeans but I do not buy that. I think they are session beans.

Let me know what you guys think about this.

  Message #138439 Post reply Post reply Post reply Go to top Go to top Go to top

Comments on Controls

Posted by: Kyle Marvin on September 17, 2004 in response to Message #138421
I have been working on Workshop 8.1 and controls from when it was released. I think of controls as a facade layer.
You are dead on here. The goal of Controls is precisely to enable the authoring of simplified (and metadata-configured) facades to represent resources or other abstractions. A key is that a wide variety of things can be represented using a single consistent client model, easing the learning curve for the client of the facade. On the tooling side, this consistency means tools can also discover, present, and configure available facades w/out having to code customized for the thing that lives behind facade.
I think of controls as session facade. The interviewee says that they are essentially javabeans but I do not buy that. I think they are session beans.Let me know what you guys think about this.
Sorry, but you are wrong here. Beehive Controls are 100% JavaBeans, and will fully conform to the JavaBeans spec. They will expose properties using JavaBeans property accessors, enable/deliver events using the JavaBeans EventListener model, and expose tooling information using JavaBeans introspection mechanisms. The confusion is understandable, since this is distinct and different from Controls in Workshop 8.1. BEA has heard and responded to user community comments that 8.1 Controls were a bit too much of a "black box" and rather than inventing yet-another-component-model, has found a way to leverage one (JavaBeans) that already exists and is quite appropriate.

What Controls layers atop JavaBeans is bringing JSR-175 into play to free JavaBean authors from some of the mundane details of writing a bean (property/listener management, etc) and to provide a very toolable client model for instantiating and configuring a bean in a particular client context.

Beehive Controls aren't technically session beans (at least in an EJB sense), because they aren't designed to start/delimit the scope of transactions (what SBs do, and do really well). They may well act as a facade for resources that are transacted, but there the goal is to act as a good and resource-efficient participant in transactions, not an initiator/controller of them. Controls can complement EJBs (or other transacted containers) by providing facades to access them or can play well within them if the EJBs need to consume other resources. It is a non-goal to compete with or replace them. IMO, the last thing the Java community needs is yet-another-transacted container. Aren't there enough choices already? ;)

Sorry to go so long... if you want more details, an appropriate place to look is on the Apache Beehive site, and there are dev and user lists there as well.

-- Kyle Marvin
   Developer, Apache Beehive Controls
   (BEA System employee)

  Message #138605 Post reply Post reply Post reply Go to top Go to top Go to top

Tool support for Controls

Posted by: Trond Andersen on September 20, 2004 in response to Message #138245
If tool-shops buy into these Controls, I think this might be a good concept to simplify development on the J2EE platform, but I think it's essential that not only BEA workshop supports this technology. So the question is whether Eclipse/IntelliJ/NetBeans++ will try to use this technology.

Any indications that this is the case ?

  Message #138631 Post reply Post reply Post reply Go to top Go to top Go to top

Thanks Kyle that was informative.

Posted by: sri kanch on September 20, 2004 in response to Message #138439
Thanks Kyle that was informative.

  Message #138676 Post reply Post reply Post reply Go to top Go to top Go to top

Tool support for Controls

Posted by: Cliff Schmidt on September 20, 2004 in response to Message #138605
So the question is whether Eclipse/IntelliJ/NetBeans++ will try to use this technology.Any indications that this is the case ?
Eclipse is building support for Controls and the rest of the Apache Beehive framework through the Eclipse Pollinate project. Borland has publicly supported the Apache Beehive project, but I'm not sure exactly what they've got brewing. There's also been some interest from NetBeans folks.

  Message #138735 Post reply Post reply Post reply Go to top Go to top Go to top

Eclipse Pollinate

Posted by: Carl McConnell on September 20, 2004 in response to Message #138676
As Cliff mentioned, the Eclipse Pollinate project is building support in Eclipse for the Apache Beehive framework. The Pollinate project just recently received approval from Eclipse.org, and we are still in the process of moving the Pollinate source from its temporary home donated by Instantiations to its official home at Eclipse.org. We are on schedule for an M1 release of Pollinate at the end of September. This release will provide very basic support (i.e. with no fancy UI tools such as a page flow editor) for building Beehive-enabled web apps that use only page flows (but not controls, which will be supported down the road).

    Carl McConnell
    Eclipse Pollinate project

  Message #139075 Post reply Post reply Post reply Go to top Go to top Go to top

Comments on Controls

Posted by: sri kanch on September 22, 2004 in response to Message #138439
Sorry, but you are wrong here. Beehive Controls are 100% JavaBeans, and will fully conform to the JavaBeans spec.


I did some more investigation on this front and found that I was not wrong. We both are right. What I referring to was workshop 8.1 and you were talking in respect to Beehive project.

The controls are stateless session EJBs right now in workshop 8.1. They will be based on Java Bean component model in Beehive because of obvious problems.

  Message #139107 Post reply Post reply Post reply Go to top Go to top Go to top

Beehive and JSF

Posted by: Chris Braun on September 22, 2004 in response to Message #138245
I am still confused over where JSF fits in here. According to the interviewee JSF merely addresses the View aspect of MVC. I thought JSF was an MVC framework that also included UI (view) elements.

Is this BEAs way of saying we don't use JSF but you can use some of UI components?

Chris Braun

  Message #139695 Post reply Post reply Post reply Go to top Go to top Go to top

MVC framework and JSF

Posted by: Trond Andersen on September 26, 2004 in response to Message #139107
According to the interviewee JSF merely addresses the View aspect of MVC. I thought JSF was an MVC framework that also included UI (view) elements.
I read the available chapter on O'Reilly's JavaServer Faces. In this chapter you will see the difference between a 'regular MVC framework' and JSF. I think also there will some work to make JSF work together with Struts.

  Message #140546 Post reply Post reply Post reply Go to top Go to top Go to top

Beehive and JSF

Posted by: sri kanch on September 30, 2004 in response to Message #139107
I am still confused over where JSF fits in here. According to the interviewee JSF merely addresses the View aspect of MVC. I thought JSF was an MVC framework that also included UI (view) elements. Is this BEAs way of saying we don't use JSF but you can use some of UI components?Chris Braun
You can find the answer here:
http://blogs.sun.com/roller/page/craigmcc/20040927#struts_or_jsf_struts_and

New content on TheServerSide.comNew content on TheServerSide.comNew content on TheServerSide.com

Dependency Injection in Java EE 6 - Part 1

Reza Rahman explores the features of the proposed JSR 299, Contexts and Dependency Injection for Java EE (CDI). When approved, it promises to be a key feature of Java EE 6. (November 2, Article)

SAML: It's Not just for Web services

SAML is an XML-based standard for exchanging authentication and authorization data between security domains. The single most important problem that SAML was created to solve is the Web browser Single Sign-On problem. Many organizations are debating whether to stay with version 1.1 or move to 2.0. This article makes observations about both options. (September 28, Article)

Programming is Also Teaching Your Team

Joe Ottinger takes a look at how people learn, and applies it to the practice of programming. He notes that understanding how people learn is an essential part of working in a programming team. (September 22, Article)

Can Java EE Deliver The Asynchronous Web?

Stephen Maryka gave us an article about the Asynchronous Web and posed a number of questions that get examined like an approach to delivering Asynchronous Web capabilities through extensions to existing Java EE technologies. (July 14, Article)

JSF Flex

JavaServer Faces Flex goal is to provide users capability in creating standard Flex components, part of flexSDK which is open sourced through MPL license, as normal JSF components. This article by Ji Hoon Kim will provide an overview of creating a simple multilingual JSF page consisting of JSF Flex tags. (June 29, Article)

The Rules of SOA - A Road to a Successful SOA Implementation

In this session Jeff explores the key characteristics of successful SOA projects. He covers some of the patterns, and anti-patterns, tool sets, and strategies that he himself learned the hard way. Last, he provides a strategy and blueprint for achieving a high likelihood of success in your SOA project. (June 23, Tech Talk)

Ari Zilka Talks About Terracotta 3.1

Ari Zilka, CTO of Terracotta, Inc., talks about the new features in Terracotta 3.1, announced during JavaOne and available now. (June 15, Tech Talk)

Enterprise Application Integration, and Spring

In this Tech Talk, Josh Long explores an integration challenge using Spring Integration and walks through the implementation, employing and expanding on the basic patterns of Enterprise Application Integration to tie together components into a function integration solution, and then demonstrates how Spring Integration helps address the integration requirements. (June 15, Tech Talk)

Google Web Toolkit: An Introduction

In this Tech Talk, David Geary teaches you: The basics of Google Web Toolkit; How to implement Ajax-enabled applications in Java; Internationalization; Hooking into the browser history mechanism; Remote procedure calls. (June 4, Tech Talk)

Just Enough Early Architecture to Guide Development

Jon Kern discusses the best architecture/technical solutions and ensure that they are repeated by all developers. By tackling the architecture up-front in a serial manner, subsequent parallel development will be much more manageable and predictable. (May 28, Tech Talk)

Productive Programmer: On the Lam from the Furniture Police

This keynote describes the frustrations of modern knowledge workers in their quest to actually get some work done, and solutions for how to guard yourself against all those distractions. Neal Ford talks about environments, coding, acceleration, automation, and avoiding repetition as ways to defeat the misguided attempts to sap your ability to produce good work. (May 26, Tech Talk)

Auto-Scaling Your Existing Web Application

Gil demonstrates how new, aggressive uses of already abundant compute capacity by common applications offer competitive value for application designers. (May 21, Tech Talk)

Automating Hibernate Mapping and Queries For Java Web Development

Chris Keene introduces WaveMaker as a new way to automate the ability to generate Hibernate classes in order to more quickly bring OR mapping into an application. (May 19, Article)

Auto-Scaling Your Existing Web Application

In this session Nati Shalom demonstrates how to take a standard Java EE web application and scale it out or down dynamically without changes to the application code. Seeing as most web applications are over-provisioned to meet infrequent peak loads, this is a dramatic change because it enables growing your application as needed, when needed, without paying for unutilized resources. (May 19, Tech Talk)

Free Book PDF Download: Mastering EJB Third Edition

Mastering EJB was one of the original and most influential EJB books in the industry. Mastering EJB III now returns with two new expert co-authors, updated for EJB 2.1 and 30% new chapters including security, integration, best practices, open source, and more.
(Book PDF Download)

Application Server Matrix

The Application Server Matrix is a detailed listing of J2EE vendors and their application server products, with information on latest version numbers, J2EE spec support and licensing, pricing, platform support, and links to product downloads and reviews.
(Application Server Comparison Matrix)

News | Blogs | Discussions | Tech talks | Patterns | Reviews | White Papers | Downloads | Articles | Media kit | About
Java Solutions
All Content Copyright ©2007 TheServerSide Privacy Policy
Site Map