Error Bad guess(es) on Hp 50g

Hi,
when i try to use solve complex numbers on solve equation this msg is show to me 'error bad guess(es) 
one example is...
'y = G+B*i'
the 'i'  is the imaginary number (B ) and the real number is G 
so i put on solve equantion G  = 5  and  B = 0,003 and try to solve 'Y', i try a loot of things but the same msg of error is show to me, i dont know if i need to mark some flags  to do this work... help me please

Hi,
The numeric solver has trouble with complex numbers.
Also a note, the 50g uses complex numbers as a ordered pair (X;Y) where in rectangular mode X=real part and Y=imaginary part, in polar mode it is (r;theta) with an angle symbol before the theta.
You can use complex numbers in variables, so you can store the value of B as (0;0,003) and use the equation Y=G+B instead of Y=G+B*i.
to get a solution:
You can use EVAL to get the answer. Store the values in the required variables (5 in G and (0;0,003) in B), except the one to be solved for.
Then use EVAL,
e.g. EVAL(Y=G+B)
or on the RPN stack:
1:    Y=G+B
then press EVAL key.
for more comples equations, first solve for required variable using the symbolic solver, e.g.:
Y=2*G+B/3 and solve for G where Y=(5;0,5) and B=(3;0,5)
Use SOLVE (not SOLVEVX) from the symbolic solver menu:
SOLVE('Y=2*G+B/3','G')
or on the RPN stack:
2:    Y=2*G+B/3
1:    G
then select SOLVE from symbolic solver menu.
You will egt G=-(,166666666667*B-,5*Y)
Now store (5;0,5) in Y and (3;0,5) in B and use EVAL:
G=(2, ; ,166666666666)
Additional note: fraction mark set to , (comma). If fraction mark . (dot) is used the complex pair will show as ( X , Y ) and the last answer will show as G=(2. , .166666666666).
Note: I do not work for HP, I just like playing with calculators :-)

