How To Use Input Type File In Jsf Technologies
HTML Button Size Button in HTML is used to submit HTML page. Understand with Example The Tutorial illustrate an example from HTML Button size. In this Tutorial we create a HTML page, which display you HTML Button with attribute width and height specified. Here is the video tutorial of 'How to specify button size in HTML?' : The tag indicate a push button. The difference between the element and button created with the input element is that you can insert a content like image or text inside it. Button Size submit me Advertisements.
If you use an updated WebLogic Server 12.1.1 distribution that is available on March 15, 2012: The patches are placed in the MW_HOME /patch_wls1211/patch_jars.
JDK 7 Certification On March 15, 2012, Oracle made available an updated Oracle WebLogic Server 12.1.1 distribution. This distribution includes patches that enable Java SE Development Kit (JDK) 7 certification and provide other product optimizations. Oracle recommends use of WebLogic Server 12.1.1 with these patches applied, on both JDK 6 and JDK 7. You can obtain these patches in either of the following ways: • The preferred approach is to use the updated WebLogic Server 12.1.1 distribution. If you obtain the updated product distribution for WebLogic Server 12.1.1 on or after March 15, 2012, the patches are included. After you install WebLogic Server, the JDK 7 certification patches are automatically applied and put in effect when using standard WebLogic Server start scripts.
For more information about obtaining the Oracle WebLogic Server distribution for your platform, see ' in the Oracle WebLogic Server Installation Guide. • If you obtained a product distribution for WebLogic Server 12.1.1 prior to March 15, 2012, and you do not wish to re-install with the updated WebLogic Server distribution, you can obtain the patches from My Oracle Support at and apply them to your existing installation. For information about how to obtain and apply these patches, see. If you are unsure whether your WebLogic Server 12.1.1 distribution contains the patches, launch Smart Update to view the patches applied your installation, or inspect the contents of your MW_HOME /patch_wls1211/patch_jars directory, where MW_HOME represents the Middleware home directory.
Table 1 Issues Corrected by Patches Available for WebLogic Server 12.1.1 For information about issues corrected by the following...... See the following section in the Release Notes JDK 7 certification patches Contexts and Dependency Injection patches Deployment performance optimization patches Developer experience patch (applies to the developer-only distribution) If you use an updated WebLogic Server 12.1.1 distribution that is available on March 15, 2012: • The patches are placed in the MW_HOME /patch_wls1211/patch_jars directory on your computer, where MW_HOME represents your Middleware home directory. • The patches contained in this patch directory will be included in the system classpath using standard WebLogic Server start scripts so that those patches automatically go into effect when WebLogic Server is started. • If you do not use standard WebLogic Server start scripts, you must ensure that your start scripts will pick up patches that are stored in the preceding patch directory location. If you have an installation of WebLogic Server 12.1.1 obtained prior to March 15, 2012, you may prefer to download and apply the patches yourself rather than re-installing WebLogic Server 12.1.1. If you choose to apply the patches yourself, you can refer to the bug descriptions in the sections listed in for links to My Oracle Support where the patches can be obtained. If you choose to download and apply the patches yourself, note the following: • To apply these patches to an installation created with a package installer (see in Oracle WebLogic Server Installation Guide), follow the instructions provided in.
• WebLogic Server Smart Update is not included in the WebLogic Server developer-only ZIP file distribution. To apply these patches to an installation created with this ZIP file distribution, you must: • Download the patch ZIP files from My Oracle Support using the Oracle patch numbers provided in the Oracle WebLogic Server Release Notes sections referenced in. • From each patch ZIP file you download, extract the patch jar file and copy it into a well-known patch directory, such as MW_HOME /patch_wls1211/patch_jars. Note that the particular patch jar file you need to copy is typically embedded within a high-level jar file in the patch ZIP file.
For example, a downloaded patch ZIP named p1300_Generic.zip might contain the jar file 8PE3.jar. Unjarring 8PE3.jar yields, in turn, in inner jar file named something like BUG nnnn _1211.jar. (This inner jar file is typically located within a dirs sub-folder.) This inner jar file—that is, BUG nnnn _1211.jar—is the patch jar that must be copied into the well-known patch directory. The patches contained in this well-known patch directory are included in the system classpath using standard WebLogic Server start scripts so that those patches automatically go into effect when WebLogic Server is started. If you do not use standard WebLogic Server start scripts, you must ensure that your start scripts pick up patches that are stored in the well-known location where you have placed your patches. Java EE 6 Platform Highlights The most important goal of the Java EE 6 platform is to simplify development by providing a common foundation for the various kinds of components in the Java EE platform.
Developers benefit from productivity improvements with more annotations and less XML configuration, more Plain Old Java Objects (POJOs), and simplified packaging. The Java EE 6 platform includes the following new features: • New technologies, including the following: • Java API for RESTful Web Services (JAX-RS) • Managed Beans • Contexts and Dependency Injection for the Java EE Platform (JSR 299) • Dependency Injection for Java (JSR 330) • Bean Validation (JSR 303) • Java Authentication Service Provider Interface for Containers (JASPIC) • New features for Enterprise JavaBeans (EJB) components • New features for servlets • New features for JavaServer Faces components. Enterprise JavaBeans (EJB) 3.1 An Enterprise JavaBeans (EJB) component, or enterprise bean, is a body of code having fields and methods to implement modules of business logic. You can think of an enterprise bean as a building block that can be used alone or with other enterprise beans to execute business logic on the Java EE server. Enterprise beans are either session beans or message-driven beans: • A session bean represents a transient conversation with a client.
When the client finishes executing, the session bean and its data are gone. • A message-driven bean combines features of a session bean and a message listener, allowing a business component to receive messages asynchronously. Commonly, these are Java Message Service (JMS) messages. Java Servlet 3.0 Technology Java Servlet technology lets you define HTTP-specific servlet classes. A servlet class extends the capabilities of servers that host applications accessed by way of a request-response programming model. Although servlets can respond to any type of request, they are commonly used to extend the applications hosted by Web servers.
In the Java EE 6 platform, new Java servlet technology features include: • Annotation support • Asynchronous support • Ease of configuration • Enhancements to existing APIs • Pluggability. JavaServer Faces (JSF) 2.x and JavaServer Pages Standard Tag Library (JSTL) 1.2 This release of WebLogic Server supports JSF 2.x and JSTL 1.2. JSF 2.x and JSTL 1.2 have been incorporated directly into the server's classpath. Applications deployed to WebLogic Server can seamlessly make use of JSF 2.x and JSTL 1.2 without requiring developers to deploy and reference separate shared libraries. JSF technology is a user interface framework for building web applications. The main components of JSF technology are: • A GUI component framework.
• A flexible model for rendering components in different kinds of HTML or different markup languages and technologies. A Renderer object generates the markup to render the component and converts the data stored in a model object to types that can be represented in a view. • A standard RenderKit for generating HTML/4.01 markup.
The following features support the GUI component: • Input validation • Event handling • Data conversion between model objects and components • Managed model object creation • Page navigation configuration • Expression Language (EL) All of this functionality is available using standard Java APIs and XML-based configuration files. In the Java EE 6 platform, new JSF features include: • The ability to use annotations instead of a configuration file to specify managed beans • Facelets, a display technology that replaces JavaServer Pages (JSP) technology using XHTML files • Ajax support • Composite components • Implicit navigation JSTL encapsulates core functionality common to many JSP applications.
Instead of mixing tags from numerous vendors in your JSP applications, you use a single, standard set of tags. This standardization allows you to deploy your applications on any JSP container that supports JSTL and makes it more likely that the implementation of the tags is optimized. JSTL has an iterator and conditional tags for handling flow control, tags for manipulating XML documents, internationalization tags, tags for accessing databases using SQL, and commonly used functions. Java Transaction API (JTA) JPA provides a standard interface for demarcating transactions. The Java EE architecture provides a default auto commit to handle transaction commits and rollbacks.
An auto commit means that any other applications that are viewing data will see the updated data after each database read or write operation. However, if your application performs two separate database access operations that depend on each other, you will want to use the JTA API to demarcate where the entire transaction, including both operations, begins, rolls back, and commits. Managed Beans 1.0 Managed Beans, lightweight container-managed objects (POJOs) with minimal requirements, support a small set of basic services, such as resource injection, lifecycle callbacks, and interceptors. Managed Beans represent a generalization of the managed beans specified by JavaServer Faces technology and can be used anywhere in a Java EE application, not just in web modules. The Managed Beans specification is part of the Java EE 6 platform specification (JSR 316). Managed Beans are new to the Java EE 6 platform. Contexts and Dependency Injection for the Java EE Platform 1.0 Contexts and Dependency Injection (CDI) for the Java EE platform defines a set of services for using injection to specify dependencies in an application.
CDI provides contextual life cycle management of beans, type-safe injection points, a loosely coupled event framework, loosely coupled interceptors and decorators, alternative implementations of beans, bean navigation through the Unified Expression Language (EL), and a service provider interface (SPI) that enables CDI extensions to support third-party frameworks or future Java EE components. CDI is integrated with the major component technologies in Java EE. CDI is new to the Java EE 6 platform.
Bean Validation The Bean Validation specification (JSR 316) defines a metadata model and API for validating data in JavaBeans components. It is supported on both the server and Java EE 6 client; therefore, instead of distributing validation of data over several layers, such as the browser and the server side, you can define the validation constraints in one place and share them across the different layers. Further, bean validation is not only for validating beans. In fact, it can also be used to validate any Java object. Bean Validation is new to the Java EE 6 platform. Java EE Connector Architecture (JCA) 1.6 JCA is used by tools vendors and system integrators to create resource adapters that support access to enterprise information systems that can be plugged in to any Java EE product.
A resource adapter is a software component that allows Java EE application components to access and interact with the underlying resource manager of the EIS. Because a resource adapter is specific to its resource manager, a different resource adapter typically exists for each type of database or enterprise information system. JCA also provides a performance-oriented, secure, scalable, and message-based transactional integration of Java EE based web services with existing EISs that can be either synchronous or asynchronous. Existing applications and EISs integrated through the Java EE Connector architecture into the Java EE platform can be exposed as XML-based web services by using JAX-WS and Java EE component models.
Thus JAX-WS and the Java EE Connector architecture are complementary technologies for enterprise application integration (EAI) and end-to-end business integration. Java Authorization Contract for Containers (JACC) 1.3 The JACC specification defines a contract between a Java EE application server and an authorization policy provider. All Java EE containers support this contract.
The JACC specification defines java.security.Permission classes that satisfy the Java EE authorization model. The specification defines the binding of container access decisions to operations on instances of these permission classes. It defines the semantics of policy providers that use the new permission classes to address the authorization requirements of the Java EE platform, including the definition and use of roles. Java Authentication Service Provider Interface for Containers (JASPIC) 1.0 This release of WebLogic Server provides support for the JASPIC specification. The JASPIC specification defines a service provider interface (SPI) by which authentication providers that implement message authentication mechanisms may be integrated in client or server message-processing containers or runtimes. Authentication providers integrated through this interface operate on network messages provided to them by their calling container. The authentication providers transform outgoing messages so that the source of the message can be authenticated by the receiving container, and the recipient of the message can be authenticated by the message sender.
Authentication providers authenticate incoming messages and return to their calling container the identity established as a result of the message authentication. JASPIC is new to the Java EE 6 platform. For more information, see.
Java API for XML Web Services (JAX-WS) 2.2 The JAX-WS specification provides support for web services that use the JAXB API for binding XML data to Java objects. The JAX-WS specification defines client APIs for accessing web services as well as techniques for implementing web service endpoints. The Implementing Enterprise Web Services specification describes the deployment of JAX-WS-based services and clients. The EJB and Java Servlet specifications also describe aspects of such deployment. It must be possible to deploy JAX-WS-based applications using any of these deployment models. The JAX-WS specification describes the support for message handlers that can process message requests and responses. In general, these message handlers execute in the same container and with the same privileges and execution context as the JAX-WS client or endpoint component with which they are associated.
These message handlers have access to the same JNDI java:comp/env namespace as their associated component. Custom serializers and deserializers, if supported, are treated in the same way as message handlers.
Interceptors 1.1 This release of WebLogic Server provides generic support for interceptors. Support for a generic interceptor layer that can be used by the EJB container has been added. Interceptors are used in conjunction with Java EE managed classes to allow developers to invoke interceptor methods in conjunction with method invocations or lifecycle events on an associated target class. Common uses of interceptors are logging, auditing, or profiling. Interceptors can be defined within a target class as an interceptor method, or in an associated class called an interceptor class. Interceptor classes contain methods that are invoked in conjunction with the methods or lifecycle events of the target class. Interceptor classes and methods are defined using metadata annotations, or in the deployment descriptor of the application containing the interceptors and target classes.
Singleton Session Beans Singleton session beans provide a formal programming construct that guarantees a session bean will be instantiated once per application in a particular Java Virtual Machine (JVM), and that it will exist for the life cycle of the application. With singletons, you can easily share state between multiple instances of an enterprise bean component or between multiple enterprise bean components in the application. For more information see, in Understanding Oracle WebLogic Server. EJB Timer Enhancements EJB 3.1 provides the following TimerService features: • Calendar-based EJB Timers – EJB 3.1 supports calendar-based EJB TimerService expressions.
The scheduling functionality takes the form of CRON-styled schedule definitions that can be placed on EJB methods, in order to have the methods be automatically invoked according to the defined schedule. For more information see, in Programming WebLogic Enterprise JavaBeans, Version 3.0 for Oracle WebLogic Server. • Automatically-created EJB Timers – EJB 3.1 supports the automatic creation of a timer based on metadata in the bean class or deployment descriptor, which allows the bean developer to schedule a timer without relying on a bean invocation to programmatically invoke one of the Timer Service timer creation methods. Automatically created timers are created by the container as a result of application deployment. For more information see, in Programming WebLogic Enterprise JavaBeans, Version 3.0 for Oracle WebLogic Server.
Asynchronous Session Bean Invocations An EJB 3.1 session bean can expose methods with asynchronous client invocation semantics. Using the @Asynchronous annotation in an EJB class or specific method will direct the EJB container to return control immediately to the client when the method is invoked. The method may return a future object to allow the client to check on the status of the method invocation, and retrieve result values that are asynchronously produced.
For more information see, in Programming WebLogic Enterprise JavaBeans, Version 3.0 for Oracle WebLogic Server. Embeddable EJB API EJB 3.1 supports an embeddable API for executing EJB components within a Java SE environment. Unlike traditional Java EE server-based execution, embeddable usage allows client code and its corresponding enterprise beans to run within the same virtual machine and class loader. This provides better support for testing, offline processing (for example, batch jobs), and the use of the EJB programming model in desktop applications. For more information, see in Programming WebLogic Enterprise JavaBeans, Version 3.0 for Oracle WebLogic Server.
JPA 2.0 Support Using the Default TopLink Persistence Provider Oracle TopLink, a JPA 2.0 persistence provider, is now the default JPA provider, replacing Kodo, which was the default provider in previous releases. Any application that does not specify a JPA provider in persistence.xml will now use TopLink by default. Applications can continue to use Kodo (a JPA 1.0 provider) by explicitly specifying Kodo/OpenJPA as their persistence provider in persistence.xml. In addition, a Weblogic Server domain can be configured to use Kodo by default, if desired. For more information, see ' in Programming WebLogic Enterprise JavaBeans, Version 3.0 for Oracle WebLogic Server. Applications That Use Kodo as the Persistence Provider WebLogic Server runs with the JPA 2.0 JAR in the server's classpath. Although JPA 2.0 is upwardly compatible with JPA 1.0, JPA 2.0 introduced some methods to existing JPA interfaces that conflict with existing signatures in OpenJPA interfaces.
As a result, applications that continue to use Kodo/JPA as the persistence provider with WebLogic Server 12.1.1 must be recompiled. For more information, see in Programming WebLogic Enterprise JavaBeans, Version 3.0 for Oracle WebLogic Server. Ease of Development and Configuration WebLogic Server supports several ease-of-development and ease-of-configuration features introduced in the Java EE Connector Architecture version 1.6, including the following: • Metadata annotations — Developer complexity is reduced by supporting the use of annotations in resource adapter class files. Annotations can specify deployment information, eliminating the need to create the ra.xml deployment descriptor file manually. • Dynamic configuration properties that can be defined on ResourceAdapter, ManagedConnectionFactory, and Admin Object beans. • The ability to specify, at run time, the level of transaction support a resource adapter can provide.
Generic Work Context The Generic Work Context, new in Connector Architecture version 1.6, is a mechanism for resource adapters to propagate contextual information, in addition to transaction inflow, from Enterprise Information Systems (EISes) during message delivery and Work submission. The Generic Work Context has the following impact on developing, configuring, and running resource adapters in the WebLogic Server environment: • Transaction support—The new TransactionContext replaces the transaction inflow contract. • Security— The new SecurityContext defines the security context for work submitted by the resource adapter on behalf of the EIS to WebLogic Server. • Management of long-running work—A resource adapter can define constants to represent long-running Work instances in WebLogic Server, including the threads in which they execute, to facilitate better thread monitoring and management. Contexts and Dependency Injection (CDI) Support The WebLogic Server Connector container adds support for (CDI) in embedded and global resource adapters.
CDI defines a set of services for using injection to specify dependencies in an application. WebLogic Server supports the following CDI features in 1.6 resource adapters: • Bean discovery — The resource adapter RAR, all JARs packaged inside the RAR, and every bean archive referenced by the RAR is searched, regardless of whether a beans.xml bean archive descriptor file exists in those JARs.
• Bean Manager — The ExtendedBootstrapContext class now includes the getBeanManager method. This method can be used to return a resource adapter's Bean Manager, which provides the means to retrieve bean instances from that adapter. • Bean injection — WebLogic Server includes a number of built-in beans in its Connector Architecture 1.6 implementation that permit injection points for references to a variety of artifacts for the current resource adapter bean, such as the BootstrapContext, WorkManager, XATerminator, and JTA TransactionSynchronizationRegistry objects. • Support for the javax.annotation.PostConstruct and javax.annotation.PreDestroy annotation types on ResourceAdapter, ManagedConnectionFactory, ActivationSpec, and Admin Object beans. Note that the use of the javax.annotation.Resource annotation type used for declaring a reference to a resource adapter's managed beans is not supported. For more information, see in Programming Resource Adapters for Oracle WebLogic Server. Java Authentication Service Provider Interface for Containers (JASPIC) Support This release of WebLogic Server supports (JASPIC) Version 1.0.
The JASPIC specification defines a service provider interface (SPI) by which authentication providers that implement message authentication mechanisms can be integrated in server Web application message processing containers or runtimes. The message processing run time uses this SPI at the identified message processing points to delegate the corresponding message security processing to the authentication providers. The JASPIC authentication provider assumes responsibility for authenticating the user credentials and returning a Subject. WebLogic Server then treats this Subject as it would all others. Authentication providers integrated through this interface operate on network messages provided to them by the WLS container.
They authenticate incoming Web application messages and return to their calling container (WLS) the identity (the expected Subject) established as a result of the message authentication. SSL Implementation Certicom has been removed from WebLogic Server 12.1.1 and is no longer supported.
JSSE is the only SSL implementation that is supported in WebLogic Server 12.1.1. The following configuration changes have been made to be consistent with this support: • The default for JSSEEnabled has been changed to true.
Oracle recommends that you keep this value set to true. • If JSSEEnabled is set to false, it will be ignored. That is, the MBean value will not be changed either in memory or the persisted config.xml file. WebLogic Server will continue to use JSSE, but will issue a warning. Enhancements to Support for Single Sign-On with Microsoft Clients The release of WebLogic Server adds the following enhancements to its support for single sign-on (SSO) with Microsoft clients using Windows Integrated Authentication based on the Simple and Protected Negotiate (SPNEGO) mechanism and the Kerberos protocol: • Use of the AES-128, AES-256, and RC4 encryption algorithms for encrypting the user accounts that are mapped to Kerberos services on the WebLogic Server host • Support for Java SE clients. Improved Support for Jersey JAX-RS RI Version 1.9 WebLogic Server supports Jersey Java API for RESTful Web Services (JAX-RS) Reference Implementation (RI) Version 1.9, which is a production quality implementation of the JSR-311 JAX-RS specification, defined at:.
Beat This The Best Of The English Beat 2016. In this release, the JAX-RS application environment is no longer dependent on WebLogic Server shared libraries and provides WebLogic Server Runtime MBeans for post-deployment manageability. As required, you can use a more recent version of the Jersey JAX-RS RI. For information about developing WebLogic Web services that conform to the Representational State Transfer (REST) architectural style using JAX-RS, see Developing RESTful Web Services for Oracle WebLogic Server. Support for EclipseLink MOXy (JAXB) In this release, EclipseLink MOXy (JAXB) is the default data binding and JAXB provider. For more information about EclipseLink MOXy (JAXB), see: • in Developing JAX-WS Web Services for Oracle WebLogic Server • EclipseLink MOXy (JAXB) User's Guide at Alternatively, you can enable the Glassfish RI JAXB as the data binding and JAXB provider at the server or application level.
For more information, see 'Using the Glassfish RI JAXB Data Binding and JAXB Providers' in Getting Started With JAX-WS Web Services for Oracle WebLogic Server. UDDI v2.0 Registry and UDDIExplorer Removed in this Release The UDDI v2.0 registry and UDDIExplorer applications have been removed in this release. Customers are encouraged to consider upgrading to Oracle Enterprise Repository or Oracle Service Registry, which provide SOA visibility and governance. For more information, see.
From the list of products at the bottom of the page, select Oracle Service Registry. On the lower right, expand the Brochures and Data Sheets section to access the Oracle Enterprise Repository and Oracle Service Registry for SOA Governance data sheet. Table 2 Java Standards Support Standard Version Contexts and Dependency Injection for Java EE 1.0 Dependency Injection for Java EE 1.0 Expression Language (EL) 2.2, 2.1, 2.0 Only JSP 2.0 and greater supports Expression Language 2.x.
JAAS 1.0 Full JASPIC 1.0 Java API for XML-Based Web Services (JAX-WS) 2.2, 2.1, 2.0 Java API for RESTful Web Services (JAX-RS) 1.1 Java Authorization Contract for Containers (JACC) 1.4 Java EE 6.0 Java EE Application Deployment 1.2 Java EE Bean Validation 1.1 Jave EE Common Annotations 1.0 Java EE Connector Architecture 1.6 Java EE EJB 3.1 Java EE Enterprise Web Services 1.3, 1.2, 1.1 Jave EE Interceptors 1.1 Java EE JDBC 4.0, 3.0 Java EE JMS 1.1, 1.0.2b Java EE JNDI 1.2 Java EE JSF 2.1, 2.0, 1.2, 1.1 Java EE JSP 2.2, 2.1, 2.0, 1.2, and 1.1 JSP 1.2. And 1.1 include Expression Language (EL), but do not support EL 2.x or greater. Java EE Managed Beans 1.0 Java EE Servlet 3.0, 2.5, 2.4, 2.3, and 2.2 Java RMI 1.0 JavaMail 1.4 JAX-B 2.2, 2.1, 2.0 JAX-P 1.3, 1.2, 1.1 JAX-R 1.0 JAX-RPC 1.1 JCE 1.4 JDKs 7.0 (1.7), 6.0 (1.6) JMX 1.2, 1.0 JPA 2.0, 1.0 JSR 77: Java EE Management 1.1 JSTL 1.2 Managed Beans 1.0 OTS/JTA OTS 1.2 and JTA 1.1 RMI/IIOP 1.0 SOAP Attachments for Java (SAAJ) 1.3, 1.2 Streaming API for XML (StAX) 1.0 Web Services Metadata for the Java Platform 2.0, 1.1. Documentation Accessibility For information about Oracle's commitment to accessibility, visit the Oracle Accessibility Program website.
Access to Oracle Support Oracle customers have access to electronic support through My Oracle Support. For information, visit or visit if you are hearing impaired. Oracle Fusion Middleware What's New in Oracle WebLogic Server, 12 c Release 1 (12.1.1) E24494-07 Copyright © 2007, 2014, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under a license agreement containing restrictions on use and disclosure and are protected by intellectual property laws. Except as expressly permitted in your license agreement or allowed by law, you may not use, copy, reproduce, translate, broadcast, modify, license, transmit, distribute, exhibit, perform, publish, or display any part, in any form, or by any means.
Reverse engineering, disassembly, or decompilation of this software, unless required by law for interoperability, is prohibited. The information contained herein is subject to change without notice and is not warranted to be error-free. If you find any errors, please report them to us in writing. If this is software or related documentation that is delivered to the U.S. Government or anyone licensing it on behalf of the U.S. Government, the following notice is applicable: U.S.
GOVERNMENT END USERS: Oracle programs, including any operating system, integrated software, any programs installed on the hardware, and/or documentation, delivered to U.S. Government end users are 'commercial computer software' pursuant to the applicable Federal Acquisition Regulation and agency-specific supplemental regulations. As such, use, duplication, disclosure, modification, and adaptation of the programs, including any operating system, integrated software, any programs installed on the hardware, and/or documentation, shall be subject to license terms and license restrictions applicable to the programs. No other rights are granted to the U.S. This software or hardware is developed for general use in a variety of information management applications.
It is not developed or intended for use in any inherently dangerous applications, including applications that may create a risk of personal injury. If you use this software or hardware in dangerous applications, then you shall be responsible to take all appropriate failsafe, backup, redundancy, and other measures to ensure its safe use. Oracle Corporation and its affiliates disclaim any liability for any damages caused by use of this software or hardware in dangerous applications. Oracle and Java are registered trademarks of Oracle and/or its affiliates. Other names may be trademarks of their respective owners. Intel and Intel Xeon are trademarks or registered trademarks of Intel Corporation. All SPARC trademarks are used under license and are trademarks or registered trademarks of SPARC International, Inc.
AMD, Opteron, the AMD logo, and the AMD Opteron logo are trademarks or registered trademarks of Advanced Micro Devices. UNIX is a registered trademark of The Open Group. This software or hardware and documentation may provide access to or information on content, products, and services from third parties.
Oracle Corporation and its affiliates are not responsible for and expressly disclaim all warranties of any kind with respect to third-party content, products, and services. Oracle Corporation and its affiliates will not be responsible for any loss, costs, or damages incurred due to your access to or use of third-party content, products, or services. Scripting on this page enhances content navigation, but does not change the content in any way.