Library Mismatch

I am facing a mismatch library reference problem. I am using Weblogic10 MP1 and this only happens when I use clusters. Without them the application can deploy fine.
J2EE:160149]Error while processing library references. Unresolved application library references, defined in weblogic-application.xml: [Extension-Name: content-management-app-lib, Specification-Version: 10, Implementation-Version: 10.0.1, exact-match: true].
I saw this library is generated under /BEA_HOME/user_projects/applications when the managed servers are created.
Any ideas?

We managed to deploy by deleting the jars from the /user_projects/applications folder. Also I believe the pack unpack to create managed servers on MP1 is not working well.. but that is just a guess.
All the references were changed on the code to point to the new versions of the libraries as well.
This were the exceptions:
Jan 7, 2008 9:21:19 PM EST> <Error> <Deployer> <BEA-149205> <Failed to initialize the application 'content-management-app-lib [LibSpecVersion=10.0.0,LibImplVersion=10.0.1]' due to error weblogic.application.library.LibraryDeploymentException: [J2EE:160145]Failed to deploy library Extension-Name: content-management-app-lib, Specification-Version: 10, Implementation-Version: 10.0.1.1, because of conflicting library Manifest values, and library information registered with the server: [Implementation-Version: 10.0.1.1 vs. 10.0.1]. Check the library"s MANIFEST.MF file, and correct version info there to match server settings. Or undeploy the misconfigured library..
weblogic.application.library.LibraryDeploymentException: [J2EE:160145]Failed to deploy library Extension-Name: content-management-app-lib, Specification-Version: 10, Implementation-Version: 10.0.1.1, because of conflicting library Manifest values, and library information registered with the server: [Implementation-Version: 10.0.1.1 vs. 10.0.1]. Check the library"s MANIFEST.MF file, and correct version info there to match server settings. Or undeploy the misconfigured library.
at weblogic.application.internal.library.LibraryDeploymentFactory.getLibData(LibraryDeploymentFactory.java:110)
at weblogic.application.internal.library.LibraryDeploymentFactory.createDeployment(LibraryDeploymentFactory.java:50)
at weblogic.application.internal.DeploymentManagerImpl.createDeployment(DeploymentManagerImpl.java:90)
at weblogic.deploy.internal.targetserver.BasicDeployment.createDeployment(BasicDeployment.java:147)
at weblogic.deploy.internal.targetserver.AppDeployment.prepare(AppDeployment.java:110)
Truncated. see log file for complete stacktrace
>
<Jan 7, 2008 9:21:19 PM EST> <Error> <Deployer> <BEA-149205> <Failed to initialize the application 'content-management-web-lib [LibSpecVersion=10.0.0,LibImplVersion=10.0.1.1]' due to error weblogic.application.library.LibraryDeploymentException: [J2EE:160145]Failed to deploy library Extension-Name: content-management-web-lib, Specification-Version: 10, Implementation-Version: 10.0.1, because of conflicting library Manifest values, and library information registered with the server: [Implementation-Version: 10.0.1 vs. 10.0.1.1]. Check the library"s MANIFEST.MF file, and correct version info there to match server settings. Or undeploy the misconfigured library..
weblogic.application.library.LibraryDeploymentException: [J2EE:160145]Failed to deploy library Extension-Name: content-management-web-lib, Specification-Version: 10, Implementation-Version: 10.0.1, because of conflicting library Manifest values, and library information registered with the server: [Implementation-Version: 10.0.1 vs. 10.0.1.1]. Check the library"s MANIFEST.MF file, and correct version info there to match server settings. Or undeploy the misconfigured library.
at weblogic.application.internal.library.LibraryDeploymentFactory.getLibData(LibraryDeploymentFactory.java:110)
at weblogic.application.internal.library.LibraryDeploymentFactory.createDeployment(LibraryDeploymentFactory.java:50)
at weblogic.application.internal.DeploymentManagerImpl.createDeployment(DeploymentManagerImpl.java:90)
at weblogic.deploy.internal.targetserver.BasicDeployment.createDeployment(BasicDeployment.java:147)
at weblogic.deploy.internal.targetserver.AppDeployment.prepare(AppDeployment.java:110)
Truncated. see log file for complete stacktrace
>

