Accessing Runtime Information - ERROR - HELP

Hi all,
I am trying to access the runtime MBean with the sample code given in the WebLogic online document
Here is the part of the code
try {            
System.out.println("\n----Trying to access runtime mbean \n");
mbeanSet = home.getMBeansByType("ServerRuntime");
mbeanIterator = mbeanSet.iterator();
// Comparing the name of the server in each ServerRutime
// MBean to the value specified by serverName
while(mbeanIterator.hasNext()) {               
serverRuntime = (ServerRuntimeMBean)mbeanIterator.next();
if(serverRuntime.getName().equals(serverName)) {                   
System.out.println("Found the serverRuntimembean: " + serverRuntime + " for: " + serverName); System.out.println("Current state: " + serverRuntime.getState() ); System.out.println("Stopping the server ..."); serverRuntime.shutdown(); System.out.println("Current state: " + serverRuntime.getState() ); } }
} catch (Exception e) {            
System.out.println("Caught exception: " + e); }
When I try to run the program I am getting the following error.
<Aug 26, 2004 3:48:33 PM PDT> <Error> <RJVM> <BEA-000503> <Incoming message header or abbreviation processing failed
java.io.InvalidClassException: javax.management.ObjectName; local class incompatible: stream classdesc serialVersionUID = -54677950900
68647408, local class serialVersionUID = 1081892073854801359
java.io.InvalidClassException: javax.management.ObjectName; local class incompatible: stream classdesc serialVersionUID = -546779509006
8647408, local class serialVersionUID = 1081892073854801359
at java.io.ObjectStreamClass.initNonProxy(Unknown Source)
at java.io.ObjectInputStream.readNonProxyDesc(Unknown Source)
at java.io.ObjectInputStream.readClassDesc(Unknown Source)
at java.io.ObjectInputStream.readObject0(Unknown Source)
at java.io.ObjectInputStream.readObject(Unknown Source)
at weblogic.rjvm.ClassTableEntry.readExternal(ClassTableEntry.java:33)
at java.io.ObjectInputStream.readExternalData(Unknown Source)
at java.io.ObjectInputStream.readOrdinaryObject(Unknown Source)
at java.io.ObjectInputStream.readObject0(Unknown Source)
at java.io.ObjectInputStream.readObject(Unknown Source)
at weblogic.rjvm.InboundMsgAbbrev.readObject(InboundMsgAbbrev.java:65)
at weblogic.rjvm.InboundMsgAbbrev.read(InboundMsgAbbrev.java:37)
at weblogic.rjvm.MsgAbbrevJVMConnection.readMsgAbbrevs(MsgAbbrevJVMConnection.java:209)
at weblogic.rjvm.MsgAbbrevInputStream.readMessageContext(MsgAbbrevInputStream.java:232)
at weblogic.rjvm.ConnectionManager.dispatch(ConnectionManager.java:733)
at weblogic.rjvm.t3.T3JVMConnection.dispatch(T3JVMConnection.java:742)
at weblogic.socket.SocketMuxer.readReadySocketOnce(SocketMuxer.java:682)
at weblogic.socket.SocketMuxer.readReadySocket(SocketMuxer.java:618)
at weblogic.socket.JavaSocketMuxer.processSockets(JavaSocketMuxer.java:282)
at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:32)
at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
>
Caught exception: weblogic.rmi.extensions.RemoteRuntimeException: Unexpected Exception - with nested exception:
[weblogic.rjvm.PeerGoneException: ; nested exception is:
        java.rmi.UnmarshalException: Incoming message header or abbreviation processing failed ; nested exception is:
        java.io.InvalidClassException: javax.management.ObjectName; local class incompatible: stream classdesc serialVersionUID = -5467
795090068647408, local class serialVersionUID = 1081892073854801359]
Did anybody come across this kind of error? Please let me know. Any help is appreciated. Thanks!
-Praneetha

