Please Help me ...Fail Safe Server installation..

We have 2 sever Clustered, on windows 2003 Enterprise and we want to install Oracle 10g database and install & configer the Fail Safe Server, could you please help me by providing the docmantation for best installation of the 10g database and Fail Safe Server.
Regards.

As usual you find the documention right here on OTN:
http://www.oracle.com/technology/documentation/failsafe.html
Werner

Similar Messages

  • Please Help! ERROR: Application Server failed. when Refreshing

    Please help on this below issue. Thanks.
    We have a requirement that using ASP.NET (C#), we need to open saved .rpt file (saved with data and the rpt file is assigned to the web page as query string) and let the users refresh themselves with latest data by clicking at refresh icon of the CrystalReportViewer. But it throws 'The Report Application Server failed' error message. What could cause this message. below is the piece of code we are using to configure the report.
    private void ConfigureCrystalReports()
    string reportPath = Server.MapPath("Reports
    SEMS0001_UBS.rpt");
    this.CrystalReportSource2.ReportDocument.Load(reportPath);
    CrystalReportViewer1.Visible = false;
    SetDBLogonForReport(this.CrystalReportSource2.ReportDocument);
    int i = 0;
    foreach (ParameterField field in this.CrystalReportSource2.ReportDocument.ParameterFields)
    field.HasCurrentValue = true;
    //this.CrystalReportSource2.ReportDocument.Refresh();
    CrystalReportViewer1.ParameterFieldInfo = this.CrystalReportSource2.ReportDocument.ParameterFields;
    CrystalReportViewer1.Visible = true;
    public void SetDBLogonForReport(ReportDocument reportDocument)
    Tables tables = reportDocument.Database.Tables;
    connectionInfo.ServerName = "server"; //ConfigurationManager.AppSettings["DBServer"];
    connectionInfo.UserID = "user"; //ConfigurationManager.AppSettings["DBUser"];
    connectionInfo.Password = "passwd"; //XsiteWinRpt.ConnUtil.GetOnlyPasswordOfConnString(); //ConfigurationManager.AppSettings["DBPassword"];
    //foreach (CrystalDecisions.Shared.IConnectionInfo connection in reportDocument.DataSourceConnections)
    // connection.SetConnection(ConfigurationManager.AppSettings["DBServer"], "", ConfigurationManager.AppSettings["DBUser"], ConfigurationManager.AppSettings["DBPassword"]);
    // connection.SetLogon(ConfigurationManager.AppSettings["DBUser"], ConfigurationManager.AppSettings["DBPassword"]);
    foreach (CrystalDecisions.CrystalReports.Engine.Table table in tables)
    TableLogOnInfo tableLogonInfo = table.LogOnInfo;
    tableLogonInfo.ConnectionInfo = connectionInfo;
    table.ApplyLogOnInfo(tableLogonInfo);
    //reportDocument.Database.Tables[0].ApplyLogOnInfo(tableLogonInfo);

    Attaching full code ... Our case is the RPT files are stored wih default parameters and saved data. We need to let users just refresh the rpt files with latest db data and overwrite with the same rpt files. But this code keep showing The application server failed mesg. when the refresh icon of viewer is clicked.
    Attaching the code as it is not properly attached in my previous reply ...
    =======================
    Begin - aspx.cs code
    =======================
    using System;
    using System.Data;
    using System.Data.OleDb;
    using System.Configuration;
    using System.Web;
    using System.Web.Security;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using System.Web.UI.WebControls.WebParts;
    using System.Web.UI.HtmlControls;
    using CrystalDecisions.CrystalReports.Engine;
    using CrystalDecisions.CrystalReports;
    using CrystalDecisions.Shared;
    using CrystalDecisions.Web;
    public partial class _Default : System.Web.UI.Page
        private ConnectionInfo connectionInfo = new ConnectionInfo();
        protected void Page_Load(object sender, EventArgs e)
            if (!IsPostBack)
                //ConfigureCrystalReports();
        protected void  CrystalReportViewer1_Init(object sender, EventArgs e)
            ConfigureCrystalReports();
        private void ConfigureCrystalReports()
            string reportPath = Server.MapPath(@"Reports\Report1.rpt");
            this.CrystalReportSource1.ReportDocument.Load(reportPath);
            CrystalReportViewer1.Visible = false;
            SetDBLogonForReport(this.CrystalReportSource1.ReportDocument);
            foreach (ParameterField field in this.CrystalReportSource1.ReportDocument.ParameterFields)
                field.HasCurrentValue = true;
            //this.CrystalReportSource1.ReportDocument.Refresh();
            CrystalReportViewer1.ReuseParameterValuesOnRefresh = true;
            CrystalReportViewer1.Visible = true;
        public void ReportDocument_RefreshReport(object sender, EventArgs e)
            try
    SetDBLogonForReport(this.CrystalReportSource1.ReportDocument);
    CrystalReportViewer1.ReuseParameterValuesOnRefresh = true;
                this.CrystalReportSource1.ReportDocument.SetDatabaseLogon("user", "passwd", "server", "");
                foreach (ParameterField field in this.CrystalReportSource1.ReportDocument.ParameterFields)
                    field.HasCurrentValue = true;
                    field.AllowCustomValues = true;
                    //field.EnableNullValue = true;               
                this.CrystalReportSource1.ReportDocument.Refresh();
                       this.CrystalReportSource1.ReportDocument.SaveAs(@"C:\Inetpub\wwwroot\XsiteRpt\Reports\Report1.RPT", true);
            catch (Exception ex)
                Msg.Text = ex.Message;
        public void SetDBLogonForReport(ReportDocument reportDocument)
            Tables tables = reportDocument.Database.Tables;
            connectionInfo.ServerName = "server"; //ConfigurationManager.AppSettings["DBServer"];
            connectionInfo.UserID = "user"; //ConfigurationManager.AppSettings["DBUser"];
            connectionInfo.Password = "passwd"; //XsiteWinRpt.ConnUtil.GetOnlyPasswordOfConnString(); //ConfigurationManager.AppSettings["DBPassword"];
            foreach (CrystalDecisions.CrystalReports.Engine.Table table in reportDocument tables)
                TableLogOnInfo tableLogonInfo = table.LogOnInfo;
                tableLogonInfo.ConnectionInfo = connectionInfo;
                table.ApplyLogOnInfo(tableLogonInfo);
    =======================
    End - aspx.cs.code
    =======================
    =======================
    Begin - Assemblies
    =======================
    <assemblies>
                        <add assembly="CrystalDecisions.Web, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
                        <add assembly="CrystalDecisions.Shared, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
                        <add assembly="CrystalDecisions.ReportSource, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
                        <add assembly="CrystalDecisions.Enterprise.Framework, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
                        <add assembly="CrystalDecisions.Enterprise.Desktop.Report, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
                        <add assembly="CrystalDecisions.CrystalReports.Engine, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
                        <add assembly="CrystalDecisions.Enterprise.InfoStore, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/><add assembly="CrystalDecisions.ReportAppServer.ClientDoc, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
          </assemblies>
    =======================
    End - Assemblies
    =======================
    =======================
    Begin - aspx
    =======================
    <%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Xsite.aspx.cs" Inherits="_Default" %>
    <%@ Register Assembly="CrystalDecisions.Web, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"
        Namespace="CrystalDecisions.Web" TagPrefix="CR" %>
    <!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>Refresh Report</title>
        <link href="/aspnet_client/System_Web/2_0_50727/CrystalReportWebFormViewer3/css/default.css"
            rel="stylesheet" type="text/css" />
        <link href="/aspnet_client/System_Web/2_0_50727/CrystalReportWebFormViewer3/css/default.css"
            rel="stylesheet" type="text/css" />
    </head>
    <body>
        <form id="form1" runat="server">
        <div>
            <asp:Panel ID="PanelMsg" runat="server">
            <br />
            <asp:Label ID="Msg" runat="server" Font-Bold="False" Font-Names="Verdana" ForeColor="Navy"></asp:Label>
            <br />
            </asp:Panel>
            <asp:Panel ID="PanelViewer" runat="server">
            <CR:CrystalReportViewer ID="CrystalReportViewer1" OnReportRefresh="ReportDocument_RefreshReport" runat="server" AutoDataBind="True"
                EnableDatabaseLogonPrompt="False" EnableParameterPrompt="False" ReuseParameterValuesOnRefresh="True" HasRefreshButton="True" Height="820px" OnInit="CrystalReportViewer1_Init" ReportSourceID="CrystalReportSource1" ShowAllPageIds="True" Width="1215px" />
            <CR:CrystalReportSource ID="CrystalReportSource1" runat="server">           
            </CR:CrystalReportSource>
            </asp:Panel>
        </div>
        </form>
    </body>
    </html>
    =======================
    End - aspx
    =======================

  • Please help - cannot complete itunes 6 installation

    Here's my deal:
    I have Windows 2000, service pack 4 on an IBM T22, with plenty of hard disk space left and I have had the older version of iTunes (5 i guess) on my computer since I upgraded about a year ago (got iTunes a little over a year ago with my mini iPod). I had trouble then, but somehow got it to work, until now, when I was prompted to upgrade (could not download music otherwise), so I tried to do that, but it failed. One of two things happens: either I get a message that says 1628: Failure to complete installation, OR it just stops installing and I get a box in the minimize bar at the bottom of my desktop that appears to be a dialogue box for QuickTime and iTunes, but that, when clicked on, does not appear (maximize) on my screen. I have now uninstalled QuickTime, iTunes, and my setup.exe, and have tried reinstalling, but the same two things keep happening. I fear that I have lost the ability to install, since the setup.exe is now gone from my desktop. Also, I already tried the suggestions about the 1628 error provided by apple (clearing temp files etc.) and nothing seems to help.
    Please help me! I don't have a clue about what to do and am very very frustrated.

    hi Kelsey!
    It seems to hiccup right in the middle of the box that says "preparing InstallShield Wizard, which will guide you through the setup process / preparing to install" portion...and then it just stops.
    gaah. okay, first check to make sure your Windows Installer engine is up to date:
    http://docs.info.apple.com/article.html?artnum=93976
    then let's try this again
    b with all background applications switched off:
    http://consumer.installshield.com/kb.asp?id=Q108379
    antivirus, antispyware, Cygwin and various other applications have been implicated with these hangs ... so i reckon it's safest to try to switch all of 'em off prior to the install.
    keep us posted.
    love, b

  • Please help ! "Oracle Reports Server CGI - Reports Server name is not specified."

    Hello Gurus,
    I have an html form that allows putting in a parameter. Upon
    submit the form, it'll pass a string URL with the parameter to a
    new browser.
    My url: http://localhost/servlet/oracle.reports.rwcgi.RWServlet?
    diary&14252
    I also used keymap looks like this
    diary: report=Diary.rdf server=servername desformat=pdf
    destype=cache userid=id/psswd@db myoid=%1 %*
    But I get an Error: The requested URL was not found, or cannot
    be served at this time. Oracle Reports Server CGI - Reports
    Server name is not specified.
    However, if I move the cursor to the end of the same url (or put
    a space at the end) and hit Enter, then the report is
    displayed. I guess there must be something wrong with my
    configuration. Please help. I appreciated any inputs from you.
    Thanks in advance.
    Ashley

    I found the solution to my problem. It was nothing to do with
    the cgicmd.dat keymap file, but the html form itself. It's
    confused between the url arguments and form arguments from the
    submit button. So, what I did was open a new window with all
    arguments instead of using the submit function.
    Regards,
    Ashley

  • OFS-Oracle Fail Safe Server

    Hi
    Oracle :10.2.0
    OS: Windows Server
    I have an environment in which I am running oracle on Fail Safe Servers.
    that is active passive clustering.
    I need to have a clean shutdown and startup.
    what would be the best practice I can follow.
    thanks,
    reagrds,

    For the database you would usually do a shutdown immediate, but really, the database should be able to recover from a crash, so you don't NEED a clean shutdown (though it is preferable)

  • Please HELP me!, NT WebDB installation problem

    Hi!
    I have been trying to install web db, I have not been able to do
    it because of the following problem.
    When i get to the "Oracle Installation Settings", Name drop-down
    list contains only "EM_V20" (Enterprise Manager)(and the
    location points to the location of enterprise manager
    (D:\EM_V20)). So, I cannot select any database to install Web
    db. And when I continue regardless of what i got, it asks for
    the sys password ( I don't know which database it is asking for,
    anyway I changed all the database sys passwords to a unique
    password say xxx), and I submit xxx, but it did not accept ( Not
    a surprise), And it corrupted my enterprise manager also.
    So, How can I install web db to my database say "sample" or how
    I can choose my database.. (In your Oracle web db installation
    handbook, it says choose DEFAULT_HOME, but I got only EM_V20).
    Please help me...
    Thank you..
    null

    Hi Murat:
    I think you need to install Oracle 7 or 8 before you install
    webdb. Using CHANGE_ON_INSTALL as a password for SYS.
    Good luck
    Chen
    Murat (guest) wrote:
    : Hi!
    : I have been trying to install web db, I have not been able to
    do
    : it because of the following problem.
    : When i get to the "Oracle Installation Settings", Name
    drop-down
    : list contains only "EM_V20" (Enterprise Manager)(and the
    : location points to the location of enterprise manager
    : (D:\EM_V20)). So, I cannot select any database to install Web
    : db. And when I continue regardless of what i got, it asks for
    : the sys password ( I don't know which database it is asking
    for,
    : anyway I changed all the database sys passwords to a unique
    : password say xxx), and I submit xxx, but it did not accept (
    Not
    : a surprise), And it corrupted my enterprise manager also.
    : So, How can I install web db to my database say "sample" or how
    : I can choose my database.. (In your Oracle web db installation
    : handbook, it says choose DEFAULT_HOME, but I got only EM_V20).
    : Please help me...
    : Thank you..
    null

  • Please Help! 3-Weeks Since Installation and Still ...

    It's just over 3 weeks since I had my broadband moved to my new address and I'm still getting a shockingly-bad connection. All the way through my 10-day stabilisation period it was really poor (always well below 100kbps down) but I waited the full 10 days before calling India when they told me to wait another 3 days. After that extra 3 days I called again and they ran a line test and identified an issue which they described as a 'configuration mismatch which happens every 1 in a 100' - I couldn't understand his exact explanation for the issue was but he told me it had to be corrected at the exchange and to give it 48-72 hours for it to be fixed. After waiting three days and seeing zero change, I called back was told that it had been fixed but I had to wait another 48-72 hours for it to stabilize. So I waited 3 more days. saw no change and called again... this time another guy did another line test and ran through the usual questions, he identified some issue with the line (the same issue?) and said he had reported it the team that deal with line faults. I was told I'd get a call within a few days and that someone would either fix the problem or an engineer would visit. I did get a call back... the call came from India so I'm not sure if that was _the_ call or if it was just a follow-up to one of the earlier support calls (I was expecting call from UK?). Whatever it was, the lady said that the issue had been corrected at the exchange and that I should see a big impovement over the next 48-72 hours. I'm just about at the end of that period now and I'm again seeing no difference whatsoever. I'm dreading the prospect of another support call which results in another non-existant fix which takes another 48-72 hours and makes no difference.
    I dont know if anyone can help and if so what info you'd need?
    Here's some basic info about my setup, the results of my speedtest and some info from the homehub etc...
    I'm on the Unlimited Option 3 (or at least I should be).
    My homehub is the v1, i.e. white box with the 5 lights (phone, wireless, broadband, internet, data).
    Wireless is now disabled on the homehub and I'm using the ethernet cable to my PC.
    I've tried all the phone sockets in the flat and get the same result from all of them.
    I've tried the connetion on my desktop, laptop and even via the wireless on my mobile, it's the same on all three.
    Samknows puts me about 1.6 miles from my local exchange at Moortown (MYMOO)
    I've tried the noise test on my line using the number I found on this forum, didn't hear anything at all.
    I've tried disconnecting my Sky box from the telephone (which is in a different room) but still no joy.
    The homehub has been up for the most part - I've only restarted it three times, twice at the instruction of the guys at BT support and once myself.
    Home Hub Stuff...
     Home page connection details...
      Downstream: 4,015 Kbps
      Upstream: 768 Kbps
      Connection time: 0 days, 2:55:41
      Data transmitted: 3.85 MB
      Data received: 16.64 MB  
     Status > ADSL Line > Details...
      Uptime: 0 days, 2:50:26
      Modulation: G.992.5 annex A
      Bandwidth (Up/Down) [kbps/kbps]: 768 / 4,015
      Data Transferred (Sent/Received) [MB/MB]: 3.83 / 16.62
      Output Power (Up/Down) [dBm]: 12.0 / 19.0
      Line Attenuation (Up/Down) [dB]: 19.5 / 40.5
      SN Margin (Up/Down) [dB]: 5.0 / 6.5
      Vendor ID (Local/Remote): TMMB / TSTC
      Loss of Framing (Local/Remote): 0 / 0
      Loss of Signal (Local/Remote):    0 / 0
      Loss of Power (Local/Remote): 0 / 0
      Loss of Link (Remote):    0
      Error Seconds (Local/Remote): 10,167 / 0
      FEC Errors (Up/Down): 0 / 0
      CRC Errors (Up/Down): 323 / 593,103
      HEC Errors (Up/Down): 14 / 564,577
      Line Profile:    Fast
    Status > Internet Connection...
      Uptime: 0 days, 2:52:30
      Data Transferred (Sent/Received) [MB/MB]: 2.94 / 9.85
      Connection Settings    
      VPI/VCI: 0 / 38
      Type:    PPPoA
    BT Speedtest Results...
    I was hoping to just upload a screenshot but thats impossible for me, so I'll have to type the results instead:
    "The test comprises of Best Effort Test:
    Download Speed 106 Kbps
    Download speed acheived during this test was - 106 Kbps
    For your connection, the acceptable range of speeds is 600-7150 Kbps
    Additional information
    Your DSL Connection Rate: 4148 Kbps (DOWN-STREAM), 768 Kbps (UP-STREAM)
    IP Profile for your line is - 3000Kbps
    The throughput of Best Efforts (BE) classes achieved during the test is - 3.77:5.66:90.57 (SBE:NBEBE)
    These figures represent the ratio while sententiously passing Sub BE, Normal BE and Priority BE marked traffic
    This test was not conclusive and further testing is required. This might be useful for your ISP to investigate the fault."
    And Finally, SpeedTest.net...
    As the subject says, "Please Help!"

    Hi JoeFoulkes
    Certainly looks like something’s up here, your downstream speed doesn’t seem to be too bad but throughput speed is really letting you down.  I take it this is at all time of the day?
    Not too sure what has been tried by our tech guys so far but if you drop me an email with a few details then I can have a look and get things moving.
    Could you drop me an email to [email protected] with your BT account and telephone number and I'll sort it out.
    Cheers
    Craig
    BTCare Community Mod
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry but we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)”
    td-p/30">Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • Please Help Me regardign DI Server License Cost

    Hi Every One,
                         Can you please tell me about DI Server License Cost, By Default DI Server License Valid for 15 days. It is not possible after every 15 days. register DI Server with new License.
                         Any body please provide me the License cost of DI Server, for longer validity.
    Waiting for positive reply.
    Thanks in advanced.
    Shubha
    Edited by: Shubhajyoti Ghosh on Aug 6, 2008 3:38 PM

    From the license Administration --- Component tab, I found.
    License                                                                        Start Date              Expiration Date
    DI-Server (DIS)                                                               28/07/08        -        12/08/08
    Compatibility License for AddOns                                    28/07/08        -        31/12/99
    Professional User                                                           28/07/08        -        12/08/08
    SAP AddOns                                                                 28/07/08        -        12/08/08
    Software Development Kit - Development Version              28/07/08        -        31/12/99
    Software Development Kit - Implementation Version          28/07/08         -        12/08/08
    SDK Tools                                                                    28/07/08         -       12/08/08
    So according the record---- DI-Server (DIS) license validity upto : 12/08/08
    How I increase that date?
    Edited by: Shubhajyoti Ghosh on Aug 7, 2008 1:04 PM
    Edited by: Shubhajyoti Ghosh on Aug 7, 2008 1:06 PM

  • Please help urgently Failed to deserialize statedump from server in Cluster

    Dear All,
    Appreciate a help on this urgently..... I am new to weblogic server & this technologies ... we created IPM,UCM,SOA clusters on one domain (my_domain), all the servers of all the clusters in 1st machine started .... but IPM server is not starting on the 2nd machine (other servers - SOA and UCM started on the 2nd machine)
    I am getting the following error. could anyone help to solve this problem...
    ####<Jan 20, 2011 9:37:29 PM IST> <Info> <Cluster> <machine2.domain.com> <IPM_server2> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1295539649529> <BEA-000128> <Updating -2575471700288226143S:10.1.7.1:[16000,16000,-1,-1,-1,-1,-1]:my_domain:IPM_server1 in the cluster.>
    ####<Jan 20, 2011 9:37:29 PM IST> <Error> <Cluster> <machine2.domain.com> <IPM_server2> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1295539649554> <BEA-000140> <Failed to deserialize statedump from server -2575471700288226143S:10.1.7.1:[16000,16000,-1,-1,-1,-1,-1]:my_domain:IPM_server1 with java.lang.ClassNotFoundException: oracle.imaging.input.inputagent.InputAgent.
    java.lang.ClassNotFoundException: oracle.imaging.input.inputagent.InputAgent
    at weblogic.application.internal.AppClassLoaderManagerImpl.loadApplicationClass(AppClassLoaderManagerImpl.java:135)
    at weblogic.common.internal.ProxyClassResolver.resolveProxyClass(ProxyClassResolver.java:68)
    at weblogic.common.internal.WLObjectInputStream.resolveProxyClass(WLObjectInputStream.java:76)
    at java.io.ObjectInputStream.readProxyDesc(ObjectInputStream.java:1531)
    at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1493)
    at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1732)
    at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1329)
    at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1947)
    at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1871)
    at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1753)
    at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1329)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:351)
    at weblogic.common.internal.WLObjectInputStream.readObjectWL(WLObjectInputStream.java:98)
    at weblogic.cluster.BasicServiceOffer.readExternal(BasicServiceOffer.java:172)
    at java.io.ObjectInputStream.readExternalData(ObjectInputStream.java:1792)
    at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1751)
    at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1329)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:351)
    at java.util.ArrayList.readObject(ArrayList.java:593)
    at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at java.io.ObjectStreamClass.invokeReadObject(ObjectStreamClass.java:974)
    at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1849)
    at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1753)
    at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1329)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:351)
    at weblogic.common.internal.WLObjectInputStream.readArrayList(WLObjectInputStream.java:116)
    at weblogic.cluster.StateDumpMessage.readExternal(StateDumpMessage.java:53)
    at java.io.ObjectInputStream.readExternalData(ObjectInputStream.java:1792)
    when I check the error number BEA-000140, it says
    Cause - Server failed to deserialize object since it does not have the class definition. This usually happens if your application classes are not deployed on all the nodes in the cluster. It is preferable to deploy beans to all the nodes of the cluster.
    Action - Make sure all the classes are available on all the nodes of the cluster.
    Could any one give steps as how to do this or the solution to this problem.... I am new to weblogic..
    Thanks in advance.
    Edited by: user599937 on Jan 20, 2011 8:32 AM
    Edited by: user599937 on Jan 20, 2011 8:37 AM

    This is definitely the problem:
    java.lang.ClassNotFoundException: oracle.imaging.input.inputagent.InputAgent
    The cause is likely that the configuration during installation of IPM went wrong somehow or the particular way you are starting the server is missing the IPM libraries. This is not so much a WebLogic Server issue as an IPM issue. I recommend you try posting in one of the Content Mgmt forums like WebCenter Content or open a support case with the IPM team.

  • Please help me -failed to transmit-

    ı'mcant connecting to whatsapp.ı am using wi-fi ,not  bis.ı have error-java.io.IOException: Failed to transmit

    Hi,
    The SOAP action is similar what you find in generated schema for inserting data in Oracle (see for reference my
    post on table operations on SQL Server). What message type is going into the send port, perhaps tracing can help you to see what messagetype
    is going to send port (you can now use BizTalk CAT Instrumentation Framework Controller to find out, see my latest
    post). My guess is that what you test with in VS with instance of a message is not similar as too what is happening inside
    BTS.
    HTH
    Regards,
    Steef-Jan Wiggers - MVP & MCTS BizTalk Server
    blog: http://soa-thoughts.blogspot.com/
    If this answers your question please mark it accordingly
    BizTalk

  • Please help me: Failed 8310 OS update to OS 4.5 via Desktop Manager

    Hello BB Community,
    As of this morning, I can't use my Blackberry curve 8310......for anything.
    My problems started just as I was about to do a routine USB cable sync between my BB and Outlook.
    I was informed by Desktop Manager v 4.7 that OS 4.5 is available.
    I delayed the sync, and start the update process.
    Everything............. except my BB restart and data reload.......... completed flawlessly.
    Then a message says the update has failed, & the entire thing halts.
    So, I wait a while then pull the USB cable & turn off the BB.
    Turn on......the result was hourglass & white screen.
    Removed & replaced battery....result was hourglass & white screen.
    Restarted PC and connected BB...........result was hourglass & white screen & Desktop Manager does not recognise BB Connection, but Windows XP sees BB media minus folders.
    Reinstalled Desktop manager....... still not recognising BB USB connection on the main screen.
    Even though I have all the information saved in Outlook, I am getting desperate.
    QUESTIONS:
    Is there anything I can do to get my BB curve 8310 operational again?
    Should I consider reloading an OS?
    My phone is unlocked, so not sure if trying to download and reinstall an OS will LOCK the phone.
    The unit's previous startup screen used to show a T-Mobile image.
    Should I download the UK T-Mobile OS upgrade?
    Blessed Regards,
    2121311berry

    Good luck, this will work... I have done it many times.
    Be patient with JLCmder. If it does not work at first, keep trying, I have seen it take 20-25 tries before it "connected".
    Try it with and without the battery inserted if you must.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Caught in failing lion server installation loop

    Hi,
    I tried upgrading my Mac mini server (2010) from Snow Leopard Server to Lion Server. Midway through the installation the process is aborted with the error message "a recovery system can't be created, press restart to return to your previous system installation". The problem is, upon restart it does not boot into the previous system, but instead the Lion installation process starts again and fails with the same  "a recovery system can't be created" message. I am caught in a loop.
    How can I restore my previous working Snow Leopard System?
    Regards,
    Sascha

    Well, it is possible that the Snow Leopard system is still in place.  But for the reason for the error.  I am guessing your original server is running on a mirrored RAID.  If so, then the recovery volume can not be created.  This is a limitation of the corestorage tech and how full disk encryption and dynamic repartitioning work.
    Try this.  When the unit reboots, hold down the option key on a connected keyboard.  When you do so, this will bring you into the boot select window.  See if you SL volume is still present.
    If not, you did remember to snap a backup of the server before you started, right?

  • Please help - CSAuth Fails to load after upgrading from V3.3 to V4.0.1

    We have recently upgraded ACS V3.3 to V4.0.1 on Windows server 2003 SP1. However, now the windows service CSAuth fails to start. There's nothing in the CSAuth log file either.
    If we do clean installs, installing V3.3 from new and then do a upgrade to V4.0.1 on a clean system it works fine.
    The problem seems to be when we install fresh 3.3, then replicate our existing dbase to it, then upgrade to 4.0.
    Does anyone have any ideas - any thoughts would be most welcomed,
    Thanks, in advance,
    Malcolm

    Hi
    When you say nothing in the csauth log... do you mean nothing at all... or nothing that looks like an error?
    Try setting logging to max and seeing where it gets to.
    I suspect there is something in your 3.3 config that doesnt get upgraded corectly. Its impossible for every scenario to be tested - Im not sure how much upgrade testing actually gets done. Probably left until the end of the test cycle.
    Darran

  • Please help - Motherboard fails to boot on power up

    I could really do with some help here please as my motherboard fails to boot on power up.
    I get the message "
    Reboot & select proper boot device or install boot media in selected boot device and press a key"
    When I press a key I get the same message.
    When I press the reset key the system boots into XP ok from the Raid Array.
    BIOS settings are to boot from raid
    HELP PLEASE as I need to get the system stable before I flash the BIOS with and upgrade.
    Thanks
    John
    ps no disks in CD or FDD beforte anyone suggests that :-)

    Quote from: BOSSKILLER on 24-January-08, 22:38:11
    memory not listed? Do a memory check with Memtest86
    My memory is Crucial 2x512MB 240-Pin DIMM PC2-6400 Unbuffered CAS4 (as per my signature)
    I have run memtest86 v1.70 from boot cd and all looks fine.
    What PSU you use too? List details, look for them over PSU sticker
    I have a 450 W  PSU
    spec is
    +3.3v  32A
    +5V     34A
    +12v   18A
    -5V      1A
    -12V     1A
    +5Vsb   2A
    Hope that throws some light on things?
    Thx for helping 
    John

  • PLEASE HELP ME with my itunes installation

    I am so frustrated and have spent hours on this. I have windows XP on an HP computer. I have a 2nd generation click ipod and wanted to put new CD music on it. I had itunes 7 and used it frequently. A message popped up and asked me if I wanted to download the new itunes 8 so I tried, and that was a huge mistake. I have spent hours trying to get this to work. I have read through all the threads and have tried everything: uninstalling my old quicktime, uninstalling my old itunes; going to windows cleanup and removing all that have anything to do with itunes; stopped the popup protection; went to msconfig to set the computer to normal startup mode in general tabs. removed anything to do with itunes or quicktime.
    I installed the 7 version of quicktime first and then the itunes. I get an error message "quicktime failed to initialize (error-2096) reinstall....
    this is the same error message that I got before I did all of the above. I can't speak to anybody at Apple about this and don't know what to do. I had been thinking of getting the new itouch, but now I don't know. I don't even have my itunes anymore (it has been days) and who knows where my library of songs is and if they would still be in itunes somewhere. I am not computer savey and just would like this to be fixed. I would appreciate any simple help I could get to solve this problem.

    I finally got this resolved.

Maybe you are looking for