Convergence error on counting circuit

Ignore all the extra stuff, alot of it was for troubleshooting so it looks messy.  It seems to give me the error when i hook the 7 segment display up to ground. If i just let it run without it connected, the leds light up approprately.  As soon as it's connected, i get convergence.  I tried all the time step stuff too.  No luck.
Attachments:
bcd counter.ms10 ‏197 KB

Here's what I found. Goto SIMULATE>DIGITAL SIMULATION SETTINGS and change itr from IDEAL to REAL. This will require you to place the following power sources on the schematic somewhere: VCC, VDD, DGND, VSS.  This should get it simulating without the error message popping up.
I do not know why the 7-seg displays don't work under the IDEAL Setting, but most of the time I have observed that they don't. Usually when I am going to use them I have to set the simulator up as described above.
I hope this helps
Kittmaster's Component Database
http://ni.kittmaster.com
Have a Nice Day

Similar Messages

  • Table creation Error "Ref Count for this object is higher than 0"

    Hi All
    I have a problem in creation of table using SDK on a button event.  I have a procedure to create tables and fields. If I call this procedure on a menu Event than it works fine but If I call this procedure on a button event than It gives error "Ref count for this object is higher than 0" . I know this error occur When an object does not release after creating a table. but this error occur at when first table is created. My code it given below. plz see and give me your valuable suggestions.
      Dim oUserTablesMD As SAPbobsCOM.UserTablesMD
                Try
                    oUserTablesMD = B1Connections.diCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oUserTables)
                    oUserTablesMD.TableName = "AM_OBIN"
                    oUserTablesMD.TableDescription = "PutAway Table"
                    oUserTablesMD.TableType = BoUTBTableType.bott_Document
                    lRetCode = oUserTablesMD.Add
                    '// check for errors in the process
                    If lRetCode <> 0 Then
                        B1Connections.diCompany.GetLastError(lRetCode, sErrMsg)
                        MsgBox(sErrMsg)
                    Else
                        B1Connections.theAppl.StatusBar.SetText("Table: " & oUserTablesMD.TableName & " was added successfully", BoMessageTime.bmt_Short, BoStatusBarMessageType.smt_Success)
                    End If
                    System.Runtime.InteropServices.Marshal.ReleaseComObject(oUserTablesMD)
                    oUserTablesMD = Nothing
                    GC.Collect()
                    oUserTablesMD = B1Connections.diCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oUserTables)
                    oUserTablesMD.TableName = "AM_BIN1"
                    oUserTablesMD.TableDescription = "PutAway Upper Grid"
                    oUserTablesMD.TableType = BoUTBTableType.bott_DocumentLines
                    lRetCode = oUserTablesMD.Add
                    '// check for errors in the process
                    If lRetCode <> 0 Then
                        If lRetCode = -1 Then
                        Else
                            B1Connections.diCompany.GetLastError(lRetCode, sErrMsg)
                            MsgBox(sErrMsg)
                        End If
                    Else
                        B1Connections.theAppl.StatusBar.SetText("Table: " & oUserTablesMD.TableName & " was added successfully", BoMessageTime.bmt_Short, BoStatusBarMessageType.smt_Success)
                    End If
                    System.Runtime.InteropServices.Marshal.ReleaseComObject(oUserTablesMD)
                    oUserTablesMD = Nothing
                    GC.Collect()
                Catch ex As Exception
                    MsgBox(ex.Message)
                End Try
    Thanks
    Regards
    Gorge

    Hi Gorge,
    The "Ref count error..." usually occurs in case of Meta Data objects not being properly cleared.  And yes, you have got the error in the right place, generally while creating tables / fields / UDOs.  For this, you just need to clear the Meta Data object (At times even DI objects like Record Set) once they are used.
    Eg: Release these objects in the below way in a Finally Block.
    System.Runtime.InteropServices.Marshal.ReleaseComObject(oRecordSet);
    Hope this helps.
    Regards,
    Satish

  • Error: Ref count for this object is higher then 0

    Hello All,
    I am trying to create User Defined Tables in SAP through Coding but while running the code the error "Ref count for this object is higher then 0 " is showing .
    I have created a temporary table in which the Table Description are stored as follows :-
    Create Table Test_Table (TblCode Varchar(30),TblName Varchar(100),TblType int)
    From this table then using recordset i am getting the table details for creation :-
    oRecord.DoQuery("Select TblCode,TblName,TblType From Csv_UDT")
                While Not oRecord.EoF
                    Dim Table_Id As String = oRecord.Fields.Item("TblCode").Value
                    Dim Table_Name As String = oRecord.Fields.Item("TblName").Value
                    Dim Table_Type As integer = oRecord.Fields.Item("TblType").Value
                    Dim oUserTablesMD As SAPbobsCOM.UserTablesMD
                    oUserTablesMD = Class_OprTbl_Main.ocompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oUserTables)
                    '// set the table parameters
                    oUserTablesMD.TableName = Table_Id
                    oUserTablesMD.TableDescription = Table_Name
                    oUserTablesMD.TableType = Table_Type
                    lRetCode = oUserTablesMD.Add
                    If lRetCode <> 0 Then
                        If lRetCode = -1 Then
                        Else
                            Class_OprTbl_Main.ocompany.GetLastError(lRetCode, sErrMsg)
                            Class_OprTbl_Main.SBO_Application.MessageBox(sErrMsg + oUserTablesMD.TableName)
                        End If
                    End If
                    System.Runtime.InteropServices.Marshal.ReleaseComObject(oUserTablesMD)
                    oUserTablesMD = Nothing
    But while running this code the error is coming .
    How to solve this error ........
    Thanks,
    Amit

    First of all, you are not meant to create temporary table in SAP database. SAP have never made an official announcement, but I think they would not be too happy if they saw it and may withdraw support. Just something to be aware of.
    Secondly, your error is very common and you would have found the solution by searching the forum. It is caused by having an open recordset while trying to use a metadata object.
    You will have to change how your code works. You can not use the UserFieldsMD or UserTablesMD object while you have an undisposed recordset object.
    -1120 - Ref count for this object is higher then 0
    Ref count for this object is higher then 0
    Error: Ref count for this object is higher then 0
    Meaning of Error Msg: "Ref count for this object is higher than 0"
    The solution is you must dispose of any recordset object before attempting to use the UserTablesMD object:
    System.Runtime.InteropServices.Marshal.ReleaseComObject(oRecordSet)
    oRecordSet= Nothing
    GC.Collect()
    GC.WaitForPendingFinalizers()

  • Error on client circuit ...

    hello,
    We have the following problem since few days :
    2009/06/04 13:18:38.920 cpe/circuit #0
    Sun Secure Global Desktop Software(4.41) ERROR:
    Read error on client circuit: read(10,<address>,3): (145) Connection timed out
    Does anyone know how to correct this problem ?
    Version SSGD : Sun Secure Global Desktop Software for Intel Solaris 10+ (4.41.907)
    Thanks.

    For questions around Managment Reporter, I would suggest posting them to the following area:
    http://www.microsoftdynamicsforums.com/forums/forum_topics.asp?FID=18&title=gp-frx-forecaster-and-management-reporter
    Thanks
    Heidi Tr - MSFT
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • 000 to 999 counter Circuit LCD Not working Help

    I am trying to outline the design for my project for my circuits class I am pretty new to Multisim, but I have tried everything to get the 7 segment 4 digit LCD and or 3 7 segment Hex to display properly I am not sure if its something wrong with my circuit orthe software. I hooked a logic analyzer to the outputs of the counter 4516B IC so I know that it is counting. There must be a error in the way I am connecting my driver 4543s Please help so that I can begin physically building this circuit and wire wrap.
    Thanks in advance.
    Attachments:
    Final.ms12 ‏695 KB

    Have a look at the attached file; I've isolated the two parts you mentioned so that you can see how they work. Press the key A, B, C and D on you keyboard to control the inputs DA to DD and you can see the results on the 7 segment display.
    U17, I've turned on the symbol pin name so that you can see which pin is which. A1 to G1 are part of the first 7 segment LED.
    Here is a datasheet for the 4543:
    http://www.nxp.com/documents/data_sheet/HEF4543B.pdf
    I hope this helps.
    Tien
    Notes for Branch AE:
    Please reply to This Post within 24 hours
    The US AE is expected to reply to all of your posts within 24 hours. Having this expectation will keep the escalation moving quickly and toward a fast resolution.
    You can also use other communication channels: Phone, Sametime, Lync,etc. to discuss the issue with the US AE. This can help with troubleshooting and quick diagnosis of the issue.
    Click here to provide kudos for a post on this page
    Attachments:
    4543 and Display.ms12 ‏152 KB

  • HB Convergence problem in EM-circuit co-simulation

    Hi,
    It would really be very helpful if someone could take a quick look at the simulation problem in the attached project. I keep getting the simulation errors - "Step size for source stepping has decreased below a minimum allowed value." and "Poor convergence in AC/DC analysis (rel/abs err = 2.000 / 0.000 ) Largest change in node (41) Maximum voltage in node (46) = 53.076 Minimum voltage in node (MET_BASE!_S12_LD1.R1.ET) = -4.337 Largest change in branch (_S12_S1.I16) Maximum current in branch (_S12_S1.I17) = 951.567m Minimum current in branch (MET_BASE!_S12_LD1.R1.Bessel_L1.I) = -1.735" 
    despite trying out most of the suggested solutions listed in the help for the particular error message, the problem persists. What am I doing wrong here in the simulation setup ? 
    Thank you very much in advance.
    Solved!
    Go to Solution.
    Attachments:
    4wattPA_1.zip ‏189 KB

    A few problems with the project:
    The harmonic balance frequency spectrum includes DC (frequency=0), but your s-parameter models do not include data at 0Hz.  So Microwave Office is extrapolating the data down to DC.  The best solution is to add a 0Hz matrix line to the data.  You can also try alternate interpolation techniques in Options > Project Options > Interpolation/Passivity tab; try Rational function and Cartesian, or Linear and Polar.
    We recommend using the APLAC simulator for harmonic balance analyses.  From the menu, select Scripts > Simulation > Convert_Meas_to_APLAC.  The default settings should work fine.
    You only need the "PA LS Sim_Real Ckt_check" schematic. 
    With the EXTRACT block enabled, it is the same as "EM_Ckt Co_Simulation_Nonlinear_Linear".  You can make linear measurements on a nonlinear schematic. (Generally, you should not use extracted EM structures as a SUBCKT in other schematics. If you ever need to do something like this, make a copy of the EM structure to eliminate its association with the originating schematic, and use the copy as a SUBCKT.)
    With the EXTRACT block disabled "PA LS Sim_Real Ckt_check" is almost like "PA Final ckt_Pgain_AM_PM".  You just need to change the port to sweep power.  For measurements that you want to make at 20dBm, rather than with swept power, just choose the desired input power level on the measurements.  (Why did you disable the layout  on the microstrip elements in this schematic?)
    In this project, you can use one top level schematic for all measurements.  We recommend a "testbench" approach when you need to perform different tests (e.g. 2-tone or pulse input, different biasing topologies, etc.).  By this, we mean using the same circuit schematic as a SUBCKT in one or more top level testbench schematics.  This way, you only edit the circuit in one place, and do not have to manually keep duplicates in sync.

  • Sun java convergence error - Message no longer exist

    Hi
    Sun Java(tm) System Messaging Server 7.3-11.01 64bit (built Sep 1 2009)
    libimta.so 7.3-11.01 64bit (built 19:44:36, Sep 1 2009)
    Using /opt/sun/comms/messaging64/config/imta.cnf (not compiled)
    SunOS 5.10 Generic_141445-09 i86pc i386 i86pc
    We moved mailboxes from one server to another. After that we have problems with some accounts. Users see their messages in Sun Java Convergence but can't open and read it. Error appears: Message no longer exist. We tried reconstruct command but it didnt helped.
    Thanks in advance

    luk4s1984 wrote:
    Did you also transfer across the mboxlist database? Were both the source/destination Messaging Server instances down when you performed the move?I didn't move mboxlist database and bouth source and destination instances were up.This method of migrating mailboxes is bound to cause problems. Why did you choose to use this method rather then use the rehostuser command?
    Did you change the users mailhost: parameter?I didn't changed mailhost.Do both the source and destination systems have the same hostname?
    What exact reconstruct command(s) did you run?reconstruct -aIf you run "reconstruct -r user/<uid>" for one of the accounts reporting problems, are any errors reported?
    Check the imap and http log files when the error occurs -- do you see any errors?There is no errors in imap and http logs.Interesting. Which emails return "message no longer exists"?
    Newly delivered (unread) emails, emails delivery prior to migration, emails delivered after migration or some combination of all three?
    Regards,
    Shane.

  • External table causing error on count(*)

    I created an external table, when i do count(*) from the table
    it is giving me the error :
    ERROR at line 1:
    ORA-29913: error in executing ODCIEXTTABLEFETCH callout
    ORA-29400: data cartridge error
    KUP-04018: partial record at end of file
    here is my definition for the file :
    CREATE TABLE ext_tab
    TYPEVENDORCODE VARCHAR2(4000 BYTE),
    VENDORCODE VARCHAR2(4000 BYTE),
    WRKCODEWRKDONEFHA VARCHAR2(4000 BYTE),
    FILLER4 VARCHAR2(4000 BYTE),
    TYPECODEVENDOR VARCHAR2(4000 BYTE),
    FILLER6 VARCHAR2(4000 BYTE),
    FILLER7 VARCHAR2(4000 BYTE),
    TYPE VARCHAR2(4000 BYTE),
    FILLER9 VARCHAR2(4000 BYTE),
    COST VARCHAR2(4000 BYTE),
    PHOTOS VARCHAR2(4000 BYTE),
    SUBJECTTODISCOUNT VARCHAR2(4000 BYTE),
    FHAREGION VARCHAR2(4000 BYTE),
    AVERAGECOST VARCHAR2(4000 BYTE),
    FILLER15 VARCHAR2(4000 BYTE),
    FILLER16 VARCHAR2(4000 BYTE),
    FILLER17 VARCHAR2(4000 BYTE)
    ORGANIZATION EXTERNAL
    ( TYPE ORACLE_LOADER
    DEFAULT DIRECTORY dir1
    ACCESS PARAMETERS
    ( RECORDS FIXED 512
    SKIP 1
    READSIZE 3840000
    BADFILE 'STG0_FILE71_EXT.BAD'
    LOGFILE 'STG0_FILE71_EXT.LOG'
    FIELDS TERMINATED BY 0x'0A'
    NOTRIM
    MISSING FIELD VALUES ARE NULL
    REJECT ROWS WITH ALL NULL FIELDS
    typevendorcode CHAR(4000),
    vendorcode CHAR(4000),
    wrkcodewrkdonefha CHAR(4000),
    filler4 CHAR(4000),
    typecodevendor CHAR(4000),
    filler6 CHAR(4000),
    filler7 CHAR(4000),
    type CHAR(4000),
    filler9 CHAR(4000),
    cost CHAR(4000),
    photos CHAR(4000),
    subjecttodiscount CHAR(4000),
    fharegion CHAR(4000),
    averagecost CHAR(4000),
    filler15 CHAR(4000),
    filler16 CHAR(4000),
    filler17 CHAR(4000)
    LOCATION (dir1:'abc.DAT.raw')
    REJECT LIMIT UNLIMITED
    NOPARALLEL
    NOMONITORING;
    any thoughts?
    billu

    I don't think there is any way to modify your table definition to accommodate the (apparent) fact that missing values generate nothing in the file you want to load.
    It seems that you are saying that the format of the file is not actually fixed in any way, that is has some, but not all values, and that mising values are just skipped.
    Assuming for a moment that the fields are delimited bt a pipe symbol (|) then it seems to me that you have this situation :
    Defined file format:
    ID|name|age|addresswhich would imply the file should look like:
    123|John|42|123 MainSt.
    456|Fred|39|45 Pine St.but sometimes you get:
    12345|27|12 Elm St.If this is the case, there is no possible way that the file can be reliably parsed since there is no consistnet format. If field values could be missing, you need to get whoever generates the file to do something more like:
    12345||27|12 Elm St.That is, put in the field delimiters even if there is no value for the field.
    John

  • How to solve the error "Ref Count for this object is greater then 0"

    Hi,
    I'm trying to add UDF at runtime to an already created UDT which is of No Object Type.
    my code is as follows:
    dim oUserFieldsMD As SAPbobsCOM.UserFieldsMD
    oUserFieldsMD = ocompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oUserFields)
    oUserFieldsMD.TableName = "@TI_ADDCODES"
    oUserFieldsMD.Name = codetoinsert
    oUserFieldsMD.Description = desctoinsert
      'Add the field to the table
       lRetCode = oUserFieldsMD.Add
       If lRetCode <> 0 Then
       ocompany.GetLastError(lErrCode, sErrMsg)
       MsgBox(sErrMsg)
        Else
        MsgBox("Field: '" & oUserFieldsMD.Name & "' was added successfuly to " & oUserFieldsMD.TableName & " Table")
        End If
    I got error msg as "Ref Count for this object is greater then 0" and error code is -1120
    how to rectify it?
    Thanks in advance!!!

    Hi,
    Have you searched the forum? You may check this first: error -1120 when adding UserTableMD.
    Thanks,
    Gordon

  • Error in counting.

    Hi,
    I am using the measure buffered period vi from LV 6.0 to measure the time averaged period of a square wave. I am using the signal as the gate and the internal clock as the timebase with a frequency of 100KHz. The problem i am having is that the VI does not produce the right output. About 60% of the time the value is right but the other 40% it is wrong and it seems that it is missing a pulse from the signal and counts double the period/ half the frequency. I am not sure why this is happening. Also this error gets worse as i increase the time base. I have grounded the signal appropriately so that shouldnt be an issue. Is there any way to rectify it? Is there some technique using the other counter i have on the board (pci-6052e) to resolve this.
    Thanks in advance,
    Shyam Menon.

    Hi Shane,
    I should have done this before but i am posting a section of my code now. The top parts are about scanning the analog channels connected to my scxi 1120 module and the bottom part is for scanning the counter pin. Since i read the pci-6052e has 3 dma modules, i shouldnt hopefully have problems with data transfer. Another thing i found is that i need to have sufficient delay time in the read buffer vi so that all the data gets written to the file otherwise i am missing some of the data. Hope this helps you to understand my problem better.
    Thanks,
    Shyam.
    Attachments:
    Mod_Engine_VI.vi ‏131 KB

  • MSS Error Page Counter is not set.

    Hi,
         I am using EP 7.01 and ECC 6.0 I am getting error in MSS-->Inbox and selecting the option PCR  contract agreement generation ,then getting the error like Page counter is not set. How to resolve this error? Can someone give the solution?
    Thanks,
    Kundan

    Goto--> Main Program.
    Then Goto->Attributes.
    You can change the unicode checks active flag here

  • 1086  Syntax Error (on Counter.fla)

    Can anyone elaborate as to why I am getting an error with
    this "counter script" (counts down Years, Months, Days, Hours,
    Minutes, Seconds)? The error is "
    1086: Syntax error: expecting semicolon before months" (Line
    50), but after doing research on the error number and looking at
    the actual error line, it appears that it may be something other
    which I am not seeing?
    HERE is the Action Script I am using:
    this.addEventListener(Event.ENTER_FRAME,onEF);
    function onEF(evt:Event):void {
    var today:Date = new Date();
    var currentYear = today.getFullYear();
    var currentTime = today.getTime();
    var targetDate:Date = new Date(2011,10,16);
    var targetTime = targetDate.getTime();
    if (targetTime - currentTime > 0) {
    var timeLeft = targetTime - currentTime;
    } else {
    var timeLeft = currentTime - targetTime;
    var sec = Math.floor(timeLeft/1000);
    var min = Math.floor(sec/60);
    var hrs = Math.floor(min/60);
    var days = Math.floor(hrs/24);
    var months = Math.floor((H+L-7*M+114)/31);
    var years = Math.floor(days/365);
    sec = String(sec % 60);
    if (sec.length < 2) {
    sec = "0" + sec;
    min = String(min % 60);
    if (min.length < 2) {
    min = "0" + min;
    hrs = String(hrs % 24);
    if (hrs.length < 2) {
    hrs = "0" + hrs;
    days = String(days);
    if (days.length < 2) {
    days = "0" + days;
    months = String(months % 12);
    if (months.length < 2) {
    months = "0" + months;
    years = String(years);
    if (years.length < 2) {
    years = "0" + years;
    var counter:String = years + ":" months + ":" days + ":" +
    hrs + ":" + min + ":" + sec;
    time_txt.text = counter;
    }

    Thanks,
    kglad, for the quick and helpful response...
    I can't believe I didn't see that!
    Seems now I am getting another error on Line 22 -
    1120: Access of undefined property H, L, and M.
    Trying to correct that but if you have a better solution
    please feel free to share...
    Thanks again, regardless!
    A.J.

  • 200301 error for counter update

    Hi everyone,
    I am running a PID loop to control temperature in a box. The counter closes a solid state relay and thus powers my heater. I use a PCI 6221 card.
    I keep getting the following error:
    Error - 200301 occurred at DAQmx Write (Counter Frequency 1Chan 1Samp).vi:1
    Possible reason(s):
    Measurements: Cannot update the Pulse Generation property.
    The pulse generation with previous property settings must complete a full cycle before the property can be updated.
    The code consists of a loop running every 100 msec which adjusts the duty cycle via a property node and then performs a DaqmxWrite on the same channel to force the new property settings to take effect. I have used a Daqmx Clear Task at the end of the vi, but the error occurs randomly every now and then. The pulsing is at 10Hz.
    I believe it might have something to do with my computer, since any time I open another program (Firefox for example, or Origin) while the program is running, it gives the error. I think maybe the computer cant handle all the tasks at once?
    Any ideas what could be wrong here? I've attached my vi below... it could be the PCI card...
    Attachments:
    PIDPWMtemperature.vi ‏74 KB

    Hi HessenMob,
    It looks like your VI is based on an example from the example finder (help => find examples => browse => Hardware in and output => DAQmx => control => General => PWM counter output.vi ). With the example from the example finder they are synchronizing the counter to the AI sample clock. The while loop is waiting until the next sample from the sample clock, so also your loop runs at the specified rate.
    The PWM will only be updated (so counter task is hardware timed single point) when the value of the PWM signal needs to be changed. With continuous you need to write fats enough values to the counter.
    Best regards,
    Martijn S
    Applications Engineer
    NI Netherlands

  • Get-Counter failing with error : A counter with a negative denominator value was detected

    Hi Folks,
    I have a weird situation where I am sampling the CPU usage for small duration and taking an average of the usage using the 'Get-Counter' command. This command seems to work well when tried directly in the powershell prompt. However, when we use the same
    command in script, the following error throws up, 
    Starting process to consume CPU cycles
    Get-Counter : A counter with a negative denominator value was detected.
    At C:\Monitor.ps1:100 char:29
    + $sys_cpu_obj = Get-Counter <<<< '\Processor(_Total)\% Processor Time'
    + CategoryInfo : InvalidResult: (:) [Get-Counter], Exception
    + FullyQualifiedErrorId : CounterApiError,Microsoft.PowerShell.Commands.GetCounterCommand
    PS C:\> Get-Counter '\Processor(_Total)\% Processor Time'
    Timestamp CounterSamples
    2/29/2012 9:56:47 AM \\vms1\processor(_total)\% processor time :
    26.2817087701422
    PS C:\>
    Here is the routine that is being executed, 
    function sample-CPUUsage([int] $iterations=3,[int] $sampling_interval=2){
    [long] $sum=0
    # Collect an average of physical memory usage
    for($i=0; $i -lt $iterations; $i++){
    $sys_cpu_obj = Get-Counter '\Processor(_Total)\% Processor Time'
    [long] $cpu_usage=$($sys_cpu_obj.CounterSamples).CookedValue
    $sum+=$cpu_usage
    Start-Sleep -Seconds $sampling_interval
    [long] $sum=[long] ($sum/$iterations)
    return $sum
    Why am I getting this error when running the same command from the script ?
    -Pranav

    Hi,
    I cannot reproduce your issue either. It seems like that this issue a issue related with your environment.
    Based on the error message "A counter with a negative denominator value was detected", it seems like that
    $iterations sometimes is treated as a negative number. How about change
    [long] $sum=[long]
    ($sum/$iterations)
     as
    [long] $sum=[system.math]::abs([long]
    ($sum/$iterations))
    Best Regards,
    Yan Li 
    Yan Li
    TechNet Community Support

  • Convergence Error : The request to the server has failed.

    Hi,
    While composing the email, i have an error pop-ip saying " The request to the server has failed. The server may be down or the request contains invalid arguments. Please try the action again after a short time"
    Our convergence version is
    bash-3.00# ./iwcadmin -V
    Sun Convergence 1.0-4.01 (built December 8 2008 - 14:58:01)
    Could it due to the timeout value being set, if yes where to find it.
    Thank you,
    Roy

    convergence wrote:
    I have this from the watcher
    /var/opt/sun/comms/messaging64/log/These are the messaging server logs, not application server logs. The application server log file is located by default at:
    /opt/SUNWappserver/domains/domain1/logs/server.log
    Regards,
    Shane.

Maybe you are looking for

  • I tried validating my fonts and there are a whole bunch of fonts that have problems. How do I fix these problems?

    I was reading this article and it said that you should validate your fonts occasionally. I did and a whole bunch fonts came up with problems. How do I fix these problems?

  • How to install SharePoint server 2013 in windows server 2012 R2

    Hi, I have SharePoint server 2013, and I want to install it on windows server 2012 R2 version. Can you guide me on how to install it?, or you if you got the download link of the full product of the latest release of SharePoint 2013 with sp1, please g

  • Execution time issues with SU01 demo script

    Having worked with Scripting in a Box for a while now I wanted to try out the examples there. I read FM: SO_USER_LIST_READ or another one explaining why my attempt to narrow the returned users failed (Craig, did you find out why the functionality was

  • Java EXE - Passing Attributes

    Hi, I have a java application that performs many functions. I have compiled this application into an exe file. I would like to automate things. E.g. using Windows Scheduler to run the app at 2am - execute function1, 4am - execute funtion2. etc.. Is i

  • CSS11501 ssl-server urlrewrite Not Working

    I have a CSS11501 with the on-board SSL module. The device is configured with the relevant ss-proxy-list,ssl services and content rules to receive https sessions, decrypt them and pass them onto backend http Web servers - this is working ok. However,