[b]Version mismatch problem[/b]

Hi
My application will run fine on JDK 1.3.2,Other than this version it will give this following exception if i run
java.security.InvalidKeyException: Illegal key size or default parameters
at javax.crypto.Cipher.a(DashoA12275)
at javax.crypto.Cipher.a(DashoA12275)
at javax.crypto.Cipher.a(DashoA12275)
at javax.crypto.Cipher.init(DashoA12275)
at javax.crypto.Cipher.init(DashoA12275)
java.lang.IllegalStateException: Cipher not initialized
at javax.crypto.Cipher.c(DashoA12275)
at javax.crypto.Cipher.doFinal(DashoA12275)
I am using java.crypto.* package for encryption and decription purpose
Thanks in Advance

exact Version is jdk1.3.1_02
and if i use other than this version(greater than
jdk1.3.1_02)i will get the exception and this
DashoA12275 may be in javax.crypto.Cipher.a class"May be"? Why didn't you have a look first?
http://java.sun.com/j2se/1.4.2/docs/guide/security/jce/JCERefGuide.html#AppA
http://java.sun.com/j2se/1.4.2/docs/api/javax/crypto/Cipher.htmlThere is no support for such algorithm.

Similar Messages

  • Version Mismatch on Deployment

    Hi,
    I think I have a version mismatch problem here on deployment, but cannot figure out how to resolve it. We have two ASP.NET web apps deployed, called App1 and App2. Both use Crystal Reports. The reports display fine in a report viewer on App1 but on App2 all I get is a blank viewer.
    App1 was originally developed in Visual Studio 2008 along with CR2008, incorporating CrystalDecisions.Web ver. 12.0.2000. Then it was deployed to the server, along with appropriate redistributable. It all worked fine.
    App2 came along, and I switched to VS2010 and CR2010. I also converted App1 to build and run on my dev machine in VS2010 and CR2010, using CrystalDecisions.Web ver. 13.0.2000. On my dev machine, both apps run fine and report fine.
    I deployed App2 to the server, along with the appropriate redistributable for CR. I did not deploy the updated App1. So now on the server, App1 is looking for ver. 12.0.2000.0 of CrystalDecisions.Web in the GAC, and App2 is looking for ver. 13.0.2000.0.
    I have verified that both versions of CrystalDecisions.Web are in the GAC.
    Now App1 still reports fine on the server (although there were some non-reproducible hiccups), but App2 will not display the report. The viewer comes up blank. Again, this works on my dev machine.
    Any suggestions as to why App2 will not view the reports? The relevant code from the App2 web.config is listed below.  The source code from the page that actually displays the report is in a followup reply, since it seems too large to put in this message.
    Thanks.
    --Dan
    web.config
    <?xml version="1.0"?>
    <configuration>
      <configSections>
        <sectionGroup name="businessObjects">
          <sectionGroup name="crystalReports">
            <section name="rptBuildProvider" type="CrystalDecisions.Shared.RptBuildProviderHandler, CrystalDecisions.Shared, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304, Custom=null"/>
          </sectionGroup>
        </sectionGroup>
      </configSections>
         <appSettings>
           <add key="CrystalImageCleaner-Age" value="120000"/>
           <add key="CrystalImageCleaner-AutoStart" value="true"/>
           <add key="CrystalImageCleaner-Sleep" value="60000"/>
           <!--     DB credentials for CrystalReports -->
              <add key="ReportDatabaseName" value="MyDB"/>
              <add key="ReportPassword" value="myPassword?"/>
              <add key="ReportServerName" value="MyServer"/>
              <add key="ReportUserID" value="MyUser"/>
         </appSettings>
         <system.web>
          <compilation debug="true" targetFramework="4.0">
             <assemblies>
               <add assembly="CrystalDecisions.CrystalReports.Engine, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
               <add assembly="CrystalDecisions.ReportSource, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
               <add assembly="CrystalDecisions.Shared, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
               <add assembly="CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
               <add assembly="CrystalDecisions.ReportAppServer.ClientDoc, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
             </assemblies>
             <buildProviders>
                <add extension=".rpt" type="CrystalDecisions.Web.Compilation.RptBuildProvider, CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
             </buildProviders>
          </compilation>
           <httpHandlers>
              <add verb="GET" path="CrystalImageHandler.aspx" type="CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
              <add verb="GET" path="CrystalImageHandler.aspx" type="CrystalDecisions.Web.CrystalImageHandler, CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
           </httpHandlers>
           <pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID"/>
         </system.web>
         <system.webServer>
           <handlers>
              <add name="CrystalImageHandler.aspx_GET" verb="GET" path="CrystalImageHandler.aspx" type="CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" preCondition="integratedMode"/>
              <add name="CrystalImageHandler.aspx_GET" verb="GET" path="CrystalImageHandler.aspx" type="CrystalDecisions.Web.CrystalImageHandler, CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" preCondition="integratedMode"/>
           </handlers>
         </system.webServer>
       <businessObjects>
          <crystalReports>
             <rptBuildProvider>
                <add embedRptInResource="true"/>
             </rptBuildProvider>
          </crystalReports>
       </businessObjects>
    </configuration>

    Here is the rest of the source code, both declarative and code-behind.
    ReportPage.aspx
    <%@ Page Title="" Language="C#" AutoEventWireup="true" CodeFile="ReportPage.aspx.cs"
         Inherits="Reports_ReportPage" %>
    <%@ Register Assembly="CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"
         Namespace="CrystalDecisions.Web" TagPrefix="CR" %>
    <%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>
    <!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 id="Head2" runat="server">
         <title></title>
    </head>
    <body>
         <form id="form1" runat="server">
        <asp:ScriptManager ID="ScriptManager2" runat="server"></asp:ScriptManager>
         <CR:CrystalReportViewer ID="CrystalReportViewer1" runat="server"
          AutoDataBind="True"
              GroupTreeImagesFolderUrl=""
              Height="1158px"
              ToolbarImagesFolderUrl=""
              ToolPanelWidth="200px"
              Width="1059px" />
         </form>
    </body>
    </html>
    ReportPage.aspx.cs
    using CrystalDecisions.CrystalReports.Engine;
    using CrystalDecisions.Shared;
    using System;
    using System.Configuration;
    using System.Data;
    using System.Text;                                   
    public partial class Reports_ReportPage : Page
         ReportDocument rptDoc;
         protected void Page_Load(object sender, EventArgs e)
              #region QueryStrings
              long lngKeyFieldID = -1;
              string strReportName = string.Empty;
              string strReportType = string.Empty;
              if (Request.QueryString["strReportName"] != null)
                   strReportName = Request.QueryString["strReportName"].ToString();
              if (Request.QueryString["strReportType"] != null)
                   strReportType = Request.QueryString["strReportType"].ToString();
              if (Request.QueryString["KFID"] != null)
                   lngKeyFieldID = Convert.ToInt64(Request.QueryString["KFID"]);
              #endregion          //  QueryStrings
              rptDoc = new ReportDocument();
              string strReportSourceFolder = ConfigurationManager.AppSettings["ReportSourceFolder"];
              rptDoc.Load(strReportSourceFolder + strReportName + ".rpt");
          #region parameters
          if (lngKeyFieldID > 0)
             //  set parameters based on rpt name
                   switch (strReportName)
                        case "JobDetails":
                             rptDoc.SetParameterValue("JobID", lngKeyFieldID);
                             rptDoc.SetParameterValue("IsPaid", true);
                             break;
              #endregion          //  parameters
              #region DB connection
              //  from Deepu at SAP tech support
              //  this is necessary to pass db credentials programmatically
              //  the report must be designed in CR using an OLE DB connection type
              ConnectionInfo conn = new ConnectionInfo();
              conn.ServerName = ConfigurationManager.AppSettings["ReportServerName"];
              conn.DatabaseName = ConfigurationManager.AppSettings["ReportDatabaseName"];
              if (conn.ServerName == "Dev")
                   conn.IntegratedSecurity = true;
              else
                   conn.UserID = ConfigurationManager.AppSettings["ReportUserID"];
                   conn.Password = ConfigurationManager.AppSettings["ReportPassword"];
              Tables tables = rptDoc.Database.Tables;
              foreach (Table table in tables)
                   TableLogOnInfo tableLogonInfo = table.LogOnInfo;
                   tableLogonInfo.ConnectionInfo = conn;
                   table.ApplyLogOnInfo(tableLogonInfo);
              #endregion          //  DB connection
              #region Viewer
              CrystalReportViewer1.DisplayGroupTree = false;          //  deprecated, but still works
              CrystalReportViewer1.DisplayToolbar = true;
              CrystalReportViewer1.HasToggleGroupTreeButton = false;
              CrystalReportViewer1.HasToggleParameterPanelButton = false;
              CrystalReportViewer1.Page.Title = strReportName;
              CrystalReportViewer1.ReportSource = rptDoc;
              #endregion          //  Viewer
         protected void Page_Unload(object sender, EventArgs e)
              if (rptDoc != null)
                   rptDoc.Close();
                   rptDoc.Dispose();

  • NFS Version Mismatch?

    I have Redhat 6.0 PC running as a NFS server. Other Linux client can access it, but Solaris 2.6 workstations can not access it. However, this machine can mount the resource from Solaris 2.6 workstattion.
    Is it a NFS version mismatch problem? Redhat 6.0 supports NFS version 2, and Solaris 2.6 supports NFS version 2 and 3.
    How can I solve it?

    According to the man page (mount_nfs), solaris will try v2 if the server doesn't support v3. However, if that doesn't seem to be happening for you, you can specify -o vers=2 in your mount command.
    Hope that helps.
    Ralph
    SUN DTS

  • 2 Problems while Distributing app  Version Mismatch. Neither CFBundleversion ['1.1'] nor CFBundleShortVersionString ['1.1'] in the info.plist match the version of the app set in iTunes Connect  ['1.1']

    Since 2 days when I try to validate or distribute my app it says "Version Mismatch. Neither CFBundleversion ['1.1'] nor CFBundleShortVersionString ['1.1'] in the info.plist match the version of the app set in iTunes Connect  ['1.1']". Today it also always says that the Network Connection was lost. Can someone tell me how to solve this problems?
    Thanks

    Thank you Bob
    Ian
    Ian Bennett
    Lecturer
    Department of Communication, Film and Media,
    Anglia Ruskin University,
    East Road,
    Cambridge
    CB1 1PT
    [email protected]

  • [Solved] sqlite3: SQLite header and source version mismatch

    Is anyone else getting this error?
    $ sqlite3
    SQLite header and source version mismatch
    2009-09-11 14:05:07 b084828a771ec40be85f07c590ca99de4f6c24ee
    2012-03-20 11:35:50 00bb9c9ce4f465e6ac321ced2a9d0062dc364669
    I just performed a full system upgrade
    $ pacman -Syyu
    I tried re-installing:
    $ pacman -Rdd sqlite3
    $ pacman -S sqlite3
    I tried updating the shared library links (as suggested by a post):
    $ ldconfig
    None of the above steps helped...
    $ pacman -Qs sqlite3
    local/sqlite3 3.7.11-1
    A C library that implements an SQL database engine
    $ uname -a
    Linux mdt3 3.2.13-1-ARCH #1 SMP PREEMPT Sat Mar 24 09:10:39 CET 2012 x86_64 AMD Opteron(tm) Processor 6128 AuthenticAMD GNU/Linux
    Last edited by rWarrior (2012-04-25 21:03:38)

    Hi,
    I've got the same problem...
    SQLite header and source version mismatch
    2011-06-23 19:49:22 4374b7e83ea0a3fbc3691f9c0c936272862f32f2
    2012-03-20 11:35:50 00bb9c9ce4f465e6ac321ced2a9d0062dc364669
    Can u tell me how to fix it? This occured when I've unpacked sqlite-autoconf-3071100.tar.gz, entered into unpacked directory with terminal and used commands:
    ./configure
    make
    sudo make install
    sqlite3
    As u've said before the problem is with libsqlite3.so... So i've searched it in File System. And the result is:
    One file with name libsqlite3.so - /usr/local/lib
    Two files with name libsqlite3.so.0 One is here - /usr/local/lib and another here - /usr/lib/i386-linux-gnu
    Two files with name libsqlite3.so.0.8.6 One is here - /usr/local/lib and another here - /usr/lib/i386-linux-gnu
    So... can u tell me which one to delete (in which folder)? What to do next? I am newbie... so if it's possible tell in little steps.
    Thanks in advance.
    Best wishes,
    Teddy.
    Last edited by TeddyRO (2012-04-27 19:57:18)

  • SOAP Response Version Mismatch error with SAP web service

    My company just recently upgraded to SAP CRM 7.
    The old way of creating web services in SAP worked fine, but now, there is something a bit off with SAP.  When I call the web service the send returns a Fault Event with the error : SOAP Response Version Mismatch
    I had a simple web service created with only 1 text input and 1 text output to make sure that it wasn't the parameters or return type.  I got the same error.
    Searching on the forum or the web hasn't provided with any good answer to the issue.
    Any thoughts on this?

    Problem solved

  • Version mismatch

    We have a problem with Version mismatch between services.
    There are two services, each of them in a diferent domain.
    When we try to access from service A (in my domain) to service B (in a diferent domain)
    we obtain relatad Version mismatch.
    We are confirmed that version number (show in .java and .h) is the same.
    What kind of problem can cause Version mismatch and how could solve it?
    Thanks.
    Juan.

    This is log error:
    [2002/06/27 14:35:43] Service AC_RE_FSLMSJPFA (IN) -<Size=1584,Version=308789600,Flags=0>-
    [2002/06/27 14:35:43]           #1 - RPR_STRING="19000000060"
    [2002/06/27 14:35:43]           #2 - RPR_STRING=""
    [2002/06/27 14:35:43]           #3 - RPR_STRING=""
    [2002/06/27 14:35:43]           #4 - RPR_USERVAR=??
    [2002/06/27 14:35:43]           #5 - RPR_SHORT=0
    [2002/06/27 14:35:43]           #6 - RPR_LONG=50
    [2002/06/27 14:35:43] Estoy en servicio ac_reSpFaLstLlamadasMsjPeriodoFacturacionMSFA
    [2002/06/27 14:35:43] strlen: 0
    [2002/06/27 14:35:43] dtInicio_aux: Hoy es 01/01/00 (siglo=21) es el 01 dia del año
    [2002/06/27 14:35:43] Service SP_FA_SLMSJPFA (IN) -<Size=233,Version=433349020,Flags=0>-
    [2002/06/27 14:35:43]           #1 - RPR_STRING="19000000060"
    [2002/06/27 14:35:43]           #2 - RPR_STRING=""
    [2002/06/27 14:35:43]           #3 - RPR_DATE=2000/01/01
    [2002/06/27 14:35:43]           #4 - RPR_USERVAR=??
    [2002/06/27 14:35:43]           #5 - RPR_LONG=50
    [2002/06/27 14:35:43] Service __exception_func__ (OUT) -<Size=129,Version=1,Flags=0>-
    [2002/06/27 14:35:43]           #1 - 10006
    [2002/06/27 14:35:43]           #2 - 267
    [2002/06/27 14:35:43]           #3 - Error code 267 reported by SP_FA_SLMSJPFA->ServerReceive.
    (Remote)
    [2002/06/27 14:35:43]           #4 - Version mismatch
    [2002/06/27 14:35:43]           #5 - ??
    ******* Run time exception information begins ****
    When: Thu Jun 27 14:35:43 2002
    Where: Error code 267 reported by SP_FA_SLMSJPFA->ServerReceive. (Remote)
    What: Version mismatch
    Why: ??
    Subsystem code:10006,Error code:267
    ******* Run time exception information ends *****
    [2002/06/27 14:35:43] Service __exception_func__ (OUT) -<Size=0,Version=1,Flags=0>-
    [2002/06/27 14:35:43]           #1 - 10006
    [2002/06/27 14:35:43]           #2 - 267
    [2002/06/27 14:35:43]           #3 - Error code 267 reported by SP_FA_SLMSJPFA->ServerReceive.
    (Remote)
    [2002/06/27 14:35:43]           #4 - Version mismatch
    [2002/06/27 14:35:43]           #5 - ??
    Juan.
    Peter Holditch <[email protected]> wrote:
    Juan,
    ATMI services don't really have a concept of version, so I assume you're
    not
    talking about them? So are you talking about CORBA interfaces?
    Could you explain in more detail what is happening here, and exactly what
    the
    error you are seeing is.
    Regards,
    Peter.
    Juan Martinez wrote:
    We have a problem with Version mismatch between services.
    There are two services, each of them in a diferent domain.
    When we try to access from service A (in my domain) to service B (in adiferent domain)
    we obtain relatad Version mismatch.
    We are confirmed that version number (show in .java and .h) is the same.
    What kind of problem can cause Version mismatch and how could solve it?
    Thanks.
    Juan.

  • Data Mismatch problem in Production system

    Dear Experts,
    We have been encountering serious data mismatch problems with our source system since 29th Dec 2010.
    We have realized this mismatch only on 11th Jan 2011. So, we have deleted entire data from 29th Dec 2010 onwards to 11th Jan 2011. Then we tried to load delta again as per our Process Chain sequence. Since then, our production system has become very inconsistent. We found that the entire data from 29th Dec 2010 to till date is started giving mismatch.
    Our system got damaged in terms of data drastically. If I delete any bad requests from our Cubes & Data Store Objects, the next time when we try to load data, cube & Data Store Objects is showing the deleted request no. is not updated properly. Because of this, our Process chain is daily failing to complete and giving so many technical errors. We are totally confused to restore our data from 29th Dec 2010 to till date.
    Can any one please help us to restore our data fully and Process Chain to run successfully...............?
    Thanks in Advance,
    Suman

    Hi Suman,
    I understood that you are using 3.x version of BW
    such kind of issues occurs if you distrub the delta sequence by deleting the requests without making them red.
    you can resolve this two ways......
    1) Go to reconstruction tab of the DSO and CUBE, select all the req from 29th Dec 2010 thru 11th Jan 2011 and reconstruct them. once they appear in the request tab. make all the requests to red (set the QM status to RED) one by one and delete them from the CUBE and DSO.
    This should set the delta status  back to 29th and you will be able to run a repeat delta from then in your next delta.
    2) Go to RSRQ and give the SID or the Request ID one by one that it is giving you ( request no. which is not updated properly)
        Mke the QM status as RED for all of them.
    Since you have already deleted them from the targets, just changing the QM status to RED will be sufficinet.
    You have make the QM status to RED inorder to inform the system that the requset is incorrect one and has been deleted.
    Once it is set to RED, system will not prompt any req and say "request no.# not updated properly".
    i suggest you the second option.
    Once you resume the delta load, it should run successfully.....and if you feel some data is still missing from 29th Dec 2010 thru 11th Jan 2011, just run a full repair load the get the data back.
    If your Datasource is of LO extraction u may need to fill the setup tables to perform full repair.
    Please let me know if the Datasource is of LO extraction. Also let me know once the issue is resolved.
    Regards,
    Sudheer.
    Edited by: Sudheer Kumar Kurra on Jan 22, 2011 7:58 AM
    Edited by: Sudheer Kumar Kurra on Jan 22, 2011 8:03 AM

  • T430S Version Mismatch. Location Awareness. How to solve? thanks

    Hi Iam getting an error message on the machine when I log in saying:
    Version Mismatch. Please update Lenovo Settings and Location Awareness to the latest versions.
    OS: win 8
    Lenovo Settings Dependency Package version: 1.0.5.8 (which is the lateast)
    Does anybody know how to solve this problem. Many thanks.
    Solved!
    Go to Solution.

    Good day.
    You might have a look at the last post in this ---> thread.
    Basically, look to see if there is an update for the "Metro" Settings app available to you in the Lenovo store.
    Please post back your results.
    Regards.
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество
    Community Resources: Participation Rules • Images in posts • Search (Advanced) • Private Messaging
    PM requests for individual support are not answered. If a post solves your issue, please mark it so.
    X1C3 Helix X220 X301 X200T T61p T60p Y3P • T520 T420 T510 T400 R400 T61 Y2P Y13
    I am not a Lenovo employee.

  • DMM Version Mismatch Error

    I am running a TestStand sequence which makes a call to niDMM_init. Most times this works correctly, but intermittently I get error -1074117853 (every week or so, the function is may be called 50 times between failures)
    "Error, Version mismatch error! Please verify the installation of all NI-DMM components. You may need a newer version of NI-DMM"
    There are a large number of developers here who *may* be using different versions of NI-DMM on theor development machines to what is installed on the Test Rigs. This was my first thought - that perhaps there were some incompatibilities in DLL Ordinals between the various versions of NI-DMM. However, rebooting the rig and running the same sequence again allows it to work. Surely if this was the case - the problem would exist every time?
    Sadly I cant attach the sequence here (since the niDMM_init function is buried inside a code module and a sub dll inside that - but I have traced it through and it is the niDMM_init function returing the error).
    What I need to know is:
    Is there a problem with developing on one driver version and then running with another?
    If all the developers use the same versions of the drivers or at least compile the software with the same version - will this go away?
    Why is the problem intermittent?

    My mistake - posted to the wrong board. Have reposted in DMMs

  • Dblibrary version mismatch error in db02

    Hi SAP Experts,
    I have a problem with My MSSQL cluster system. i get an alerts in my db02 that
    There are different versions of dbmssslib.dll in use
    There are different versions of ODBC32.dll in use
    There are different versions of sqlncli10.dll in use
    I found only one file dbmssslib.dll at kernal directory of CI. I can check version, but i do not understand from where the system compares and says there is a version mismatch? any idea?
    Thanks and Regards
    Syam

    Hi Vineeth,
    Thanks for the direction. Our patch is SAP_BASIS 710. The note is valid for below SAP_BASIS 700 , sp15. I have allocated the point .
    I am checking in all kernal directories for version of the dblibrary files mentioned. We have also traced that CI contains two kernal directories  . One for Intel and other for AMD. CI has got intel processor but appservers got AMD processors.
    Thanks and Regards
    Syam

  • HTTP-Version Mismatch

    I've been working on midlets communicating with a server through HttpConnection.
    In the emulator these work fine, but on my Nokia 7650 they don't.
    What happens is that when a method such as getResponseCode() or openInputStream() causes the transition to connected state, the request is received by my server (code 200 in the server logs), but the method throws an IOException.
    The exception is: HTTP-Version Mismatch
    I've tried getting files from other servers, with the same result. And all the sample httpconnection programs I've found don't work (they don't even show the exception).

    I found the solution for my problem in the nokia discussion boards:
    Apparently on nokia 7650 models the locale is used to create the http version string thereby changing it into HTTP/1,1.
    For more information and problems with the nokia 7650:
    http://www.it-resources.cc/Homepage/develop/java/j2me/nokia/7650httpIssue.htm

  • Hyperion DataAccessLayerException database version mismatch

    Hello,
    We receive the following error in the Event Viewer when attempting to start the process manager service:
    Hyperion DataAccessLayerException database version mismatch: Hyperion.SessionManager schema version is 11.1.2.0.0.11, database version schema is 11.1.2.1.0.5.
    This is happening after an attempt to run a maintenance upgrade from version 11.1.2.0 to version 11.1.2.1. We ran into problem during the upgrade but the client then needed to complete their month-end so we rolled everything back by restoring VM image back-up that were done before teh upgrade attempt as well as restoring the DB's from before the upgrade.
    Everything should have been restored to it's previous state before the upgrade but after restoring everything we still get an error pointing to an upgraded schema. Makes no sense to us.
    Is it possible there's some sort of script running somewhere that upgrading this schema only when we restore the database? What could be causing this?
    Any ideas would be much appreciated.
    We have built another environment for our clients monthend but still baffled by why the one schema is complaining and didn't get restored to 11.1.2.0.
    Thanks,
    Dan

    Hello Jasmine,
    It does not give us the option to re-use the tables.
    We have basically rebuilt on another environment now so the client can continue with month-end but we still need to find out what went wrong.
    We suspect that it's either the DB backup or restore that went wrong but we cannot prove it. The DBA is kind of third party. We have to take his word for it.
    Version Oracle 10.2.
    Regards,

  • Dp lib version mismatch-After kernel upgrade

    Hi All,
    After kernel upgrade from 700 162 to 179 all the workprocess are not coming up i am getting the below error:
    Full qualified hostname = XXXXXX.saipc.XXX.com
    ***LOG Q0Z=> DpSysAdmExtCreate, bad version (lib=241000 krn=239000) [dpxxtool2.c  681]
    LOCATION    SAP-Gateway on host XXXXXXX / sapgw01
    ERROR       dp lib version mismatch, please check installation
    TIME        Mon Oct 20 00:33:37 2008
    RELEASE     700
    COMPONENT   DP
    VERSION     241000
    RC          -9999
    MODULE      dpxxtool2.c
    LINE        688
    DETAIL      version of external and kernel dp lib mismatch (ext lib
                 version is 241000 / kernel lib version is 239000)
    COUNTER     1
    ERROR => DpIPCInit2: DpSysAdmExtCreate [dpxxtool2.c  369]
    ***LOG S0V=> GwStopGateway, gateway stopped () [gwxxrd.c     14652]
    XXXXXXXXX:ts2adm 30% pg sapcpe.log
    ================ >>> main =======================
    INFO:    sapcpe version: @(#) $Id: //bas/700_REL/src/ccm/sapstart/sapxxcpe.c#18 $ SAP
    =================================================
    INFO:    Try to find file table sapcpeft (default:sapcpeft)
    INFO:    Try to find file table in the central directory /usr/sap/TS2/SYS/exe/ctrun/sapcpeft
    INFO:    not found any file table.
    =================================================
    Update Local Programs (dir-sync + file-path + ln)
    =================================================
    Starting at 2008/10/20 00:33:34
    ERROR:   can't change to central Executable-Dir /usr/sap/TS2/SYS/exe/ctrun (No such file or directory) [sapxxcpe.c:1488]
    Mon Oct 20 00:50:19 2008
    ERROR => gateway (pid 24413) died [dpxxdisp.c   16063]
    DpGwCheck: appc_adm.stat = 2
    DP_FATAL_ERROR => Gateway could not be started - I better exit now
    please help in solving this problem
    Thanks
    Giridhar
    Edited by: giridhar n on Oct 20, 2008 12:47 PM

    Hi,
    We faced an issue with workprocesses which are not coming up after the kernel(700) upgrade from patch 162 to 179. below are the error logs:
    Error Log
    (XXXXXXXXX is the hostname)
    Dev_W1:
    XXXXXXXXX:ts2adm 9% more dev_w1.old
    trc file: "dev_w1", trc level: 1, release: "700"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, MJ
    M sysno      01
    M sid        TS2
    M systemid   370 (Solaris on SPARCV9 CPU)
    M relno      7000
    M patchlevel 0
    M patchno    162
    M intno      20050900
    M make:      single threaded, Unicode, 64 bit, optimized
    M pid        3867
    M
    M
    M Mon Oct 20 03:59:26 2008
    M  kernel runs with dp version 239000(ext=110000) (-(#) DPLIB-INT-VERSION-239000-UC)
    M  length of sys_adm_ext is 576 bytes
    M  ***LOG Q01=> ThInit, WPStart (Workproc 1 1 3867) [thxxhead.c   1281]
    M  ThInit: running on host XXXXXXXXX
    M  calling db_connect ...
    C  Oracle Client Version: '10.2.0.2.0'
    C
    C Mon Oct 20 03:59:27 2008
    C  Client NLS settings: AMERICAN_AMERICA.UTF8
    C  Logon as OPS$-user to get SAPTS2's password
    C  Connecting as /-TS2 on connection 0 (nls_hdl 0) ... (dbsl 700 030508)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1 0x106eea0c0 0x106ef1b80 0x106f02318
    C  Attaching to DB Server TS2 (con_hdl=0,svchp=0x106f02248,srvhp=0x106f04598)
    C  Starting user session (con_hdl=0,svchp=0x106f02248,srvhp=0x106f04598,usrhp=0x106ef2398)
    C  Now '/-TS2' is connected: con_hdl=0, nls_hdl=0, session_id=475.
    C  Got SAPTS2's password from OPS$-user
    C  Disconnecting from connection 0 ...
    C  Closing user session (con_hdl=0,svchp=0x106f02248,usrhp=0x106ef2398)
    C  Now I'm disconnected from ORACLE
    C  Connecting as SAPTS2/<pwd>-TS2 on connection 0 (nls_hdl 0) ... (dbsl 700 030508)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1 0x106eea0c0 0x106ef1b80 0x106f02318
    C  Starting user session (con_hdl=0,svchp=0x106f02248,srvhp=0x106f04598,usrhp=0x106ef2398)
    C  Now 'SAPTS2/<pwd>-TS2' is connected: con_hdl=0, nls_hdl=0, session_id=475.
    C  Database NLS settings: AMERICAN_AMERICA.UTF8
    C  DB instance TS2 is running on XXXXXXXXX with ORACLE version 10.2.0.2.0 since OCT 20, 2008, 03:49:47
    B  Connection 0 opened (DBSL handle 0)
    B  Wp  Hdl ConName          ConId     ConState     TX  PRM RCT TIM MAX OPT Date     Time   DBHost
    B  000 000 R/3              000000000 ACTIVE       NO  YES NO  000 255 255 20081020 035926 XXXXXXXXX
    C  build_stmt: reallocating stmt buffer: 256 -> 2000 characters
    M  db_connect o.k.
    M  ICT: exclude compression: .zip,.cs,.rar,.arj,.z,.gz,.tar,.lzh,.cab,.hqx,.ace,.jar,.ear,.war,.css,.pdf,.js,.gzip,.uue,.bz2,.iso,.sda,
    .sar,.gif
    I
    I Mon Oct 20 03:59:30 2008
    I  MtxInit: 1 0 0
    M  SHM_PRES_BUF                 (addr: 0xffffffff64c00000, size: 20000768)
    M  SHM_ROLL_AREA                (addr: 0xfffffffe40000000, size: 268435456)
    M  SHM_PAGING_AREA              (addr: 0xfffffffe36000000, size: 134217728)
    M  SHM_ROLL_ADM                 (addr: 0xffffffff7597a000, size: 3715586)
    M  SHM_PAGING_ADM               (addr: 0xffffffff79a00000, size: 656416)
    M  ThCreateNoBuffer             allocated 572152 bytes for 1000 entries at 0xfffffffe2c004000
    M  ThCreateNoBuffer             index size: 3000 elems
    M  ThCreateVBAdm                allocated 12176 bytes (50 server) at 0xffffffff7a900000
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 1 initializing ....
    X  Using implementation std
    X  <ES> Info: use normal pages (no huge table support available)
    X  ES initialized.
    B  dbntab: NTAB buffers attached
    B  dbntab: Buffer FTAB(hash header)  (addr: 0xfffffffe2c092088, size: 576)
    B  dbntab: Buffer FTAB(anchor array) (addr: 0xfffffffe2c0922c8, size: 798968)
    B  dbntab: Buffer FTAB(item array)   (addr: 0xfffffffe2c1553c0, size: 3195648)
    B  dbntab: Buffer FTAB(data area)    (addr: 0xfffffffe2c4616c0, size: 30740480)
    B  dbntab: Buffer IREC(hash header)  (addr: 0xfffffffe2e1b6088, size: 576)
    B  dbntab: Buffer IREC(anchor array) (addr: 0xfffffffe2e1b62c8, size: 798968)
    B  dbntab: Buffer IREC(item array)   (addr: 0xfffffffe2e2793c0, size: 798912)
    B  dbntab: Buffer IREC(data area)    (addr: 0xfffffffe2e33c480, size: 6148096)
    B  dbntab: Buffer STAB(hash header)  (addr: 0xfffffffe2e91c088, size: 576)
    B  dbntab: Buffer STAB(anchor array) (addr: 0xfffffffe2e91c2c8, size: 798968)
    B  dbntab: Buffer STAB(item array)   (addr: 0xfffffffe2e9df3c0, size: 798912)
    B  dbntab: Buffer STAB(data area)    (addr: 0xfffffffe2eaa2480, size: 3072000)
    B  dbntab: Buffer TTAB(hash header)  (addr: 0xfffffffe2ed94088, size: 3072)
    B  dbntab: Buffer TTAB(anchor array) (addr: 0xfffffffe2ed94c88, size: 798968)
    B  dbntab: Buffer TTAB(item array)   (addr: 0xfffffffe2ee57d80, size: 1997280)
    B  dbntab: Buffer TTAB(data area)    (addr: 0xfffffffe2f03f760, size: 14580144)
    B  db_con_shm_ini:  WP_ID = 1, WP_CNT = 24, CON_ID = -1
    B  dbstat: TABSTAT buffer attached (addr: 0xfffffffe28012008)
    B  dbtbxbuf: Buffer TABL  (addr: 0xfffffffe24000100, size: 60000256, end: 0xfffffffe27938900)
    B  dbtbxbuf: Buffer TABLP (addr: 0xfffffffe20000100, size: 40960000, end: 0xfffffffe22710100)
    B  dbexpbuf: Buffer EIBUF (addr: 0xffffffff5d800108, size: 4194304, end: 0xffffffff5dc00108)
    B  dbexpbuf: Buffer ESM   (addr: 0xfffffffe5f800108, size: 4194304, end: 0xfffffffe5fc00108)
    B  dbexpbuf: Buffer CUA   (addr: 0xfffffffe2fe30108, size: 5120000, end: 0xfffffffe30312108)
    B  dbexpbuf: Buffer OTR   (addr: 0xfffffffe59800108, size: 4194304, end: 0xfffffffe59c00108)
    B  dbcalbuf: Buffer CALE  (addr: 0xffffffff75d08000, size: 500000, end: 0xffffffff75d82120)
    I  *** ERROR => ShmProtect(62,3) shmat(268435641,0x0xfffffffe5a000000,(SHM_RND | 0)) (22: Invalid argument) [shmux.c      2782]
    I  *** ERROR => ShmCreate: ShmProtect( 62, 3) failed [shmux.c      1359]
    I  *** ERROR => ShmCreate( ATTACH 62, 86228824) failed 1 [mpixx.c      855]
    M  *** ERROR => DpInitMpi: MpiInit failed (1) [dpxxtool2.c  5064]
    M  in_ThErrHandle: 1
    M  *** ERROR => ThInit: DpInitMpi (step 1, th_errno 17, action 3, level 1) [thxxhead.c   10506]
    M
    M  Info for wp 1
    M
    M    pid = 3867
    M    severity = 0
    M    status = 0
    M    stat = WP_RUN
    M    waiting_for = NO_WAITING
    M    reqtype = DP_RQ_DIAWP
    M    act_reqtype = NO_REQTYPE
    M    rq_info = 0
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = 65535
    M    rq_source =
    M    last_tid = 0
    M    last_mode = 0
    M    semaphore = 0
    M    act_cs_count = 0
    M    csTrack = 0
    M    csTrackRwExcl = 0
    M    csTrackRwShrd = 0
    M    mode_cleaned_counter = 0
    M    control_flag = 0
    M    int_checked_resource(RFC) = 0
    M    ext_checked_resource(RFC) = 0
    M    int_checked_resource(HTTP) = 0
    M    ext_checked_resource(HTTP) = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <
    M    attachedVm = no VM
    M  PfStatDisconnect: disconnect statistics
    M  Entering TH_CALLHOOKS
    M  ThCallHooks: call hook >SAP-Trace buffer write< for event BEFORE_DUMP
    M  TrThHookFunc: called for WP dump
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    M  *** ERROR => ThrSaveSPAFields: no valid thr_wpadm [thxxrun1.c   724]
    M  *** ERROR => ThCallHooks: event handler ThrSaveSPAFields for event BEFORE_DUMP failed [thxxtool3.c  261]
    M  Entering ThSetStatError
    M  ThIErrHandle: do not call ThrCoreInfo (no_core_info=0, in_dynp_env=0)
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    B  dbtbxbuf: Saving TBX statistics:
    B  dbtbxbuf: 0 object entries written.
    M  ***LOG Q02=> wp_halt, WPStop (Workproc 1 3867) [dpuxtool.c   269]
    dev_icm:
    trc file: "dev_icm", trc level: 1, release: "700"
    sysno      01
    sid        TS2
    systemid   370 (Solaris on SPARCV9 CPU)
    relno      7000
    patchlevel 0
    patchno    177
    intno      20050900
    make:      multithreaded, Unicode, 64 bit, optimized
    pid        3865
    [Thr  1] started security log to file dev_icm_sec
    [Thr  1] ICM running on: XXXXXXXXX.saipc.XXX.com
    [Thr  1] MtxInit: 30001 0 2
    [Thr  1] IcmInit: listening to admin port: 64999
    [Thr  1] ***LOG Q0Z=> DpSysAdmExtCreate, bad version (lib=241000 krn=239000) [dpxxtool2_mt 681]
    [Thr  1]
    [Thr  1] *  LOCATION    ICM runing on host XXXXXXXXX
    [Thr  1] *  ERROR       dp lib version mismatch, please check installation
    [Thr  1] *
    TIME        Mon Oct 20 03:59:28 2008
    [Thr  1] *  RELEASE     700
    [Thr  1] *  COMPONENT   DP
    [Thr  1] *  VERSION     241000
    [Thr  1] *  RC          -9999
    [Thr  1] *  MODULE      dpxxtool2_mt.c
    [Thr  1] *  LINE        688
    [Thr  1] *  DETAIL      version of external and kernel dp lib mismatch (ext lib
                 version is 241000 / kernel lib version is 239000)
    [Thr  1] *  COUNTER     3
    [Thr  1] *
    [Thr  1] *****************************************************************************
    [Thr  1] *** ERROR => DpIPCInit2: DpSysAdmExtCreate [dpxxtool2_mt 369]
    [Thr  1] *** ERROR => IcmInit: IcmIPCInit failed (rc=-9999) [icxxman_mt.c 1741]
    [Thr  1] *** ICM shutdown completed (pid: 3865) ***
    dev_ms:
    trc file: "dev_ms", trc level: 1, release: "700"
    [Thr  1] Mon Oct 20 03:59:24 2008
    [Thr  1] MsSSetTrcLog: trc logging active, max size = 20971520 bytes
    systemid   370 (Solaris on SPARCV9 CPU)
    relno      7000
    patchlevel 0
    patchno    145
    intno      20050900
    make:      multithreaded, Unicode, 64 bit, optimized
    pid        3853
    [Thr  1] ***LOG Q01=> MsSInit, MSStart (Msg Server 1 3853) [msxxserv_mt. 1834]
    [Thr  1] SigISetDefaultAction : default handling for signal 18
    [Thr  1] load acl file = /usr/sap/TS2/SYS/global/ms_acl_info
    [Thr  1] MsGetOwnIpAddr: my host addresses are :
    [Thr  1]   1 : [148.92.31.49] XXXXXXXXX (HOSTNAME)
    [Thr  1]   2 : [127.0.0.1] localhost (LOCALHOST)
    [Thr  1]   3 : [148.92.31.157] XXXXXXXXX-maint (NILIST)
    [Thr  1]   4 : [10.220.6.72] XXXXXXXXX-bkup (NILIST)
    [Thr  1] MsHttpInit: full qualified hostname = XXXXXXXXX.saipc.XXX.com
    [Thr  1] HTTP logging is switch off
    [Thr  1] MsHttpOwnDomain: own domain[1] = saipc.XXX.com
    [Thr  1] ms/icf_info_server : deleted
    [Thr  1] *** I listen to port sapmsTS2 (3601) ***
    [Thr  1] *** I listen to internal port 3901 (3901) ***
    [Thr  1] CUSTOMER KEY: >C0395101982<
    [Thr  1] Mon Oct 20 04:01:28 2008
    [Thr  1] *** ERROR => MsSClientHandle: no server provides service ENQ  (4), requested from XXXXXXXXX_TS2_01 [msxxserv_mt. 4687]
    [Thr  1] Mon Oct 20 04:05:07 2008
    [Thr  1] MsSExit: received SIGINT (2)
    [Thr  1] ***LOG Q02=> MsSHalt, MSStop (Msg Server 3853) [msxxserv_mt. 5998]
    dev_rd:
    trc file: "dev_rd", trc level: 1, release: "700"
    Mon Oct 20 03:59:26 2008
    ***LOG S00=> GwInitReader, gateway started ( 3864) [gwxxrd.c     1757]
    systemid   370 (Solaris on SPARCV9 CPU)
    relno      7000
    patchlevel 0
    patchno    176
    intno      20050900
    make:      single threaded, Unicode, 64 bit, optimized
    pid        3864
    gateway runs with dp version 241000(ext=110000) (-(#) DPLIB-INT-VERSION-241000-UC)
    gateway (version=700.2008.06.23)
    gw/local_addr : 0.0.0.0
    CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    CCMS: Initalizing shared memory of size 60000000 for monitoring segment.
    Mon Oct 20 03:59:27 2008
    CCMS: Checking Downtime Configuration of Monitoring Segment.
    Bind service sapgw01 (socket) to port 3301
    GwPrintMyHostAddr: my host addresses are :
      1 : [148.92.31.49] XXXXXXXXX (HOSTNAME)
      2 : [127.0.0.1] localhost (LOCALHOST)
      3 : [148.92.31.157] XXXXXXXXX-maint (NILIST)
      4 : [10.220.6.72] XXXXXXXXX-bkup (NILIST)
    Full qualified hostname = XXXXXXXXX.saipc.XXX.com
    ***LOG Q0Z=> DpSysAdmExtCreate, bad version (lib=241000 krn=239000) [dpxxtool2.c  681]
    LOCATION    SAP-Gateway on host XXXXXXXXX / sapgw01
    ERROR       dp lib version mismatch, please check installation
    TIME        Mon Oct 20 03:59:27 2008
    RELEASE     700
    COMPONENT   DP
    VERSION     241000
    RC          -9999
    MODULE      dpxxtool2.c
    LINE        688
    DETAIL      version of external and kernel dp lib mismatch (ext lib
                 version is 241000 / kernel lib version is 239000)
    COUNTER     1
    ERROR => DpIPCInit2: DpSysAdmExtCreate [dpxxtool2.c  369]
    ***LOG S0V=> GwStopGateway, gateway stopped () [gwxxrd.c     14652]
    dev_rfc24:
    Trace file opened at 20081020 031506 EDT SAP-REL 700,0,162 RFC-VER U 3 985555
    ======> User is locked. Please notify the person responsible
    ABAP Programm: SAPLTMSC (Transaction: )
    Called function module: TMS_CI_START_SERVICE
    User: DDIC (Client: 015)
    Destination: TMSADM-TS2.DOMAIN_DV2 (handle: 2, 11671309, {48FC3006-2FF4-60E5-E100-0000945C1F31})
    dev_disp
    trc file: "dev_disp.new", trc level: 1, release: "700"
    sysno      01
    sid        TS2
    systemid   370 (Solaris on SPARCV9 CPU)
    relno      7000
    patchlevel 0
    patchno    162
    intno      20050900
    make:      single threaded, Unicode, 64 bit, optimized
    pid        3854
    Mon Oct 20 03:59:25 2008
    kernel runs with dp version 239000(ext=110000) (-(#) DPLIB-INT-VERSION-239000-UC)
    length of sys_adm_ext is 576 bytes
    SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (01 3854) [dpxxdisp.c   1257]
            shared lib "dw_xml.so" version 162 successfully loaded
            shared lib "dw_xtc.so" version 162 successfully loaded
            shared lib "dw_stl.so" version 162 successfully loaded
            shared lib "dw_gui.so" version 162 successfully loaded
            shared lib "dw_mdm.so" version 162 successfully loaded
    rdisp/softcancel_sequence :  -> 0,5,-1
    use internal message server connection to port 3901
    MtxInit: 30000 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: VMC (JAVA VM in WP) is not active
    DpIPCInit2: start server >XXXXXXXXX_TS2_01                         <
    DpShMCreate: sizeof(wp_adm)             42240   (1760)
    DpShMCreate: sizeof(tm_adm)             150350080       (30064)
    DpShMCreate: sizeof(wp_ca_adm)          31232   (104)
    DpShMCreate: sizeof(appc_ca_adm)        208000  (104)
    DpCommTableSize: max/headSize/ftSize/tableSize=500/8/548056/548064
    DpShMCreate: sizeof(comm_adm)           548064  (1088)
    DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    DpShMCreate: sizeof(slock_adm)          0       (104)
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm)           0       (72)
    DpShMCreate: sizeof(vmc_adm)            0       (2080)
    DpShMCreate: sizeof(wall_adm)           (1000056/862328/88/192)
    DpShMCreate: sizeof(gw_adm)     48
    DpShMCreate: SHM_DP_ADM_KEY             (addr: 0xffffffff66000000, size: 153051096)
    DpShMCreate: allocated sys_adm at 0xffffffff66000000
    DpShMCreate: allocated wp_adm at 0xffffffff66002218
    DpShMCreate: allocated tm_adm_list at 0xffffffff6600c718
    DpShMCreate: allocated tm_adm at 0xffffffff6600c778
    DpShMCreate: allocated wp_ca_adm at 0xffffffff6ef6f078
    DpShMCreate: allocated appc_ca_adm at 0xffffffff6ef76a78
    DpShMCreate: allocated comm_adm at 0xffffffff6efa96f8
    DpShMCreate: system runs without slock table
    DpShMCreate: system runs without file table
    DpShMCreate: allocated vmc_adm_list at 0xffffffff6f02f3d8
    DpShMCreate: allocated gw_adm at 0xffffffff6f02f458
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated ca_info at 0xffffffff6f02f488
    DpShMCreate: allocated wall_adm at 0xffffffff6f02f490
    Mon Oct 20 03:59:26 2008
    MBUF state OFF
    DpCommInitTable: init table for 500 entries
    rdisp/queue_size_check_value :  -> off
    ThTaskStatus: rdisp/reset_online_during_debug 0
    EmInit: MmSetImplementation( 2 ).
    MM global diagnostic options set: 0
    <ES> client 0 initializing ....
    <ES> InitFreeList
    <ES> block size is 1024 kByte.
    Using implementation std
    <ES> Info: use normal pages (no huge table support available)
    EsStdUnamFileMapInit: ES base = 0x0xfffffffe60000000
    EsStdInit: Extended Memory 4048 MB allocated
    <ES> 4047 blocks reserved for free list.
    ES initialized.
    Mon Oct 20 03:59:31 2008
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG CPS=> DpLoopInit, ICU ( 3.0 3.0 4.0.1) [dpxxdisp.c   1659]
    ***LOG Q0K=> DpMsAttach, mscon ( XXXXXXXXX) [dpxxdisp.c   12153]
    DpStartStopMsg: send start message (myname is >XXXXXXXXX_TS2_01                         <)
    DpStartStopMsg: start msg sent
    CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    ERROR => DpWPCheck: W0 (pid 3866) died (severity=0, status=65280) [dpxxdisp.c   15218]
    child (pid=3866) exited with exit code 255
    my types changed after wp death/restart 0xbf --> 0xbd
    ERROR => DpWPCheck: W1 (pid 3867) died (severity=0, status=65280) [dpxxdisp.c   15218]
    child (pid=3867) exited with exit code 255
    ERROR => DpWPCheck: W2 (pid 3868) died (severity=0, status=65280) [dpxxdisp.c   15218]
    child (pid=3868) exited with exit code 255
    ERROR => DpWPCheck: W4 (pid 3870) died (severity=0, status=65280) [dpxxdisp.c   15218]
    child (pid=3870) exited with exit code 255
    ERROR => DpWPCheck: W5 (pid 3871) died (severity=0, status=65280) [dpxxdisp.c   15218]
    child (pid=3871) exited with exit code 255
    ERROR => DpWPCheck: W6 (pid 3872) died (severity=0, status=65280) [dpxxdisp.c   15218]
    child (pid=3872) exited with exit code 255
    ERROR => DpWPCheck: W7 (pid 3873) died (severity=0, status=65280) [dpxxdisp.c   15218]
    child (pid=3873) exited with exit code 255
    ERROR => DpWPCheck: W8 (pid 3874) died (severity=0, status=65280) [dpxxdisp.c   15218]
    child (pid=3874) exited with exit code 255
    ERROR => DpWPCheck: W9 (pid 3875) died (severity=0, status=65280) [dpxxdisp.c   15218]
    child (pid=3875) exited with exit code 255
    ERROR => DpWPCheck: W10 (pid 3885) died (severity=0, status=65280) [dpxxdisp.c   15218]
    child (pid=3885) exited with exit code 255
    ERROR => DpWPCheck: W11 (pid 3888) died (severity=0, status=65280) [dpxxdisp.c   15218]
    child (pid=3888) exited with exit code 255
    ERROR => DpWPCheck: W12 (pid 3890) died (severity=0, status=65280) [dpxxdisp.c   15218]
    child (pid=3890) exited with exit code 255
    ERROR => DpWPCheck: W13 (pid 3902) died (severity=0, status=65280) [dpxxdisp.c   15218]
    child (pid=3902) exited with exit code 255
    DpMsgAdmin: Set release to 7000, patchlevel 0
    MBUF state PREPARED
    MBUF component UP
    DpMBufHwIdSet: set Hardware-ID
    ***LOG Q1C=> DpMBufHwIdSet [dpxxmbuf.c   1050]
    DpMsgAdmin: Set patchno for this platform to 162
    Release check o.K.
    Mon Oct 20 03:59:51 2008
    my types changed after wp death/restart 0xbd --> 0x81
    ERROR => DpWPCheck: W14 (pid 3903) died (severity=0, status=65280) [dpxxdisp.c   15218]
    child (pid=3903) exited with exit code 255
    ERROR => DpWPCheck: W15 (pid 3904) died (severity=0, status=65280) [dpxxdisp.c   15218]
    child (pid=3904) exited with exit code 255
    ERROR => DpWPCheck: W16 (pid 3905) died (severity=0, status=65280) [dpxxdisp.c   15218]
    child (pid=3905) exited with exit code 255
    ERROR => DpWPCheck: W17 (pid 3908) died (severity=0, status=65280) [dpxxdisp.c   15218]
    child (pid=3908) exited with exit code 255
    ERROR => DpWPCheck: W18 (pid 3911) died (severity=0, status=65280) [dpxxdisp.c   15218]
    child (pid=3911) exited with exit code 255
    ERROR => DpWPCheck: W19 (pid 3914) died (severity=0, status=65280) [dpxxdisp.c   15218]
    child (pid=3914) exited with exit code 255
    ERROR => DpWPCheck: W20 (pid 3915) died (severity=0, status=65280) [dpxxdisp.c   15218]
    child (pid=3915) exited with exit code 255
    ERROR => DpWPCheck: W21 (pid 3916) died (severity=0, status=65280) [dpxxdisp.c   15218]
    child (pid=3916) exited with exit code 255
    ERROR => DpWPCheck: W22 (pid 3919) died (severity=0, status=65280) [dpxxdisp.c   15218]
    child (pid=3919) exited with exit code 255
    ERROR => DpWPCheck: W23 (pid 3924) died (severity=0, status=65280) [dpxxdisp.c   15218]
    child (pid=3924) exited with exit code 255
    Mon Oct 20 04:00:11 2008
    ERROR => gateway (pid 3864) died [dpxxdisp.c   16063]
    DpGwCheck: appc_adm.stat = 2
    DP_FATAL_ERROR => Gateway could not be started - I better exit now
    DISPATCHER EMERGENCY SHUTDOWN ***
    increase tracelevel of WPs
    kill(3869,0) successful -> process alive
    killing W3-3869 (SIGUSR2)
    NiWait: sleep (10000ms) ...
    NiISelect: timeout 10000ms
    NiISelect: maximum fd=12
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Oct 20 04:00:21 2008
    NiISelect: TIMEOUT occured (10000ms)
    dump system status
    Workprocess Table (long)                        Mon Oct 20 08:00:21 2008
    ========================
    No Ty. Pid      Status  Cause Start Err Sem CPU    Time  Program          Cl  User         Action                    Table
    0 DIA     3866 Ended         no      3   0        0
    1 DIA     3867 Ended         no      3   0        0
    2 DIA     3868 Ended         no      3   0        0
    3 DIA     3869 Run           yes     0   0        0
    4 DIA     3870 Ended         no      3   0        0
    5 DIA     3871 Ended         no      3   0        0
    6 DIA     3872 Ended         no      3   0        0
    7 DIA     3873 Ended         no      3   0        0
    8 DIA     3874 Ended         no      3   0        0
    9 DIA     3875 Ended         no      3   0        0
    10 UPD     3885 Ended         no      3   0        0
    11 UPD     3888 Ended         no      3   0        0
    12 UPD     3890 Ended         no      3   0        0
    13 UPD     3902 Ended         no      3   0        0
    14 ENQ     3903 Ended         no      2   0        0
    15 BTC     3904 Ended         no      2   0        0
    16 BTC     3905 Ended         no      2   0        0
    17 BTC     3908 Ended         no      2   0        0
    18 BTC     3911 Ended         no      2   0        0
    19 BTC     3914 Ended         no      2   0        0
    20 BTC     3915 Ended         no      2   0        0
    21 SPO     3916 Ended         no      2   0        0
    22 UP2     3919 Ended         no      2   0        0
    23 UP2     3924 Ended         no      2   0        0
    Dispatcher Queue Statistics                     Mon Oct 20 08:00:21 2008
    ===========================
    --------++++--
    +
    Typ
    now
    high
    max
    writes
    reads
    --------++++--
    +
    NOWP
    0
    0
    4000
    0
    0
    --------++++--
    +
    DIA
    4
    4
    4000
    4
    0
    --------++++--
    +
    UPD
    0
    0
    4000
    0
    0
    --------++++--
    +
    ENQ
    0
    0
    4000
    0
    0
    --------++++--
    +
    BTC
    0
    0
    4000
    0
    0
    --------++++--
    +
    SPO
    0
    0
    4000
    0
    0
    --------++++--
    +
    UP2
    0
    0
    4000
    0
    0
    --------++++--
    +
    max_rq_id               7
    wake_evt_udp_now        0
    wake events             total     3,  udp     2 ( 66%),  shm     1 ( 33%)
    since last update       total     3,  udp     2 ( 66%),  shm     1 ( 33%)
    Dump of tm_adm structure:                       Mon Oct 20 08:00:21 2008
    =========================
    Term    uid  man user    term   lastop  mod wp  ta   a/i (modes)
    Workprocess Comm. Area Blocks                   Mon Oct 20 08:00:21 2008
    =============================
    Slots: 300, Used: 1, Max: 0
    --------++--
    +
    id
    owner
    pid
    eyecatcher
    --------++--
    +
    0
    DISPATCHER
    -1
    WPCAAD000
    NiWait: sleep (5000ms) ...
    NiISelect: timeout 5000ms
    NiISelect: maximum fd=12
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Oct 20 04:00:26 2008
    NiISelect: TIMEOUT occured (5000ms)
    DpHalt: shutdown server >XXXXXXXXX_TS2_01                         < (normal)
    DpJ2eeDisableRestart
    DpModState: buffer in state MBUF_PREPARED
    please help me to solve this.
    Thanks
    Giridhar

  • After openoffice install: gnome/kde error "openssl version mismatch."

    Hello,
    i just installed a new archlinux version on my laptop. After i just installed the full cd version, i made the following things:
    pacman -Sy
    pacman -S xorg-server xf86-input-mouse xf86-input-keyboard xf86-video-vesa xorg-xinit
    pacman -S hwd
    hwd -xa
    pacman -S gnome
    pacman -S gnome-extra
    pacman -S openoffice-base openoffice-spell-en openoffice-spell-de
    Now, when i try to start gnome via "gdm", i get the following error after login screen:
    /etc/gdm/Xsession: Beginning session setup...
    /etc/gdm/Xsession: Setup done, will execute: /usr/bin/ssh-agent -- /usr/bin/gnome-session
    OpenSSL version mismatch. Built against 90805f, you have 908070
    Because i made nothing else on the system except the commands i quoted above, i guess it must be a bug. Has anyone an idea how to solve this problem?
    Thx in advance,
    Thomas
    Last edited by conflagration (2007-10-28 11:26:33)

    Update:
    I just tried a new installation and did the same steps as above, just with kde instead of gnome.  After "startkde", the same OpenSSL version mismatch error appears on the console. It's REALLY annoying...

Maybe you are looking for