Praneetha,
The client version of ObjectName is different from the version on the
server side. Make sure you have the same class version.
Thanks,
-satya
Praneetha Sabhanayakam wrote:
Hi all,
I am trying to access the runtime MBean with the sample code given in the WebLogic online document
Here is the part of the code
try {            
System.out.println("\n----Trying to access runtime mbean \n");
mbeanSet = home.getMBeansByType("ServerRuntime");
mbeanIterator = mbeanSet.iterator();
// Comparing the name of the server in each ServerRutime
// MBean to the value specified by serverName
while(mbeanIterator.hasNext()) {               
serverRuntime = (ServerRuntimeMBean)mbeanIterator.next();
if(serverRuntime.getName().equals(serverName)) {                   
System.out.println("Found the serverRuntimembean: " + serverRuntime + " for: " + serverName); System.out.println("Current state: " + serverRuntime.getState() ); System.out.println("Stopping the server ..."); serverRuntime.shutdown(); System.out.println("Current state: " + serverRuntime.getState() ); } }
} catch (Exception e) {            
System.out.println("Caught exception: " + e); }
When I try to run the program I am getting the following error.
<Aug 26, 2004 3:48:33 PM PDT> <Error> <RJVM> <BEA-000503> <Incoming message header or abbreviation processing failed
java.io.InvalidClassException: javax.management.ObjectName; local class incompatible: stream classdesc serialVersionUID = -54677950900
68647408, local class serialVersionUID = 1081892073854801359
java.io.InvalidClassException: javax.management.ObjectName; local class incompatible: stream classdesc serialVersionUID = -546779509006
8647408, local class serialVersionUID = 1081892073854801359
at java.io.ObjectStreamClass.initNonProxy(Unknown Source)
at java.io.ObjectInputStream.readNonProxyDesc(Unknown Source)
at java.io.ObjectInputStream.readClassDesc(Unknown Source)
at java.io.ObjectInputStream.readObject0(Unknown Source)
at java.io.ObjectInputStream.readObject(Unknown Source)
at weblogic.rjvm.ClassTableEntry.readExternal(ClassTableEntry.java:33)
at java.io.ObjectInputStream.readExternalData(Unknown Source)
at java.io.ObjectInputStream.readOrdinaryObject(Unknown Source)
at java.io.ObjectInputStream.readObject0(Unknown Source)
at java.io.ObjectInputStream.readObject(Unknown Source)
at weblogic.rjvm.InboundMsgAbbrev.readObject(InboundMsgAbbrev.java:65)
at weblogic.rjvm.InboundMsgAbbrev.read(InboundMsgAbbrev.java:37)
at weblogic.rjvm.MsgAbbrevJVMConnection.readMsgAbbrevs(MsgAbbrevJVMConnection.java:209)
at weblogic.rjvm.MsgAbbrevInputStream.readMessageContext(MsgAbbrevInputStream.java:232)
at weblogic.rjvm.ConnectionManager.dispatch(ConnectionManager.java:733)
at weblogic.rjvm.t3.T3JVMConnection.dispatch(T3JVMConnection.java:742)
at weblogic.socket.SocketMuxer.readReadySocketOnce(SocketMuxer.java:682)
at weblogic.socket.SocketMuxer.readReadySocket(SocketMuxer.java:618)
at weblogic.socket.JavaSocketMuxer.processSockets(JavaSocketMuxer.java:282)
at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:32)
at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
Caught exception: weblogic.rmi.extensions.RemoteRuntimeException: Unexpected Exception - with nested exception:
[weblogic.rjvm.PeerGoneException: ; nested exception is:
java.rmi.UnmarshalException: Incoming message header or abbreviation processing failed ; nested exception is:
java.io.InvalidClassException: javax.management.ObjectName; local class incompatible: stream classdesc serialVersionUID = -5467
795090068647408, local class serialVersionUID = 1081892073854801359]
Did anybody come across this kind of error? Please let me know. Any help is appreciated. Thanks!
-Praneetha