Similar Messages

  • SharePoint Provider Hosted App that can update existing SharePoint Task List

    Note: I am unable to take advantage of the Microsoft.SharePoint library directly. Adding a reference results in a 32bit/64bit library mismatch error.
    I have to find a solution that uses only the Microsoft.SharePoint.Client extension. 
    I am looking for example code where provider-hosted SharePoint App loads a SharePoint Task List View that allows users to interact with the tasks.
    So far I have only been able to programmatically create and then load the SharePoint tasks list, create and populate a DataTable object and set the datasource of a GridView object to that DataTable.
    I am unable to trigger my method linked to my checkbox within the gridview.
    Ideally I would like to just customize a Task View that already has this functionality.
    Here is my default.aspx.cs code-behind file:
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using System.Data;
    using SP = Microsoft.SharePoint.Client;
    namespace SPAppBasicWeb
    public partial class Default : System.Web.UI.Page
    protected void Page_PreInit(object sender, EventArgs e)
    Uri redirectUrl;
    switch (SharePointContextProvider.CheckRedirectionStatus(Context, out redirectUrl))
    case RedirectionStatus.Ok:
    return;
    case RedirectionStatus.ShouldRedirect:
    Response.Redirect(redirectUrl.AbsoluteUri, endResponse: true);
    break;
    case RedirectionStatus.CanNotRedirect:
    Response.Write("An error occurred while processing your request.");
    Response.End();
    break;
    protected void Page_Load(object sender, EventArgs e)
    // The following code gets the client context and Title property by using TokenHelper.
    // To access other properties, the app may need to request permissions on the host web.
    var spContext = SharePointContextProvider.Current.GetSharePointContext(Context);
    using (var clientContext = spContext.CreateUserClientContextForSPHost())
    //clientContext.Load(clientContext.Web, web => web.Title);
    //clientContext.ExecuteQuery();
    //Response.Write(clientContext.Web.Title);
    SP.ClientContext cc = new SP.ClientContext("http://server/sites/devapps");
    SP.Web web = cc.Web;
    SP.List list = web.Lists.GetByTitle("General Tasks");
    SP.CamlQuery caml = new SP.CamlQuery();
    Microsoft.SharePoint.Client.ListItemCollection items = list.GetItems(caml);
    cc.Load<Microsoft.SharePoint.Client.List>(list);
    cc.Load<Microsoft.SharePoint.Client.ListItemCollection>(items);
    //try
    //const int ColWidth = 40;
    cc.ExecuteQuery();
    DataTable dt = new DataTable();
    dt.Columns.Add("Task Name", typeof(string));
    dt.Columns.Add("ID", typeof(int));
    foreach (Microsoft.SharePoint.Client.ListItem liTask in items)
    DataRow dr = dt.NewRow();
    dr["Task Name"] = liTask["Title"];
    dr["ID"] = liTask["ID"];
    //dr["chkTask"] = liTask["Checkmark"];
    dt.Rows.Add(dr);
    GridView1.DataSource = dt;
    GridView1.DataBind();
    protected void chkTask_CheckedChanged(object sender, EventArgs e)
    //add code here to update Task Item by ID
    Response.Write("checkbox event triggered");
    Here is my simple default.aspx:
    <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="SPAppBasicWeb.Default" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
    <title></title>
    </head>
    <body>
    <form id="form1" runat="server">
    <div>
    <asp:GridView ID="GridView1" runat="server">
    <Columns>
    <asp:TemplateField>
    <ItemTemplate>
    <asp:CheckBox ID="chkTask" runat="server" OnCheckedChanged="chkTask_CheckedChanged" AutoPostBack="true" />
    </ItemTemplate>
    </asp:TemplateField>
    </Columns>
    </asp:GridView>
    </div>
    </form>
    </body>
    </html>
    http://www.net4geeks.com Who said I was a geek?

    Hi,
    Please try to modify your code as below:
    using (var clientContext = spContext.CreateUserClientContextForSPHost())
    SP.Web web = clientContext.Web;
    SP.List list = web.Lists.GetByTitle("General Tasks");
    SP.CamlQuery caml = new SP.CamlQuery();
    Microsoft.SharePoint.Client.ListItemCollection items = list.GetItems(caml);
    clientContext.Load(items);
    clientContext.ExecuteQuery();
    If the code still not works, I suggest you debug the code or following the blog below to create a Provider-Hosted App for SharePoint and read list items from SharePoint list.
    http://blogs.msdn.com/b/steve_fox/archive/2013/02/22/building-your-first-provider-hosted-app-for-sharepoint-part-2.aspx
    Best Regards
    Dennis Guo
    TechNet Community Support

  • Configuration problem in Weblogic 8.1.1 and 8.1.3

    We have a problem when we hitting instrumented axis services in weblogic 8.1.1 and 8.1.3.
    1.First we create a domain its use for only axis services.
    2.We set the class path according to my project.
    3.I start the server and deploy my axis services.its deploying nicely.
    4.After that used my project and configure the services to getting log file purpose.
    5.After instrument/configuration the service,I restart the server that time the service is redeploy and create the temporary file in .wlnotdelete directory our jar file put inside in this folder extract/myserver_calc1_calc1.This is my deploying service place.
    6.But its not happening in this version of weblogic in that we redeploy the same services its works fine and getting log files.
    7.when i redploy the same service that time only its working fine.
    8.But i don't want to redploy the service. I want only restart time its happen that's only correct.
    9.This problem is only happening in weblogic 8.1.1 and 8.1.3 its not happening in weblogic 7.5 and 8.1.4 is working fine and getting log files.
    10.can any one give me a solution to rectify this problem in Weblogic 8.1.1 and 8.1.3.

    I don't know about that, but I am using MyFaces and tomahawk with WLS8.1 sp5 jdk1.4.2_05 and it works fine.
    I do remember getting such an error when I moved from Sun RI to MyFaces and all I can recall is that it was a commons library mismatch problem or some classpath problem...

  • Problem in weblogic 8.1, servicepack sp5_142_08,while deploying JSF applica

    Hi ,
    i depolyed one JSF tiles application in weblogic 8.1, servicepack sp5_142_08 under windows OS enviroment .
    the problem is , when i request page it allways show display error in explore screen
    java.lang.NoClassDefFoundError: org/apache/commons/digester/Digester
         at org.apache.struts.tiles.xmlDefinition.XmlParser.()V(XmlParser.java:109)
         at org.apache.struts.tiles.xmlDefinition.I18nFactorySet.parseXmlFile(Ljavax/servlet/ServletContext;Ljava/lang/String;Lorg/apache/struts/tiles/xmlDefinition/XmlDefinitionsSet;)Lorg/apache/struts/tiles/xmlDefinition/XmlDefinitionsSet;(I18nFactorySet.java:530)
         at org.apache.struts.tiles.xmlDefinition.I18nFactorySet.parseXmlFiles(Ljavax/servlet/ServletContext;Ljava/lang/String;Lorg/apache/struts/tiles/xmlDefinition/XmlDefinitionsSet;)Lorg/apache/struts/tiles/xmlDefinition/XmlDefinitionsSet;(I18nFactorySet.java:479)
         at org.apache.struts.tiles.xmlDefinition.I18nFactorySet.createDefaultFactory(Ljavax/servlet/ServletContext;)Lorg/apache/struts/tiles/xmlDefinition/DefinitionsFactory;(I18nFactorySet.java:295)
         at org.apache.struts.tiles.xmlDefinition.I18nFactorySet.initFactory(Ljavax/servlet/ServletContext;Ljava/lang/String;)V(I18nFactorySet.java:269)
         at org.apache.struts.tiles.xmlDefinition.I18nFactorySet.initFactory(Ljavax/servlet/ServletContext;Ljava/util/Map;)V(I18nFactorySet.java:217)
         at org.apache.struts.tiles.definition.ComponentDefinitionsFactoryWrapper.init(Lorg/apache/struts/tiles/DefinitionsFactoryConfig;Ljavax/servlet/ServletContext;)V(ComponentDefinitionsFactoryWrapper.java:139)
         at org.apache.struts.tiles.TilesUtilImpl.createDefinitionsFactory(Ljavax/servlet/ServletContext;Lorg/apache/struts/tiles/DefinitionsFactoryConfig;)Lorg/apache/struts/tiles/DefinitionsFactory;(TilesUtilImpl.java:168)
         at org.apache.struts.tiles.TilesUtil.createDefinitionsFactory(Ljavax/servlet/ServletContext;Lorg/apache/struts/tiles/DefinitionsFactoryConfig;)Lorg/apache/struts/tiles/DefinitionsFactory;(TilesUtil.java:205)
         at org.apache.myfaces.tomahawk.application.jsp.JspTilesViewHandlerImpl.getDefinitionsFactory()Lorg/apache/struts/tiles/DefinitionsFactory;(JspTilesViewHandlerImpl.java:100)
         at org.apache.myfaces.tomahawk.application.jsp.JspTilesViewHandlerImpl.renderView(Ljavax/faces/context/FacesContext;Ljavax/faces/component/UIViewRoot;)V(JspTilesViewHandlerImpl.java:168)
         at org.apache.myfaces.lifecycle.RenderResponseExecutor.execute(Ljavax/faces/context/FacesContext;)Z(RenderResponseExecutor.java:41)
         at org.apache.myfaces.lifecycle.LifecycleImpl.render(Ljavax/faces/context/FacesContext;)V(LifecycleImpl.java:132)
         at javax.faces.webapp.FacesServlet.service(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V(FacesServlet.java:140)
         at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run()Ljava/lang/Object;(ServletStubImpl.java:1072)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;Lweblogic/servlet/internal/FilterChainImpl;)V(ServletStubImpl.java:465)
         at weblogic.servlet.internal.TailFilter.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;Ljavax/servlet/FilterChain;)V(TailFilter.java:28)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V(FilterChainImpl.java:27)
         at org.apache.myfaces.webapp.filter.ExtensionsFilter.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;Ljavax/servlet/FilterChain;)V(ExtensionsFilter.java:147)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V(FilterChainImpl.java:27)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run()Ljava/lang/Object;(WebAppServletContext.java:6987)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(Lweblogic/security/subject/AbstractSubject;Ljava/security/PrivilegedAction;)Ljava/lang/Object;(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(Lweblogic/security/acl/internal/AuthenticatedSubject;Lweblogic/security/acl/internal/AuthenticatedSubject;Ljava/security/PrivilegedAction;)Ljava/lang/Object;(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(Lweblogic/servlet/internal/ServletRequestImpl;Lweblogic/servlet/internal/ServletResponseImpl;)V(WebAppServletContext.java:3892)
         at weblogic.servlet.internal.ServletRequestImpl.execute(Lweblogic/kernel/ExecuteThread;)V(ServletRequestImpl.java:2766)
         at weblogic.kernel.ExecuteThread.execute(Lweblogic/kernel/ExecuteRequest;)V(ExecuteThread.java:224)
         at weblogic.kernel.ExecuteThread.run()V(ExecuteThread.java:183)
         at java.lang.Thread.startThreadFromVM(Ljava/lang/Thread;)V(Unknown Source)
    the same application working fine weblogic8.1 servicepack 4
    my WEB-INF\lib contain following jar file
    commons-beanutils-1.7.0.jar
    commons-codec-1.3.jar
    commons-collections-3.1.jar
    commons-digester-1.6.jar
    commons-el-1.0.jar
    commons-fileupload-1.0.jar
    commons-lang-2.1.jar
    commons-logging-1.0.4.jar
    commons-validator-1.3.1.jar
    demo-components.jar
    jasper-runtime.jar
    jsp-api.jar
    jstl-1.1.0.jar
    log4j-1.2.8.jar
    myfaces-api-1.1.5.jar
    myfaces-impl-1.1.5.jar
    oro-2.0.8.jar
    servlet-api.jar
    standard.jar
    struts-1.1.jar
    tomahawk-1.1.6.jar
    tomahawk-sandbox-1.1.6.jar
    Can any body help me , how to resolve this problem
    Thanks in Advances....

    I don't know about that, but I am using MyFaces and tomahawk with WLS8.1 sp5 jdk1.4.2_05 and it works fine.
    I do remember getting such an error when I moved from Sun RI to MyFaces and all I can recall is that it was a commons library mismatch problem or some classpath problem...

  • Struts Html tag problem in Weblogic 8.1

    Hi
    I am using weblogic8.1 Application server
    I have written a simple web application in struts that accepts
    username and password in "login.jsp" and corresponding "bean" ActionForm
    for the same.
    Below are my application source files......
    login.jsp
    <%@taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%>
    <%@taglib uri="/WEB-INF/struts-html.tld" prefix="html"%>
    <html:html>
    <head>Struts Test</head>
    <body bgcolor="#E6F1FC">
    <html:form action="login.do">
    <table>
    <tr>
    <td><html:text property="uname" value=" "/></td>
    <td><html:submit>SUBMIT</html:submit></td>
    </tr>
    </table>
    </html:form>
    </body>
    </html:html>
    web.xml
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web
    Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
    <servlet>
    <servlet-name>action</servlet-name>
    <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
    <init-param>
    <param-name>config</param-name>
    <param-value>/WEB-INF/struts-config.xml</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
    <servlet-name>action</servlet-name>
    <url-pattern>*.do</url-pattern>
    </servlet-mapping>
    <taglib>
    <taglib-uri>/WEB-INF/struts-html.tld</taglib-uri>
    <taglib-location>/WEB-INF/struts-html.tld</taglib-location>
    </taglib>
    <taglib>
    <taglib-uri>/WEB-INF/struts-bean.tld</taglib-uri>
    <taglib-location>/WEB-INF/struts-bean.tld</taglib-location>
    </taglib>
    </web-app>
    struts-config.xml
    <?xml version="1.0" encoding="ISO-8859-1" ?>
    <!DOCTYPE struts-config PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 1.1//EN"
    "http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd">
    <struts-config>
    <form-beans>
    <form-bean name="LoginFrom" type="com.nit.StrutsEx.LoginFrom"/>
    </form-beans>
    <action-mappings>
    <action path="/login" type="com.nit.StrutsEx.LoginAction" name="LoginFrom" validate="false"
    input="/login.jsp">
    <forward name="success" path="/success.jsp"/>
    </action>
    </action-mappings>
    <message-resources parameter="ApplicationResource" null="false"/>
    </struts-config>
    ActionForm
    package com.nit.StrutsEx;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import org.apache.struts.action.Action;
    import org.apache.struts.action.ActionForm;
    import org.apache.struts.action.ActionForward;
    import org.apache.struts.action.ActionMapping;
    import org.apache.struts.action.*;
    import javax.servlet.*;
    import java.io.*;
    public class LoginForm extends ActionForm
    private String uname=null;
    public void setUname(String uname){
    this.uname=uname;
    public String getUname(){
    return this.uname;
    public void reset(ActionMapping am, HttpServletRequest req) {
    this.uname=null;
    public ActionErrors validate(ActionMapping am,HttpServletRequest req)
    System.out.println("I am in Validate");
    return null;
    ActionServlet
    package com.nit.StrutsEx;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import org.apache.struts.action.Action;
    import org.apache.struts.action.ActionForm;
    import org.apache.struts.action.ActionForward;
    import org.apache.struts.action.ActionMapping;
    import javax.servlet.*;
    import java.io.*;
    public class LoginAction extends Action
    public ActionForward execute(
    ActionMapping am,
    ActionForm af,
    HttpServletRequest req,
    HttpServletResponse res) throws ServletException , IOException
    return am.findForward("success");
    My application runs well under tomcat but when i deploy it on Weblogic 8.1 it gives following error
    Compilation of 'E:\bea\weblogic81\server\bin\.\myserver\.wlnotdelete\extract\myserver_stest_stest\jsp_servlet\__login.java' failed:
    E:\bea\weblogic81\server\bin\.\myserver\.wlnotdelete\extract\myserver_stest_stest\jsp_servlet\__login.java:151: cannot resolve symbol
    probably occurred due to an error in /login.jsp line 4:
    <html:html>
    E:\bea\weblogic81\server\bin\.\myserver\.wlnotdelete\extract\myserver_stest_stest\jsp_servlet\__login.java:168: cannot resolve symbol
    probably occurred due to an error in /login.jsp line 8:
    <html:form action="login.do">
    E:\bea\weblogic81\server\bin\.\myserver\.wlnotdelete\extract\myserver_stest_stest\jsp_servlet\__login.java:203: cannot resolve symbol
    probably occurred due to an error in /login.jsp line 13:
    <td><html:submit>SUBMIT</html:submit></td>
    E:\bea\weblogic81\server\bin\.\myserver\.wlnotdelete\extract\myserver_stest_stest\jsp_servlet\__login.java:216: cannot resolve symbol
    probably occurred due to an error in /login.jsp line 13:
    <td><html:submit>SUBMIT</html:submit></td>
    E:\bea\weblogic81\server\bin\.\myserver\.wlnotdelete\extract\myserver_stest_stest\jsp_servlet\__login.java:226: cannot resolve symbol
    probably occurred due to an error in /login.jsp line 16:
    </html:form>
    E:\bea\weblogic81\server\bin\.\myserver\.wlnotdelete\extract\myserver_stest_stest\jsp_servlet\__login.java:235: cannot resolve symbol
    probably occurred due to an error in /login.jsp line 18:
    </html:html>
    Full compiler error(s):
    E:\bea\weblogic81\server\bin\.\myserver\.wlnotdelete\extract\myserver_stest_stest\jsp_servlet\__login.java:151: cannot resolve symbol
    symbol : variable EVAL_BODY_BUFFERED
    location: interface javax.servlet.jsp.tagext.BodyTag
    if (_int0 == BodyTag.EVAL_BODY_BUFFERED) { //[ /login.jsp; Line: 4]
    ^
    E:\bea\weblogic81\server\bin\.\myserver\.wlnotdelete\extract\myserver_stest_stest\jsp_servlet\__login.java:168: cannot resolve symbol
    symbol : variable EVAL_BODY_BUFFERED
    location: interface javax.servlet.jsp.tagext.BodyTag
    if (_int1 == BodyTag.EVAL_BODY_BUFFERED) { //[ /login.jsp; Line: 8]
    ^
    E:\bea\weblogic81\server\bin\.\myserver\.wlnotdelete\extract\myserver_stest_stest\jsp_servlet\__login.java:203: cannot resolve symbol
    symbol : variable EVAL_BODY_BUFFERED
    location: interface javax.servlet.jsp.tagext.BodyTag
    if (_int2 == BodyTag.EVAL_BODY_BUFFERED) { //[ /login.jsp; Line: 13]
    ^
    E:\bea\weblogic81\server\bin\.\myserver\.wlnotdelete\extract\myserver_stest_stest\jsp_servlet\__login.java:216: cannot resolve symbol
    symbol : variable EVAL_BODY_BUFFERED
    location: interface javax.servlet.jsp.tagext.BodyTag
    if (_int2 == BodyTag.EVAL_BODY_BUFFERED) out = pageContext.popBody(); //[ /login.jsp; Line: 13]
    ^
    E:\bea\weblogic81\server\bin\.\myserver\.wlnotdelete\extract\myserver_stest_stest\jsp_servlet\__login.java:226: cannot resolve symbol
    symbol : method doAfterBody ()
    location: class org.apache.struts.taglib.html.FormTag
    } while (_html_form0.doAfterBody() == IterationTag.EVAL_BODY_AGAIN); //[ /login.jsp; Line: 16]
    ^
    E:\bea\weblogic81\server\bin\.\myserver\.wlnotdelete\extract\myserver_stest_stest\jsp_servlet\__login.java:235: cannot resolve symbol
    symbol : method doAfterBody ()
    location: class org.apache.struts.taglib.html.HtmlTag
    } while (_html_html0.doAfterBody() == IterationTag.EVAL_BODY_AGAIN); //[ /login.jsp; Line: 18]
    ^
    6 errors
    Wed Jul 25 17:06:07 GMT+05:30 2007
    Please reply the solution

    I don't know about that, but I am using MyFaces and tomahawk with WLS8.1 sp5 jdk1.4.2_05 and it works fine.
    I do remember getting such an error when I moved from Sun RI to MyFaces and all I can recall is that it was a commons library mismatch problem or some classpath problem...

  • af:table doesn't populate; throws NoSuchElementException

    Hi JDev Team,
    I'm using JDeveloper 11.1.1.2. I have a page with a <af:table> component that no longer works after migrating
    from 11.1.1.0
    The table is populated by a "executeWithParms" method of a data control. The executeWithParms is called by a
    backing bean. I've pasted the jspx page code, backing bean code and stacktrace below.
    <af:table value="#{bindings.PartSearch1.collectionModel}"
    var="row" rows="#{bindings.PartSearch1.rangeSize}"
    fetchSize="25"
    selectedRowKeys="#{bindings.PartSearch1.collectionModel.selectedRow}"
    rowSelection="single"
    binding="#{backingBeanScope.PartDataBackingBean.table1}"
    id="table1"
    contentDelivery="lazy" displayRow="first"
    width="690"
    emptyText="#{bindings.PartSearch1.viewable ? 'No rows yet.' : 'Access Denied.'}"
    inlineStyle="background-color:transparent; border-style:none; color:Black;"
    autoHeightRows="5"
    selectionListener="#{backingBeanScope.PartDataBackingBean.tableRowSelected}"
    columnStretching="last">
    <af:column sortProperty="Partnumber" sortable="false"
    headerText="Part / ID Number" align="center"
    width="150" inlineStyle="color:Black;">
    <af:inputText value="#{row.bindings.Partnumber.inputValue}"
    label="#{bindings.PartSearch1.hints.Partnumber.label}"
    required="#{bindings.PartSearch1.hints.Partnumber.mandatory}"
    columns="#{bindings.PartSearch1.hints.Partnumber.displayWidth}"
    maximumLength="#{bindings.PartSearch1.hints.Partnumber.precision}"
    shortDesc="#{bindings.PartSearch1.hints.Partnumber.tooltip}">
    <f:validator binding="#{row.bindings.Partnumber.validator}"/>
    </af:inputText>
    </af:column>
    <af:column sortProperty="Parttype" sortable="false"
    headerText="Type" align="center" width="50">
    <af:inputText value="#{row.bindings.Parttype.inputValue}"
    label="#{bindings.PartSearch1.hints.Parttype.label}"
    required="#{bindings.PartSearch1.hints.Parttype.mandatory}"
    columns="#{bindings.PartSearch1.hints.Parttype.displayWidth}"
    maximumLength="#{bindings.PartSearch1.hints.Parttype.precision}"
    shortDesc="#{bindings.PartSearch1.hints.Parttype.tooltip}">
    <f:validator binding="#{row.bindings.Parttype.validator}"/>
    </af:inputText>
    </af:column>
    <af:column sortProperty="Cage" sortable="false"
    headerText="CAGE" align="center" width="40">
    <af:inputText value="#{row.bindings.Cage.inputValue}"
    label="#{bindings.PartSearch1.hints.Cage.label}"
    required="#{bindings.PartSearch1.hints.Cage.mandatory}"
    columns="#{bindings.PartSearch1.hints.Cage.displayWidth}"
    maximumLength="#{bindings.PartSearch1.hints.Cage.precision}"
    shortDesc="#{bindings.PartSearch1.hints.Cage.tooltip}">
    <f:validator binding="#{row.bindings.Cage.validator}"/>
    </af:inputText>
    </af:column>
    <af:column sortProperty="Keyword" sortable="false"
    headerText="Keyword" align="center"
    width="110">
    <af:inputText value="#{row.bindings.Keyword.inputValue}"
    label="#{bindings.PartSearch1.hints.Keyword.label}"
    required="#{bindings.PartSearch1.hints.Keyword.mandatory}"
    columns="#{bindings.PartSearch1.hints.Keyword.displayWidth}"
    maximumLength="#{bindings.PartSearch1.hints.Keyword.precision}"
    shortDesc="#{bindings.PartSearch1.hints.Keyword.tooltip}">
    <f:validator binding="#{row.bindings.Keyword.validator}"/>
    </af:inputText>
    </af:column>
    <af:column sortProperty="Extendednomenclature"
    sortable="false" headerText="Ext. Nomenclature"
    align="center" width="250">
    <af:inputText value="#{row.bindings.Extendednomenclature.inputValue}"
    label="#{bindings.PartSearch1.hints.Extendednomenclature.label}"
    required="#{bindings.PartSearch1.hints.Extendednomenclature.mandatory}"
    maximumLength="#{bindings.PartSearch1.hints.Extendednomenclature.precision}"
    shortDesc="#{bindings.PartSearch1.hints.Extendednomenclature.tooltip}"
    columns="#{bindings.PartSearch1.hints.Extendednomenclature.displayWidth}">
    <f:validator binding="#{row.bindings.Extendednomenclature.validator}"/>
    </af:inputText>
    </af:column>
    <af:column sortProperty="Activeind" sortable="false"
    headerText="Active" align="center" width="30">
    <af:inputText value="#{row.bindings.Activeind.inputValue}"
    label="#{bindings.PartSearch1.hints.Activeind.label}"
    required="#{bindings.PartSearch1.hints.Activeind.mandatory}"
    columns="#{bindings.PartSearch1.hints.Activeind.displayWidth}"
    maximumLength="#{bindings.PartSearch1.hints.Activeind.precision}"
    shortDesc="#{bindings.PartSearch1.hints.Activeind.tooltip}">
    <f:validator binding="#{row.bindings.Activeind.validator}"/>
    </af:inputText>
    </af:column>
    </af:table>
    public void search(ActionEvent actionEvent) {
    System.out.println("search button clicked");
    DCBindingContainer bindings = (DCBindingContainer)JSFUtils.resolveExpression("#{bindings}");
    OperationBinding operationBinding = bindings.getOperationBinding("ExecuteWithParams");
    Map bindParms = operationBinding.getParamsMap();
    if (searchPart != null && searchPart.length() > 0 ) {
    bindParms.put("bindPartNumber", searchPart);
    else {
    bindParms.put("bindPartNumber", "%");
    if (searchType != null && searchType.length() > 0) {
    bindParms.put("bindType", searchType);
    else {
    bindParms.put("bindType", "%");
    Object result = operationBinding.execute();
    ####<Mar 18, 2010 3:24:53 PM PDT> <Error> <oracle.adf.view.rich.component.fragment.UIXInclude> <A4112962> <DefaultServer>
    <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1268951093615>
    <ADF_FACES-10015> <Illegal call to setup the context of an include that is already in context>
    ####<Mar 18, 2010 3:24:53 PM PDT> <Error> <oracle.adf.view.rich.component.fragment.UIXInclude> <A4112962> <DefaultServer>
    <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1268951093678>
    <ADF_FACES-10016> <Illegal call to tear down the context of an include that is not in context>
    ####<Mar 18, 2010 3:24:53 PM PDT> <Error> <oracle.adf.view.rich.component.fragment.UIXPageTemplate> <A4112962> <DefaultServer>
    <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1268951093678>
    <ADF_FACES-10018> <Tear down of page template context failed due to an unhandled exception.
    java.util.NoSuchElementException
         at oracle.adfinternal.view.faces.context.ApplicationContextManagerImpl.popContextChange(ApplicationContextManagerImpl.java:59)
         at oracle.adf.view.rich.component.fragment.UIXPageTemplate.tearDownVisitingContext(UIXPageTemplate.java:242)
         at oracle.adf.view.rich.component.fragment.UIXInclude.suspendVisitingContext(UIXInclude.java:185)
         at oracle.adfinternal.view.faces.taglib.region.IncludeTag$FacetWrapper.setupVisitingContext(IncludeTag.java:665)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.invokeOnComponent(ContextSwitchingComponent.java:177)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1319)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1413)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1319)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1413)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1319)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1413)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1319)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1413)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1319)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1413)
         at oracle.adf.view.rich.component.rich.RichDocument.invokeOnComponent(RichDocument.java:161)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1319)
         at oracle.adf.view.rich.component.fragment.UIXInclude.invokeOnComponent(UIXInclude.java:146)
         at javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:731)
         at javax.faces.component.UIComponentBase.invokeOnComponent(UIComponentBase.java:675)
         at oracle.adfinternal.view.faces.streaming.StreamingDataManager.submit(StreamingDataManager.java:239)
         at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer._encodeStreamingResponse(DocumentRenderer.java:3160)
         at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer.encodeAll(DocumentRenderer.java:1240)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1369)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:335)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:751)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:415)
         at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:2572)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:432)
         at oracle.adfinternal.view.faces.renderkit.rich.PageTemplateRenderer.encodeAll(PageTemplateRenderer.java:69)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1369)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:335)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:751)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.encodeEnd(ContextSwitchingComponent.java:153)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.__encodeRecursive(UIXComponentBase.java:1501)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeAll(UIXComponentBase.java:771)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:942)
         at com.sun.facelets.FaceletViewHandler.renderView(FaceletViewHandler.java:608)
         at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:189)
         at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:193)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:710)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:273)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:205)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:266)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:191)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:97)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:247)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:157)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:94)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:138)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:70)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:326)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3592)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2202)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2108)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1432)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    Thanks for looking

    Hi,
    in JDeveloper, did you try BUILD --> CLEAN ALL, and then make the project. It seems that you have a library mismatch
    Frank

  • Differences between -Xss[size] in linux and windows

    Simple thread test program which runs 3000 threads:
    startup options on windows:
    -server -Xms16m -Xmx16m -Xss7k
    startup options on linux:
    -server -Xms16m -Xmx16m -Xss97k (Why 90k bigger stack size??)
    Linux is using newest kernel and NPTL threads. With 'regular' threads the linux version overflows stack unless -Xss2m is given...
    I Think Sun needs to come up with clear specification of threading models, libraries etc... used in both environments. If you search these forums - one of the most common and baffling error is the sig11 on linux. I think the main cause behind it are the library 'mismatches'.
    Answers to these questions are really needed:
    What is the recommended threading library on linux with each VM version?
    Against which library is the VM tested?
    If anyone has experiences with NPTL threads on 1.4.2 VM please contribute. How many threads did you manage to create, how much memory that took? What distribution, thread library, start up parameters, etc... did you use.
    I'm going to do a bit more experimenting on a real life application during the followin weeks. With simple test program we were able to create over 16000 threads, but if you do the math with the minimum stack size you can guess that the virtual memory usage was sky high!
    P.S.
    I'll post more exact platform specs when I'm back to work tomorrow..

    http://java.sun.com/docs/hotspot/VMOptions.html - see under -Xoss option.
    BTW, I ran my test case again, and now i finally succeeded to prove that 'rule' (see that 'another' thread): Xss*nThreads + Xmx < Xmx_MAX. The conclusions are (at least under 32-bit Linux):
    1) Xss does limit native stack size
    2) the 'rule' seems to be independent of whether u r actually using the allocated stack space or not
    Below a test case is attached. Under 32-bit Linux it crashes before it can create 30 threads with
    Exception in thread "main" java.lang.OutOfMemoryError: unable to create new native thread
            at java.lang.Thread.start(Native Method)
            at testlab.StackTest.main(StackTest.java:46)exception, if start up parameters are
    java -cp ../../classes -Djava.library.path=./ -Xms1870m -Xmx1870m -Xss1m testlab.StackTest 100 200 1000000The crash point can be moved/eliminated by modifying either Xss param (the smaller the size the later the crush would happen) or Xmn/Xmx (the smaller...., the later....). Exact Xmx_MAX number might depend on what threads library you are running. On my hardware it is as follows:
    java -Xms1920M -Xmx1920M
    Error occurred during initialization of VM
    Could not reserve enough space for object heap
    java -Xms1910M -Xmx1910M
    Error occurred during initialization of VM
    Could not reserve enough space for card marking array
    java -Xms1900M -Xmx1900M
    <RUNS OK>See how error messages differ. So, in the case above Xmx_MAX is around 1.9G.
    Native code was compiled with gcc2.96, under 32-bit RH Linux, no optimizations.
    Java code compiled with 1.4.2_02 compiler, run with JVM is 1.4.2_02
    Java file:
    package testlab;
    * Author: volenin
    * Date: Dec 4, 2003
    * Time: 10:40:20 AM
    * under GPL license
    public class StackTest extends Thread {
      static byte[] arr;
      static {
        System.loadLibrary("stacktest");
      boolean isStarted = false;
      int allocSize;
      StackTest(int allocSize) {
        this.allocSize = allocSize;
        setDaemon(true);
    //    arr2 = new byte[allocSize];
      public void run() {
        isStarted = true;
        allocate(allocSize);
        synchronized (this) {
          try { wait(); }
          catch (InterruptedException Ie) {}
      public native void allocate(int size);
      public static void main(String[] args) throws Exception {
        int nThreads = Integer.parseInt(args[0]);
        int allocSize = Integer.parseInt(args[1]);
        int initSize = Integer.parseInt(args[2]);
        arr = new byte[initSize];
        for (int i = 0; i < nThreads; i++) {
          int n = i+1;
          System.out.println("Creating thread #"+n);
          StackTest test = new StackTest(allocSize);
          System.out.println("Starting thread #"+n);
          test.start();
          System.out.println("Thread started #"+n);
          synchronized (StackTest.class) {
            if (!test.isStarted)   StackTest.class.wait(100);
          System.out.println("Thread running #"+n);
    Native .h file:
    #include <jni.h>
    #ifndef _Included_testlab_StackTest
    #define _Included_testlab_StackTest
    #ifdef __cplusplus
    extern "C" {
    #endif
    JNIEXPORT void JNICALL Java_testlab_StackTest_allocate(JNIEnv *, jobject, jint);
    #ifdef __cplusplus
    #endif
    #endif
    Native .cpp file:
    #include "testlab_StackTest.h"
    JNIEXPORT void JNICALL Java_testlab_StackTest_allocate(JNIEnv *env, jobject jobj, jint allocSize) {
      int arr[allocSize];
      int arrSize = sizeof(arr);
      printf("array allocated: %d, %d\n", allocSize, arrSize);
      getchar();

  • ClassCastException when using Xalan-j in a servlet

    Hi,
    New to XSLT and Xalan...
    When I run a standalone version of a basic XSL transformation using Xalan-j 2.6.0, it all works as desired. Take a look at the following code snippet :
    ByteArrayOutputStream out;
    Document document;
    DocumentBuilder builder;
    DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
    File stylesheet = new File(context.getRealPath("/xml/duties2Email.xsl"));
    File datafile = new File(context.getRealPath("/xml/hospitals.xml"));
    StreamResult result;
    StreamSource stylesource;
    StreamSource datasource;
    String date = (new SimpleDateFormat("dd/MM")).format(new Date());
    Transformer transformer;
    TransformerFactory tFactory;
    out = new ByteArrayOutputStream(500);
    builder = factory.newDocumentBuilder();
    tFactory = TransformerFactory.newInstance();
    stylesource = new StreamSource(stylesheet);
    transformer = tFactory.newTransformer(stylesource);
    datasource = new StreamSource(datafile);
    result = new StreamResult(out);
    transformer.setParameter("date", date);
    transformer.transform(datasource, result);Unfortunately, when I try to run a servlet with exactly the same code, it throws a ClassCastException, please view the following stack trace:
    java.lang.ClassCastException: org.apache.xml.dtm.ref.DTMManagerDefault
    at org.apache.xml.dtm.DTMManager.newInstance(DTMManager.java:135)
    at org.apache.xpath.XPathContext.<init>(XPathContext.java:87)
    at org.apache.xalan.transformer.TransformerImpl.<init>(TransformerImpl.java:370)
    at org.apache.xalan.templates.StylesheetRoot.newTransformer(StylesheetRoot.java:159)
    at org.apache.xalan.processor.TransformerFactoryImpl.newTransformer(TransformerFactoryImpl.java:674)
    at lu.etat.protex.duties.servlet.DutiesControllerServlet.sendEmails(Unknown Source)
    at lu.etat.protex.duties.servlet.DutiesControllerServlet.doGet(Unknown Source)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2422)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
    at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:171)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:163)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:199)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:828)
    at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:700)
    Does anybody know where the mistake could come from ?
    Thanks in advance,
    R&eacute;gis Kuckaertz

    Turned out that I had a version of xsltc.jar in my WEB-INF/lib. When I removed it the problem went away.So I'm sure it had to do with a library mismatch. I am using JBoss 4.1.
    -Rich

  • Grid Control 11.1 install problem libXtst.so.6: cannot open shared object

    I have a new server installing Grid Control 11.1. Linux RHEL 5 rel 2 64 bit. Installed database 11.2.0.1 on this server (applied patch set 9352237). Installed JDK 1.6 (following note 1063587.1) and WebLogic 10.3 (note 1063112.1). When launching the Grid Control installer, I'm getting the following:
    reparing to launch Oracle Universal Installer from /tmp/OraInstall2010-05-11_12-21-44PM. Please wait ...[oracle@oracletest-100-96 gc_inst]$
    Exception in thread "main" java.lang.UnsatisfiedLinkError: /tmp/OraInstall2010-05-11_12-21-44PM/jdk/jre/lib/i386/xawt/libmawt.so: libXtst.so.6: cannot open shared object file: No such file or directory
            at java.lang.ClassLoader$NativeLibrary.load(Native Method)
            at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1778)
            at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1674)
            at java.lang.Runtime.load0(Runtime.java:770)
            at java.lang.System.load(System.java:1003)
            at java.lang.ClassLoader$NativeLibrary.load(Native Method)
            at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1778)
            at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1695)
            at java.lang.Runtime.loadLibrary0(Runtime.java:823)
            at java.lang.System.loadLibrary(System.java:1028)
            at sun.security.action.LoadLibraryAction.run(LoadLibraryAction.java:50)
            at java.security.AccessController.doPrivileged(Native Method)
            at java.awt.Toolkit.loadLibraries(Toolkit.java:1592)
            at java.awt.Toolkit.<clinit>(Toolkit.java:1614)
            at java.awt.Font.<clinit>(Font.java:210)
            at oracle.sysman.install.oneclick.EMGCInstallStaticVariables.<clinit>(EMGCInstallStaticVariables.java:324)
            at oracle.sysman.install.oneclick.EMGCInstaller.parseCommandLineArgs(EMGCInstaller.java:503)
            at oracle.sysman.install.oneclick.EMGCInstaller.init(EMGCInstaller.java:201)
            at oracle.sysman.install.oneclick.EMGCInstaller.main(EMGCInstaller.java:992) I've checked to make sure that lixXp is installed:
    [root@oracletest]# rpm -qa --qf "%{NAME}-%{VERSION}-%{RELEASE}.%{ARCH}\n" | grep libXp
    libXpm-3.5.5-3.x86_64I know this is just a DISPLAYor xterm issue, but I can't figure out what the issue is. The installer for the database (11.2.0.1) in the same session launches without error. I've tried running the installer with --ignoreSysPrereqs passed and same issue.  Is there a library mismatch somewhere?  Is the installer for Grid Control that much different from that of Database 11.2.0.1 (apparently, since the database installer launches while grid control doesn't).  What obvious things am I missing in checking?
    Edited by: kellypw on May 11, 2010 11:17 AM

    I too had the same issue on linux. Check whether libXtst package is installed or not. Also, close the existing session and open a new window after the installation of the package.
    Package "libXtst (i386)" in RHEL/OEL 5 will be automatically installed with "Default RPMs" installation type. If RHEL/OEL 5 is not installed with "Default RPMs" Installation type, then please install missing package "libXtst (i386)" and then re-try.

  • Times Ten Connection Problem.

    error connecting to DSNODBC Error 'S1000', TimesTen Error 4053, ODBC rc -1
    ERROR in TTConnection.cpp, line 220: TTConnection::Connect() -- while connecting to driver
    [TimesTen][TimesTen 7.0.3.0.0 ODBC Driver]Internal error: Library mismatch. Expected: libttco.so 7.0.3.0.0 Found: libttco.so 7.0.5.0.0
    *** ODBC Error/Warning = S1000, TimesTen Error/Warning = 4053
    *** (connect string <DSN=hk_ds>)*** Error in TTConnectionPool::ConnectAll()
    I recently upgraded the TimesTen installation since then I am having problems connecting.

    I'm guessing that you upgraded from 7.0.3 to 7.0.5, is that correct?
    The problem here is that the application is still picking up a 7.0.3 version of libtten.so wheras it is finding the newer version of some other libraries such as libttco.so. How did you perform the upgrade? Were any errors reported dueing the upgrade? Have you copied/mmoved any of the TimesTen libraries to a location other than the standard one (<instance_install_dir>/lib)?
    Chris

  • Performance Meter fails to start

    Either I use "Applications > Utilities > Performance Meter" in JDS menu, or type "gnome-perfmeter" in a terminal. No window or text output. What's the problem. I use Solaris 10 u3 x86 1106.

    I haven't tried GNOME system monitor myself. I know that performance meter certainly isn't pretty.
    After having a quick google (which of course you could have done ;-) ), it appears GSM is being tested in the express developer edition, so it probably will be shipped with Solaris at some point.
    Apparently 'top' is available on the companion CD (you need to read up on pkgadd to install), but if you really do want GSM, you can get it from blastwave.org. They use an equivalent of Debian's apt-get called pkg-get, which makes installs oh-so-easy, but for consistency it also loads all the dependencies into their own file structure. If you're not careful you'll end up with duplicate packages of everything, and shared library mismatches, although this is the way I recommend you go as there are lots of packages available for download.

  • Upgrading iPhoto made a problem

    Dears:
    my mac automatically upgraded the iPhoto and ever since the photos do not appear in iPhoto library, although the folders i created on the older version of iPhoto are there but they are empty. i searched in the hard drive the photos are still in the original folder and when i tried importing them all over again i get an error message that the files are not readable. can you help please

    Before you go rebuilding a library (and I say this often because I've been through the pain of it) just double-check a few things.
    1. Launch iPhoto with Option held down. It will ask you if you want to choose a different library or create a new one. Click Choose. Look at the library it is pointing to. It usually starts at the photo library it is displaying. If you hold down the menu above the list of files, it will show you where it is located. For example, Macintosh HD/Users/<your name>/Pictures/ Once you have this location, don't do anything to that, just go to the Finder.
    2. In the Finder, go to the library where you have your actual pictures and confirm that it is really in the same location. For any number of reasons, it is possible for the libraries to get mixed up or a second one inadvertently created. If the locations are different remember the new location.
    3. Back in iPhoto, you can now navigate to this new location and set the correct library as the default for iPhoto.
    If there was no library mismatch, you can test-import a picture into this new library and then go to the View menu and look at the Roll number. Go into your library in the Finder and verify that the same roll got created in the 2007 folder, in a folder with the Roll <number> as the folder name. Alternatively, Ctrl-click the newly imported photo and select Show File.
    Post back and we'll go from there.

  • [iPhone] warning: UUID mismatch detected with the loaded library - on disk

    I get this warning at the console when I build and run my app in my device.
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS2.1.sdk/usr/lib/l iblockdown.dylib
    =uuid-mismatch-with-loaded-file,file="/Developer/Platforms/iPhoneOS.platform/Dev eloper/SDKs/iPhoneOS2.1.sdk/usr/lib/liblockdown.dylib"
    Anyone has this issue and managed to resolve the warning ?

    Same problem here. I ran into this problem after I installed 3.2.5 with the new 4.2BetaSDK. I had 4.1 on my phone when the problem arose but I then installed the 4.2 beta and now the beta 2 and I still cannot debug on my phone.

  • Warning: UUID mismatch detected with the loaded library

    Hi,
    Can anyone help me how to solve UUID Mismatch warnings. when i debug my application on iphone then i get the following errors and because of these errors my application hangs. wheen i disconnect my iphone and again run the application on iphone without connecting to xcode then it works fine. But i need to debug the app, so can anyone help me on this issue.
    Below is the list of warnings i am gettings:
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/System/Li brary/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/System/Li brary/Frameworks/Foundation.framework/Foundation
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/System/Li brary/Frameworks/UIKit.framework/UIKit
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/System/Li brary/Frameworks/CoreGraphics.framework/CoreGraphics
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/System/Li brary/Frameworks/AddressBookUI.framework/AddressBookUI
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/System/Li brary/Frameworks/AddressBook.framework/AddressBook
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/usr/lib/l ibsqlite3.dylib
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/System/Li brary/Frameworks/CFNetwork.framework/CFNetwork
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/System/Li brary/Frameworks/AudioToolbox.framework/AudioToolbox
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/System/Li brary/Frameworks/CoreAudio.framework/CoreAudio
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/System/Li brary/Frameworks/SystemConfiguration.framework/SystemConfiguration
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/usr/lib/l ibgcc_s.1.dylib
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/usr/lib/l ibSystem.B.dylib
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/usr/lib/l ibobjc.A.dylib
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/System/Li brary/Frameworks/CoreFoundation.framework/CoreFoundation
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/usr/lib/l ibicucore.A.dylib
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/usr/lib/l ibxml2.2.dylib
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/usr/lib/l ibz.1.2.3.dylib
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/System/Li brary/Frameworks/Security.framework/Security
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/usr/lib/l ibstdc++.6.0.9.dylib
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/System/Li brary/Frameworks/IOKit.framework/Versions/A/IOKit
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/usr/lib/s ystem/libkxld.dylib
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/System/Li brary/PrivateFrameworks/IOSurface.framework/IOSurface
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/usr/lib/l iblockdown.dylib
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/System/Li brary/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/System/Li brary/PrivateFrameworks/JavaScriptCore.framework/JavaScriptCore
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/System/Li brary/PrivateFrameworks/WebCore.framework/WebCore
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/System/Li brary/PrivateFrameworks/WebKit.framework/WebKit
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/System/Li brary/PrivateFrameworks/ImageIO.framework/ImageIO
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/System/Li brary/Frameworks/QuartzCore.framework/QuartzCore
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/System/Li brary/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/System/Li brary/PrivateFrameworks/AppSupport.framework/AppSupport
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/System/Li brary/PrivateFrameworks/CoreText.framework/CoreText
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/System/Li brary/Frameworks/MobileCoreServices.framework/MobileCoreServices
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/System/Li brary/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/System/Li brary/PrivateFrameworks/CoreTelephony.framework/CoreTelephony
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/System/Li brary/PrivateFrameworks/Accelerate.framework/Accelerate
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/usr/lib/l ibbsm.0.dylib
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/System/Li brary/PrivateFrameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/System/Li brary/PrivateFrameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP .dylib
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/System/Li brary/PrivateFrameworks/CoreSurface.framework/CoreSurface
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/System/Li brary/PrivateFrameworks/CoreVideo.framework/CoreVideo
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/System/Li brary/Frameworks/OpenGLES.framework/OpenGLES
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/System/Li brary/PrivateFrameworks/MBX2D.framework/MBX2D
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/System/Li brary/PrivateFrameworks/Celestial.framework/Celestial
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/System/Li brary/PrivateFrameworks/ITSync.framework/ITSync
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/System/Li brary/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/System/Li brary/PrivateFrameworks/AccountSettings.framework/AccountSettings
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/System/Li brary/PrivateFrameworks/MediaToolbox.framework/MediaToolbox
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/System/Li brary/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/System/Li brary/PrivateFrameworks/CoreMedia.framework/CoreMedia
    warning: UUID mismatch detected with the loaded library - on disk is:
    /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/System/Li brary/PrivateFrameworks/VideoToolbox.framework/VideoToolbox
    Thanks in advancce
    Nandita

    Same problem here. I ran into this problem after I installed 3.2.5 with the new 4.2BetaSDK. I had 4.1 on my phone when the problem arose but I then installed the 4.2 beta and now the beta 2 and I still cannot debug on my phone.

  • Dispatcher not starting up ::Shared library version mismatch

    Hi,
    System is SAP ECC 6.0, AIX and Oracle 10g.
    We upgraded the Kernel Level from 201 to Level 221.
    <hostname>/root$ su - <sid>adm
    [YOU HAVE NEW MAIL]
    .profile[30]: 1:  not found.
    <hostname>:sidadm> disp+work
    disp+work information
    kernel release                700
    kernel make variant           700_REL
    compiled on                   AIX 2 5 005DD9CD4C00
    compiled for                  64 BIT
    compilation mode              UNICODE
    compile time                  Aug 23 2009 20:51:38
    update level                  0
    patch number                  221
    source id                     0.221
    supported environment
    database (SAP, table SVERS)   700
    operating system
    AIX 1 5
    AIX 2 5
    AIX 3 5
    After upgrading the kernel dispatcher is not starting. Kindly find the below error:
    sysno      10
    sid        SID
    systemid   324 (IBM RS/6000 with AIX)
    relno      7000
    patchlevel 0
    patchno    221
    intno      20050900
    make:      single threaded, Unicode, 64 bit, optimized
    pid        778402
    Wed Nov 25 12:20:08 2009
    kernel runs with dp version 243000(ext=110000) (@(#) DPLIB-INT-VERSION-243000-UC)
    length of sys_adm_ext is 576 bytes
    SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (10 778402) [dpxxdisp.c   1287]
    DwSLCheckVersion: shared library version mismatch:
            shared lib "dw_xml.so" version 201 <-> kernel version 221
            shared lib "dw_xtc.so" version 201 <-> kernel version 221
            shared lib "dw_stl.so" version 201 <-> kernel version 221
            shared lib "dw_gui.so" version 201 <-> kernel version 221
            shared lib "dw_mdm.so" version 201 <-> kernel version 221
    DP_FATAL_ERROR => Version mismatch of dw shared libraries detected. See dev_disp trace for details.
    Set environment variable SAP_NO_SLIB_CHECK=1 to disable version checking.
    DISPATCHER EMERGENCY SHUTDOWN ***
    NiWait: sleep (5000ms) ...
    NiISelect: timeout 5000ms
    NiISelect: maximum fd=1
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Wed Nov 25 12:20:13 2009
    NiISelect: TIMEOUT occured (5000ms)
    ERROR => DpHalt: my PID is not the dispatcher's (778402/0) [dpxxdisp.c   10510]
    Kindly look into the issue. Looking forward for your reply.
    Thanks,
    Soumya

    Soumya Saha wrote:
    ERROR => DpHalt: my PID is not the dispatcher's (778402/0) http://dpxxdisp.c 10510
    The system appears to think that the dispatcher process may already be running. Stop all the SAP processes and run cleanipc to clear out the shared memory. I've seen this on AIX before where the shared memory will prevent SAP from starting back up and clearing these resolved the issue.
    Hope that is helpful.
    J. Haynes

Maybe you are looking for

  • Problem with Mac Mini and Panasonic PT-AE700 projector

    I just bought a brand new Mac Mini and intended to connect it through hdmi to my Panasonic PT-AE700 projector (with a 10 m hdmi-hdmi cable and a dvi-hdmi adapter). However there is no signal recognized by the projector. Any suggestions? I have tried

  • Accessing CLOBs in Oracle 8i

    From the research i've done, it seems that there are two ways to access CLOBs in Oracle 8i: InputStream or Reader. The InputStream method uses byte streams and the Reader uses character streams. Is that correct? I haven't been able to determine the p

  • Credit Memo Error AR-RAXTRX: TAXACT ERROR- Others Exception in Tax accounti

    Hi All, We are getting the following error when we interface Credit Memo record to AR using Auto Invoice Error Message: AR-RAXTRX: TAXACT ERROR- Others Exception in Tax accounting routine This is not the actual error Following is the setup Transactio

  • Number of Cluster / Votingdisks

    Hey, during clusterware setup 10.2.0.4 (SLES10 - 2nod rac) I set the OCR Configuration to Normal Redundancy - selected /dev/raw/raw1 ( which is on san1) and /dev/raw/raw2 ( which is on san2) as ocr disks. For the voting disks I set /dev/raw/raw3 ( wh

  • Want to use iPad to enter data directly into database

    The non-profit I work for collects a significant amount of field data while conducting energy audits of buildings around the city. We're looking into options that would simplify and speed up the process of data entry, and we're (clearly) thinking abo