Does Tomcat 4.01 final release provides JAAS 1.0 ?

Hi,
I want to use Jaas in my Servlets. I want that the user will be authenticated, and then
when the user have the authorisation, who can run the servlet.
The problem is, I don't find any tutorials, examples, codes to this subject.
Can someone tell me any resource, or how I can realize it ?
erdkal

hi..
im a jaas newbie (having trouble even running the samples provided with jaas 1.0 ^_^) ; though i can tell this :
. jaas is not strongly related to servlets (so is it provided w/ tomcat4 ? i dont think so.. but w/ jdk1.4 yes)
. here's a link to a pdf from a javaone conf presenting jaas upon servlet/jsp app : http://servlet.java.sun.com/javaone/conf/sessions/1356/google-sf2001.jsp
. i suggest you to perhaps make use of servlet filters to authenticate usrs before they access your servlets. filters are greaaat :)
hope this helps
-- rhill

Similar Messages

  • Help needed get JSF final release running on tomcat 5

    Hi there,
    I know my topic seems to be a easy thing which is often discusseb but I tell you it's not. And after searching the forum an the web... it's driving me crazy I want to make some development and tests but I can' get my stuff running on tomcat 5 and jsf final release.
    This is my last error message... seems like tomcat don't know anything about jsf...
    my directories---------------------------
    my webbapp
    -- WEB-INF
    classes
    lib
    scr
    web.xml
    faces-config.xml
    WEB-INF
    commons-beanutils.jar
    commons-collections.jar
    commons-digester.jar
    commons-logging.jar
    jsf-api.jar
    jsf-impl.jar
    jstl.jar
    standard.jar
    web.xml ------------------------------------------------------------------------
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app
    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
    "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
    <display-name>MyWeb</display-name>
    <description>
    FElix
    </description>
    <context-param>
    <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
    <param-value>client</param-value>
    </context-param>
    <!-- ############# Faces Servlet ############# -->
    <servlet>
    <servlet-name>JavaServer Faces Servlet</servlet-name>
    <servlet-class>
    javax.faces.webapp.FacesServlet
    </servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <!-- ############# Mapping ############### -->
    <servlet-mapping>
    <servlet-name>JavaServer Faces Servlet</servlet-name>
    <url-pattern>/faces/*</url-pattern>
    </servlet-mapping>
    <listener>
    <listener-class>
    com.sun.faces.config.ConfigureListener
    </listener-class>
    </listener>
    </web-app>
    faces-config.xml---------------------------------
    <?xml version="1.0"?>
    <!DOCTYPE faces-config PUBLIC
    "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.0//EN"
    "http://java.sun.com/dtd/web-facesconfig_1_0.dtd">
    <faces-config>
    <navigation-rule>
    <from-view-id>/eingabe.jsp</from-view-id>
    <navigation-case>
    <from-outcome>success</from-outcome>
    <to-view-id>/ausgabe.jsp</to-view-id>
    </navigation-case>
    </navigation-rule>
    <managed-bean>
    <managed-bean-name>Square</managed-bean-name>
    <managed-bean-class>src.com.edu.jsf.bean.SquareBean</managed-bean-class>
    <managed-bean-scope>session</managed-bean-scope>
    </managed-bean>
    </faces-config>
    ERROR - MESSAGE
    org.apache.jasper.JasperException: /eingabe.jsp(19,3) No tag "input_number" defined in tag library imported with prefix "h"
    org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:83)
    org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:402)
    org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:236)
    org.apache.jasper.compiler.Parser.parseCustomTag(Parser.java:1346)
    org.apache.jasper.compiler.Parser.parseElements(Parser.java:1598)
    org.apache.jasper.compiler.Parser.parseBody(Parser.java:1827)
    org.apache.jasper.compiler.Parser.parseOptionalBody(Parser.java:1100)
    org.apache.jasper.compiler.Parser.parseCustomTag(Parser.java:1405)
    org.apache.jasper.compiler.Parser.parseElements(Parser.java:1598)
    org.apache.jasper.compiler.Parser.parseBody(Parser.java:1827)
    org.apache.jasper.compiler.Parser.parseOptionalBody(Parser.java:1100)
    org.apache.jasper.compiler.Parser.parseCustomTag(Parser.java:1405)
    org.apache.jasper.compiler.Parser.parseElements(Parser.java:1598)
    org.apache.jasper.compiler.Parser.parse(Parser.java:171)
    org.apache.jasper.compiler.ParserController.doParse(ParserController.java:258)
    org.apache.jasper.compiler.ParserController.parse(ParserController.java:139)
    org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:237)
    org.apache.jasper.compiler.Compiler.compile(Compiler.java:456)
    org.apache.jasper.compiler.Compiler.compile(Compiler.java:439)
    org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:553)
    org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:291)
    org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:301)
    org.apache.jasper.servlet.JspServlet.service(JspServlet.java:248)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:322)
    com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:142)
    com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:87)
    com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:200)
    com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:117)
    javax.faces.webapp.FacesServlet.service(FacesServlet.java:198)
    I really stuck so any help is appriciated...
    I also tried to put the jars in the common/lib
    but still not working...
    I tried to get it running with jwsdp ... but same s*** ...
    best regards
    Felix

    thanks....
    this means... everything was working and I better should have read the notes...
    I went back.... installed jwsdp1.3 and everything was fine...
    so I will give it a try... change the classes and at this time i use the right tags...
    but this will also work for the tomcat downloaded from the apache.org site?
    I only need the jar files in the jsf-1.0/lib file and the latest jstl-jars ---
    thanks again
    reagards felix

  • Does the final Release 5.1 Support ear type deployment in Weblogic

    I down loaded final Release 5.1 and trying to find deploying different
    modules using using ear (Enterprise Archieve), I can not find
    any documents.
    Does the final Release support ear type deploying or not.
    Regards
    Krishna

    No, it supports war and jar deployments only.
    -- Rob
    Krishna Chaganti wrote:
    I down loaded final Release 5.1 and trying to find deploying different
    modules using using ear (Enterprise Archieve), I can not find
    any documents.
    Does the final Release support ear type deploying or not.
    Regards
    Krishna

  • Jsf-1.0 Final Release and tomcat 5.019

    I post again to say that is works well finally.
    To make it works:
    - download jsf-1.0 FR
    - in your application .war put in WEB-INF/lib/: common-digester.jar, jsf-api.jar, jsf-impl.jar, common-beanutils.jar and jstl.jar. (libs of jsf + lib of jsp).
    - dont use in web.xml <listener-class>com.sun.config.configListener<listener-class>
    - put your appli in jakarata.../webapps
    It works without a class extending ServletContextListener (servlet-api.jar).
    If you have problems erase jakarta.../work/Catalina/yourappli and reload.

    Just for my own information : where did you get jstl.jar and standard.jar ?
    I had to dig in the latest nightly snapshot from jstl jakarta web site to find them but I don't even know if the one I use are final releases of not...

  • [Announcement: Java server-side web controls] - TICL 1.0 Final Released

    Hello JSP developers,
    We are pleased to announce the immediate availability of TICL (Tag Interface
    Component Library) 1.0 Final Release. TICL is library of server-side user
    interface components accessible through JSP tags. Like a conventional
    desktop toolkit, the components maintain state and manage interaction logic
    with the end-user with little or no assistance from the programmer.
    Read more about TICL at http://www.kobrix.com/ticl/ticlmain.jsp.
    If you are already a TICL user, check out the release notes at
    http://www.kobrix.com/ticl/releasenotes.jsp for the latest changes.
    More info
    One of the major goals of TICL is to bring RAD-like development to the WEB
    platform. Programmers can concentrate on logical functionality and build JSP
    pages by placing TICL components through tags and responding to user events.
    Every component is self-contained and manages interaction with the end-user.
    Visual appearance of components is abstracted into a high-level styles
    framework. In fact, TICL is probably the only server-side Java toolkit that
    rivals Microsoft ASP.NET's web controls.
    The library is tailored more towards WEB application development, rather
    than content only oriented sites. It is designed to quickly build clean,
    robust, well-structured and therefore highly maintainable code. It
    integrates seemlessly into existing JSP applications and it will work on any
    standard compliant JSP 1.1 container (e.g. Tomcat 3.2.1 and above, Resin
    etc.) and with fairly recent versions of the popular browsers.
    Core features are:
    - A powerful and extensible server-side event model. Component-end user
    interaction is encapsulated into a well defined set of server-side events.
    You can of course define event listeners, develop custom events, event
    filters etc.
    - Predefined components like panels, tabbed panels, tree views, DHTML menus,
    table views. Most can perform their interaction with the end-user at the
    browser through DHTML or by making a trip back to server on every user
    action (like expanding a tree node or minimizing a panel) - that is
    components are either "client" or "server" managed.
    - Smart browser handling. A complete framework for dealing with browser
    (user agent) capabilities, including detection of dynamic properties like
    connection speed, screen resolution, available plugins etc.; supporting JSP
    tags; on the fly selection of component rendering based on the current user
    agent.
    - A high-level styles framework for complete customization of the look&feel
    of components. Styles can be organized into themes. An inheritence mechanism
    of style objects provides for a powerful high-level structuring. The
    framework allows for a clean separation between look&feel and functional
    behaviour of GUI elements. No more copy&paste, no more code cluttering with
    tedious, browser-specific HTML details - consistency of look&feel can be
    easily achieved by maintaining a single TICL style sheet, a simple XML file,
    that is applied to all pages in your WEB application.
    - Full encapsulation of HTML forms, including a file upload component,
    augmented with things such as server-side command handlers, labels and DHTML
    tooltips. Form fields are typed, true server-side components. Not limited to
    the standard HTML form fields, they operate on a high level and custom ones
    can be developed and plugged into the framework.
    - A very powerful and easy to use declarative form validation mechanism
    (both client and server-side). You define validation rules and handlers for
    invalid forms in a clean, declarative way. The same rules you define can be
    applied at the client (through automatic generation of the necessary
    JavaScript) or at the server. Special purpose syntax allows you to easily
    handle interdependencies between field values.
    - A Data Objects framework integrated with TICL forms. Allows you to
    manipulate complex aggregate structures and associate them with forms for
    automatic mapping to/from form field values and data object fields (e.g.
    Java beans). A type mapping framework allows you to map any form field type
    to any Java type.
    - An integration module for the popular Struts framework is provided also.
    For example, it is possible to use the powerful TICL form tags with Struts'
    ActionForms.
    TICL is FREE for non-commercial and non-govermental use, and for an
    unlimited evaluation period. It comes with an extensive, over 200 pages,
    Reference Manual. To download it, please goto http://www.kobrix.com and
    select Downloads from the TICL pulldown menu. If you are not already a TICL
    user, you may need to register first.
    We sincerely hope you will enjoy TICL and are looking forward to your
    feedback!
    Best Regards,
    Borislav Iordanov
    [email protected]
    Kobrix Software Inc.
    http://www.kobrix.com

    This looks quite nice. I'm going to evaluate it now, but I wish it was open-source....
    Judging from the release notes, it's been around for a while. Has anybody had any experience with this product? Is it reliable? Does it scale well?

  • EF ProviderManifestToken issue when updating ODAC Beta 3 to final release

    Hi everybody,
    We're using ODAC (connecting to a Oracle 9i) with VS2010, developing with .NET Framework 4 using Entity Framework. We started our developments using ODAC Beta 1, and we have been updating the ODAC every time that a new Beta was released and everything was going like expected, but we're having trouble with the last update, from ODAC Beta 3 to the final release (11.2.0.3). Note that we have only one ODAC installed at the time, for every update we first uninstall the old release, then we install the new ones and finally we update the application references to the new Oracle.DataAccess.dll.
    The first error occurred when the application attempt to access the DB, the message we got was: "+ProviderManifestToken no es válido+" ("*ProviderManifestToken is not valid*") .
    We tried updating the model (EDMX) from the database (the only change made was an update in the EDMX SSDL content from ProviderManifestToken="9i" to ProviderManifestToken="9.2"), then another error came out: "+El esquema especificado no es válido. Errores: Modelo.ssdl (2,93) : error 0169: Los artefactos SSDL deben tener como destino el mismo proveedor. ProviderManifestToken '9i' es diferente de '9.2' que se encontró antes.+" (something like "*The specified schema is not valid. All SSDL artifacts must target the same provider. The ProviderManifestToken '9i' is different from '9.2' that was encountered earlier.*"). We did some research about this error, but couldn’t find any solution... does anyone know how the update from Beta 3 to Final Release should be done? are we missing any configuration?
    Thanks in advance!
    Lucas

    ODAC Beta 3 (11.2.0.2.50) starts to use two most-significant digits of an Oracle database version number for ProviderManifestToken.
    You have no problem with ODAC Beta 3 by modifying '9i' to '9.2' for ProviderManifestToken. But when updating ODAC Beta 3 to final release (11.2.0.3) and doing the same modifications, the said "another error" occurs. That seems to indicate the issue is not about ProviderManifestToken itself.
    I am wondering if there are different store schemas in your edmx file and the error is caused by schema filtering.
    For example, having differnet store schemas for the Schema= like below.
    <EntitySet Name="Categories" EntityType="Model.Store.Categories" store:Type="Tables" Schema="USER1" />
    <EntitySet Name="Customers" EntityType="Model.Store.Customers" store:Type="Tables" Schema="USER2" />
    Can you please check it?
    Another question is: Can you regenerate the edmx file using the final release (11.2.0.3)?
    This is the preferable way.
    Edited by: shsu on Mar 1, 2012 12:32 PM

  • Camera Raw 4.5 final release?

    Now it's been four weeks since Camera Raw 4.5 Release Candidate (ACR 4.5.0.161) was brought to us via Adobe Labs. Does anyone have any issues with it? I don't. Does anyone have an idea when the final release is supposed to arrive? I feel a four-week testing period is more than adequate for a tentative version that's supposed to be a "Release Candidate" (however the plug-in calls itself "4.5 Beta" ... go figure).
    Another Camera Raw version most likely will be due in October, to support all the new digital cameras and backs that (hopefully) will get introduced at Photokina in September. I wonder if that's going to be ACR 4.6 ... or will ACR 4.5 "Grand Master" (which means "final release" in Adobe speak) be deferred until then?
    -- Olaf

    Jeff Schewe wrote:
    > Fortunately, it's not your job
    > to worry about it, is it?
    Fortunately not, indeed.
    Jeff further wrote:
    > If you are unhappy [...] you are under
    > no obligation to use it if you don't want to.
    Huh? The conclusions you're drawing from my thinking aloud are, umm ... strange, to say the least. If you feel my inquiry was inappropriate and/or pointless then your reply also is.
    Actually, I am quite happy with ACR 4.5RC, and furthermore I didn't hear anybody else reporting any problems. And that's exactly why I'm wondering why the final release isn't out yet. I guess I'd be less wondering if this tentative version had been announced and communicated as Beta rather than as Release Candidate. Anyway ... I'm just curious. It does not mean I was unhappy in any way.
    Jeff further wrote:
    > ... so, you'll just have to wait, huh?
    Yes, obviously.
    Jeff further wrote:
    > Hey, it's nice out, go shoot something ...
    Glad to hear it's nice on your side of the Big Pond, too.
    -- Olaf

  • Date of Final Release Indicator for PO Release

    Is there a table in SAP that provides the date the PO was approved for Final Release? I know that through ME23N you can get this information in the Environment and Header Changes area, but we would like to add this information to a report and are having trouble locating where SAP is storing the data.

    Hi,
    Pass into CDPOS table:
    OBJECTCLAS  = u201CEINKBELEGu201D , OBJECTID = PO Number (EBELN), T. Code = u201CME28 or equal to ME29Nu201D and Get all change document no. (CHANGENR)
    TABNAME = u201CEKKOu201D, u201CField Name= FRGKE, Old Value = u201C0u201D and New value = u201C1u201D in to CDPOS and get latest change document number (CHANGENR).
    Then pass CHANGENR into  Change document No (CDHDR- CHANGENR), OBJECTCLAS = u201CEINKBELEGu201D,
    U get who has released and date also.
    Regards,
    chinna

  • Could I use jstl tag in the JSP page of Creator 2 final release?

    I have a JSP page used to work well in Creator 2EA2. The page
    has the following code snippets:
    <c:forEach items="${SessionBean1.webQuery1.details}" var="item">
                                                        <tr>
                                                            <td class="detailKey">
                                                                <c:out value="${item.key}"/>
                                                            </td>
                                                            <td class="detailValue">
                                                                <c:out value="${item.value}"/>
                                                            </td>
                                                        </tr>
                                                    </c:forEach>
    ...Basically, it generates a table columns.
    After migrating to Creator2 final release, a fatal exception is thrown
    when the page is launched :
    Description: An unhandled exception occurred during the execution of the web application. Please review the following stack trace for more information regarding the error.
    Exception Details: org.apache.jasper.JasperException
      /Page1.jsp(148,132) According to TLD or attribute directive in tag file, attribute items does not accept any expressions
    Possible Source of Error:
       Class Name: org.apache.jasper.compiler.DefaultErrorHandler
       File Name: DefaultErrorHandler.java
       Method Name: jspError
       Line Number: 43
    Source not available. Information regarding the location of the exception can be identified using the exception stack trace below.
    Stack Trace:
    org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:43)
    org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:414)
    org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:155)
    org.apache.jasper.compiler.Validator$ValidateVisitor.checkXmlAttributes Any suggestion, or work around?
    Thanks

    There is something strange in the HTML for you posedt, so I cannot clearly see what you are trying to do in your JSP page. But either of the following kinds of usage would cause this kind of error:
        <h:dropDown ... items="<%= ...some Java expression ...>"/>or
        <h:dropDown ... items="${...some JSP EL expression...}"/>This is because JSF component tags allow neither Java runtime expressions nor JSP EL expressions (at least in JSF 1.1, which is what Creator 2 supports). The answer is to use a JSF EL expression instead, like this:
        <h:dropDown ... items="#{... some EL expression}"/>Craig

  • JSF 1.0 final release problem.

    My application was working when I was using the beta release. (with the old tag like input_text)
    I downloaded the JSF 1.0 final release from Sun and everything stopped working.
    The funny part is the the samples in the fina release are working. However, they are using the old jar files!!! The jsf-impl.jar inside the samples is different from the one inside the jsf-1_0/lib directory. How can we follow those samples???
    When I tried to use the jsf-impl.jar inside the sample application, my application gave me the famous NullPointerException when the listener ConfigLister is initialized.
    When I tried to use the jsf-1_0/lib/jsf-impl.jar inside the lib directory, my application gave me:
    org.apache.jasper.JasperException: Error setting property 'description' in bean of type null
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:254)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:684)
    Looks like my bean is not found. Has anyone seen this before? I got the same error when I tried to move an application from Java Creator to tomcat.
    I am using tomcat 4.1.29
    Someone from Sun please fix the samples inside th final release.

    Thanks.
    The second exception is gone. It ends up to be I am using binding instead of value for one attribute inside my jsp.
    Still, it's so confusing to have the older version implementtion inside the samples for final release.
    In the old verion, it's called ConfigListener and the version called ConfigureListener.

  • Change in Expected Delivery date (EDD) field in the PO after final release

    Hello Experts,
    There is a business requirement, whereby after PO final release is completed & when the PO is released for further processing, no further changes should be possible, except for the expected delivery date (EDD) field in the Delivery schedule tab of the PO Item details. Other than this, no changes should be possible in the PO, neither qty, nor price, not even the simple PO text should be allowed to get changed. In other words no field should be allowed to change.
    Ideally, except the EDD field, other all fields should be in grey mode, or atleast changes in any of the PO fields (except EDD) should not be allowed to get saved after the PO is final released.
    Please let me know if SAP provides any such facility, whereby you can selectively choose certain fields (like EDD field) on which Release Strategy should not be applied & changes should be allowed in these fields even after PO final release.
    Thanks in advance,
    Zafar.

    If you go to OMET transciton and here you can assign the field selection key in the field FieldSe
    and assing the User parameter EFB in user id of the user using SU3 transction
    for more help see below
    Create a Functional Authorization in the Following path:
    Material Mangement - Purchasing - Authorization Management - Define Functional Authorization for Buyers
    Now, in SU3 trxn ,Give the User Parameter EFB in the user master Parameters Tab and give the parameter value.
    create the fields selction which you want use here in PO field seleciton config.

  • We do not understand what Mozilla Firefox means by Firefox Final Release Channel

    We are a university that uses the Blackboard Vista 8 product. In order for our students to complete their courses online in Blackboard, they have to use compatible and certified browsers. The Blackboard vendor has a website detailing which browsers the students should use. The URL is http://kb.blackboard.com/pages/viewpage.action?pageId=75071574. No one understands what the vendor (Blackboard) or Mozilla Firefox means by the phrase "Firefox (Final Release Channel)." Does this mean the latest version of Firefox? If so, why not say the latest version and where did the word "channel" come from and what does it mean? It's not explained anywhere on the Firefox website.

    Mozilla has 4 channels. In order of less to more secure and stable: Nightly, Aurora, Beta, Release.
    On the page you reference, "Final Release Channel" refers to Mozilla's "Release". These are versions that have been completed and "pushed" out for download by everyone. The most current version is always available at https://www.mozilla.com/en-US/firefox/fx/ (currently, Firefox 6.0).
    There are only 2 currently supported versions: Firefox 6.0 and Firefox 3.6.20.
    *All other versions have stability and security issues that will not be corrected, but are corrected in the updated versions, as they are released.
    Other download links:
    *Current version (now version 6.0): http://www.mozilla.com/en-US/firefox/all.html
    *Older supported version (now 3.6.20): http://www.mozilla.com/en-US/firefox/all-older.html
    According to the chart on the page you referenced, your students should be using Firefox 3.6.20 (Firefox 3.5.x versions are no longer supported or updated).
    The certified/compatible classifications are Blackboard's determination.
    '''<u>Firefox Portable</u>'''<br />
    If your students wish to use the most current version of Firefox for their everyday browsing and use a Blacboard compatible version for use only with Blackboard activities, they can have both on their systems by installing Firefox Portable (not produced by Mozilla):
    *Firefox Portable installs in a separate folder on your hard drive so that it does not interfere with your current version Firefox settings or personal information (bookmarks, passwords, etc.). Add-ons are also kept separate.
    *You can also install Firefox Portable on a USB/thumb/pin/jump drive.
    *Firefox Portable general information: http://portableapps.com/apps/internet/firefox_portable
    *Firefox Portable 3.6.20 download links: http://portableapps.com/apps/internet/firefox_portable/localization#legacy36
    *Firefox Portable user forum: http://portableapps.com/forums/support/firefox_portable
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You need to update some plug-ins ('''''on the system you used to post your question'''''):
    *Plug-in check: https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    *Adobe Shockwave for Director Netscape plug-in: [https://support.mozilla.com/en-US/kb/Using%20the%20Shockwave%20plugin%20with%20Firefox#w_installing-shockwave Installing ('''''or Updating''''') the Shockwave plugin with Firefox]
    *Shockwave Flash (Adobe Flash or Flash): [https://support.mozilla.com/en-US/kb/Managing%20the%20Flash%20plugin#w_updating-flash Updating Flash in Firefox]

  • Release date Final release CR for VS2010

    Does anyone know what the release date of the final release CR for VS2010?

    HI Danny,
    Just that it's going to be in November, Exact date not known yet.
    Thank you
    Don

  • Sun Java Wireless Toolkit 2.5 for CLDC final release available for download

    We are proud to annouce that the final release of the WTK 2.5 is now available for download: http://java.sun.com/products/sjwtoolkit/download-2_5.html
    New features include:
    -support for the Mobile Service Architecture (JSR 248) platform
    -new supporting utilities to support application development for newly supported JSRs
    -new and updated emulator skins
    Download today!
    http://java.sun.com/products/sjwtoolkit/download-2_5.html

    Hi,
    Yes, we are working on making a linux release available, but we don't have a specific date as of yet. We'll provide updates as soon as we have a better idea.
    Thanks,
    E-ming

  • Final Release Date???

    Does anybody know an estimated final release date of JDeveloper?
    and what the cost might be?
    null

    Our current target date for general availability of JDev 2.0 is
    April/May. Please note that this is not a guarantee: things
    happen.
    -Roel.
    Mike Davis (guest) wrote:
    : Does anybody know an estimated final release date of
    JDeveloper?
    : and what the cost might be?
    null

Maybe you are looking for