RichFaces and Sun's JSF 1.2 RI

Hello,
I am new to RichFaces and Ajax4java. I have learned Sun's JSF 1.2 RI. I would like to use Richfaces and Ajax. I am using eclipse WTP 2.0 IDE.
Can we use Richfaces without using Sun's JSF 1.2 core lib or Do we need Myfaces or Facelet's implementaion to Richfaces ?
Can anyone please help me to get these details
Thanks
Sarav

Well, it appears you have some terms confused, so let me clear things up. The Sun JSF RI (now called Mojarra) and MyFaces are both implementations of the JSF specification. RichFaces is a component library that must sit on top of Mojarra or MyFaces. Facelets is an alternate ViewHandler that sits between, so to speak, the implementation (such as Mojarra) and the component library (RichFaces), and is not a JSF implementation. Note that not all component libraries support Facelets, though RichFaces certainly does.
So, the short answer is, yes you can use RichFaces without Mojarra, but you'll have to use MyFaces in that case. Regardless of implementation, you can (and probably should) use Facelets.
Hope that helps...

Similar Messages

  • Difference between Sun RI JSF and MyFaces JSF

    Hi all,
    I am using JBoss AS and have a JSF application. By default, JBoss bundle MyFaces JSF with Jboss. I have everything working fine with MyFaces. However, I encounter problem when I tried to display the banding for dataTable using Oracle ADF. From my research, it seems ADF table's banding does not work with MyFaces so I want to test out using Sun RI JSF with Jboss. I remove MyFaces jar files and put Sun RI jar file in WEB_INF/lib directory and remove the line in web.xml
    <listener>
    <listener-class>org.apache.myfaces.webapp.StartupServletContextListener</listener-class>
    </listener>This is done following Jboss documentation. But when Tomcat starts up, it seems still look for org.apache.myfaces.webapp.StartupServletContextListener class and throw ClassNotFoundException (because I removed myfaces jars). Has anyone benn able switched to use Sun RI in JBoss AS version 4.0.5?
    Thanks a lot,
    LNgo

    Probably I should have posted this message on the Java Server Faces forums. I will repost there but if someone happens to know the answer, please help.
    Thanks,
    Lngo

  • JSF Navigation issue with Webcenter OC4J and Open Portal JSF Bridge

    Hi All,
    I was wondering if anybody had experienced the same issue as per below:
    I have a problem using the Open Portal JSF Portlet Bridge within a oracle webcenter OC4J. I have a trivial application with 2 jsps. The first has a single button, which when pushed navigates to the second screen.
    This app works fine as a stand alone web app and also via the Oracle Faces Bridge using the OC4J. However, when I deploy using the jsfportletbridge 1.1.4 (I'm using the JSF 1.1) - it will not navigate from the first page. It simply refreshes the first page when clicked.
    It looks like there is a problem with navigation. I have traced out the application (which I will include in full below), however the entries which looked relevant were (this occured after the first page was rendered):
    07/06/05 23:49:19 [DEBUG] StateManagerImpl - Begin restoring view in session for viewId /hello.jsp
    07/06/05 23:49:19 [DEBUG] StateManagerImpl - Session Available, but View State does not exist for viewId: /hello.jsp
    07/06/05 23:49:19 [TRACE] LifecycleImpl - Creating new view '/hello.jsp'
    My gut feel is that state is not being retained between requests, so it is just recreating the same view, however I'm at a loss to explain why
    Attached below are the files used & trace log:
    Chris,
    hello.jsp
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <%@ page contentType="text/html;charset=windows-1252"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <f:view>
    <h:form>
    <h:commandButton value="commandButton1" action="success"/>
    <h:messages/>
    </h:form>
    </f:view>
    world.jsp
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <%@ page contentType="text/html;charset=windows-1252"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <f:view>
    <html>
    <head>
    <meta http-equiv="Content-Type"
    content="text/html; charset=windows-1252"/>
    <title>world</title>
    </head>
    <body><h:form>
    <h:outputText value="Hello World"/>
    </h:form></body>
    </html>
    </f:view>
    faces-config
    <?xml version="1.0" encoding="windows-1252"?>
    <!DOCTYPE faces-config PUBLIC
    "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN"
    "http://java.sun.com/dtd/web-facesconfig_1_1.dtd">
    <faces-config xmlns="http://java.sun.com/JSF/Configuration">
    <navigation-rule>
    <from-view-id>/hello.jsp</from-view-id>
    <navigation-case>
    <from-outcome>success</from-outcome>
    <to-view-id>/world.jsp</to-view-id>
    </navigation-case>
    </navigation-rule>
    </faces-config>
    web.xml
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee">
    <description>Empty web.xml file for Web Application</description>
    <servlet>
    <servlet-name>Faces Servlet</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>/faces/*</url-pattern>
    </servlet-mapping>
    <session-config>
    <session-timeout>35</session-timeout>
    </session-config>
    <mime-mapping>
    <extension>html</extension>
    <mime-type>text/html</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>txt</extension>
    <mime-type>text/plain</mime-type>
    </mime-mapping>
    </web-app>
    portlet.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <portlet-app xmlns="http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd"
    version="1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd
    http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd">
    <portlet>
    <description>JSF Sample Portlet</description>
    <portlet-name>jsfsampleportlet</portlet-name>
    <display-name>JSF Sample Portlet</display-name>
    <!-- You must use this Portlet implementation class -->
    <portlet-class>com.sun.faces.portlet.FacesPortlet</portlet-class>
    <!-- This is a required parameter and must point to the first page of the JSF Application -->
    <init-param>
    <description>Portlet init view page</description>
    <name>com.sun.faces.portlet.INIT_VIEW</name>
    <value>/hello.jsp</value>
    </init-param>
    <supports>
    <mime-type>text/html</mime-type>
    <portlet-mode>VIEW</portlet-mode>
    <portlet-mode>EDIT</portlet-mode>
    <portlet-mode>HELP</portlet-mode>
    </supports>
    <portlet-info>
    <title>JSF Sample Portlet</title>
    <short-title>jsfsampleportlet</short-title>
    </portlet-info>
    </portlet>
    </portlet-app>
    Log Trace:
    07/06/05 23:48:10 [DEBUG] ApplicationFactoryImpl - Created ApplicationFactory
    07/06/05 23:48:10 [DEBUG] ApplicationImpl - Created Application instance
    07/06/05 23:48:10 [DEBUG] ApplicationFactoryImpl - Created Application instance com.sun.faces.application.ApplicationImpl@dc1165
    07/06/05 23:48:10 [DEBUG] ApplicationImpl - set ActionListener Instance to com.sun.faces.application.ActionListenerImpl@177cbf7
    07/06/05 23:48:10 [DEBUG] NavigationHandlerImpl - Created NavigationHandler instance
    07/06/05 23:48:10 [DEBUG] NavigationHandlerImpl - Created NavigationHandler instance
    07/06/05 23:48:10 [DEBUG] ApplicationImpl - set NavigationHandler Instance to com.sun.faces.application.NavigationHandlerImpl@1efda65
    07/06/05 23:48:10 [DEBUG] ApplicationImpl - set PropertyResolver Instance to com.sun.faces.el.PropertyResolverImpl@7c329d
    07/06/05 23:48:10 [DEBUG] ApplicationImpl - set StateManager Instance to com.sun.faces.application.StateManagerImpl@6d006c
    07/06/05 23:48:10 [DEBUG] ApplicationImpl - set VariableResolver Instance to com.sun.faces.el.VariableResolverImpl@36b7cc
    07/06/05 23:48:10 [DEBUG] ViewHandlerImpl - Created ViewHandler instance
    07/06/05 23:48:10 [DEBUG] ApplicationImpl - set ViewHandler Instance to com.sun.faces.application.ViewHandlerImpl@10b4509
    07/06/05 23:48:10 [DEBUG] ViewHandlerImpl - Delegating to 'com.sun.faces.application.ViewHandlerImpl@10b4509'
    07/06/05 23:48:10 [DEBUG] ApplicationImpl - set ViewHandler Instance to com.sun.faces.portlet.ViewHandlerImpl@da1b43
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added component of type PortletComponent class com.sun.faces.portlet.PortletComponent
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added component of type javax.faces.Column class javax.faces.component.UIColumn
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added component of type javax.faces.Command class javax.faces.component.UICommand
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added component of type javax.faces.Data class javax.faces.component.UIData
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added component of type javax.faces.Form class javax.faces.component.UIForm
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added component of type javax.faces.Graphic class javax.faces.component.UIGraphic
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added component of type javax.faces.HtmlCommandButton class javax.faces.component.html.HtmlCommandButton
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added component of type javax.faces.HtmlCommandLink class javax.faces.component.html.HtmlCommandLink
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added component of type javax.faces.HtmlDataTable class javax.faces.component.html.HtmlDataTable
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added component of type javax.faces.HtmlForm class javax.faces.component.html.HtmlForm
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added component of type javax.faces.HtmlGraphicImage class javax.faces.component.html.HtmlGraphicImage
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added component of type javax.faces.HtmlInputHidden class javax.faces.component.html.HtmlInputHidden
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added component of type javax.faces.HtmlInputSecret class javax.faces.component.html.HtmlInputSecret
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added component of type javax.faces.HtmlInputText class javax.faces.component.html.HtmlInputText
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added component of type javax.faces.HtmlInputTextarea class javax.faces.component.html.HtmlInputTextarea
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added component of type javax.faces.HtmlMessage class javax.faces.component.html.HtmlMessage
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added component of type javax.faces.HtmlMessages class javax.faces.component.html.HtmlMessages
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added component of type javax.faces.HtmlOutputFormat class javax.faces.component.html.HtmlOutputFormat
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added component of type javax.faces.HtmlOutputLabel class javax.faces.component.html.HtmlOutputLabel
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added component of type javax.faces.HtmlOutputLink class javax.faces.component.html.HtmlOutputLink
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added component of type javax.faces.HtmlOutputText class javax.faces.component.html.HtmlOutputText
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added component of type javax.faces.HtmlPanelGrid class javax.faces.component.html.HtmlPanelGrid
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added component of type javax.faces.HtmlPanelGroup class javax.faces.component.html.HtmlPanelGroup
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added component of type javax.faces.HtmlSelectBooleanCheckbox class javax.faces.component.html.HtmlSelectBooleanCheckbox
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added component of type javax.faces.HtmlSelectManyCheckbox class javax.faces.component.html.HtmlSelectManyCheckbox
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added component of type javax.faces.HtmlSelectManyListbox class javax.faces.component.html.HtmlSelectManyListbox
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added component of type javax.faces.HtmlSelectManyMenu class javax.faces.component.html.HtmlSelectManyMenu
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added component of type javax.faces.HtmlSelectOneListbox class javax.faces.component.html.HtmlSelectOneListbox
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added component of type javax.faces.HtmlSelectOneMenu class javax.faces.component.html.HtmlSelectOneMenu
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added component of type javax.faces.HtmlSelectOneRadio class javax.faces.component.html.HtmlSelectOneRadio
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added component of type javax.faces.Input class javax.faces.component.UIInput
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added component of type javax.faces.Message class javax.faces.component.UIMessage
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added component of type javax.faces.Messages class javax.faces.component.UIMessages
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added component of type javax.faces.NamingContainer class javax.faces.component.UINamingContainer
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added component of type javax.faces.Output class javax.faces.component.UIOutput
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added component of type javax.faces.Panel class javax.faces.component.UIPanel
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added component of type javax.faces.Parameter class javax.faces.component.UIParameter
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added component of type javax.faces.SelectBoolean class javax.faces.component.UISelectBoolean
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added component of type javax.faces.SelectItem class javax.faces.component.UISelectItem
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added component of type javax.faces.SelectItems class javax.faces.component.UISelectItems
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added component of type javax.faces.SelectMany class javax.faces.component.UISelectMany
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added component of type javax.faces.SelectOne class javax.faces.component.UISelectOne
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added component of type javax.faces.ViewRoot class javax.faces.component.UIViewRoot
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added converter of class type javax.faces.convert.BooleanConverter
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added converter of class type javax.faces.convert.ByteConverter
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added converter of class type javax.faces.convert.CharacterConverter
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added converter of class type javax.faces.convert.DoubleConverter
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added converter of class type javax.faces.convert.FloatConverter
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added converter of class type javax.faces.convert.IntegerConverter
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added converter of class type javax.faces.convert.LongConverter
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added converter of class type javax.faces.convert.ShortConverter
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added converter of class type javax.faces.convert.BooleanConverter
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added converter of class type javax.faces.convert.ByteConverter
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added converter of class type javax.faces.convert.CharacterConverter
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added converter of class type javax.faces.convert.DoubleConverter
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added converter of class type javax.faces.convert.FloatConverter
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added converter of class type javax.faces.convert.IntegerConverter
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added converter of class type javax.faces.convert.LongConverter
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added converter of class type javax.faces.convert.ShortConverter
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added converter of class type javax.faces.convert.BigDecimalConverter
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added converter of class type javax.faces.convert.BigIntegerConverter
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added converter of class type javax.faces.convert.BooleanConverter
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added converter of class type javax.faces.convert.ByteConverter
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added converter of class type javax.faces.convert.CharacterConverter
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added converter of class type javax.faces.convert.DoubleConverter
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added converter of class type javax.faces.convert.FloatConverter
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added converter of class type javax.faces.convert.IntegerConverter
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added converter of class type javax.faces.convert.LongConverter
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added converter of class type javax.faces.convert.ShortConverter
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added converter of type javax.faces.BigDecimal and class javax.faces.convert.BigDecimalConverter
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added converter of type javax.faces.BigInteger and class javax.faces.convert.BigIntegerConverter
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added converter of type javax.faces.Boolean and class javax.faces.convert.BooleanConverter
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added converter of type javax.faces.Byte and class javax.faces.convert.ByteConverter
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added converter of type javax.faces.Character and class javax.faces.convert.CharacterConverter
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added converter of type javax.faces.DateTime and class javax.faces.convert.DateTimeConverter
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added converter of type javax.faces.Double and class javax.faces.convert.DoubleConverter
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added converter of type javax.faces.Float and class javax.faces.convert.FloatConverter
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added converter of type javax.faces.Integer and class javax.faces.convert.IntegerConverter
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added converter of type javax.faces.Long and class javax.faces.convert.LongConverter
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added converter of type javax.faces.Number and class javax.faces.convert.NumberConverter
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added converter of type javax.faces.Short and class javax.faces.convert.ShortConverter
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added validator of type javax.faces.DoubleRange class javax.faces.validator.DoubleRangeValidator
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added validator of type javax.faces.Length class javax.faces.validator.LengthValidator
    07/06/05 23:48:10 [TRACE] ApplicationImpl - added validator of type javax.faces.LongRange class javax.faces.validator.LongRangeValidator
    07/06/05 23:48:10 [DEBUG] LifecycleFactoryImpl - Created Default Lifecycle
    07/06/05 23:48:10 [TRACE] LifecycleFactoryImpl - Created LifecycleFactory com.sun.faces.portlet.LifecycleFactoryImpl@1776f79
    07/06/05 23:48:11 [TRACE] LifecycleImpl - Created Lifecycle com.sun.faces.portlet.LifecycleImpl@bc9065
    07/06/05 23:48:11 [TRACE] LifecycleFactoryImpl - Added LifecycleId DEFAULT
    07/06/05 23:48:11 [TRACE] LifecycleFactoryImpl - Returned com.sun.faces.portlet.LifecycleImpl@bc9065 for lifecycleId DEFAULT
    07/06/05 23:48:11 Oracle Containers for J2EE 10g (10.1.3.1.1) initialized
    07/06/05 23:48:53 [TRACE] FacesPortlet - Begin FacesPortlet.init()
    07/06/05 23:48:53 [TRACE] FacesPortlet - End FacesPortlet.init()
    07/06/05 23:48:53 [TRACE] FacesPortlet - Begin FacesPortlet.render()
    07/06/05 23:48:53 [TRACE] FacesPortlet - Retrieved facesContextFactory com.sun.faces.portlet.FacesContextFactoryImpl@1c6395b
    07/06/05 23:48:53 [TRACE] FacesPortlet - Retrieved lifecycleFactory com.sun.faces.portlet.LifecycleFactoryImpl@1776f79
    07/06/05 23:48:53 [DEBUG] FacesPortlet - lifecycleId null
    07/06/05 23:48:53 [TRACE] LifecycleFactoryImpl - Returned com.sun.faces.portlet.LifecycleImpl@bc9065 for lifecycleId DEFAULT
    07/06/05 23:48:53 [TRACE] FacesPortlet - Retrieved lifecycle from lifecycleFactory com.sun.faces.portlet.LifecycleImpl@bc9065
    07/06/05 23:48:53 [TRACE] ExternalContextImpl - Created ExternalContext com.sun.faces.portlet.ExternalContextImpl@df8f81
    07/06/05 23:48:53 [TRACE] FacesContextFactoryImpl - Created FacesContext com.sun.faces.portlet.FacesContextImpl@19e7719
    07/06/05 23:48:53 [TRACE] FacesPortlet - Begin executing RenderResponse phase
    07/06/05 23:48:53 [DEBUG] LifecycleImpl - render(com.sun.faces.portlet.FacesContextImpl@19e7719)
    07/06/05 23:48:53 [TRACE] LifecycleImpl - restore(com.sun.faces.portlet.FacesContextImpl@19e7719,false)
    07/06/05 23:48:53 [DEBUG] ViewHandlerImpl - Created new view for /hello.jsp
    07/06/05 23:48:53 [DEBUG] ViewHandlerImpl - Locale for this view as determined by calculateLocale en_US
    07/06/05 23:48:53 [DEBUG] ViewHandlerImpl - RenderKitId for this view as determined by calculateRenderKitId HTML_BASIC
    07/06/05 23:48:53 [DEBUG] LifecycleImpl - Created new ViewRoot with View Id/hello.jsp
    07/06/05 23:48:53 [TRACE] LifecycleImpl - phase(RENDER_RESPONSE 6,com.sun.faces.portlet.FacesContextImpl@19e7719)
    07/06/05 23:48:53 [DEBUG] LifecycleImpl - Begin RenderResponsePhase
    07/06/05 23:48:53 [DEBUG] LifecycleImpl - About to render view /hello.jsp
    07/06/05 23:48:53 [DEBUG] ViewHandlerImpl - About to render view /hello.jsp
    07/06/05 23:48:53 [WARN] ViewHandlerImpl - Unable to determine FaceServlet mapping for servlet path 'null'.
    07/06/05 23:48:53 [DEBUG] ViewHandlerImpl - URL pattern of the FacesServlet executing the current request null
    07/06/05 23:48:53 [DEBUG] ViewHandlerImpl - Found no URL patterns mapping to FacesServlet
    07/06/05 23:48:53 [TRACE] ViewHandlerImpl - Before dispacthMessage to newViewId /hello.jsp
    07/06/05 23:48:53 [TRACE] ExternalContextImpl - dispatchMessage(/hello.jsp)
    07/06/05 23:48:53 [DEBUG] ExternalContextImpl - response content type text/html
    07/06/05 23:48:53 [TRACE] ApplicationImpl - Created component javax.faces.HtmlForm
    07/06/05 23:48:53 [TRACE] FormRenderer - Begin encoding component _id0
    07/06/05 23:48:53 [TRACE] ViewHandlerImpl - Action URL:wsrp_rewrite?wsrp-urlType=blockingAction&wsrp-mode=wsrp%3Aview&wsrp-windowState=wsrp%3Anormal&wsrp-secureURL=false&wsrp-navigationParameters=&wsrp-navigationalState=com.sun.faces.portlet.VIEW_ID%3D%252Fhello.jsp/wsrp_rewrite
    07/06/05 23:48:53 [TRACE] ApplicationImpl - Created component javax.faces.HtmlCommandButton
    07/06/05 23:48:53 [TRACE] ButtonRenderer - Begin encoding component _id1
    07/06/05 23:48:53 [TRACE] ButtonRenderer - End encoding component _id1
    07/06/05 23:48:53 [TRACE] ApplicationImpl - Created component javax.faces.HtmlMessages
    07/06/05 23:48:53 [TRACE] MessagesRenderer - End encoding component _id2
    07/06/05 23:48:53 [TRACE] ViewHandlerImpl - Begin writing state to response for viewId/hello.jsp
    07/06/05 23:48:53 [TRACE] ViewHandlerImpl - End writing state to response for viewId/hello.jsp
    07/06/05 23:48:53 [TRACE] FormRenderer - End encoding component _id0
    07/06/05 23:48:53 [DEBUG] StateManagerImpl - Begin creating serialized view for /hello.jsp
    07/06/05 23:48:53 [DEBUG] StateManagerImpl - End creating serialized view /hello.jsp
    07/06/05 23:48:53 [TRACE] ViewHandlerImpl - After dispacthMessage to newViewId /hello.jsp
    07/06/05 23:48:53 [DEBUG] LifecycleImpl - End RenderResponsePhase
    07/06/05 23:48:53 [TRACE] LifecycleImpl - save(com.sun.faces.portlet.FacesContextImpl@19e7719,false)
    07/06/05 23:48:53 [TRACE] FacesPortlet - End executing RenderResponse phase
    07/06/05 23:48:53 [TRACE] FacesPortlet - End FacesPortlet.render()
    07/06/05 23:49:19 [TRACE] FacesPortlet - Begin FacesPortlet.processAction()
    07/06/05 23:49:19 [TRACE] ExternalContextImpl - Created ExternalContext com.sun.faces.portlet.ExternalContextImpl@1fee2b4
    07/06/05 23:49:19 [TRACE] FacesContextFactoryImpl - Created FacesContext com.sun.faces.portlet.FacesContextImpl@d5cfd6
    07/06/05 23:49:19 [TRACE] FacesPortlet - Begin Executing phases
    07/06/05 23:49:19 [DEBUG] LifecycleImpl - execute(com.sun.faces.portlet.FacesContextImpl@d5cfd6)
    07/06/05 23:49:19 [TRACE] LifecycleImpl - restore(com.sun.faces.portlet.FacesContextImpl@d5cfd6,true)
    07/06/05 23:49:19 [DEBUG] ViewHandlerImpl - Created new view for /hello.jsp
    07/06/05 23:49:19 [DEBUG] ViewHandlerImpl - Locale for this view as determined by calculateLocale en_US
    07/06/05 23:49:19 [DEBUG] ViewHandlerImpl - RenderKitId for this view as determined by calculateRenderKitId HTML_BASIC
    07/06/05 23:49:19 [DEBUG] LifecycleImpl - Created new ViewRoot with View Id/hello.jsp
    07/06/05 23:49:19 [TRACE] LifecycleImpl - phase(RESTORE_VIEW 1,com.sun.faces.portlet.FacesContextImpl@d5cfd6)
    07/06/05 23:49:19 [DEBUG] LifecycleImpl - Begin RestoreViewPhase
    07/06/05 23:49:19 [WARN] ViewHandlerImpl - Unable to determine FaceServlet mapping for servlet path 'null'.
    07/06/05 23:49:19 [DEBUG] ViewHandlerImpl - URL pattern of the FacesServlet executing the current request null
    07/06/05 23:49:19 [DEBUG] StateManagerImpl - Begin restoring view in session for viewId /hello.jsp
    07/06/05 23:49:19 [DEBUG] StateManagerImpl - Session Available, but View State does not exist for viewId: /hello.jsp
    07/06/05 23:49:19 [TRACE] LifecycleImpl - Creating new view '/hello.jsp'
    07/06/05 23:49:19 [DEBUG] ViewHandlerImpl - Created new view for /hello.jsp
    07/06/05 23:49:19 [DEBUG] ViewHandlerImpl - Using locale from previous view en_US
    07/06/05 23:49:19 [DEBUG] ViewHandlerImpl - Using renderKitId from previous view HTML_BASIC
    07/06/05 23:49:19 [DEBUG] LifecycleImpl - End RestoreViewPhase
    07/06/05 23:49:19 [TRACE] LifecycleImpl - save(com.sun.faces.portlet.FacesContextImpl@d5cfd6,true)
    07/06/05 23:49:19 [TRACE] FacesPortlet - End Executing phases
    07/06/05 23:49:19 [TRACE] FacesPortlet - End FacesPortlet.processAction()
    07/06/05 23:49:20 [TRACE] FacesPortlet - Begin FacesPortlet.render()
    07/06/05 23:49:20 [TRACE] ExternalContextImpl - Created ExternalContext com.sun.faces.portlet.ExternalContextImpl@179eb02
    07/06/05 23:49:20 [TRACE] FacesContextFactoryImpl - Created FacesContext com.sun.faces.portlet.FacesContextImpl@133e7a1
    07/06/05 23:49:20 [TRACE] FacesPortlet - Begin executing RenderResponse phase
    07/06/05 23:49:20 [DEBUG] LifecycleImpl - render(com.sun.faces.portlet.FacesContextImpl@133e7a1)
    07/06/05 23:49:20 [TRACE] LifecycleImpl - restore(com.sun.faces.portlet.FacesContextImpl@133e7a1,false)
    07/06/05 23:49:20 [TRACE] LifecycleImpl - End restore()
    07/06/05 23:49:20 [TRACE] LifecycleImpl - phase(RENDER_RESPONSE 6,com.sun.faces.portlet.FacesContextImpl@133e7a1)
    07/06/05 23:49:20 [DEBUG] LifecycleImpl - Begin RenderResponsePhase
    07/06/05 23:49:20 [DEBUG] LifecycleImpl - About to render view /hello.jsp
    07/06/05 23:49:20 [DEBUG] ViewHandlerImpl - About to render view /hello.jsp
    07/06/05 23:49:20 [WARN] ViewHandlerImpl - Unable to determine FaceServlet mapping for servlet path 'null'.
    07/06/05 23:49:20 [DEBUG] ViewHandlerImpl - URL pattern of the FacesServlet executing the current request null
    07/06/05 23:49:20 [DEBUG] ViewHandlerImpl - Found no URL patterns mapping to FacesServlet
    07/06/05 23:49:20 [TRACE] ViewHandlerImpl - Before dispacthMessage to newViewId /hello.jsp
    07/06/05 23:49:20 [TRACE] ExternalContextImpl - dispatchMessage(/hello.jsp)
    07/06/05 23:49:20 [DEBUG] ExternalContextImpl - response content type text/html
    07/06/05 23:49:20 [TRACE] FormRenderer - Begin encoding component _id0
    07/06/05 23:49:20 [TRACE] ViewHandlerImpl - Action URL:wsrp_rewrite?wsrp-urlType=blockingAction&wsrp-mode=wsrp%3Aview&wsrp-windowState=wsrp%3Anormal&wsrp-secureURL=false&wsrp-navigationParameters=&wsrp-navigationalState=com.sun.faces.portlet.VIEW_ID%3D%252Fhello.jsp/wsrp_rewrite
    07/06/05 23:49:20 [TRACE] ButtonRenderer - Begin encoding component _id1
    07/06/05 23:49:20 [TRACE] ButtonRenderer - End encoding component _id1
    07/06/05 23:49:20 [TRACE] MessagesRenderer - End encoding component _id2
    07/06/05 23:49:20 [TRACE] ViewHandlerImpl - Begin writing state to response for viewId/hello.jsp
    07/06/05 23:49:20 [TRACE] ViewHandlerImpl - End writing state to response for viewId/hello.jsp
    07/06/05 23:49:20 [TRACE] FormRenderer - End encoding component _id0
    07/06/05 23:49:20 [DEBUG] StateManagerImpl - Begin creating serialized view for /hello.jsp
    07/06/05 23:49:20 [DEBUG] StateManagerImpl - End creating serialized view /hello.jsp
    07/06/05 23:49:20 [TRACE] ViewHandlerImpl - After dispacthMessage to newViewId /hello.jsp
    07/06/05 23:49:20 [DEBUG] LifecycleImpl - End RenderResponsePhase
    07/06/05 23:49:20 [TRACE] LifecycleImpl - save(com.sun.faces.portlet.FacesContextImpl@133e7a1,false)
    07/06/05 23:49:20 [TRACE] FacesPortlet - End executing RenderResponse phase
    07/06/05 23:49:20 [TRACE] FacesPortlet - End FacesPortlet.render()

    I'm missing some things in your portlet.xml deployment descriptor.
    It looks like your application doesn't make use of a JSF binding layer, so it should be enough to initialize a Faces lifecycle listener like this:
    <init-param>
    <name>DefaultPage.view</name>
    <value>/index.jspx</value>
    </init-param>
    <init-param>
    <name>BridgeLifecycleListeners</name>
    <value>
    oracle.portlet.server.bridges.jsf.adf.ADFFacesBridgeLifecycleListener
    </value>
    </init-param>
    The DefaultPage.view parameter specifies the default page of the application to use as the View mode for the portlet. Its location is relative to the web-app-context-root and always start with a /.
    The BridgeLifecycleListeners parameter specifies the filter classes to use. You must ensure that your portlet.xml file is configured to match the filters specified in your web.xml file. If you do not have the proper classes defined in portlet.xml, then you will receive a missing class error. You specify the classes in the BridgeLifecycleListeners init-param in your portlet.xml file:
    <init-param>
    <name>BridgeLifecycleListeners</name>
    <value>listener_class_n[,listener_class_n+1,...]</value>
    </init-param>
    For example, suppose that your application includes AdfFacesFilter filter in its web.xml:
    <filter>
    <filter-name>adfFaces</filter-name>
    <filter-class>oracle.adf.view.faces.webapp.AdfFacesFilter</filter-class>
    </filter>
    You would then need to include the following class in your portlet.xml:
    <init-param>
    <name>BridgeLifecycleListeners</name>
    <value>oracle.portlet.server.bridges.jsf.adf.ADFFacesBridgeLifecycleListener
    </value>
    </init-param>
    Similarly, suppose that ADFBindingFilter filter is defined in web.xml as follows:
    <filter>
    <filter-name>adfBindings</filter-name>
    <filter-class>oracle.adf.model.servlet.ADFBindingFilter</filter-class>
    </filter>
    You would then need to include the following in your portlet.xml:
    <init-param>
    <name>BridgeLifecycleListeners</name>
    <value>oracle.portlet.server.bridges.jsf.adf.ADFFacesBridgeLifecycleListener,
    oracle.portlet.server.bridges.jsf.adf.BindingFacesBridgeLifecycleListener
    </value>
    </init-param>

  • Event like preRender / page_Load in Sun's JSF 1.2 implementation ?

    Hi there,
    i wonder if anyone can confirm or advise how i can do things in code before the JSF (.faces template) is shown.
    I have done a search on the forum and seems to be a lot of people asking about it... it seems IBM's version of JSF has a preRender method or something BUT i am confused,
    I wanted to stick with Sun's JSF implementation, maybe i am wrong to do this???
    Within Sun's JSF is there a work around or an event/method that is called before the page is displayed?
    If anyone has any examples or info it would be really appreciated
    Thanks in advance
    Ian

    Ian001 wrote:
    I am really enjoying java journey .. but there just seem to be too many options :-) ah ah..Options are good! :)
    Anybody care to comment on which i should use, i did want to stay with Suns implementation of JSF so i presume apache shale or jsftemplating can be installed over the top??Yes. They are add-ons that should work with any JSF implementation.
    Why do i want to stay with sun's implementation of JSF well i read someone that it is more stable and advanced... maybe this has changed or maybe i am wrong?That's my impression, but I have a bias. :)

  • Can I use Tomahawk with Sun's JSF implementation?

    I would like to know whether I can use Tomahawk-1.1.3 with Sun's JSF implementation or have to use JSF implementation from myfaces?
    Thanks
    Zhong

    If the components are written per the specification, they should be portable, and as such should run on either implementation.

  • Replace Quotes, Connection Pooling, and Sun Web Server with MySQL, Oracle

    This is code I use to insert data into my MySQL and Oracle databases.
    I takes care of quotes and shows use of context, i.e. when you use Sun Web Server's
    ConnectionPooling. This code works. Feel free to reply if you have questions on how to set up connection pooling using Sun Web Server 6.1SP - it took quite a long time to learn and I couldn't find much information throughout the web, so I hope this helps...
    This is not a question and I am not looking for an answer, but please post comments or suggestions.
    dailysun
    This is in one class where I have a hashtable containing the
    column name / value pairs that I want to enter into my table.
    This class simply creates the SQL string from the values in the
    hashtable. It then passes that hashtable including the database
    name to a class which executes that sql statement (second code
    portion).
    /* Insert data into sf_parts. Create the column strings from
             * the provided hash table. Be sure to parse out hash elements which
             * are used for the createTemplate process
            StringBuffer values = new StringBuffer();
            StringBuffer fields = new StringBuffer();
            Enumeration keys = fieldHash.keys();
            while(keys.hasMoreElements()){
                Object currentKey = keys.nextElement();
                    String fieldValue = (String) fieldHash.get(currentKey);
                    if(values.length() >0){
                        values.append(",");
                    values.append("'"+fieldValue.replaceAll("'","''")+"'"); // Takes care of quotes and various other special characters!
                    if(fields.length() >0){
                        fields.append(",");
                    fields.append(currentKey);
            sql = "INSERT INTO myTable (" + fields.toString() + ") VALUES (" + values.toString() + ");";
            String insertResult = caq.getInsertDelete(sql,"myDatabaseName"); // your database name is defined in web.xml and sun-web.xml when you use Sun Web Server's Connection Pooling.
            returnValue += "<br><br><b>Rows inserted into table(myTable): </b>" + insertResult + "<br>\n";
            And, like I describe above, this method executes the sql statement.
         * Takes care of insert, update and delete requests.
         * Must have set both dbName as well as the sql String.
         * Will return number of rows affected as String.
         * @return String Number of rows affected
         * @exception SQLException
         * @exception Exception
        public String getInsertDelete() {
            checkData(); // this simply checks if the variables dbName and sql are not empty ;-)
            InitialContext initContext = null;
            int rv = 0;
            try{
                // Get connection from configured pool
                initContext = new InitialContext();
                source = (DataSource) initContext.lookup("java:comp/env/jdbc/" + dbName); // I have this set up in web.xml and sun-web.xml (I use Sun Web Server 6.1SP which does connection pooling for me)
                conn = source.getConnection();
                if(conn != null){
                    stmt = conn.createStatement();
                    rv = stmt.executeUpdate(sql);
            }catch (SQLException e){
                // do something
            }catch (Exception e){
                // do something
            }finally{
                try{
                    stmt.close();
                }catch(Exception e){
                    // do something
                try{
                    conn.close();
                }catch(Exception e){
                    // do something
                try{
                    initContext.close();
                }catch(Exception e){
                    // do something
            return rv+"";
        }  

    This is code I use to insert data into my MySQL and
    Oracle databases.
    I takes care of quotes and shows use of context, i.e.
    when you use Sun Web Server's
    ConnectionPooling. This code works. Feel free to
    reply if you have questions on how to set up
    connection pooling using Sun Web Server 6.1SP - it
    took quite a long time to learn and I couldn't find
    much information throughout the web, so I hope this
    helps...
    This is not a question and I am not looking for an
    answer, but please post comments or suggestions.Using prepared statements would mean that you wouldn't have to worry about quotes.
    You should be closing the result set.
    You are handling all fields as strings. That won't work with time fields and might not work for numeric fields.
    Presumably most of your variables are member variables. They should be local variables because that is the scope of the usage.
    You must do something with the exceptions.
    Hashtables although convienent mean that problems with usage can only be resolved at run time rather than compile time.

  • Java.io and sun.io

    What is difference between "java.io" and "sun.io",
    I can not find the "sun.io" in Java2 API and
    where can find it.

    The java.* packages are the only packages that are considered "part" of Java. Any extra classes that may be bundled with a release should be considered supplementary and transient - if you look at their documentation, you will likely find warnings that the details of these classes may not be consistent in future releases, nor may the classes even exist.
    The difference is that java.io is the stable one that you should be using... The implementation may be using sun.io behind the scenes, but if you use java.io, then if the implementation changes (As it appears to), you don't care.
    If you can't find it, there's a good chance you aren't supposed to.
    The exception to above is the javax.* package... these represent java extensions, and are also considered standard.
    -Troy
    PS- Yes, the changing sun.* class/package structure is extremely bad policy, not to be emulated... once an API is released, it is considered 'polite' to leave it backwards-compatible, or at least offer upgrade advice.

  • Real Application Cluster on Sun Solaris 8 and Sun Cluster 3

    Hello,
    we want to install Oracle 9i Enterprise Edition in combination with Oracle Real Application Cluster-Option on 2 Nodes. Every node (12-CPU-SMP-Machine) should running Sun Solaris 8 and Sun Cluster 3 Service.
    Does this configuration work with ORAC? I found nowhere informations about. Is there anything I have to pay special attention for during installation?
    Thank you for helping and best regards from Berlin/Germany
    Michael Wuttke

    Forms and report services work fine on solaris 8.
    My problem is on the client side.
    I have to use solaris 8 with netscape like forms clients
    and I wasn't able to make it work with java plugins.
    Any solution?
    Mauro

  • Smpatch and Sun Update Manager BROKEN - Solaris 10 Sparc

    Since the installation of patch 121118-12, smpatch and Sun Update Manager (SUM) 1.0.9 are completely broken for myself and many, many other Solaris 10 users. Numerous significant bugs are listed in the release notes for the client:
    http://www.sun.com/bigadmin/features/hub_articles/sc_update_rn.jsp
    smpatch analyze and download seems to work, but the system completely hangs on smpatch update, every time. During the hang, smpatch/SUM-related processes are duplicated. This is not mentioned in the release notes.
    Here is the results of "ps -ef | grep patch" when smpatch update hangs upon patch install:
    username 1365 1 0 18:39:38 ? 0:10 /usr/bin/java -jar /usr/lib/patch/swupna.jar
    root 2305 2275 0 18:48:05 ? 0:00 /usr/bin/java -Djava.library.path=/usr/lib/cc-ccr/lib com.sun.patchpro.cli.Patc
    root 2270 2261 0 18:45:34 ? 0:00 smpatch update -i 120222-18 -i 119115-28 -i 119090-24 -i 120099-08 -C patchpro.
    username 1061 1055 0 18:33:40 ? 2:34 /usr/bin/java -client -jar /usr/lib/patch/swupdate.jar
    root 1072 1061 0 18:33:57 ? 0:00 sh -c /usr/lib/patch/csm
    root 1073 1072 0 18:34:01 ? 0:00 /usr/lib/patch/csm
    root 2261 1073 0 18:45:33 ? 0:00 smpatch update -i 120222-18 -i 119115-28 -i 119090-24 -i 120099-08 -C patchpro.
    root 2275 2266 0 18:45:34 ? 1:20 /usr/bin/java -Djava.library.path=/usr/lib/cc-ccr/lib com.sun.patchpro.cli.Patc
    Note the duplicated smpatch and java processes. This is a networked, stand-alone system. Killing the secondary smpatch and java -Djava.lib... processes stops the hang, but always results in installation failure for at least one patch.
    Other than "killing hung processes and retry" as given in the release notes (bogus), what are good workarounds for the smpatch bug(s), which have severely impacted my system? When will Sun release a new SUM client? The current version is completely hosed.

    Thank you VERY much for your reply. I really appreciate your help.
    Yes, smpatch works fine without patch 121118-12 installed (121118-10 is now my current smpatch level).
    Here are the results of showrev -p:
    Patch: 118367-04 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 118371-07 Obsoletes: 119265-02 Requires: Incompatibles: Packages: SUNWcsu, SUNWcsl, SUNWtoo
    Patch: 118373-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 118872-04 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 118918-22 Obsoletes: 116781-02, 121473-01, 121476-01, 121478-01, 121282-02, 121284-02, 121292-01, 121786-01, 119012-03, 123444-01 Requires: Incompatibles: Packages: SUNWcsu, SUNWcsr, SUNWcsl, SUNWcnetr, SUNWckr, SUNWcar, SUNWcakr, SUNWhea, SUNWcslr, SUNWmdb, SUNWmdbr
    Patch: 119042-10 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu, SUNWcsr, SUNWcsd, SUNWtnamr, SUNWkrbr, SUNWtnetr, SUNWocfr, SUNWvolr, SUNWnfscr, SUNWgssc, SUNWpmr, SUNWnisr, SUNWzoner, SUNWmdr, SUNWbsr, SUNWatfsr, SUNWcnsr, SUNWpcr, SUNWpsr, SUNWnfssr, SUNWntpr, SUNWpiclr, SUNWftpr, SUNWrcapr, SUNWrcmdr, SUNWslpr, SUNWsndmr, SUNWsshdr
    Patch: 119573-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 119574-02 Obsoletes: 119267-01 Requires: Incompatibles: Packages: SUNWcsu
    Patch: 119578-30 Obsoletes: 119330-01, 119331-01, 119559-01, 119576-01, 120635-02, 122396-01 Requires: Incompatibles: Packages: SUNWcsu, SUNWcsl, SUNWckr, SUNWhea, SUNWfmd, SUNWarc
    Patch: 119824-02 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 120044-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 120050-04 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 120062-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu, SUNWloc
    Patch: 120128-02 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu, SUNWxcu6
    Patch: 120618-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 120737-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 120816-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu, SUNWesu, SUNWxcu4
    Patch: 120830-05 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu, SUNWtoo, SUNWxcu4, SUNWxcu6
    Patch: 120845-03 Obsoletes: 121905-01, 123354-03 Requires: Incompatibles: Packages: SUNWcsu, SUNWcsl, SUNWhea
    Patch: 120988-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 121002-03 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 121012-02 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 121132-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 121215-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 121288-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 121296-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 121406-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 121901-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 122032-02 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 122183-02 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 122412-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 122513-02 Obsoletes: 122328-01 Requires: Incompatibles: Packages: SUNWcsu
    Patch: 123015-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 123017-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 123194-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 123319-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 123322-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 123326-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu, SUNWxcu4
    Patch: 123328-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu, SUNWxcu4, SUNWxcu6
    Patch: 123520-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu, SUNWxcu4
    Patch: 124325-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 121453-02 Obsoletes: 120776-03, 121086-02, 119107-07 Requires: 119574-02, 119254-06 Incompatibles: Packages: SUNWcsu, SUNWcsr, SUNWccccrr, SUNWccccr, SUNWccfw, SUNWccsign, SUNWcctpx, SUNWccinv, SUNWcsmauth, SUNWppror, SUNWpprou, SUNWupdatemgrr, SUNWupdatemgru, SUNWswupcl, SUNWccccfg, SUNWccfwctrl, SUNWppro-plugin-sunos-base
    Patch: 118833-33 Obsoletes: 118822-30, 118348-01, 118868-01, 120996-02, 121298-01, 119712-04, 119852-03, 119943-01, 119984-03, 120052-03, 120196-02, 121000-05, 117170-01, 117461-08, 118370-04, 118375-07, 118852-07, 118874-02, 118911-01, 118913-02, 118927-02, 118996-04, 119216-02, 119218-02, 119374-13, 119444-03, 119557-09, 119568-02, 119569-02, 119572-01, 119596-03, 119681-08, 119687-02, 119689-08, 119715-10, 119828-05, 119939-01, 119941-03, 119992-02, 119994-01, 119996-01, 120009-01, 120030-03, 120034-01, 120054-02, 120083-01, 120251-02, 120254-03, 120258-02, 120300-01, 120362-02, 120627-01, 121237-01, 121266-01, 121268-01, 121276-03, 121280-01, 121301-02, 121777-01, 121784-01, 121788-02, 121790-01, 121792-01, 121794-02, 121796-01, 121798-01, 121800-01, 121802-01, 121804-01, 121806-01, 121808-01, 121810-01, 121812-01, 121814-01, 121816-01, 121818-01, 121820-01, 121822-01, 121824-01, 121826-01, 121832-01, 121834-01, 121836-01, 121838-01, 121840-01, 121842-01, 121844-01, 121846-01, 121848-01, 121850-01, 121852-01, 121854-01, 121894-01, 122079-01, 122081-01, 122176-01, 122235-01, 122237-02, 122241-01, 122242-01, 122243-01, 122294-01, 122296-01, 122298-01, 122302-01, 122304-01, 122306-01, 122314-01, 122316-01, 122318-01, 122320-01, 122322-01, 122324-01, 122334-01, 122336-01, 122338-01, 122339-01, 122342-01, 122344-01, 122346-01, 122348-01, 122350-01, 122644-01, 120661-04, 121694-01, 118346-05, 118812-03, 118857-01, 118920-02, 119562-01, 119571-01, 119587-01, 120467-05, 121782-01, 123950-02, 118915-01, 119560-02, 119561-03, 119333-01, 119582-04, 122333-01, 122364-01, 122366-01, 122368-01, 122370-01, 122372-01, 122374-01, 122378-01, 122380-01, 122382-01, 122384-01, 122386-01, 122392-01, 119850-22, 119982-05, 120036-07, 120253-03, 120664-01, 120844-01, 121236-02, 121693-03, 122027-08, 122215-01, 122253-01, 122388-01, 122406-01, 122523-03, 122539-06, 122650-02, 122750-01, 123302-01, 123320-01, 123352-05, 123524-01, 122394-01, 122519-01, 122652-04, 123336-01, 120198-05, 121302-01, 122195-03, 122648-02, 122856-03, 123066-01, 123304-02, 123442-02, 123522-01, 123914-02, 123952-01, 124282-01, 118548-01, 118550-04, 119719-01, 119205-03, 119207-02, 119564-01, 119215-02, 119334-02, 119566-01, 119831-01, 119682-02, 118859-01, 118992-03, 119858-02, 120197-01, 118850-03, 119589-03, 118551-03, 118835-04, 118846-02, 118923-04, 119075-14, 119577-01, 119683-02, 119832-02, 119945-02, 119951-01, 119949-02, 119983-01, 119990-01, 120017-02, 120302-01, 120304-05, 119947-02, 120066-01, 118553-04, 119591-03, 119979-01, 120537-05, 120013-02, 120471-02, 124206-02 Requires: 118918-13, 119254-14, 119578-15, 119578-24 Incompatibles: Packages: SUNWcsu, SUNWcsr, SUNWcsl, SUNWcnetr, SUNWckr, SUNWkvm, SUNWcar, SUNWcakr, SUNWcsd, SUNWesu, SUNWkrbr, SUNWkrbu, SUNWtoo, SUNWib, SUNWipoib, SUNWtavor, SUNWudapltu, SUNWudapltr, SUNWudfr, SUNWaudd, SUNWusb, SUNWusbs, SUNWuedg, SUNWugen, SUNWuksp, SUNWopenssl-libraries, SUNWwbsup, SUNWuprl, SUNWusbu, SUNWvolr, SUNWnfsckr, SUNWnfscr, SUNWnfscu, SUNWvolu, SUNWrcmdc, SUNWscpu, SUNWxcu4, SUNWxge, SUNWxcu6, SUNWsmapi, SUNWnisu, SUNWmdr, SUNWmdu, SUNWcpr, SUNWhea, SUNWpiclu, SUNWses, SUNWssad, SUNWcslr, SUNWnfssu, SUNWintgige, SUNWipfh, SUNWipfr, SUNWipfu, SUNWcpcu, SUNWmdb, SUNWmdbr, SUNW1394, SUNWbtool, SUNWarc, SUNWarcr, SUNWkey, SUNWatfsr, SUNWatfsu, SUNWaudh, SUNWbart, SUNWmddr, SUNWsacom, SUNWpcu, SUNWppm, SUNWpsu, SUNWdfbh, SUNWnfsskr, SUNWnfssr, SUNWdtrc, SUNWdtrp, SUNWopenssl-commands, SUNWscplp, SUNWpd, SUNWpdu, SUNWpl5v, SUNWftdur, SUNWqos, SUNWroute, SUNWrpcib, SUNWsbp2, SUNWscsa1394, SUNWsndmr, SUNWsndmu
    Patch: 119986-03 Obsoletes: Requires: 122176-01, 118833-12 Incompatibles: Packages: SUNWcsu
    Patch: 120986-08 Obsoletes: 121008-02, 121274-01, 121414-01, 123932-02 Requires: 118822-24, 118833-25, 119374-09 Incompatibles: Packages: SUNWcsu
    Patch: 122172-06 Obsoletes: Requires: 118833-12 Incompatibles: Packages: SUNWcsu, SUNWcsr
    Patch: 122174-03 Obsoletes: Requires: 118833-12 Incompatibles: Packages: SUNWcsu
    Patch: 122521-01 Obsoletes: 121856-01 Requires: 118833-04 Incompatibles: Packages: SUNWcsu
    Patch: 123334-04 Obsoletes: Requires: 118833-18 Incompatibles: Packages: SUNWcsu
    Patch: 122660-07 Obsoletes: 122658-04, 122662-05, 123418-02, 123420-02, 123422-03 Requires: 124204-01, 122640-02, 121133-02, 118833-33, 120900-04, 118731-01 Incompatibles: Packages: SUNWcsu, SUNWcsr, SUNWzoneu
    Patch: 124997-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 122032-03 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 118833-36 Obsoletes: 118822-30, 118348-01, 118868-01, 120996-02, 121298-01, 119712-04, 119852-03, 119943-01, 119984-03, 120052-03, 120196-02, 121000-05, 117170-01, 117461-08, 118370-04, 118375-07, 118852-07, 118874-02, 118911-01, 118913-02, 118927-02, 118996-04, 119216-02, 119218-02, 119374-13, 119444-03, 119557-09, 119568-02, 119569-02, 119572-01, 119596-03, 119681-08, 119687-02, 119689-08, 119715-10, 119828-05, 119939-01, 119941-03, 119992-02, 119994-01, 119996-01, 120009-01, 120030-03, 120034-01, 120054-02, 120083-01, 120251-02, 120254-03, 120258-02, 120300-01, 120362-02, 120627-01, 121237-01, 121266-01, 121268-01, 121276-03, 121280-01, 121301-02, 121777-01, 121784-01, 121788-02, 121790-01, 121792-01, 121794-02, 121796-01, 121798-01, 121800-01, 121802-01, 121804-01, 121806-01, 121808-01, 121810-01, 121812-01, 121814-01, 121816-01, 121818-01, 121820-01, 121822-01, 121824-01, 121826-01, 121832-01, 121834-01, 121836-01, 121838-01, 121840-01, 121842-01, 121844-01, 121846-01, 121848-01, 121850-01, 121852-01, 121854-01, 121894-01, 122079-01, 122081-01, 122176-01, 122235-01, 122237-02, 122241-01, 122242-01, 122243-01, 122294-01, 122296-01, 122298-01, 122302-01, 122304-01, 122306-01, 122314-01, 122316-01, 122318-01, 122320-01, 122322-01, 122324-01, 122334-01, 122336-01, 122338-01, 122339-01, 122342-01, 122344-01, 122346-01, 122348-01, 122350-01, 122644-01, 120661-04, 121694-01, 118346-05, 118812-03, 118857-01, 118920-02, 119562-01, 119571-01, 119587-01, 120467-05, 121782-01, 123950-02, 118915-01, 119560-02, 119561-03, 119333-01, 119582-04, 122333-01, 122364-01, 122366-01, 122368-01, 122370-01, 122372-01, 122374-01, 122378-01, 122380-01, 122382-01, 122384-01, 122386-01, 122392-01, 119850-22, 119982-05, 120036-07, 120253-03, 120664-01, 120844-01, 121236-02, 121693-03, 122027-08, 122215-01, 122253-01, 122388-01, 122406-01, 122523-03, 122539-06, 122650-02, 122750-01, 123302-01, 123320-01, 123352-05, 123524-01, 122394-01, 122519-01, 122652-04, 123336-01, 120198-05, 121302-01, 122195-03, 122648-02, 122856-03, 123066-01, 123304-02, 123442-02, 123522-01, 123914-02, 123952-01, 124282-01, 118548-01, 118550-04, 119719-01, 119205-03, 119207-02, 119564-01, 119215-02, 119334-02, 119566-01, 119831-01, 119682-02, 118859-01, 118992-03, 119858-02, 120197-01, 118850-03, 119589-03, 118551-03, 118835-04, 118846-02, 118923-04, 119075-14, 119577-01, 119683-02, 119832-02, 119945-02, 119951-01, 119949-02, 119983-01, 119990-01, 120017-02, 120302-01, 120304-05, 119947-02, 120066-01, 118553-04, 119591-03, 119979-01, 120537-05, 120013-02, 120471-02, 124206-02, 118870-02, 123348-04, 122410-01 Requires: 118918-13, 119254-14, 119042-09, 119578-30 Incompatibles: Packages: SUNWcsu, SUNWcsr, SUNWcsl, SUNWcnetr, SUNWckr, SUNWkvm, SUNWcar, SUNWcakr, SUNWcsd, SUNWesu, SUNWkrbr, SUNWkrbu, SUNWtoo, SUNWib, SUNWipoib, SUNWtavor, SUNWudapltu, SUNWudapltr, SUNWudfr, SUNWaudd, SUNWusb, SUNWusbs, SUNWuedg, SUNWugen, SUNWuksp, SUNWopenssl-libraries, SUNWwbsup, SUNWuprl, SUNWusbu, SUNWvolr, SUNWnfsckr, SUNWnfscr, SUNWnfscu, SUNWvolu, SUNWrcmdc, SUNWscpu, SUNWxcu4, SUNWxge, SUNWxcu6, SUNWsmapi, SUNWnisu, SUNWmdr, SUNWmdu, SUNWcpr, SUNWhea, SUNWpiclu, SUNWses, SUNWssad, SUNWcslr, SUNWnfssu, SUNWintgige, SUNWipfh, SUNWipfr, SUNWipfu, SUNWcpcu, SUNWmdb, SUNWmdbr, SUNW1394, SUNWbtool, SUNWarc, SUNWarcr, SUNWkey, SUNWatfsr, SUNWatfsu, SUNWaudh, SUNWbart, SUNWmddr, SUNWsacom, SUNWpcu, SUNWppm, SUNWpsu, SUNWdfbh, SUNWnfsskr, SUNWnfssr, SUNWdtrc, SUNWdtrp, SUNWopenssl-commands, SUNWscplp, SUNWpd, SUNWpdu, SUNWpl5v, SUNWftdur, SUNWqos, SUNWroute, SUNWrpcib, SUNWsbp2, SUNWscsa1394, SUNWsndmr, SUNWsndmu
    Patch: 124922-02 Obsoletes: Requires: 118833-36 Incompatibles: Packages: SUNWcsu, SUNWcslr
    Patch: 118918-24 Obsoletes: 116781-02, 119012-03, 121282-02, 121284-02, 121292-01, 121473-01, 121476-01, 121478-01, 121786-01, 123444-01 Requires: Incompatibles: Packages: SUNWcsu, SUNWcsr, SUNWcsl, SUNWcnetr, SUNWckr, SUNWcar, SUNWcakr, SUNWhea, SUNWcslr, SUNWmdb, SUNWmdbr
    Patch: 124244-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu, SUNWxcu4
    Patch: 122032-04 Obsoletes: Requires: Incompatibles: Packages: SUNWcsu
    Patch: 118371-08 Obsoletes: 119265-02 Requires: Incompatibles: Packages: SUNWcsu, SUNWcsl, SUNWtoo
    Patch: 118371-09 Obsoletes: 119265-02 Requires: Incompatibles: Packages: SUNWcsu, SUNWcsl, SUNWtoo
    Patch: 120845-04 Obsoletes: 121905-01, 123354-03 Requires: 118833-25 Incompatibles: Packages: SUNWcsu, SUNWcsl, SUNWhea
    Patch: 124918-02 Obsoletes: Requires: 118833-36 Incompatibles: Packages: SUNWcsu
    Patch: 124250-03 Obsoletes: Requires: 118833-36 Incompatibles: Packages: SUNWcsu, SUNWckr, SUNWhea
    Patch: 125100-04 Obsoletes: 119998-02, 122513-02, 123441-05, 123916-05, 124916-03, 125018-02, 125028-02 Requires: 118833-36, 119042-09, 121901-01 Incompatibles: Packages: SUNWcsu, SUNWcsr, SUNWcsl, SUNWckr, SUNWkvm, SUNWcar, SUNWcakr, SUNWcsd, SUNWcpr, SUNWhea, SUNWssad, SUNWcpcu, SUNWmdb, SUNWmdbr
    Patch: 122660-08 Obsoletes: 122658-04, 122662-05, 123418-02, 123420-02, 123422-03 Requires: 118731-01, 118833-33, 120900-04, 121133-02, 122640-02, 124204-01 Incompatibles: Packages: SUNWcsu, SUNWcsr, SUNWzoneu
    Patch: 124922-03 Obsoletes: Requires: 118833-36 Incompatibles: Packages: SUNWcsu, SUNWcsl, SUNWckr, SUNWtoo, SUNWhea, SUNWcslr, SUNWbtool, SUNWarcr
    Patch: 125100-05 Obsoletes: 119998-02, 122513-02, 123441-05, 123916-05, 124916-03, 125018-02, 125028-02 Requires: 118833-36, 119042-09, 119578-30, 121901-01 Incompatibles: Packages: SUNWcsu, SUNWcsr, SUNWcsl, SUNWckr, SUNWkvm, SUNWcar, SUNWcakr, SUNWcsd, SUNWcpr, SUNWhea, SUNWssad, SUNWcpcu, SUNWmdb, SUNWmdbr
    Patch: 118371-10 Obsoletes: 119265-02 Requires: Incompatibles: Packages: SUNWcsu, SUNWcsl, SUNWtoo
    Patch: 120845-05 Obsoletes: 121905-01, 123354-03 Requires: 118833-25 Incompatibles: Packages: SUNWcsu, SUNWcsl, SUNWhea
    Patch: 121901-02 Obsoletes: Requires: 119042-09 Incompatibles: Packages: SUNWcsu
    Patch: 125100-06 Obsoletes: 119998-02, 122328-01, 122513-02, 123441-05, 123916-05, 124916-03, 125018-02, 125028-02 Requires: 118833-36, 119042-09, 119578-30, 120629-06, 121901-01, 124327-04 Incompatibles: Packages: SUNWcsu, SUNWcsr, SUNWcsl, SUNWckr, SUNWkvm, SUNWcar, SUNWcakr, SUNWcsd, SUNWcpr, SUNWhea, SUNWssad, SUNWcpcu, SUNWmdb, SUNWmdbr
    Patch: 123334-05 Obsoletes: Requires: 118833-18 Incompatibles: Packages: SUNWcsu
    Patch: 120050-06 Obsoletes: 124208-01 Requires: 118833-25 Incompatibles: Packages: SUNWcsu, SUNWhea
    Patch: 125100-07 Obsoletes: 119998-02, 122328-01, 122513-02, 123441-05, 123916-05, 124916-03, 125018-02, 125028-02 Requires: 118833-36, 119042-09, 119578-30, 120629-06, 121901-01, 124327-04 Incompatibles: Packages: SUNWcsu, SUNWcsr, SUNWcsl, SUNWckr, SUNWkvm, SUNWcar, SUNWcakr, SUNWcsd, SUNWcpr, SUNWhea, SUNWssad, SUNWcpcu, SUNWmdb, SUNWmdbr
    Patch: 122660-09 Obsoletes: 122658-04, 122662-05, 123418-02, 123420-02, 123422-03 Requires: 118731-01, 118833-33, 120900-04, 121133-02, 122640-02, 124204-01 Incompatibles: Packages: SUNWcsu, SUNWcsr, SUNWzoneu
    Patch: 125100-08 Obsoletes: 119336-01, 119586-02, 119998-02, 122328-01, 122513-02, 123441-05, 123916-05, 124916-03, 125018-02, 125028-02, 125792-01 Requires: 118833-36, 119042-09, 119578-30, 120629-06, 121901-01, 124327-04 Incompatibles: Packages: SUNWcsu, SUNWcsr, SUNWcsl, SUNWckr, SUNWkvm, SUNWcar, SUNWcakr, SUNWcsd, SUNWib, SUNWtavor, SUNWudapltu, SUNWudapltr, SUNWcpr, SUNWhea, SUNWssad, SUNWcpcu, SUNWmdb, SUNWmdbr, SUNWdtrp
    Patch: 121288-03 Obsoletes: 123017-01 Requires: 118833-36 Incompatibles: Packages: SUNWcsu, SUNWhea, SUNWcslr, SUNWarcr
    Patch: 119593-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsr
    Patch: 119685-09 Obsoletes: Requires: Incompatibles: Packages: SUNWcsr, SUNWmdb
    Patch: 120900-04 Obsoletes: 121266-01 Requires: Incompatibles: Packages: SUNWcsr, SUNWzoneu, SUNWdtrc
    Patch: 120990-02 Obsoletes: Requires: Incompatibles: Packages: SUNWcsr
    Patch: 121004-03 Obsoletes: Requires: Incompatibles: Packages: SUNWcsr
    Patch: 121133-02 Obsoletes: 121333-03 Requires: 120900-04 Incompatibles: Packages: SUNWcsr, SUNWzoneu
    Patch: 121561-04 Obsoletes: Requires: 119042-02 Incompatibles: Packages: SUNWcsr
    Patch: 122637-01 Obsoletes: Requires: 120900-04 Incompatibles: Packages: SUNWcsr
    Patch: 123910-01 Obsoletes: 123954-01 Requires: Incompatibles: Packages: SUNWcsr
    Patch: 123911-01 Obsoletes: 123356-02 Requires: Incompatibles: Packages: SUNWcsr, SUNWcsl, SUNWhea, SUNWcslr
    Patch: 123916-03 Obsoletes: 123441-05 Requires: Incompatibles: Packages: SUNWcsr, SUNWcar, SUNWcakr, SUNWcsd
    Patch: 121474-01 Obsoletes: Requires: 118822-29 Incompatibles: Packages: SUNWcsr
    Patch: 122640-05 Obsoletes: Requires: 118833-12 Incompatibles: Packages: SUNWcsr, SUNWzfskr, SUNWzfsr, SUNWzfsu
    Patch: 123912-02 Obsoletes: 123424-02 Requires: 118833-25 Incompatibles: Packages: SUNWcsr, SUNWesu
    Patch: 122646-01 Obsoletes: Requires: 122662-01, 121133-01 Incompatibles: Packages: SUNWcsr, SUNWzoneu
    Patch: 119077-10 Obsoletes: Requires: Incompatibles: Packages: SUNWcsr, SUNWcnetr, SUNWckr, SUNWcsd, SUNWib
    Patch: 119079-13 Obsoletes: Requires: Incompatibles: Packages: SUNWcsr, SUNWcsd, SUNWtnamr, SUNWkrbr, SUNWtnetr, SUNWtavor, SUNWusb, SUNWuedg, SUNWugen, SUNWocfr, SUNWvolr, SUNWnfscr, SUNWgssc, SUNWpmr, SUNWnisr, SUNWzoner, SUNWmdr, SUNWbsr, SUNWus, SUNWintgige, SUNWllcr, SUNWatfsr, SUNWsacom, SUNWcnsr, SUNWpcr, SUNWpsr, SUNWnfssr, SUNWntpr, SUNWpiclr, SUNWftpr, SUNWrcapr, SUNWrcmdr, SUNWslpr, SUNWsndmr, SUNWsndmu, SUNWsshdr
    Patch: 121061-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsr
    Patch: 121778-12 Obsoletes: Requires: Incompatibles: Packages: SUNWcsr, SUNWcnetr, SUNWckr, SUNWcsd, SUNWib, SUNWaudd, SUNWusb, SUNWugen, SUNWvolr, SUNWvolu, SUNWzoneu, SUNWses, SUNWssad, SUNWintgige, SUNWfmd, SUNWpd
    Patch: 121780-11 Obsoletes: Requires: Incompatibles: Packages: SUNWcsr, SUNWcnetr, SUNWckr, SUNWcsd, SUNWib, SUNWusb, SUNWvolr, SUNWssad, SUNWsndmr
    Patch: 123258-11 Obsoletes: Requires: Incompatibles: Packages: SUNWcsr, SUNWcnetr, SUNWckr, SUNWcsd, SUNWib, SUNWusb, SUNWssad, SUNWintgige, SUNWsacom, SUNWsndmr
    Patch: 123259-12 Obsoletes: Requires: Incompatibles: Packages: SUNWcsr, SUNWcnetr, SUNWckr, SUNWcar, SUNWcsd, SUNWtnamr, SUNWkrbr, SUNWtnetr, SUNWib, SUNWtavor, SUNWaudd, SUNWusb, SUNWuedg, SUNWugen, SUNWuksp, SUNWuprl, SUNWocfr, SUNWvolr, SUNWnfscr, SUNWvolu, SUNWgssc, SUNWpmr, SUNWxge, SUNWnisr, SUNWzoner, SUNWmdr, SUNWpoolr, SUNWzoneu, SUNWses, SUNWssad, SUNWbsr, SUNWus, SUNWintgige, SUNWfmd, SUNWllcr, SUNWatfsr, SUNWauda, SUNWsacom, SUNWcnsr, SUNWpcr, SUNWpsr, SUNWnfssr, SUNWntpr, SUNWpd, SUNWpiclr, SUNWftpr, SUNWrcapr, SUNWrcmdr, SUNWslpr, SUNWsndmr, SUNWsndmu, SUNWsshdr
    Patch: 123910-03 Obsoletes: 123954-01 Requires: 119042-09, 121901-01 Incompatibles: Packages: SUNWcsr
    Patch: 120473-03 Obsoletes: 123356-02, 123911-01 Requires: 118833-36 Incompatibles: Packages: SUNWcsr, SUNWcsl, SUNWhea, SUNWcslr
    Patch: 120473-05 Obsoletes: 117463-05, 118890-03, 119985-02, 121278-01, 121294-01, 122535-01, 123330-01, 123350-01, 123356-02, 123911-01, 124204-04 Requires: 118833-36, 122640-05, 123839-01 Incompatibles: Packages: SUNWcsr, SUNWcsl, SUNWkvm, SUNWtecla, SUNWpl5u, SUNWperl584core, SUNWperl584usr, SUNWopenssl-libraries, SUNWvolu, SUNWaudit, SUNWscpu, SUNWzfskr, SUNWzfsr, SUNWsmapi, SUNWzfsu, SUNWhea, SUNWcslr, SUNWdmgtu, SUNWfmd, SUNWarc, SUNWarcr, SUNWdtrc, SUNWsndmu, SUNWsra
    Patch: 120473-06 Obsoletes: 117463-05, 118890-03, 119985-02, 121278-01, 121294-01, 122535-01, 123330-01, 123350-01, 123356-02, 123911-01, 124204-04 Requires: 118833-36, 122640-05, 123839-01 Incompatibles: Packages: SUNWcsr, SUNWcsl, SUNWkvm, SUNWtecla, SUNWpl5u, SUNWperl584core, SUNWperl584usr, SUNWopenssl-libraries, SUNWvolu, SUNWaudit, SUNWscpu, SUNWzfskr, SUNWzfsr, SUNWsmapi, SUNWzfsu, SUNWhea, SUNWcslr, SUNWdmgtu, SUNWfmd, SUNWarc, SUNWarcr, SUNWdtrc, SUNWsndmu, SUNWsra
    Patch: 120629-06 Obsoletes: Requires: Incompatibles: Packages: SUNWcsr, SUNWpoolr, SUNWpool
    Patch: 124327-04 Obsoletes: Requires: Incompatibles: Packages: SUNWcsr
    Patch: 120629-08 Obsoletes: Requires: 118833-36 Incompatibles: Packages: SUNWcsr, SUNWpoolr, SUNWpool
    Patch: 120473-08 Obsoletes: 117463-05, 118890-03, 119985-02, 121278-01, 121294-01, 122535-01, 123330-01, 123350-01, 123356-02, 123911-01, 124204-04 Requires: 118833-36, 122640-05, 123839-01 Incompatibles: Packages: SUNWcsr, SUNWcsl, SUNWkvm, SUNWtecla, SUNWpl5u, SUNWperl584core, SUNWperl584usr, SUNWopenssl-libraries, SUNWvolu, SUNWaudit, SUNWscpu, SUNWzfskr, SUNWzfsr, SUNWsmapi, SUNWzfsu, SUNWhea, SUNWcslr, SUNWdmgtu, SUNWfmd, SUNWarc, SUNWarcr, SUNWdtrc, SUNWsndmu, SUNWsra
    Patch: 120473-09 Obsoletes: 117463-05, 118890-03, 119985-02, 120469-07, 121278-01, 121294-01, 122535-01, 123330-01, 123350-01, 123356-02, 123911-01, 124204-04 Requires: 118833-36, 122640-05, 123839-01 Incompatibles: Packages: SUNWcsr, SUNWcsl, SUNWkvm, SUNWtecla, SUNWpl5u, SUNWperl584core, SUNWperl584usr, SUNWkrbu, SUNWopenssl-libraries, SUNWvolu, SUNWaudit, SUNWscpu, SUNWzfskr, SUNWzfsr, SUNWsmapi, SUNWzfsu, SUNWhea, SUNWcslr, SUNWdmgtu, SUNWfmd, SUNWarc, SUNWarcr, SUNWdtrc, SUNWsndmu, SUNWsra
    Patch: 117463-03 Obsoletes: Requires: Incompatibles: Packages: SUNWcsl
    Patch: 118564-03 Obsoletes: Requires: Incompatibles: Packages: SUNWcsl, SUNWcslr
    Patch: 120889-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsl, SUNWapct
    Patch: 120984-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsl
    Patch: 121130-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsl
    Patch: 121921-02 Obsoletes: Requires: Incompatibles: Packages: SUNWcsl, SUNWcslr
    Patch: 122408-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsl
    Patch: 123330-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsl
    Patch: 123362-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcsl
    Patch: 123915-01 Obsoletes: 123712-01 Requires: Incompatibles: Packages: SUNWcsl, SUNWkvm
    Patch: 118870-02 Obsoletes: 123348-04 Requires: 118833-25 Incompatibles: Packages: SUNWcsl, SUNWnisu
    Patch: 122754-01 Obsoletes: Requires: 118833-09 Incompatibles: Packages: SUNWcsl, SUNWpl5u, SUNWperl584core, SUNWhea
    Patch: 117463-05 Obsoletes: 123330-01 Requires: 118833-36 Incompatibles: Packages: SUNWcsl, SUNWcslr, SUNWarc
    Patch: 125465-01 Obsoletes: Requires: 118918-24 Incompatibles: Packages: SUNWcsl
    Patch: 125465-02 Obsoletes: Requires: 118918-24 Incompatibles: Packages: SUNWcsl, SUNWckr, SUNWcakr
    Patch: 118842-01 Obsoletes: Requires: Incompatibles: Packages: SUNWckr
    Patch: 120048-03 Obsoletes: Requires: Incompatibles: Packages: SUNWckr, SUNWhea, SUNWfss
    Patch: 120311-02 Obsoletes: Requires: Incompatibles: Packages: SUNWckr, SUNWusb
    Patch: 123249-02 Obsoletes: Requires: Incompatibles: Packages: SUNWckr
    Patch: 123271-01 Obsoletes: Requires: Incompatibles: Packages: SUNWckr, SUNWhea
    Patch: 121337-01 Obsoletes: Requires: 118822-23 Incompatibles: Packages: SUNWckr
    Patch: 119998-02 Obsoletes: Requires: 118833-36 Incompatibles: Packages: SUNWckr, SUNWhea, SUNWmdb, SUNWmdbr
    Patch: 123836-01 Obsoletes: Requires: 118833-36 Incompatibles: Packages: SUNWckr
    Patch: 125020-01 Obsoletes: Requires: 118833-36 Incompatibles: Packages: SUNWckr
    Patch: 125116-01 Obsoletes: Requires: 118833-36 Incompatibles: Packages: SUNWckr
    Patch: 124258-05 Obsoletes: Requires: 118833-36 Incompatibles: Packages: SUNWckr, SUNWnfsckr
    Patch: 119070-04 Obsoletes: Requires: Incompatibles: Packages: SUNWkvm, SUNWhea
    Patch: 121557-01 Obsoletes: Requires: Incompatibles: Packages: SUNWkvm, SUNWpiclu
    Patch: 121558-01 Obsoletes: Requires: Incompatibles: Packages: SUNWkvm
    Patch: 121559-01 Obsoletes: Requires: Incompatibles: Packages: SUNWkvm
    Patch: 122515-01 Obsoletes: 122390-01 Requires: Incompatibles: Packages: SUNWkvm
    Patch: 119981-09 Obsoletes: Requires: 118822-23 Incompatibles: Packages: SUNWkvm, SUNWcar, SUNWcakr, SUNWhea, SUNWpiclu
    Patch: 125042-02 Obsoletes: 119981-09, 124990-01 Requires: 118822-23, 118833-36 Incompatibles: Packages: SUNWkvm, SUNWcar, SUNWcakr, SUNWhea, SUNWpiclu
    Patch: 121556-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcar, SUNWcakr
    Patch: 122255-03 Obsoletes: Requires: Incompatibles: Packages: SUNWcar
    Patch: 122517-03 Obsoletes: 122356-01 Requires: 118833-04 Incompatibles: Packages: SUNWcar, SUNWcakr, SUNWhea
    Patch: 118557-07 Obsoletes: Requires: Incompatibles: Packages: SUNWcakr
    Patch: 118814-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcakr
    Patch: 119570-01 Obsoletes: 119217-02 Requires: Incompatibles: Packages: SUNWcakr
    Patch: 120056-02 Obsoletes: Requires: Incompatibles: Packages: SUNWcakr
    Patch: 120195-02 Obsoletes: Requires: Incompatibles: Packages: SUNWcakr
    Patch: 120815-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcakr
    Patch: 123301-01 Obsoletes: Requires: Incompatibles: Packages: SUNWcakr
    Patch: 122525-03 Obsoletes: 122358-01 Requires: 118833-04 Incompatibles: Packages: SUNWcakr, SUNWhea
    Patch: 118557-08 Obsoletes: Requires: Incompatibles: Packages: SUNWcakr
    Patch: 125424-01 Obsoletes: Requires: 118833-36 Incompatibles: Packages: SUNWcakr
    Patch: 125319-01 Obsoletes: Requires: 118833-36 Incompatibles: Packages: SUNWcakr
    Patch: 124999-01 Obsoletes: Requires: 118833-36 Incompatibles: Packages: SUNWcakr
    Patch: 121229-02 Obsoletes: Requires: 118833-36 Incompatibles: Packages: SUNWcakr, SUNWopenssl-libraries, SUNWopenssl-include
    Patch: 125319-02 Obsoletes: Requires: 118833-36 Incompatibles: Packages: SUNWcakr
    Patch: 118929-05 Obsoletes: Requires: 118822-15 Incompatibles: Packages: SUNWcsd
    Patch: 119985-02 Obsoletes: Requires: Incompatibles: Packages: SUNWpl5u, SUNWperl584core, SUNWperl584usr
    Patch: 123332-01 Obsoletes: Requires: Incompatibles: Packages: SUNWtftp
    Patch: 119213-10 Obsoletes: Requires: Incompatibles: Packages: SUNWpr, SUNWtls, SUNWprd, SUNWtlsd, SUNWtlsu, SUNWjss
    Patch: 119213-11 Obsoletes: Requires: Incompatibles: Packages: SUNWpr, SUNWtls, SUNWprd, SUNWtlsd, SUNWtlsu, SUNWjss
    Patch: 119213-12 Obsoletes: Requires: Incompatibles: Packages: SUNWpr, SUNWtls, SUNWprd, SUNWtlsd, SUNWtlsu, SUNWjss
    Patch: 124393-02 Obsoletes: 123507-05 Requires: 119042-09, 121901-01, 122539-04 Incompatibles: Packages: SUNWdtdmr, SUNWdtbas, SUNWtltkm, SUNWdtdte, SUNWdtdmn, SUNWdtdst, SUNWdtma, SUNWdtlog
    Patch: 124141-01 Obsoletes: Requires: Incompatibles: Packages: SUNWdtdmr, SUNWdtlog
    Patch: 124393-03 Obsoletes: 123507-05 Requires: 119042-09, 121901-01, 122539-04 Incompatibles: Packages: SUNWdtdmr, SUNWdtbas, SUNWtltkm, SUNWdtdte, SUNWdtdmn, SUNWdtdst, SUNWdtma, SUNWdtlog
    Patch: 124393-04 Obsoletes: 123507-05 Requires: 119042-09, 121901-01, 122539-04 Incompatibles: Packages: SUNWdtdmr, SUNWdtbas, SUNWtltkm, SUNWdtdte, SUNWdtdmn, SUNWdtdst, SUNWdtma, SUNWdtlog
    Patch: 119955-03 Obsoletes: Requires: Incompatibles: Packages: SUNWtltk
    Patch: 122064-01 Obsoletes: Requires: Incompatibles: Packages: SUNWtltk
    Patch: 122239-01 Obsoletes: Requires: Incompatibles: Packages: SUNWperl584usr
    Patch: 118815-04 Obsoletes: 122034-01 Requires: Incompatibles: Packages: SUNWesu, SUNWxcu4
    Patch: 118824-01 Obsoletes: Requires: Incompatibles: Packages: SUNWesu, SUNWxcu4
    Patch: 118959-03 Obsoletes: Requires: Incompatibles: Packages: SUNWesu
    Patch: 118815-05 Obsoletes: 122034-01 Requires: Incompatibles: Packages: SUNWesu, SUNWxcu4
    Patch: 119963-07 Obsoletes: Requires: Incompatibles: Packages: SUNWlibC
    Patch: 119963-08 Obsoletes: Requires: Incompatibles: Packages: SUNWlibC
    Patch: 120753-02 Obsoletes: Requires: Incompatibles: Packages: SUNWlibmsr, SUNWlibm
    Patch: 120753-03 Obsoletes: Requires: Incompatibles: Packages: SUNWlibmsr, SUNWlibm
    Patch: 120753-05 Obsoletes: Requires: Incompatibles: Packages: SUNWlibmsr, SUNWlibm
    Patch: 120272-12 Obsoletes: Requires: 119042-09, 121901-01, 122539-05 Incompatibles: Packages: SUNWbzip, SUNWsmagt, SUNWsmcmd, SUNWsmmgr
    Patch: 119059-20 Obsoletes: 121868-04 Requires: Incompatibles: Packages: SUNWxwfnt, SUNWxwplt, SUNWxwopt, SUNWxwacx, SUNWxwman, SUNWxwinc, SUNWxwfs, SUNWxwsrv, SUNWxwxst
    Patch: 119059-21 Obsoletes: 121868-04 Requires: Incompatibles: Packages: SUNWxwfnt, SUNWxwplt, SUNWxwopt, SUNWxwacx, SUNWxwman, SUNWxwinc, SUNWxwfs, SUNWxwsrv, SUNWxwxst
    Patch: 119059-25 Obsoletes: 121868-04 Requires: Incompatibles: Packages: SUNWxwfnt, SUNWxwplt, SUNWxwopt, SUNWxwacx, SUNWxwman, SUNWxwinc, SUNWxwfs, SUNWxwpmn, SUNWxwsrv, SUNWxwxst
    Patch: 123611-02 Obsoletes: Requires: Incompatibles: Packages: SUNWxwrtl, SUNWxwplt, SUNWxwinc
    Patch: 125725-02 Obsoletes: Requires: Incompatibles: Packages: SUNWxwrtl, SUNWxwplt, SUNWxwinc, SUNWxwpmn
    Patch: 119063-01 Obsoletes: Requires: Incompatibles: Packages: SUNWxwplt
    Patch: 119280-08 Obsoletes: Requires: Incompatibles: Packages: SUNWmfrun, SUNWdtbas
    Patch: 119280-10 Obsoletes: Requires: 123611-01, 124206-02 Incompatibles: Packages: SUNWmfrun, SUNWdtbas
    Patch: 119280-11 Obsoletes: Requires: 123611-01, 124206-02 Incompatibles: Packages: SUNWmfrun, SUNWdtbas
    Patch: 121870-01 Obsoletes: Requires: Incompatibles: Packages: SUNWxwopt
    Patch

  • USB Video Class Driver on Solaris 10 and Sun Ray

    Hello,
    Is it posible to use the USB Video Class Driver (usbvc) on Solaris 10 and Sun Ray?
    How can I do that?
    Thank you very much.

    It's not possible. The Video Class requires isochronous operation on USB and Sun Ray does not support isochronous mode.
    Even if Sun Ray did support isochronous mode, the libusb library (which is what third-party applications use to interact with USB devices attached to Sun Ray) does not support isochronous transfers. The hard part is the Sun Ray itself. When that gets resolved it probably won't be very hard to add isoc support into libusb.

  • Integration of JSP and xhtml in jsf project

    Can we use both jsp and xhtml in single jsf project. Actually I encountered a problem while configuring jsp and xhtml in web.xml of jsf project. The web.xml configuration file allows to use only one view handler (jsp or xhtml).By default it use jsp view handler. For xhtml view handler, we need to define following context param -:
    <context-param>
    <param-name>javax.faces.DEFAULT_SUFFIX</param-name>
    <param-value>.xhtml</param-value>
    </context-param>
    Please let me know any possibility to configure both jsp and xhtml in jsf project(web.xml).
    My actual requirement is that I need to forward to new page(xhtml) from an xhtml page without using faces-config. I am not able to find any facelets tags which let me forward to new xhtml page. So I am thinking to use jsp to exploit the jsp tag called forward. But the constraint is that we can use only one view handler with jsf project.

    Can we use both jsp and xhtml in single jsf project. Actually I encountered a problem while configuring jsp and xhtml in web.xml of jsf project. The web.xml configuration file allows to use only one view handler (jsp or xhtml).By default it use jsp view handler. For xhtml view handler, we need to define following context param -:
    <context-param>
    <param-name>javax.faces.DEFAULT_SUFFIX</param-name>
    <param-value>.xhtml</param-value>
    </context-param>
    Please let me know any possibility to configure both jsp and xhtml in jsf project(web.xml).
    My actual requirement is that I need to forward to new page(xhtml) from an xhtml page without using faces-config. I am not able to find any facelets tags which let me forward to new xhtml page. So I am thinking to use jsp to exploit the jsp tag called forward. But the constraint is that we can use only one view handler with jsf project.

  • Storade 2.4 and Sun MC 3.5

    Greetings,
    We have recently deployed Sun MC 3.5 at our organisation, and wish to integrate notifications from Storade 2.4.
    I have read the Storade documentation, turned on Sun MC as a provider, specified the Sun MC server, reporting frequency and SNMP notifications on our Stordade central server.
    On both the Storade and Sun MC servers, I have installed the SUNWesraa package, but can not manage to get Storade to send any notfications via Sun MC.
    We have dropped the notification for Storade to information, but email notifications continue to arrive while Sun MC notifications do not.
    Any ideas? Thanks.
    Andrew

    Ensure you have the latest Storade and SunMC patches.
    Did you put SUNWesras and SUNWesraa packages on or just the one?
    I had major problems some time ago and found an easy solution to not getting events.
    Remove /opt/SUNWstade/DATA/last_sunmc_topo and manually run rasagent -d 3 -r and towards the end you should see Provider information that mentions SunMC. When I say manually run, you must stop rasagent processes that are run from cron.
    I bet this will fix the problem.
    Cheers
    Stephen

  • Calendar Server 6.0 2004Q2 and Sun One Synchronization 1.1

    Hello,
    we have a problem with Calendar Server 6.0 2004Q2 and Sun One Synchronization running with a Palm. The connection from the sync tool to calendar server works, but we cannot select one calendar of the user. With Calendar Server 6 2003Q4 ist worked well. Is there something changed in wcap in the new version? Does anybody know how to solve that problem?
    Yours,
    Angela

    Hello,
    I confirm that I have the same problem with that version (CS 6.0 2004Q2). I cannot select any calendar and It looks like only the default calendar is synchronized. It used to work with the previous version, though.
    We have an application that uses WCAP commands. It works perfectly with both versions.
    Regards,
    Fabrice

  • Using facelets and Visual web jsf frameworks together

    I am developing a new jsf application and I wanted to make the page navigation simpler like making the content pages independently using woodstock components and including them in the main template page.
    I have downloaded Facelets support plugin for netbeans and installed it. I have created a new project using the wizard and i specified the two (facelets and visual web jsf) as frameworks for use. But I failed to leverage my application with facelets because I don't know how to use woodstock components with facelets.
    I am new to jsf and i want the woodstock visual components. Can't I use facelets then?
    Plz help.

    I managed to find a workaround. Thought i should share it with those who are faced with a similar issue.
    I found that a bug report had been placed in the past with Apache Dev. However, they had said that they would not modify their logic because the servlet container spec requires it (even though isapi_redirector is only a connector and not a container). They said that there is no way for the isapi_redirector to differentiate between /foo/WEB-INF when foo is a context and when foo is just a sub-directory of the ROOT web application. So, the general consensus was to err on the side of safety and risk blocking a few requests that are valid.
    However, this causes a serious issue for those using NetBeans JSF Visual Web Projects. Hence, I created my own flavour of isapi_redirector by modifying the code such that this check is not performed and leaving the onus of checking on Tomcat.
    For those who are interested, the simplest way to go about this would be to force the function uri_is_web_inf (in jk_isapi_plugin.c ) to always return FALSE.

  • How to display date and time on jsf page

    Hi,
    how to display date and time on jsf page
    we are using 11.2.0.0 jdeveloper on windows.
    thanks
    Edited by: user12187801 on 26-Jul-2012 01:42

    Your question is certainly lacking some information.
    If you want a constantly updating date/time - then JavaScript is your best bet, and Google would find you examples like [url http://www.webestools.com/scripts_tutorials-code-source-7-display-date-and-time-in-javascript-real-time-clock-javascript-date-time.html]this
    If you meant something else, then it's back to you to explain.

Maybe you are looking for

  • URGENT HELP NEEDED FOR JTABLE PROBLEM!!!!!!!!!!!!!!!!!

    firstly i made a jtable to adds and deletes rows and passes the the data to the table model from some textfields. then i wanted to add a tablemoselistener method in order to change the value in the columns 1,2,3,4 and set the result of them in the co

  • Unable to batch capture with Premiere Pro CC via Kona LHi

    AJA's web site claims Premiere Pro CC is compatible with the Kona LHi card, but I can't get the two to work together properly. After repeated tries, I uninstalled and reinstalled everything AJA, but still no luck. I need to batch capture DV clips fro

  • Wireless LAN does not work after restart

    Hey My brand new laptop suddenly went blank earlier today and when I restarted it I noticed my wireless internet won't work. It is also asking me to install some new driver, the Network Controller? I am confused as everything was working fine and sud

  • JTable - getValueAt Problem

    I am new to Java and am having a problem with a JTable. I want the user to enter 12 months of rain that will go into an array list. The input sreen is O.K., but I cant retrieve the data or clear the cells. Any suggestings would be appreciated. Here i

  • Quicksliver or Launchbar and Photoshop/other Adobe CS Apps

    I'd like to hear how you use Launchbar or Quicksliver together with Ps or other CS applications. I've tried out QS over the last weeks and haven't decided what to with PS yet. For example you could have a Mouse/Pen gesture for New Layer or a Trigger