Similar Messages

  • Microsoft Visual runtime library error help?

    I'm getting this error message. I work on this program exclusively and have lots to do immediately. Anyone have a solution?
    The error message comes up when I start the program (I've been using it all year with no issues) and then says This application has requested the runtime to terminate it in an unusual way. Then it says the program isn't responding and closes it.
    Thanks Melinda@

    See if this help:
    http://helpx.adobe.com/photoshop-elements/kb/microsoft-c-runtime-error-launcing.html

  • TS2776 error message 'cannot access conflict information sync server'

    I recently can't sync my iPhone with my Microsoft Outlook calendar.  I receive an error message 'cannot access conflict information sync server.  Try again later.'  Help!

    You are trying to use conflicting services for sync, disable all the ones that you do need. Once only one is enabled, you will be OK

  • My ipad mini does not restart when i press and hold the home and power buttons for a minute or more. what do i do? i really need to access some information on it. please help.

    my ipad mini does not restart when i press and hold the home and power buttons for a minute or more. what do i do? i really need to access some information on it. please help.

    You need to connect to iTunes and restore.
    iOS: Not responding or does not turn on
    You may need to put the device into recovery mode, this is covered in the link on this page.
    Did you back up the device?

  • Error while trying to access system information for AS Java

    Hi,
    I´m not sure if this is the correct forum so if I'm wrong please let me know to move it to the correct one.
    We are facing an extrange behavior when trying to access System Information in an AS Java, every time we try to access the link the following error shows up:
    Error - ID018236: Cannot instantiate bean. java.lang.ClassNotFoundException: com.sap.engine.monitor.infoapp.SystemInfo
    the complete error shows:
    Found in negative cache -
    Loader Info -
    ClassLoader name: sap.com/tc~monitoring~systeminfo Parent loader name: References: common:service:http;service:servlet_jsp service:ejb common:service:iiop;service:naming;service:p4;service:ts service:jmsconnector library:jsse library:servlet common:library:IAIKSecurity;library:activation;library:mail;library:tcsecssl library:ejb20 library:j2eeca library:jms library:opensql common:library:com.sap.security.api.sda;library:com.sap.security.core.sda;library:security.class;library:webservices_lib;service:adminadapter;service:basicadmin;service:com.sap.security.core.ume.service;service:configuration;service:connector;service:dbpool;service:deploy;service:jmx;service:jmx_notification;service:keystore;service:security;service:userstore interface:resourcecontext_api interface:webservices interface:cross interface:ejbserialization library:tcjmx library:sapxmltoolkit library:tcSLUTIL Resources: /usr/sap/QBW/DVEBMGS03/j2ee/cluster/server0/apps/sap.com/tcmonitoringsysteminfo/servlet_jsp/sap/monitoring/root/WEB-INF/classes /usr/sap/QBW/DVEBMGS03/j2ee/cluster/server0/apps/sap.com/tcmonitoringsysteminfo/servlet_jsp/sap/monitoring/root/WEB-INF/lib/jstartupapi.jar /usr/sap/QBW/DVEBMGS03/j2ee/cluster/server0/apps/sap.com/tcmonitoringsysteminfo/servlet_jsp/monitoring/root/WEB-INF/classes /usr/sap/QBW/DVEBMGS03/j2ee/cluster/server0/apps/sap.com/tcmonitoringsysteminfo/servlet_jsp/monitoring/work /usr/sap/QBW/DVEBMGS03/j2ee/cluster/server0/apps/sap.com/tcmonitoringsysteminfo/servlet_jsp/sap/monitoring/work /usr/sap/QBW/DVEBMGS03/j2ee/cluster/server0/apps/sap.com/tcmonitoring~systeminfo/servlet_jsp/sap/monitoring/root/WEB-INF/lib/jstartupimpl.jar Loading model: {parent,references,local} -
    Any idea about what is happening is appreciated.

    check with this links too
    http://hostname:port/sap/monitoring/SystemInfo
    http://hostname:port/monitoring/SystemInfo
    Implementing this note should solve your problem
    Note 1281251 - System information exception: Connection is invalid
    and also check
    Note 1233282 - Fixed URL of System Information application on Start page
    Thanks,
    Surendra

  • B575: Microsoft Visual C++ Runtime Library Error on Startup? Please Help!

    This came out of the blue, I just started up my laptop and out of no where my Windows 7 Ultimate transperancy graphics are gone and I can't connect to the internet! I get this message on startup saying 'Microsoft Visual C++ Runtime Library Error', for controlhandler.cpp and I have no clue what it is! I tried a clean boot and safemode boot, and it is the same thing! Please help
    Solved!
    Go to Solution.

    hi ironmax,
    As a last resort, you can:
    1. Press the One Key Recovery button to restore the unit from factory settings or
    2. Create a recovery disc and use this disc to restore the system from factory
    Note:
    Backup important before doing a factory reset
    Regards,
    neokenchi
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • After trying many times with two different debit cards still does not allows me to buy a game from the app store gives error "YOUR PAYMENT METHOD WAS DECLINE.PLEASE ENTER VALID PAYMENT METHOD INFORMATION"  Please help me out

    I WANT TO PURCHASE NFS MOST WANTED GAME FROM APP STORE BUT IT DOESN'T ALLOW ME TO PROCEED FURTHER
    after trying many times with two different debit cards still does not allows me to buy a game from the app store gives error "YOUR PAYMENT METHOD WAS DECLINE.PLEASE ENTER VALID PAYMENT METHOD INFORMATION"  Please help me out

    In most cases, you can't use a Debit card anymore. So, either redeem an iTunes gift card or use a credit card.

  • Cannot download itunes, error message says I am missing media accessibility.dll  Can you help me?

    I cannot download itunes on my PC.  Error message says i am missing Media Accessibility.dll  Can anyone help?

    Hi, you may have resolved this issue already, but if not...
    There should be one copy of MediaAccessibility.dll in the folder:
    C:\Program Files\Common Files\Apple\Apple Application Support (32-bit systems) or
    C:\Program Files (x86)\Common Files\Apple\Apple Application Support (64-bit systems)
    If you can locate the file, right-click on it and select Properties, then on theDetails tab it should have File Version - 48.1.0.11. If it has a different version number then it is out of date and is likely to be cause of the problem.
    Please search your Programs Files and/or Programs Files (x86) folders for all copies of the file MediaAccessibility.dll - Any other copies of the file in different locations are likely to be out of date, but might be called in error by an executable file in the same folder, thereby causing the error.
    Should you find more than one copy of MediaAccessibility.dll could you please let me know in which other locations it was found. This will let us more effectively help others with the same issue by suggesting where they should look. If you have the correct version, in the correct place, then deleting any others should fix your problem. This is similar to the QTMovieWin.dll issue dealt with in the first box of the user tip Troubleshooting issues with iTunes for Windows updates.
    If you don't have the correct version of the file then completely removing all components, deleting the named folders, and reinstalling as suggested in the second box of the user tip should work. You could try repairing Apple Application Support alone from the the Programs and Features or Add/Remove Programs control panel first as that would be quicker, but only if it works.
    tt2

  • When I go to duplicate a presentation I get the following error:  Unsaved Keynote Document.  Autosave couldn't be moved because you don't have permission to access AutoSave Information?  My permissions are set at read

    When I go to duplicate a presentation I get the following error:  Unsaved Keynote Document.  Autosave couldn't be moved because you don't have permission to access AutoSave Information?  My permissions are set at read & write.

    I noticed that I have three different log in accounts on my computer, much to my surprise. Could that be causing this problem?
    That's unlikely. You would have had to save a document into another user's account and be trying to work on it - directly from their account.
    "“Unsaved Pages Document.pages” couldn’t be moved because you don’t have permission to access “Autosave Information”.
    Have you checked the permissions on your Autosave Information folder? Here are mine.

  • I can't access the app store - I get the following messages - error 1004 or 100 or 4 or unknown error - help!!!

    I can't access the app store - I get the following messages - error 1004 or 100 or 4 or unknown error - help!!!
    I've disabled the firewalls, the virus protection, the application protection - nothing helps.

    I'd maybe try doing a search for Safari on your iPad first (swipe to the left to search). If it shows up in that search you can go to Settings > General > Reset and choose 'reset home screen layout' which will put it back where it would be by default.
    All else fails? Restore it.

  • CFUPDATE Query Error **Help**

    Ok, I am at a serious loss and am getting a headache trying to
    figure out what exactly is wrong with this simple code. I have a
    form that pulls information from a database and allows users to
    update the information. The code for that page is:
    <CFQUERY NAME="editmessage" DATASOURCE="subscriptions">
    SELECT *
    FROM tbl_Messages
    WHERE messageID = #URL.messageID#
    </CFQUERY>
    <head>
    <title><CFOUTPUT>#editmessage.type#
    Editor</CFOUTPUT></title>
    <style type="text/css">
    <!--
    .style38 {font-size: 14px}
    .style39 {font-family: Arial, Helvetica, sans-serif}
    .style40 {font-size: 16px; }
    -->
    </style>
    <body bgcolor="FFFFFF" text="000000">
    <CFOUTPUT query="editmessage">
    <form name="form" method="post"
    action="updatemessage.cfm">
    <table width="900" border="0" align="center"
    cellpadding="5" cellspacing="0">
    <tr>
    <td> </td>
    <td>[<a href="menu.cfm">Back to menu</a>]
    [<a href="logout.cfm">Logout</a>] </td>
    </tr>
    <tr>
    <td width="25%"><div align="right"
    class="style40"><span
    class="style39">Type:</span></div></td>
    <td width="75%">
    <input name="Type" type="text" value="#Type#"
    size="50">
    <span class="style38"></span></td>
    </tr>
    <tr>
    <td width="25%"><div align="right"
    class="style40"><span
    class="style39">From:</span></div></td>
    <td width="75%"><span class="style38">
    <input name="From" type="text" value="#From#"
    size="50">
    </span></td>
    </tr>
    <tr>
    <td width="25%"><div align="right"
    class="style40"><span
    class="style39">Subject:</span></div></td>
    <td width="75%"><span class="style38">
    <input name="Subject" type="text" value="#Subject#"
    size="50">
    </span></td>
    </tr>
    <tr>
    <td width="25%" valign="top"><div align="right"
    class="style40"><span
    class="style39">Body:</span></div></td>
    <td width="75%"><span class="style38">
    <textarea name="Body" cols="90"
    rows="10">#Body#</textarea>
    </span></td>
    </tr>
    <tr>
    <td colspan="2"><div align="center">
    <input type="submit" value="Update">
    </div></td>
    </tr>
    </table>
    </form>
    </CFOUTPUT>
    </body>
    Then on the page it posts to, I have the simple code of:
    <CFUPDATE datasource="subscriptions"
    tablename="tbl_Messages">
    However, I keep getting an error stating there is a syntax error
    in my update query code and I'm clueless as to why. I have tried
    several different things, but to no help. Please let me know what I
    am doing wrong. Thank you in advance.

    I am actually using this code now, as I have seen other issues
    in the forums with CFUPDATE:
    <CFQUERY NAME="UpdateMessage"
    DATASOURCE="subscriptions">
    UPDATE tbl_Messages
    SET From = '#Form.mesFrom#',
    Subject = '#Form.mesSubject#',
    Body = '#Form.mesBody#'
    WHERE Type = '#Form.mesType#'
    </CFQUERY>
    However, it is still returning an error and all it states in the
    CF log files is:
    Error Executing Database Query.[Macromedia][SequeLink JDBC
    Driver][ODBC Socket][Microsoft][ODBC Microsoft Access Driver]
    Syntax error in UPDATE statement. The specific sequence of files
    included or processed is:
    C:\websites\docs\subscriptions\updatemessage.cfm
    I tried turning debugging on to specify exactly what is wrong,
    but I'm not getting anything :(.....I did rename the field names
    becuase I was unsure if they were creating the problem, but
    again...no help

  • Access Central SLD Error

    Hi Experts,
    We are using the SLD SOLMAN and we and the ideia is to use it as Central SLD. In order to allowed PI indentifed the Central SLD we must appllied few oss notes like; 939592, 768148 and 720717, but much as we try it to import we got few errors as describe below:
    "Unable to read software component versions from System Landscape Directory "ASPTSSM01:50000"
    Another error occurs when trying to access the SLD by the runtime workbench:
    "Error during communication with System Landscape Directory: HTTP response code: 403 (Forbidden)"
    Anybody help-me.
    Regards,
    HMattos.

    Hi HMattos,
    I hope you have created the PI service users in SOLMAN and assigned the same password as the PI service user password.
    Open /rep on your PI and click SLD. Check if it opens the SOLMAN page.
    Check in VA if SLD data supplier test works fine.
    Check SLDCHECK transaction.
    If you get errors in any of these, the you will get a hint as to where is the issue. If you unable to resolve, then post the results of the above.
    Cheers....,
    Raghu.

  • FME Runtime Library Error: flvmuxoutpin.cpp

    I am trying to publish a stream from a USB webcam. I get the
    following error when I press the "Start" button.
    Assertion failed!
    Program: FlashMediaEncoder.exe
    File:.\flvmuxoutpin.cpp
    Line: 1044
    Expression: stop_reftime >= start_reftime
    For information on how your program can cause an assertion
    failure, see the Visual C++ documentation on asserts
    You can see a screenshot here:
    FME
    Runtime Library Error
    When I use a firewire connected camcorder, I do NOT get this
    error. Any advice? This is a repeatable issue.

    hi ironmax,
    As a last resort, you can:
    1. Press the One Key Recovery button to restore the unit from factory settings or
    2. Create a recovery disc and use this disc to restore the system from factory
    Note:
    Backup important before doing a factory reset
    Regards,
    neokenchi
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Accessing Runtime Constants in PCK

    Hi all
    Anybody tried accessing runtime constants such as message ID  in PCK, successfully?
    I have written a java mapping using StreamTransformationConstants class to retrieve MessageId value. The same java mapping works fine in XI, but not PCK.
    Any idea?
    Many thanks.
    YJ

    to the target  date mapping we have created a userdefined fuction fileName which is failing the error message when we  test the interface mapping is Runtime exception occurred during execution of application mapping program com/sap/xi/tf/_XI_ERP_FI_BAPI_ACC_DOCUMENT_POST_REQ_MM_: com.sap.aii.utilxi.misc.api.BaseRuntimeException; RuntimeException in Message-Mapping transformation: Runtime exception during processing target field mapping /ns1:BAPI_ACC_DOCUMENT_POST/DOCUMENTHEADER/HEADER_TXT. The message is: Exception:[java.lang.NullPointerException] in class com.sap.aii.mappingtool.flib3.TextFunctions method substring[null, com.sap.aii.mappingtool.tf3.rt.Context@0000000000000]
    is this help full
    when it is succesfull the input <HEADER_TXT>Payroll for 01/2008</HEADER_TXT>
    <DOC_DATE>20080131</DOC_DATE> 
                                                    when it is failed the input is
    <HEADER_TXT>Payroll for 20/08.t</HEADER_TXT>
    <DOC_DATE>08.t20</DOC_DATE>
    thanks and regards
    sandeep
    thanks
    sandeep

  • Access to javascript training help?

    There is a developer section of the Adobe site that has some information I need but when I tried to log into it and it said "Insufficient privileges (HTTP 403 error)You are not authorized to view this content"
    Does anyone know how I might gain access to this area? https://partners.adobe.com/asn/developer/training/acrobat/javascript/main.html

    Just create a new Adobe ID
    From: Adobe Forums <[email protected]<mailto:[email protected]>>
    Reply-To: "[email protected]<mailto:[email protected]>" <[email protected]<mailto:[email protected]>>
    Date: Thu, 10 Nov 2011 09:54:02 -0800
    To: Leonard Rosenthol <[email protected]<mailto:[email protected]>>
    Subject: Access to javascript training help?
    Access to javascript training help?
    created by melissaruth<http://forums.adobe.com/people/melissaruth> in Acrobat SDK - View the full discussion<http://forums.adobe.com/message/4018661#4018661

Maybe you are looking for

  • How do I install  iTunes+QuickTime on Vista

    When I try to install the latest version of iTunes+Quicktime, everything works until the very end when QuickTime is installing, the I get an error box saying "This Installer Cannot Upgrade QuickTime 7 For Windows Public Preview, Please Uninstall Firs

  • Scanner not working hp deskjet 1510 all in one

    Hi.. i have hp deskjet 1510 all in one printer, at first all are working so well. but after 3 days scanner is not working. Everytime i try to scan "hp series not found" will appear. I also tried the print and scan doctor but it shows Hp twain scan er

  • Purchase Order Inconsistency

    Hi Experts, I have very strange problem with some of purchase orders. I create the purchase order and saved it. When i tried to chenge purchase order system does not respond and dont allow me to save the order. Transaction gets locked which can be se

  • Keyword Tags; file tags

    In elements organize 12 how can I add tags to files already in catalogue and have the tags show up in organizer? And how can I add tags in organizer and have then show up in the files properties details? Can this be done? All help appreciated. Thanks

  • IWEB problems, can't drag pages.

    I cant drag anymore pages between sites, of course after migrating to OS X lion Does any boddy have same problem? iweb 3.0.4