FAQ

General Questions

Q: How do I start using and learning Echo?
A: Visit the Echo Tutorial.

Q: What is Ajax?
A: Ajax is a collection of technologies available in modern web browsers that collectively further the web's ability to be used as an application platform. The term "Ajax" is actually an acronym for "Asynchronous JavaScript and XML", and represents the combined use of XHTML, CSS, DOM Manipulation, XML/XSLT, JavaScript, and XMLHttpRequest. The term was coined in this article, "Ajax: A New Approach to Web Applications", and it seems to have stuck.
Q: Do I need to learn Ajax / JavaScript / XML / XHTML / DOM / CSS / etc. to use Echo?
A: In short, no. Echo provides an entirely Java-based API for application development. The only exception is in the case where the developer wishes to extend the framework by creating components that render custom XML/HTML/JavaScript code.

What's New in 2.0

Q: Will 1.1 / 1.0 applications run in 2.0?
A: No. Significant API changes have been made in Echo 2.0, including a restructuing of the major user-interface components. Once you have learned the Echo2 API, you will find that porting applications to the 2.0 platform is reasonably straightforward, though it will require reworking your user-interface code. In any case, the Echo 1.x codebase is continuing to be maintained.

Q: Did Echo 1.x use Ajax Technologies?
A: Yes and no, 1.x used some of the technologies in the Ajax package. The Echo 1.x series used a hidden browser frame (in lieu of XMLHttpRequests) to synchronize the state of the client and the server. It did not generally make manipulations to the client DOM, but rather only replaced entire HTML frames in response to changes.

Software Requirements

Q: What are the server requirements to host an Echo-based application?
A: A Java Servlet Container implementing the Servlet 2.3 Specification is required to host an Echo-based application. A 1.4 or later Java Virtual Machine is required.

Q: What browser platforms are supported by Echo?
A: Echo2 targets two specific web browser platforms:

  • Substantially W3C DOM / CSS Level 2 Compliant Browsers Echo2 supports browsers that support the Level 2 DOM and CSS specifications and provide XMLHttpRequest support. Mozilla/Firefox falls into this category.
  • Microsoft Internet Explorer 6.x (and later) Browsers for Windows Internet Explorer 6 is specifically targeted due to its widespread use.
  • Licensing

    Q: How is Echo licensed?
    A: Echo is licensed under the terms of the open-source Mozilla Public License. The terms of the Mozilla Public License provide software developers with the ability to use the product royalty free to develop both open-source and closed-source (proprietary) applications. Developers may also modify the source code to the Echo framework itself, but in this case are required to submit their changes back to the community. If desired, a developer may choose to instead license the Echo under the GNU Lesser General Public License or the GNU General Public License. Use of the GNU licenses is entirely optional.

    Q: Can proprietary applications be created using the Echo framework?
    A: Yes, proprietary applications can be created using the Echo framework. Echo JAR files may be distributed with proprietary, closed-source applications. Echo is licensed under the Mozilla Public License which does not impose any licensing requirements on applications that dynamically link to it. If you have any concerns with regard to developing commercial software dependent upon libraries provided under the Mozilla Public License, please feel free to contact us.

    Q: Can proprietary components be created and sold for the Echo framework?
    A: Yes, proprietary components can be created and sold for the Echo framework. The Mozilla Public License does not impose any restrictions on the licensing of your product.

    Support

    Q: What free support options are available?
    A: Support for the Echo framework is freely available from the Echo development community. The best place to obtain free support is by joining the Echo Developer Forums and asking a question in the Help and Support forum
    .
    Q: Is commercial support available?
    A: Yes, NextApp provides commercial support for Echo. Please see the Support Page for details.

    Q: How do I report a bug?
    A: If you think you've found a bug in Echo, please send a report to echo@nextapp.com.

    Errors

    Q: I encountered a server-side error in my application, what should I do?
    A: The servlet container error log should contain the exception / stack trace.

    Q: Q I encountered a JavaScript error while using an Echo application, what should I do?
    A: First, understand that when Echo encounters a server-side error, it will display a JavaScript alert to the client browser. This alert dialog is not actually a JavaScript error. If you encounter this alert dialog, see the FAQ section titled "I encountered a server-side error in my application, what should I do?"

    If the error you encountered is actually the result of flawed JavaScript code, please let us know by posting a bug to http://bugs.nextapp.com. Please include the platform type, browser version, and the operating system type and version. The more information we have on the problem the more successful we'll likely be at solving it.