Similar Messages

  • [Solved]{scheme} Error: (/) bad argument type: # unspecified

    I'm working through Structure and Interpretation of Computer Programs, and I've run into some behaviour I don't understand.
    The code:
    (define (average x y)
    (/ (+ x y) 2))
    (define (refine r g)
    (print "["r"]["g"]")
    (average (/ r g) g))
    (define (sqrt-guess rad guess)
    (define oldguess guess)
    (define guess (refine rad guess)) # problem line
    (if (= oldguess guess)
    guess
    (sqrt-guess rad guess)))
    It seems that when refine is called in the problem line the second argument is not being 'received' as I would expect.
    #;1> (sqrt-guess 9 1)
    [9][#<unspecified>]
    Error: (/) bad argument type: #<unspecified>
    Call history:
    <syntax> (sqrt-guess 9 1)
    <eval> (sqrt-guess 9 1)
    <eval> [sqrt-guess] (refine r g)
    <eval> [refine] (print "[" r "][" g "]")
    <eval> [refine] (average (/ r g) g)
    <eval> [refine] (/ r g) <--
    I tried (define guess (refine rad oldguess)), same outcome. At this point, I figure it's some consequence of applicative-order processing that I don't understand. But things got more interesting when I added a standalone call to refine:
    (define (sqrt-guess rad guess)
    (define oldguess guess)
    (refine rad oldguess) # new line
    (define guess (refine rad oldguess)) # (define guess (refine rad guess)) also works
    (if (= oldguess guess)
    guess
    (sqrt-guess rad guess)))
    Now the code runs as expected and returns an answer. However, if I change "oldguess" to "guess" in the first refine line:
    (define (sqrt-guess rad guess)
    (define oldguess guess)
    (refine rad guess)
    (define guess (refine rad oldguess)) # (define guess (refine rad guess)) also fails
    (if (= oldguess guess)
    guess
    (sqrt-guess rad guess)))
    the original error re-occurrs. In every case the 'standalone' call to refine gets both arguments as expected; it's the one in "define guess" that has issues.
    I'm not looking for help fixing the code, but for an explanation/breakdown of what's going on. Thanks.
    Last edited by alphaniner (2013-06-20 13:20:34)

    I believe that redefining 'guess' is confusing the compiler.
    You're right. That was my first thought too, but I swear I tried something like (define foo (refine rad guess)) which didn't work either. I just tried it again and it works just fine.
    I haven't been introduced to let yet, and the way it's parenthesized I don't really understand how it works. I think of let in bash terms (ie. let x++) so maybe that's my problem. Anyway, I'll wait 'till I come across it in the text.
    Using your suggestions I got it to work using only stuff I know:
    (define (sqrt-guess rad guess)
    (define newguess (refine rad guess))
    (if (= newguess guess)
    guess
    (sqrt-guess rad newguess)))
    Definitely cleaner. Thanks!

  • LIBGWT_CAT:1313: ERROR: Bad message

    I am trying to connect a clarifyCRM 11.5 based system from BEA WebLogic 7.0 Sp2
    through WebLogic Tuxedo Connector.
    I am getting a "Bad Message" error on the clarify side. PLease let me know what
    might be the error.
    Details are as follows:
    ================
    1. BEA Weblogic is installed on Win2k and Clarify is installed on Solaris8.
    2. On Solaris8 machine, the ULog shows the following error:
    ==============================================
    150353.jupiter!GWTDOMAIN.8761.1.0: LIBGWT_CAT:1129: INFO: Connection established
    with domain (domainid=<BEA001
    )150354.jupiter!GWTDOMAIN.8761.1.0: LIBGWT_CAT:1313: ERROR: Bad message from BEA001.
    Closing file descriptor
    150354.jupiter!GWTDOMAIN.8761.1.0: LIBGWT_CAT:1130: INFO: Disconnected from domain
    (domainid=<BEA001>)
    150354.jupiter!GWTDOMAIN.8761.1.0: LIBGWT_CAT:1354: INFO: Retrying domain (domainid=<BEA001>)
    every 60 seconds
    ==========================================================
    3.The configuration for WTC in config.xml :
    ===========================================================
    <WTCServer Name="MyWTCServer" Targets="myserver">
    <WTCImport LocalAccessPoint="BEA001"
    Name="WTCImport-1056499621875"
    RemoteAccessPointList="CLAR115" RemoteName="CB_EXESUB" ResourceName="MyImportedService"/>
    <WTCLocalTuxDom AccessPoint="BEA001" AccessPointId="BEA001"
    ConnectionPolicy="ON_DEMAND" MaxRetries="5000000"
    NWAddr="//172.24.3.208:7001" Name="WTCLocalTuxDom-1055806963906"/>
    <WTCRemoteTuxDom AccessPoint="CLAR115" AccessPointId="CLAR115"
    ConnectionPolicy="ON_DEMAND" LocalAccessPoint="BEA001"
    NWAddr="//10.3.0.14:53401" Name="WTCRemoteTuxDom-1056499341890"/>
    </WTCServer>
    ==================================================================
    4. DMConfig on on clarify machine:
    ==================================================
    # DMCONFIG FILE
    *DM_RESOURCES
         VERSION="U22"
    *DM_LOCAL
    CLAR115     GWGRP=GWDOM
              TYPE="TDOMAIN"
              DOMAINID="CLAR115"
         AUDITLOG="/u02/program/tuxedo/clr_115/AUDITLOG"
         BLOCKTIME=10
         CONNECTION_POLICY="ON_DEMAND"
         DMTLOGDEV="/u02/program/tuxedo/clr_115/DMTLOG"
         DMTLOGNAME="DMTLOG_TDOM"
         MAXDATALEN=56
         MAXRACCESSPOINT=89
         MAXTRAN=100
         BLOB_SHM_SIZE=1000000
    *DM_REMOTE
    BEA001     TYPE=TDOMAIN
         DOMAINID="BEA001"
    *DM_TDOMAIN
    BEA001     NWADDR="//172.24.3.208:7001"
    #     NWDEVICE="/dev/tcp"
    CLAR115     NWADDR="//jupiter:53401"
    #     NWDEVICE="/dev/tcp"
    *DM_LOCAL_SERVICES
    CB_EXESUB     LDOM="CLAR115"
    *DM_REMOTE_SERVICES
    ===============================================================

    Bhaskar,
    The ULOG message about "Retrying" does not go with a configuration
    of "ON_DEMAND". The best guess is that BEA001 is not really communicating
    with whom you think. Two things to look at:
    1)Check that "jupiter"=="10.3.0.14"
    2) Do a dmunloadcf on the CLAR115 domain and see if the domain that is
    booted
    is what you expected from your configuration.
    Bob Finan
    Bhaskar wrote:
    Bob,
    No success by changing port numbers.
    However after some more experimentation I am getting the following:
    I installed tuxedo on another Windows 2000 m/c. (say TUX001). If I call the Clarify
    domain as CLAR115 and BEA domain as BEA001 then
    a) I am able to communicate between CLAR115 and TUX001
    b) I am able to communicate between TUX001 and BEA001 by using WTC in BEA001
    c) But, I am still not able to communicate between BEA001 and CLAR115. I still
    obtain a BAD Message error on the CLAR115 side
    Quite puzzled with this.
    Regards
    Bhaskar
    "Bhaskar" <[email protected]> wrote:
    Thanks Bob,
    I would surely try with using another port.
    Currently,I am using a different port for the WLS admin server. Secondly,
    in case
    I was using a port that was already being used by some other server,
    one of the
    two servers would not have come up.
    Is there any method to read the ULogs for the Local tuxedo domain on
    WLS end.
    thanks and regards
    Bhaskar
    Bob Finan <[email protected]> wrote:
    Bhaskar,
    You are probably using the //172.24.3.208:7001 port for other purposes
    and this is
    causing the problem(e.g. 7001 is the default WLS admin port).Try
    changing the
    NWAddr port number for the WTCLocalTuxDom..
    Bob Finan
    Bhaskar wrote:
    I am trying to connect a clarifyCRM 11.5 based system from BEA WebLogic
    7.0 Sp2
    through WebLogic Tuxedo Connector.
    I am getting a "Bad Message" error on the clarify side. PLease let
    me
    know what
    might be the error.
    Details are as follows:
    ================
    1. BEA Weblogic is installed on Win2k and Clarify is installed on Solaris8.
    2. On Solaris8 machine, the ULog shows the following error:
    ==============================================
    150353.jupiter!GWTDOMAIN.8761.1.0: LIBGWT_CAT:1129: INFO: Connection
    established
    with domain (domainid=<BEA001
    150354.jupiter!GWTDOMAIN.8761.1.0: LIBGWT_CAT:1313: ERROR: Bad message
    from BEA001.
    Closing file descriptor
    150354.jupiter!GWTDOMAIN.8761.1.0: LIBGWT_CAT:1130: INFO: Disconnected
    from domain
    (domainid=<BEA001>)
    150354.jupiter!GWTDOMAIN.8761.1.0: LIBGWT_CAT:1354: INFO: Retrying
    domain
    (domainid=<BEA001>)
    every 60 seconds
    ==========================================================
    3.The configuration for WTC in config.xml :
    ===========================================================
    <WTCServer Name="MyWTCServer" Targets="myserver">
    <WTCImport LocalAccessPoint="BEA001"
    Name="WTCImport-1056499621875"
    RemoteAccessPointList="CLAR115" RemoteName="CB_EXESUB"
    ResourceName="MyImportedService"/>
    <WTCLocalTuxDom AccessPoint="BEA001" AccessPointId="BEA001"
    ConnectionPolicy="ON_DEMAND" MaxRetries="5000000"
    NWAddr="//172.24.3.208:7001" Name="WTCLocalTuxDom-1055806963906"/>
    <WTCRemoteTuxDom AccessPoint="CLAR115" AccessPointId="CLAR115"
    ConnectionPolicy="ON_DEMAND" LocalAccessPoint="BEA001"
    NWAddr="//10.3.0.14:53401" Name="WTCRemoteTuxDom-1056499341890"/>
    </WTCServer>
    ==================================================================
    4. DMConfig on on clarify machine:
    ==================================================
    # DMCONFIG FILE
    *DM_RESOURCES
         VERSION="U22"
    *DM_LOCAL
    CLAR115     GWGRP=GWDOM
              TYPE="TDOMAIN"
              DOMAINID="CLAR115"
         AUDITLOG="/u02/program/tuxedo/clr_115/AUDITLOG"
         BLOCKTIME=10
         CONNECTION_POLICY="ON_DEMAND"
         DMTLOGDEV="/u02/program/tuxedo/clr_115/DMTLOG"
         DMTLOGNAME="DMTLOG_TDOM"
         MAXDATALEN=56
         MAXRACCESSPOINT=89
         MAXTRAN=100
         BLOB_SHM_SIZE=1000000
    *DM_REMOTE
    BEA001     TYPE=TDOMAIN
         DOMAINID="BEA001"
    *DM_TDOMAIN
    BEA001     NWADDR="//172.24.3.208:7001"
    #     NWDEVICE="/dev/tcp"
    CLAR115     NWADDR="//jupiter:53401"
    #     NWDEVICE="/dev/tcp"
    *DM_LOCAL_SERVICES
    CB_EXESUB     LDOM="CLAR115"
    *DM_REMOTE_SERVICES
    ===============================================================
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <title></title>
    </head>
    <body>
    Bhaskar,<br>
    You are probably using the //172.24.3.208:7001 port for other purposes
    and
    this is<br>
    causing the problem(e.g. 7001 is the default WLS admin port).Try changing
    the <br>
    NWAddr port number for the WTCLocalTuxDom..<br>
    Bob Finan<br>
    <br>
    Bhaskar wrote:<br>
    <blockquote type="cite" cite="[email protected]">
    <pre wrap="">I am trying to connect a clarifyCRM 11.5 based system
    from BEA WebLogic 7.0 Sp2
    through WebLogic Tuxedo Connector.
    I am getting a "Bad Message" error on the clarify side. PLease let me
    know what
    might be the error.
    Details are as follows:
    ================
    1. BEA Weblogic is installed on Win2k and Clarify is installed on Solaris8.
    2. On Solaris8 machine, the ULog shows the following error:
    ==============================================
    150353.jupiter!GWTDOMAIN.8761.1.0: LIBGWT_CAT:1129: INFO: Connection
    established
    with domain (domainid=<BEA001
    </pre>
    <blockquote type="cite">
    <pre wrap="">)
    </pre>
    </blockquote>
    <pre wrap=""><!---->150354.jupiter!GWTDOMAIN.8761.1.0: LIBGWT_CAT:1313:
    ERROR: Bad message from BEA001.
    Closing file descriptor
    150354.jupiter!GWTDOMAIN.8761.1.0: LIBGWT_CAT:1130: INFO: Disconnected
    from domain
    (domainid=<BEA001>)
    150354.jupiter!GWTDOMAIN.8761.1.0: LIBGWT_CAT:1354: INFO: Retrying domain
    (domainid=<BEA001>)
    every 60 seconds
    ==========================================================
    3.The configuration for WTC in config.xml :
    ===========================================================
    <WTCServer Name="MyWTCServer" Targets="myserver">
    <WTCImport LocalAccessPoint="BEA001"
    Name="WTCImport-1056499621875"
    RemoteAccessPointList="CLAR115" RemoteName="CB_EXESUB" ResourceName="MyImportedService"/>
    <WTCLocalTuxDom AccessPoint="BEA001" AccessPointId="BEA001"
    ConnectionPolicy="ON_DEMAND" MaxRetries="5000000"
    NWAddr="//172.24.3.208:7001" Name="WTCLocalTuxDom-1055806963906"/>
    <WTCRemoteTuxDom AccessPoint="CLAR115" AccessPointId="CLAR115"
    ConnectionPolicy="ON_DEMAND" LocalAccessPoint="BEA001"
    NWAddr="//10.3.0.14:53401" Name="WTCRemoteTuxDom-1056499341890"/>
    </WTCServer>
    ==================================================================
    4. DMConfig on on clarify machine:
    ==================================================
    # DMCONFIG FILE
    *DM_RESOURCES
         VERSION="U22"
    *DM_LOCAL
    CLAR115     GWGRP=GWDOM
              TYPE="TDOMAIN"
              DOMAINID="CLAR115"
         AUDITLOG="/u02/program/tuxedo/clr_115/AUDITLOG"
         BLOCKTIME=10
         CONNECTION_POLICY="ON_DEMAND"
         DMTLOGDEV="/u02/program/tuxedo/clr_115/DMTLOG"
         DMTLOGNAME="DMTLOG_TDOM"
         MAXDATALEN=56
         MAXRACCESSPOINT=89
         MAXTRAN=100
         BLOB_SHM_SIZE=1000000
    *DM_REMOTE
    BEA001     TYPE=TDOMAIN
         DOMAINID="BEA001"
    *DM_TDOMAIN
    BEA001     NWADDR="//172.24.3.208:7001"
    #     NWDEVICE="/dev/tcp"
    CLAR115     NWADDR="//jupiter:53401"
    #     NWDEVICE="/dev/tcp"
    *DM_LOCAL_SERVICES
    CB_EXESUB     LDOM="CLAR115"
    *DM_REMOTE_SERVICES
    ===============================================================
    </pre>
    </blockquote>
    <br>
    </body>
    </html>
    [att1.html]

  • KDE Printer Manager fails with "client-error-bad-request"

    I'm having some trouble with printing on my system. The KDE printer manager shows "client-error-bad-request" and no other information. When I run the KCM from the command line, I also get "kcmshell(17286) KCupsRequest::serverError: status unrecognised:  1024" on the console. I wasn't able to find any useful information on this issue on google or these forums; not even what the 1024 status code means. It seems to me that this may be a bug in the kcm_printer_manager module, but I'd like to rule out other possibilities first. Unfortunately, I don't know what to try from here. I'll provide as much potentially relevant information as I can think of below.
    Changes since last successful print job:
    Multiple updates to KDE packages
    Update to cups that changed systemd unit file names.
    Stopped and disbled old units
    daemon-reload
    Enable and start new units
    Other updates to cups since then, if I recall correctly.
    Packages and versions:
    kdeutils-print-manager 4.14.3-1 (owns kcm_printer_manager module for kcmshell4)
    kdebase-runtime 4.14.3-1 (owns kcmshell4 binary)
    cups 2.0.1-1
    libcups 2.0.1-1
    systemd 218-1
    linux 3.17.6-1
    Let me know if any other information might be helpful.

    Anyone please help.
    Thanks,
    Orton

  • A message will pop up (Exc in ev handl: Error: Bad NPObject as private data!) and the tab I was on will close out and reopen in a new window. Why is it happening and how do I stop it?

    Okay, I will have a window open with 4 tabs open. At first, everything is fine, but after a day or so, a message will pop up on screen saying "'''Exc in ev handl: Error: Bad NPObject as private data!'''" and after you close it out, the tab you were on will close and reopen in it's own window. I then have to shut down all both old and new windows and open a new window with my original 4 tabs again. It will work fine until a few days pass and it starts over again.

    This issue can be caused by the McAfee Site Advisor extension
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

  • After updating Firefox I am getting this message any time I do anything "Exc in ev handl:Error: Bad NPObject as private data"

    This error happens each time I use Mozilla. especially when I click on an extension or try to work in any of my e-mail accounts (Yahoo, Gmail, or RCN). Sometimes I am able to continue by just clicking OK and other times it prevents me from completing my task. This started happening right after I downloaded and installed your latest version of Firefox. I see others are having the same problem. Error message is "Exc in ev handl:Error: Bad NPObject as private data"

    That issue can be caused by the McAfee Site Advisor extension
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

  • Parameter error - bad bind variable in a Package..!!

    Hello All
    i am tring to create a security package with in one procedure i am trying to handle the number of times the user enters the wrong user name or password:
    -i created a parameter on my login form and add it to my procedure and it works just fine,But when i tried to copy the same procedure the package inside my library can't recognize that Parameter.
    -It gives me error : bad bind variable.
    The code is as follows.
    PARAMETER.COUNT := :PARAMETER.COUNT + 1;
    IF :PARAMETER.COUNT > 3 THEN
    WRONG_ALERT('WRONG_PASS',' ur number of trials has expiered the form will be closed ');
    EXIT_FORM;
    END IF;
    Can anyboady help me pls.
    Regards,
    Abdetu.

    Super,It works Just fine.
    Thanks Gerd,
    That's make me decide that if i have the following statatment for example:
    IF :USER_CODE IS NULL THEN .........
    I have to change it to :
    IF copy (name_in ('USER_CODE' )) IS NULL THEN..........
    But,if i have the following select statment :
    ==============================
         SELECT USER_CODE , USER_PASS WORD
         INTO :GLOBAL.USER_CODE , :GLOBAL.USER_PASS WORD
         FROM APP_USERS
         WHERE USER_CODE = :USER_CODE
         AND USER_PASS WORD= :USER_PASS WORD;
    Should i transfer it to the following:
    =========================
    SELECT USER_CODE , USER_PASS WORD
    INTO     COPY(NAME_IN ('GLOBAL.usr_code'), COPY(NAME_IN ('GLOBAL.PASSWORD')
    FROM APP_USERS
         WHERE USER_CODE = COPY(NAME_IN ('USER_CODE' )
    AND USER_PASS WORD=COPY(NAME_IN ('USER_PASS WORD');
    Pls help me,it's my first time ...
    Thanks in advance.
    Regards,
    Abdetu.

  • B2B-50079 Transport Error : Bad Message

    Hi All,
    I have an SFTP outbound TPA which is used to transfer a PGP file from our internal system to TP vendor.
    So the transfer is as follows B2B(Internal System) -> WebServer(acts as proxy while connecting to third party server)-->ThirdParty.
    The use proxy is checked in the Channels of the Trading Partner.
    The transfer fails while transfering the file to the TP with the below error.
    "B2B-50079 Transport Error : Bad Message" I have manually sftpd from web server to the TP server and it is working absolutely fine.
    Also i have verified that the certificate and host,port username details to connect to the TP are correct.
    Please let us know on what the problem area could be.
    There is no problem with file naming convention since the file is getting picked up by the listening channel and also we have checked the preserve file name option in the TP channel.
    Any help on this is much appreciated.
    Thanks,
    Naveen Kumar T.

    Thanks Anuj for the response.
    We already have the required patch, also its working fine with other Trading partners which uses SFTP. We are facing this issue with only one Trading partner and the same is working fine with 10g B2B but not with 11g.
    Please let us know if there is any other configurations which we can check.
    Thanks,
    Sirisha

  • 10g declare :global variable error (bad bind variable)

    In a 10g form, I tried this code in the pl/sql block and in the spec of a library package
    begin
       :global.config := 'x';
    ...upon compile, I get an error
    "bad bind variable"
    ...encountered the symbol "GLOBAL" when expecting one of the following...It doesn't like :GLOBAL.variablename := 'x';
    What am I doing wrong?
    Thank you.

    globals are allowed in librarys, but in libraries you have to use COPY and NAME_IN to access objects you access via :-logic in forms-modules, e.g. setting the global would be like
    COPY('X', 'GLOBAL.CONFIG');Edited by: aweiden on 29.10.2008 19:33

  • Image Item - Error: bad bind variable

    Hi All,
    I select a Image field from a table and set it to a Image Item in a form 10g. But I have error "Bad bind variable"
    Here is source code in my Post_query trigger:
    SELECT cust_sign INTO :dema_depo.dema_depo_sign
    FROM cust_sign WHERE custcod = :dema_depo.cust_sign_custcod;
    I would like to learn if you have any solution or document to solve my problem.
    Thanks very much for your help!
    BACH

    Dear Sir/Madam,
    I'm reading chapter 16: Working with Images - Oracle Forms Developer's Guide and found that cannot write a SELECT statement to select a a LONG RAW value INTO an image item.
    Thus, any the other way to fetch fr a DB LONG RAW value INTO an image item ???
    Many thanks!
    BACH

  • Exc in ev handl: Error: Bad NPObject as private data! How do I ge rid of this?

    Exc in ev handl: Error: Bad NPObject as private data! I get this error when opening and closing tabs. It only happens when using Firefox. I am running 7.0.1 on a 64 bit version of windows. While researching this problem I discovered thousands of people have the problem. This just started recently. No real fixes or causes have been found. One solution listed was to disable McAfee site adviser which I use and have no plans to remove. I really like Firefox but if I must choose between it and Site adviser I'll have to switch to another browser.

    Please see solution in http://kb.mozillazine.org/Problematic_extensions
    for "McAfee Site Advisor".
    (Windows): For best results you should uninstall '''McAfee Site Advisor''' from Control Panel > add/change programs (Programs and Features). Reboot the system. Then Reinstall from http://www.siteadvisor.com/ and reboot the system. When installing refuse other suggested (crapware) applications.
    <br><small>Please mark "Solved" one answer that will best help others with a similar problem -- hope this was it.</small>

  • I am gettng the following popup when using firfox as my browser: Exc in ev handl: Error: Bad NPObject as private data!

    In the past few days I have been getting the following popup when I use firefox as my browser: Exc in ev handl: Error: Bad NPObject as private data!
    I assume it came from your latest update. I have windows vista with a 64 bit processor, and I am using the latest version of firefox. I checked to see if I was getting the same error message with explorer and I am not. It appears to be some sort of conflict with java script. Can this be corrected?

    re: recommendation -- "Remove McAfee Site Advisor and other extensions/plugins reported in the following lists of Blocked/Problematic extension: "
    NO -- I use it to protect my surfing! Why must FireFox insist on constantly breaking 3-rd party vendor apps!?! Even IE doesn't do this.
    For all the ballyhoo about FF and how great it is -- it ISN'T when it comes to how it supports other companies apps. (RealPlayer, Google, McAfee, etc.)
    Shame on them. I shouldn't have to give up functionality, and in this case protection -- just to use FF

  • Why do I get the following msg's on startup start Firefox? (1) Exc in ev handl: TypeError: oSAPlg.oRoot.log is not a function; (2) Exc in ev handl: TypeError: oSAPlg.oRoot.log is not a function; (3) Exc in ev handl: Error: Bad NPObject as private data!

    I get the following msg's. This happening more often, and when I back out to restart it may take a couple of times so that I do not get the error msg's?
    Exc in ev handl: TypeError: oSAPlg.oRoot.log is not a function
    Exc in ev handl: Error: Bad NPObject as private data!

    This issue can be caused by the McAfee Site Advisor extension
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

  • Crystal Reports Server 2008 - CMC Login Error - Bad Port Number in CMS Name

    This post is similar to previous post: Error: Bad port number in CMS name fe80:0:0:0:152f:77a:382d:6d8e:6400 null - which remains unanswered.
    In this case, I have installed a full licensed version of CRS 2008 on Windows Server 2008. I'm using Tomcat 5.5 and IIS 7.0.
    The error we get when trying to log into the server using SERVERNAME:6400 (the default), is:
    u2022Error: Bad port number in CMS name fe80:0:0:0:6509:bde9:93bf:f9de:6400 null
    We neglected to install IIS prior to installing CRS, so when we realized our error, we installed IIS and then uninstalled/reinstalled CRS 2008.
    Prior to reinstalling CRS, the CMC allowed us to login with no problem, which leads me to suspect that CRS may not have uninstalled cleanly.
    Can anyone help me to understand what causes this error, and what steps can be taken to resolve it?

    Hi,
    Try to check the port number 6400 is assigned properly to CMS. Please make sure that its not assigned to any other Products.
    Thanks,
    SK.

  • *** ERROR = BAD REQUEST - Reason: DpRqCheck failed (line 5195): [dpxxdisp.

    Hello All,
    In our development system,  we are able to perform all the transactions normally(SAP level) and there is no performance issues..
    We have checked from OS level in work directory file dev_disp..
    We are getting below error.
    Can you please suggest us on this..............
    =========================================================
    ERROR => DpRqCheck: T72 in stat TM_SLOT_FREE [dpxxdisp.c   5805]
    ***LOG Q0G=> DpRqBadHandle, bad_req ( DIA) [dpxxdisp.c   4621]
    ERROR => BAD REQUEST - Reason: DpRqCheck failed (line 5195): [dpxxdisp.c   4623]
    -IN-- sender_id DISPATCHER        tid  72    wp_ca_blk   -1      wp_id -1
    -IN-- action    SEND_TO_WP        uid  8012   appc_ca_blk -1      type  DIA
    -IN-- new_stat  NO_CHANGE         mode 0     len         -1      rq_id 53650
    -IN-- req_info  MS_ERROR
    ERROR => DpRqCheck: T73 in stat TM_SLOT_FREE [dpxxdisp.c   5805]
    ***LOG Q0G=> DpRqBadHandle, bad_req ( DIA) [dpxxdisp.c   4621]
    ERROR => BAD REQUEST - Reason: DpRqCheck failed (line 5195): [dpxxdisp.c   4623]
    -IN-- sender_id DISPATCHER        tid  73    wp_ca_blk   -1      wp_id -1
    -IN-- action    SEND_TO_WP        uid  8013   appc_ca_blk -1      type  DIA
    -IN-- new_stat  NO_CHANGE         mode 0     len         -1      rq_id 53651
    -IN-- req_info  MS_ERROR
    ERROR => DpRqCheck: T74 in stat TM_SLOT_FREE [dpxxdisp.c   5805]
    ***LOG Q0G=> DpRqBadHandle, bad_req ( DIA) [dpxxdisp.c   4621]
    ERROR => BAD REQUEST - Reason: DpRqCheck failed (line 5195): [dpxxdisp.c   4623]
    -IN-- sender_id DISPATCHER        tid  74    wp_ca_blk   -1      wp_id -1
    -IN-- action    SEND_TO_WP        uid  8014   appc_ca_blk -1      type  DIA
    -IN-- new_stat  NO_CHANGE         mode 0     len         -1      rq_id 53652
    -IN-- req_info  MS_ERROR
    ERROR => DpRqCheck: T77 in stat TM_SLOT_FREE [dpxxdisp.c   5805]
    ***LOG Q0G=> DpRqBadHandle, bad_req ( DIA) [dpxxdisp.c   4621]
    ERROR => BAD REQUEST - Reason: DpRqCheck failed (line 5195): [dpxxdisp.c   4623]
    -IN-- sender_id DISPATCHER        tid  77    wp_ca_blk   -1      wp_id -1
    -IN-- action    SEND_TO_WP        uid  8019   appc_ca_blk -1      type  DIA
    -IN-- new_stat  NO_CHANGE         mode 0     len         -1      rq_id 53653
    -IN-- req_info  MS_ERROR
    Wed Apr  7 08:55:32 2010
    ***LOG Q0K=> DpMsAttach, mscon ( ussapdir00) [dpxxdisp.c   10127]
    Wed Apr  7 08:55:33 2010
    use SAPLOCALHOST=<ussapdir00> as internal hostname
    NiPAccept: accept failed (socket=7;errno=72)
    ***LOG Q0I=> NiPRead: recv (73: Connection reset by peer) [niuxi.c 928]
    SoftCancel request for T45 U8133 M0 received from REMOTE_TERMINAL
    Network error of client T46, NiBufReceive (-6: NIECONN_BROKEN), dp_tm_status=3
    Client address of T46 is 10.228.250.65(10.228.250.65)
    ***LOG Q04=> DpRTmPrep, NiBufReceive (8135 MKK27890 46 BREWL07D4359) [dpxxdisp.c   9830]
    RM-T46, U8135, 620     MKK27890, BREWL07D43598, 08:43:19, M0, W4,     , 2/0
    Network error of client T45, NiBufReceive (-6: NIECONN_BROKEN), dp_tm_status=3
    Client address of T45 is 10.228.250.65(10.228.250.65)
    ***LOG Q04=> DpRTmPrep, NiBufReceive (8133 RR606033 45 BREWL07D4359) [dpxxdisp.c   9830]
    RM-T45, U8133, 600     RR606033, BREWL07D43598, 08:38:22, M0, W0, SPRO, 2/3
    Release check o.K.
    MBUF state PREPARED
    MBUF component UP
    DpMBufHwIdSet: set Hardware-ID
    ***LOG Q1C=> DpMBufHwIdSet [dpxxmbuf.c   1025]
    MBUF state ACTIVE
    Wed Apr  7 08:55:39 2010
    ERROR => DpRqCheck: T45 in stat TM_SLOT_FREE [dpxxdisp.c   5805]
    ***LOG Q0G=> DpRqBadHandle, bad_req ( DIA) [dpxxdisp.c   4621]
    ERROR => BAD REQUEST - Reason: DpRqCheck failed (line 5195): [dpxxdisp.c   4623]
    -IN-- sender_id DISPATCHER        tid  45    wp_ca_blk   -1      wp_id -1
    -IN-- action    SEND_TO_WP        uid  8133   appc_ca_blk -1      type  DIA
    -IN-- new_stat  NO_CHANGE         mode 0     len         -1      rq_id 53678
    -IN-- req_info  LOGOFF CANCELMODE
    Wed Apr  7 08:55:44 2010
    ERROR => DpRqCheck: T46 in stat TM_SLOT_FREE [dpxxdisp.c   5805]
    ***LOG Q0G=> DpRqBadHandle, bad_req ( DIA) [dpxxdisp.c   4621]
    ERROR => BAD REQUEST - Reason: DpRqCheck failed (line 5195): [dpxxdisp.c   4623]
    -IN-- sender_id DISPATCHER        tid  46    wp_ca_blk   -1      wp_id -1
    -IN-- action    SEND_TO_WP        uid  8135   appc_ca_blk -1      type  DIA
    -IN-- new_stat  NO_CHANGE         mode 0     len         -1      rq_id 53676
    -IN-- req_info  LOGOFF CANCELMODE
    ======================================================================
    Thanks in advance..
    Best Regards,
    Kiran

    Hi Kiran,
    It's not a problem or error, it's just a message and hence can be ignored. However you can check out SAP note 1111154 once, it will fix the issue probably if it's happening due to HTTP problem. Else you can very well ignore it.
    Regards
    Sourabh Majumdar

Maybe you are looking for

  • I cannot get email set up correctly on my 4s using a Pop3 account and a BTConnect email address. How do I do it please?

    Hi, I have an iphone 4S and am trying to set up mail so that I can send and receive relating to our home email account which is unfortunately a "btconnect" address and a POP3 account. How do I do it please? BT seem unable to supply IMAP settings. Do

  • Burn avi to dvd using idvd

    i dont have idvd, i dont even have a mac so this may be a really stupid question, but is it possible to convert an avi file and then burn it to dvd using idvd? for example if a had a film in avi could i put it on a dvd to watch on a dvd player?

  • Can't create or mount NFS share

    I am trying to create an NFS share on a server that already does quite nicely sharing AFP and SMB. A friend tells me that this is easy but I can't make it work, I'm still told that my password is incorrect. Can you watch this short movie to see what

  • DUAL BOOT windows 7 and linux HELP with Current info on BIOS, MBR vs GPT, etc

    I have a feeling this should be easier than what I'm making it.  Please educate me on Lenovo's BIOS Setup menus, etc. I have installed easyBCD in Windows 7, and plan to use it to set up my new boot menu with Linux Mint (and possibly other distros). I

  • Group Messaging on Rogers?

    I have an iPhone 4S on Rogers in Canada with the latest software update. I've seen online this Group Messaging option for SMS/MMS so that you can have group convos over text with people who don't have iPhones but that option is not available on my ph