FRM-92101 - java exception - unable to  communicate with runtime process

We have a Forms application developed in Forms 10.1.2.0.2. One of our forms gives a unusual error. This error comes from any client machine we run the application.
Our menu form (menu.fmb), in it's ON-LOGON trirgger, calls a form called login.fmb. Login has a canvas where username, pwd and db is specified with Login an Cancel buttons.
Problem is with the EXIT_FORM build it. When the form tries to execute this built in we get the Dr. Watson type screen with 2 buttons (Details... and OK). The alert says
FRM-92101: There was a failure in the Forms Server during startup. This could happen
due to invalid configuration. Please look into the web-server log file for details.When we press the Details... button we get
java exception
oracle.forms.net.ConnectionException: Forms session <> aborted: unable to
communicate with runtime processWe tried the "compile all" option as suggested by Note ID 444690.1 but no effect.
This question's ( http://tiny.cc/fpcfmw ) answer suggests to update the hosts files but it is not clear as to which hosts file (client, application server) and what information to put there.
Any help on this would be greatly appreciated.

FRM-92101 means that the Forms runtime (frmweb.exe) crashed or could not be started. This has nothing to do with a network connection, unless your environment is configured with load balancing and session binding has not been enabled.
Given that you are using 10.1.2.0, this could be a bug which likely was corrected in a newer version. If you have a MyOracleSupport account, I recommend you patch to 10.1.2.3 (Patch ID 5983622). After doing so, I would further recommend that you install the latest Forms Bundle patch on top of that, as it includes a few fixes which may be related to your problem. See patch ID 9593176 and Note 1188127.1

Similar Messages

  • Webutil error "unable to communicate with runtime process."

    Hi,
    Yesterday I configured webutil with Developer 10g (9.0.4).
    I used webutil_106.zip and jacob_18.zip.
    I succesfully deploy a form that display the selection file dialog with the function:
    CLIENT_GET_FILE_NAME
    Today I tried to test again the form, and I got an error when the form is opening, I review the log and I find "unable to communicate with runtime process.".....
    I didn't change any configuration... what I'm doing wrong..... It just work great yesterday!!!!
    I tried signing again the jacob.jar and frmwebutil.jar files..... However I still have the error.......
    Any help is welcome....
    The error in the log:
    09/03/25 10:57:45 Started
    09/03/25 10:57:55 forms90web: jsp: init
    09/03/25 10:57:55 forms90web: f90servlet: init
    09/03/25 10:57:55 forms90web: FormsServlet init():
    configFileName: c:\dev10g/forms90/server/formsweb.cfg
    testMode: false
    09/03/25 10:57:55 forms90web: 9.0.4.0.0 Started
    09/03/25 10:57:56 forms90web: l90servlet: init
    09/03/25 10:57:56 forms90web: ListenerServlet init()
    09/03/25 10:58:02 forms90web: Forms session <1> aborted: unable to communicate with runtime process.
    09/03/25 10:58:02 forms90web: Forms session <1> exception stack trace:
    java.io.IOException: FRM-93000: Unexpected internal error.
    Details : No HTTP headers received from runform
         at oracle.forms.servlet.ListenerServlet.forwardResponseFromRunform(Unknown Source)
         at oracle.forms.servlet.ListenerServlet.doPost(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:765)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:317)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:270)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
         at java.lang.Thread.run(Thread.java:534)
    09/03/25 11:00:58 forms90web: l90servlet: destroy
    09/03/25 11:00:58 forms90web: 9.0.4.0.0 Stopped
    09/03/25 11:00:58 Stopped (Shutdown executed by jazn.com/admin from 127.0.0.1 (localhost))
    Edited by: Santiago on 25/03/2009 11:23 AM

    I Find the way, It's OK now.
    When I use the webutil.olb in a form. I chose "Subclass", It's necessary to choose "Copy".

  • PJC set_custom_property gives unable to communicate with runtime process

    Hi
    I am modifying a PJC that extends VTextItem to act as a hyperlink I have registered a property in the PJC with the following code:
    public static final ID activeColor = ID.registerProperty("ACTIVE_COLOUR");
    I then attempt to set the property from my form with the following code
    set_custom_property('icr_block1.icr_details',lv_rec_number,'ACTIVE_COLOUR','45,213,169');
    icr_block1.icr_details is a text item that has the PJC as its implementation class. The following error appears in the java console
    oracle.forms.net.ConnectionException: Forms session <5> aborted: unable to communicate with runtime process
    Anybody have any ideas?
    many thanks
    paul schweiger

    Permission granted - here is the full java code. When I set_custom_property in the form neither of the debug messages in the java fire
    package pjcs;
    //package totem.forms.extensions;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.StringTokenizer;
    import oracle.forms.properties.ID;
    import oracle.forms.ui.VTextField;
    public class TextLink extends VTextField
         public static final ID treatAsLink = ID.registerProperty("TREAT_AS_LINK");
    public static final ID activeColor = ID.registerProperty("ACTIVE_COLOUR");
    public static final ID visitedColor = ID.registerProperty("VISITED_COLOUR");
    private Cursor defaultCursor;
    private Cursor hoverCursor;
    private String pTreatAsLink = "YES";
    private Color pActiveColor;
    private Color pVisitedColor;
    private Color pNormalColor;
    private boolean m_debug = true;
    private boolean m_debugAll;
    private final String CLASSNAME = this.getClass().getName();
         public TextLink()
              try
                   jbInit();
              catch(Exception e)
                   e.printStackTrace();
         private void jbInit() throws Exception
              log("start text link");
    // Get reference to standard cursor
              defaultCursor = this.getCursor();
              // Create hand cursor for hover state
    hoverCursor = new Cursor(Cursor.HAND_CURSOR);
              // Add mouse listeners for changing cursor
              // Anonymous class used for simplicity
              this.addMouseListener(new MouseAdapter()
                   public void mouseEntered(MouseEvent me)
                        // Set hover cursor if field contains text
                        if (getText().length() > 0 && pTreatAsLink == "YES")
                             setCursor(hoverCursor);
    pNormalColor = getForeground();
    setForeground(pActiveColor);
                   public void mouseExited(MouseEvent me)
                        // Change cursor back
    if (pTreatAsLink == "YES")
                        setCursor(defaultCursor);
    setForeground(pNormalColor);
    * set the properties of the bean
    public boolean setProperty(ID property, Object value)
    log("set prop");
    if (property == treatAsLink)
    pTreatAsLink = value.toString();
    return true;
    else if (property == activeColor)
    pActiveColor = stripColour(value) ;
    return true;
    else if (property == visitedColor)
    pVisitedColor = stripColour(value) ;
    return true;
    else
    return super.setProperty(property, value);
    private Color stripColour(Object pColour) {
    String color = pColour.toString().trim();
    int r=-1, g=-1, b=-1, c=0 ;
    StringTokenizer st = new StringTokenizer(color,",");
    while (st.hasMoreTokens()) {
    c = new Integer((String)st.nextToken()).intValue() ;
    if( (c <0) || (c > 255) ) c = 0 ;
    if( r == -1 ) r = c ;
    else if( g == -1 ) g = c ;
    else if( b == -1 ) b = c ;
    return (new Color(r,g,b));
    public void log(String msg)
    if(m_debug||m_debugAll)
    System.out.println(CLASSNAME + ": " + msg);
    }

  • Forms session 125,296 aborted: unable to communicate with runtime process

    Forms 10g version on Hp unix.
    We have about 400 users are using 10g web based application. Our users get the error "There was a failure in the forms server during startup. This could happen due to invalid configuration.
    Please look into the web-server log file for details."
    web-server log file it says
    'Forms session <125,296> aborted: unable to communicate with runtime process.'
    It is not reproducible error. But it happens to everybody at random time/form/database which makes big impact on our business.
    We are in the edge of backing out of oracle forms due to this error
    Any help will be appreciated

    Would be a really bummer if you backed out of Forms and found the problems were because of network glitches ;o)
    You need to do a bit a scratching around to get more details on this.
    http://www.oracle.com/technology/products/forms/pdf/10g/troubleshooting_fls.pdf would be a good place to start. Chances are, network glitches are cause a disconnects but you need to confirm this by using the techniques described in this paper.
    Regards
    Grant

  • Forms session 1 aborted: unable to communicate with runtime process.

    I am running a form which performs a large extract - after about an hour, I get the above message.
    Can anyone give me any advice on where to start looking on how to solve this problem?
    We use forms9i.
    Thanks.

    Hi,
    actually it indicates that the Forms runtime engine did crash or does not respond. Can you verify if teh ifweb90 (or f90web on UNIX) exists after issuing teh host command? In either way, I think this is a case to handle by customer support.
    Frank

  • FRM-92101 Error by calling the form with parameters

    Hi All!
    After the migration Oracle Forms from version 6i to 10g by calling the form with parameters the error FRM-92101 occurs. In Application Server log shows the following:
    08/12/01 10:26:20 formsweb: Forms session <5> aborted: unable to communicate with runtime process.
    08/12/01 10:26:20 formsweb: Forms session <5> exception stack trace:
    java.io.IOException: FRM-93000: Unexpected internal error.
    Details : No HTTP headers received from runform
    at oracle.forms.servlet.ListenerServlet.forwardResponseFromRunform(Unknown Source)
    at oracle.forms.servlet.ListenerServlet.doPost(Unknown Source)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:824)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:830)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.AJPRequestHandler.run(AJPRequestHandler.java:224)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.AJPRequestHandler.run(AJPRequestHandler.java:133)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
    at java.lang.Thread.run(Thread.java:534)
    System: Oracle Application Server 10.1.2.0.2 with Red Hat Enterprise Linux Release 4. Client PC: Windows XP SP3 and Internet Explorer 7.
    Please help me if anybody has this problem before.
    Sergey

    Hi Sergei,
    I've just finished a three day search for a FRM-92101problem, so I want to post my case, just in case it helps someone.
    My case is similar to yours, in that you have a Forms 6i form migrated to 10g and deployed on Linux, although my problem was "very" specific, and thus very hard to find, this might give you some light.
    I had a visual attribute that defined the property "Fill Pattern" as "none" applied to a canvas, and it deployed without any problem on 10gR2/Windows, but when deployed on Linux (10gR2/SUSE 9) it would abort the application getting a FRM-92101.
    The solution in this case was just changing "none" to "Transparent".
    Hope this helps.
    Regards,
    Miguel.

  • Unable to communicate with 4235

    I am having trouble with one of our sensors. For quite some time it has been unaccessible although it continued sending alerts to security monitor. I recently went to the location of the IDS and powered it down and then back up at which point I was once again able to manage it and log into it via ssh and ssl. I then tried pushing out a new signature (this COULD be related) version 179 (or whatever the latest is) to the sensor which was formerly sitting at 137 or thereabouts (had been experiencing communication issues for quite some time). And now once again I still appear to be receiving alerts from it, but I cannot log into the device or push updates.
    Here is the error message from when I tried pushing the new sig:
    Sensor sensor-11: Signature Update Process
    No certificate existed for the MC on the sensor, adding the certificate.
    The trusted certificates on the sensor 120.2.2.2 have been updated.
    An error occurred while running the update script on the sensor named sensor-11. Detail = An RDEP communication error occurred during the update. Exception message = org.apache.commons.httpclient.HttpRecoverableException: Error in parsing the status line from the response: unable to find line starting with "HTTP"
    MC database sync complete.
    When I try to telnet to it on 443 (since it wont accept my browser connections on ssl but I assume the sensor is connected this way since it is getting alerts):
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <title>Server Error</title>
    </head>
    <body>
    <h1>Server Busy</h1>
    Maximum users reached.
    </body>
    </html>
    Connection to host lost.
    And when I try to ssh, after entering the username and password:
    Error: Cannot communicate with system processes. Please contact your system administrator.
    I cant get in with the service account btu it looks like I might have the wrong l/p information so im not completely ready to say that is a result of the sensor having problems too.
    I am clearly going to have to trek over to this location to reboot the box again but do you have any ideas as to what the problem is?

    Hello there,
    I faced the same problem in getting the error message, I re-imported the affected IDS to the VMS and things going fine.
    Steps:
    under management center for IDS sensor, select device then select the affected IDS and re-import it.
    kindly update me once you try it.
    Regards,
    Belal

  • Verify permissions failed: Framework unable to communicate with the Disk Management daemon

    I'm experiencing problems with the Disk Management daemon on my MBPro Retina running Mountain Lion 10.8.2. I discovered it first when I tried to enable file vault and received the "Framework unable to communicate with the Disk Management daemon" error message.
    So I started up Disk Utilities (which started fine) and tried to run Verify Disk Permissions. It failed with the following errror message:
    "Verify permissions failed: Framework unable to communicate with the Disk Management daemon"
    So I booted in to safe mode and tried Verify Disk Permissions again with the same results.
    So I booted in to the recovery partition to run Disk Utilities. It ran fine and the Verify Disk Permissions found some errors which I then fixed.
    I re-booted normally but am still experiencing the same behavior.
    I have turned off my anti-virus (Sophos) to no effect.
    I checked the console and found the following message:
    12/6/12 3:27:02.828 PM Disk Utility[157]: *** WARNING: Method userSpaceScaleFactor in class NSWindow is deprecated on 10.7 and later. It should not be used in new applications. Use convertRectToBacking: instead.
    Thoughts or suggestions?  Thanks!

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether your problem is caused by third-party system modifications that load automatically at startup or login. 
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode* and log in to the account with the problem. The instructions provided by Apple are as follows:
    Shut down your computer, wait 30 seconds, and then hold down the shift key while pressing the power button.
    When you see the gray Apple logo, release the shift key.
    If you are prompted to log in, type your password, and then hold down the shift key again as you click  Log in.
    *Note: If FileVault is enabled under OS X 10.7 or later, or if a firmware password is set, or if the boot volume is a software RAID, you can’t boot in safe mode. Safe mode is much slower to boot and run than normal, and some things won’t work at all, including wireless networking on certain Macs.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin. Test while in safe mode. Same problem? After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of the test.

  • CLI104 Unable to communicate with the administration server:

    i am doing a glass fish clustering with load balancer plugins using SJWS7.0 as the loadbalancer.
    i installed glassfish v2.1 and set up a cluster with a single node and single instance
    and i did all the steps as per this document
    https://glassfish.dev.java.net/javaee5/build/GlassFish_LB_Cluster.html
    i did all the steps with out any errors.
    but when i am trying to run the commad <websrvr_install_dir>/bin/wadm deploy-config --user=<websrvr_admin_user> <websrvr_instance_config>
    i am getting following errors
    CLI104 Unable to communicate with the administration server: Unable to connect t
    o admin-server. Please check if the server is up and running and that the host
    and port provided are correct.
    i don't how to fix this error , i search a whole day for fixing this errors.now i am waiting for help .please help me to fix this one
    Thanks and Regards

    The glassfish document that you mentioned does not provide any instructions to start the web server's administration server.
    Could you verify that the web server's administration server is indeed running? Do the following to start web server's administration server:
    $ <websrvr_instance_dir>/admin-server/bin/startservAfter that step try out the deploy-config command as described in the document.
    HTH.

  • Unable To Communicate With Printer HP Officejet Pro 8600 (Network)

    I recently purchased an HP Officejet Pro 8600. One morning a couple weeks ago I tried to print something and I received a prompt saying "Unable to Communicate with Printer (Network)". I turned off the printer and turned it back on which did not help, I then turned off my wireless network, turned it back on and still nothing. I finally figured out that I first have to turn off the printer, then turn off my wireless router wait thirty seconds, turn the router back on and the turn the printer back on. After these steps my printer was working. The next morning the same thing happened "Unable to Communicate with Printer (Network)" and I've been replaying Groundhog's Day ever since.
    Please help!

    Hello msheehy-
    I would like to help you with this issue. It sounds like the router is changing the ip address of the printer. This could be caused by a couple reasons. (ip lease time, power loss to the router) I would recommend looking at the following link. http://h10025.www1.hp.com/ewfrf/wc/document?docname=c03781399&cc=us&dlc=en&lc=en&product=4323648&tmp...
    I think if you would set a static ip address in the printer EWS you would better off. I hope this helps.
    Also, remember a click on the Kudos star to the left is a quick "Thanks" for a helpful post.
    Please select the "Accept as Solution" button on the post that best answers your question.
    I appreciate your input !
    Thank You,
    Donald

  • Unable to communicate with "ImporterProcessServer"

    Hi there,
    I searched the forum, but only found one entry, which didn't help.
    I re-installed Premiere CS4 due to a OS crash. Before that, everything worked smoothly, but now I get an error message saying: unable to communicate with the ImporterProcessServer, and Premiere won't start. The ImporterProcessServer is running in the task manager. Any ideas?
    Thanks in advance!
    Premiere Pro
    CS4
    English
    no updates
    no project
    Operating System
    Windows XP 64
    SP2
    English
    2560 x 1024 (Dual Monitor Setup, switching to one monitor also didn't help)
    Core 2 Quad Q9300 @ 2,50 GHz
    4 Gb
    Video card
    NVidia
    Geforce 260 GTX
    185.85
    2 Monitors
    Audio card
    Realtek
    OnBoard Audio
    5.10.0.5793
    Each hard drive's capacity and space remaining 1Tb, 2 Partitions C: 234 Gb, D: 697 Gb
    Hardware capture device No hardware capture device
    Capture software I use Premiere for capturing
    No Plug-Ins installed
    Adobe Premiere was unable to comminucate with the process "ImporterProcessServer". Restarting your computer may fix this problem.
    I just want to start Premiere CS4.
    Starting Premire CS4 was no problem before the new installation of the OS
    I already tried disabling the 2 Monitor Setup.

    Welcome to the forums.
    1.c is not good. Start Adobe Bridge, click on the Help menu and select Updates. When the update manager starts, close Bridge. Select all available updates in the update manager and let it do its thing. Restart your computer and you should be good to go.
    Cheers
    Eddie

  • HP Officejet Pro 8100 unable to communicate with printer, but still prints

    Hello,
    I have an Officejet Pro 8100 connected to a Windows XP SP3 computer via USB.  
    When installing  I downloaded the latest drivers off the HP webiste and followed the instructions for installing the printer and connecting via USB.  While installing I only installed the basic print driver.
    The printer appeared to install correctly.
    When printing (test page, or from other programs such as Word or Excell), the printer will actually print the requested document, however, an error box will pop up saying "Unable to communicate with printer".  The only option on the error box is the cancel the current print job.
    Before cancelling the print job, even though the printer actually printed the document, I can still see the document in the print queue until I click the "Cancel" button on the error box.
    I have deleted the printer, uninstalled and reinstalled twice, but the issue persists.
    Any ideas?

    Hi aconway,
    I hate to hear you are having issues.  This could be caused by a port issue, bad USB cable/hub/switch connection, or possibly a spooler or driver issue.  Click Here to run the print and scan doctor (select OS, then click the + sign beside utility diagnostic tools, click the download button next to print and scan doctor). If you would like to learn more about your product, Click Here. 
    Suggestions:
    1. Run the print and scan doctor to identify any port issues
    2. Connect unit directly to PC with new USB cable that meets specifications(no longer than 4-6ft). 
    3. Remove any hubs or switches if being used.  
    Hope this helps!
    Also, remember a click on the Kudos star to the left is a quick "Thanks" for a helpful post.
    Please select the "Accept as Solution" button on the post that best answers your question.
    I appreciate your input !
    Thank You,
    I work for HP.

  • HPlip: "Unable to communicate with the device" error

    Hello Arch Community, I've been a user of Arch for a while and most of it just worked out of the box. However, I had my HP 6300 working through a direct connection. But a couple of days ago it just broke.
    I've tried everything I could think of to make it back but all has been unsuccesful, I removed the printer and tried to add it again (sorry, old Windows habit, there most of the time works), however, I couldn't add the printer, it fails with the error: "Unable to communicate with the device. Please check the device and try again.", I added myself to the ld group (shouldn't matter, but I did it anyway)
    I have cups 1.4.2.
    Hp-check:
    HP Linux Imaging and Printing System (ver. 3.9.10)
    Dependency/Version Check Utility ver. 14.3       
    Copyright (c) 2001-9 Hewlett-Packard Development Company, LP
    This software comes with ABSOLUTELY NO WARRANTY.           
    This is free software, and you are welcome to distribute it
    under certain conditions. See COPYING file for more details.
    Note: hp-check can be run in three modes:
    1. Compile-time check mode (-c or --compile): Use this mode before compiling the HPLIP supplied     
    tarball (.tar.gz or .run) to determine if the proper dependencies are installed to successfully     
    compile HPLIP.                                                                                     
    2. Run-time check mode (-r or --run): Use this mode to determine if a distro supplied package (.deb,
    .rpm, etc) or an already built HPLIP supplied tarball has the proper dependencies installed to     
    successfully run.                                                                                   
    3. Both compile- and run-time check mode (-b or --both) (Default): This mode will check both of the
    above cases (both compile- and run-time dependencies).                                             
    Saving output in log file: hp-check.log
    Initializing. Please wait...
    | SYSTEM INFO |
    Basic system information:
    Linux carloslicea-laptop 2.6.31-ARCH #1 SMP PREEMPT Tue Nov 10 19:48:17 CET 2009 i686 Intel(R) Core(TM)2 CPU T5600 @ 1.83GHz GenuineIntel GNU/Linux                                                     
    Distribution:
    unknown 0.0 
    Checking Python version...
    OK, version 2.6.4 installed
    Checking PyQt 4.x version...
    OK, version 4.6.1 installed.
    Checking for CUPS...
    Status: el planificador de tareas se está ejecutando
    Version: 1.4.2
    warning: /etc/cups/cupsd.conf file not found or not accessible.
    Checking for dbus/python-dbus...
    dbus daemon is running.
    python-dbus version: 0.83.0
    | COMPILE AND RUNTIME DEPENDENCIES |
    note: To check for compile-time only dependencies, re-run hp-check with the -c parameter (ie, hp-check -c).                                                                                             
    note: To check for run-time only dependencies, re-run hp-check with the -r parameter (ie, hp-check -r).                                                                                                 
    Checking for dependency: CUPS - Common Unix Printing System...
    OK, found.                                                   
    Checking for dependency: CUPS DDK - CUPS driver development kit...
    warning: NOT FOUND! This is an OPTIONAL/RUNTIME ONLY dependency. Some HPLIP functionality may not function properly.                                                                                   
    Checking for dependency: CUPS devel- Common Unix Printing System development files...
    OK, found.                                                                           
    Checking for dependency: CUPS image - CUPS image development files...
    OK, found.                                                           
    Checking for dependency: DBus - Message bus system...
    OK, found.                                           
    Checking for dependency: gcc - GNU Project C and C++ Compiler...
    OK, found.                                                     
    Checking for dependency: GhostScript - PostScript and PDF language interpreter and previewer...
    OK, found.                                                                                     
    Checking for dependency: libcrypto - OpenSSL cryptographic library...
    OK, found.                                                           
    Checking for dependency: libjpeg - JPEG library...
    OK, found.                                       
    Checking for dependency: libnetsnmp-devel - SNMP networking library development files...
    OK, found.                                                                             
    Checking for dependency: libpthread - POSIX threads library...
    OK, found.                                                   
    Checking for dependency: libtool - Library building support services...
    OK, found.                                                             
    Checking for dependency: libusb - USB library...
    OK, found.                                     
    Checking for dependency: make - GNU make utility to maintain groups of programs...
    OK, found.                                                                       
    Checking for dependency: PIL - Python Imaging Library (required for commandline scanning with hp-scan)...                                                                                               
    OK, found.                                                                                         
    Checking for dependency: PolicyKit - Administrative policy framework...
    warning: NOT FOUND! This is an OPTIONAL/RUNTIME ONLY dependency. Some HPLIP functionality may not function properly.                                                                                   
    Checking for dependency: PyQt 4 DBus - DBus Support for PyQt4...
    OK, found.                                                     
    Checking for dependency: Python DBus - Python bindings for DBus...
    OK, found.                                                       
    Checking for dependency: Python devel - Python development files...
    OK, found.                                                         
    Checking for dependency: Python libnotify - Python bindings for the libnotify Desktop notifications...                                                                                                 
    warning: NOT FOUND! This is an OPTIONAL/RUNTIME ONLY dependency. Some HPLIP functionality may not function properly.                                                                                   
    Checking for dependency: Python XML libraries...
    OK, found.                                     
    Checking for dependency: Python 2.3 or greater - Required for fax functionality...
    OK, found.                                                                       
    Checking for dependency: Python 2.2 or greater - Python programming language...
    OK, found.                                                                     
    Checking for dependency: Reportlab - PDF library for Python...
    warning: NOT FOUND! This is an OPTIONAL/RUNTIME ONLY dependency. Some HPLIP functionality may not function properly.                                                                                   
    Checking for dependency: SANE - Scanning library...
    OK, found.                                         
    Checking for dependency: SANE - Scanning library development files...
    OK, found.                                                           
    Checking for dependency: scanimage - Shell scanning program...
    OK, found.                                                   
    Checking for dependency: xsane - Graphical scanner frontend for SANE...
    OK, found.                                                             
    | HPLIP INSTALLATION |
    Currently installed HPLIP version...
    HPLIP 3.9.10 currently installed in '/usr/share/hplip'.
    Current contents of '/etc/hp/hplip.conf' file:
    # hplip.conf.  Generated from hplip.conf.in by configure.
    [hplip]
    version=3.9.10
    [dirs]
    home=/usr/share/hplip
    run=/var/run         
    ppd=/usr/share/ppd/HP
    ppdbase=/usr/share/ppd
    doc=/usr/share/doc/hplip-3.9.10
    icon=/usr/share/applications   
    cupsbackend=/usr/lib/cups/backend
    cupsfilter=/usr/lib/cups/filter 
    drv=/usr/share/cups/drv/hp       
    # Following values are determined at configure time and cannot be changed.
    [configure]                                                               
    network-build=yes                                                         
    pp-build=no                                                               
    gui-build=yes                                                             
    scanner-build=yes                                                         
    fax-build=yes                                                             
    dbus-build=yes                                                           
    cups11-build=no                                                           
    doc-build=yes                                                             
    shadow-build=no                                                           
    hpijs-install=yes                                                         
    foomatic-drv-install=yes                                                 
    foomatic-ppd-install=yes                                                 
    foomatic-rip-hplip-install=yes                                           
    hpcups-install=yes                                                       
    cups-drv-install=yes                                                     
    cups-ppd-install=no                                                       
    internal-tag=3.9.10.72                                                   
    restricted-build=no                                                       
    ui-toolkit=qt4                                                           
    qt3=no                                                                   
    qt4=yes                                                                   
    policy-kit=no                                                             
    hpijs-only-build=no                                                       
    lite-build=no                                                             
    udev-acl-rules=no                                                         
    hpcups-only-build=no                                                     
    hpijs-only-build=no                                                       
    Current contents of '/var/lib/hp/hplip.state' file:
    # hplip.state - HPLIP runtime persistent variables.
    [plugin]
    installed=0
    eula=0     
    Current contents of '~/.hplip/hplip.conf' file:
    [last_used]                                   
    printer_name =                                 
    printer =                                     
    working_dir = .                               
    device_uri = "hp:/net/Officejet_6300_series?zc=HP56B6CF"
    [commands]
    scan = /usr/bin/xsane -V %SANE_URI%
    [installation]
    version = 3.9.10.72
    date_time = 12/04/09 23:41:37
    [settings]
    systray_messages = 0
    systray_visible = 1
    [fax]
    email_address =
    voice_phone =   
    [refresh]
    rate = 30
    enable = false
    type = 1     
    [polling]
    enable = false
    device_list =
    interval = 5 
    | DISCOVERED USB DEVICES |
    No devices found.
    | INSTALLED CUPS PRINTER QUEUES |
    lpstat
    Type: Unknown
    Device URI: No se han añadido destinos.
    | SANE CONFIGURATION |
    'hpaio' in '/etc/sane.d/dll.conf'...
    OK, found. SANE backend 'hpaio' is properly set up.
    Checking output of 'scanimage -L'...
    No scanners were identified. If you were expecting something different,
    check that the scanner is plugged in, turned on and detected by the
    sane-find-scanner tool (if appropriate). Please read the documentation
    which came with this software (README, FAQ, manpages).
    | PYTHON EXTENSIONS |
    Checking 'cupsext' CUPS extension...
    OK, found.
    Checking 'pcardext' Photocard extension...
    OK, found.
    Checking 'hpmudext' I/O extension...
    OK, found.
    Checking 'scanext' SANE scanning extension...
    OK, found.
    | USER GROUPS |
    dbus hal network video audio optical storage power users policykit vboxusers
    | SUMMARY |
    error: 4 errors and/or warnings.
    Please refer to the installation instructions at:
    http://hplip.sourceforge.net/install/index.html
    Done.
    Albeit it has errors, I can't see how they are releated (cups does have a conf file, but it seems that *my* user can't access it, expected 'couse it's owned by root). Any ideas?

    Hi
    I had the same problem. The solution is to change the network discovery mode to SLP or add manually the IP address of your printer at the first step of the hp setup wizard. After you install the printer successfully, check the maximum resolution of the driver. Mysteriously, for me the maximum resolution was restricted to 600 dpi so I downgraded to the previous version of HPLIP and got back the 1200 dpi option. Please let me know if you have this issue too. I have posted this question in the hplip forums, but I haven't received any replies yet.

  • Spartan 3E with Labview 2012 (32 bit) on WIndows 7 64-bit - Error Code: -310602 NI-COBS: Unable to communicate with device over communication cable.

    Thanks for the info, Kyle.  I will probably try to find an older 32-bit XP machine.  VM is just not an option for me right now.

    Hello everybody,
    I am trying to use the DIgilent Spartan 3E board with Labvew 2012 SP1 32 bit.  I am able to compile the example code for LED shift.  I am however unable to transfer code to the FPGA.  I get the following error message:
    Error Code: -310602 
    NI-COBS:  Unable to communicate with device over communication cable. 
    Please verify that the cable is connected to a supported device and that the appropriate drivers are installed.
    My system configuration is as follows:
    Windows 7 (64 bit) on Dell XPS laptop.
    Labview 2012 SP1 (32 bit)
    Labview FPGA 2012 SP1
    Labview 2012 FPGA support for Spartan3E
    Xilinx 13.4 tools
    DEFB LV FPGA 2012sp1 support installer
    Xilinx USB cable driver v1.3 installed.
    I took all the precautions mentioned by others on this forum and others, mainly that the cable must be disconnected before installing the Xilinx cable driver. All software and drivers were installed correctly.  I even uninstalled and reinstalled the entire Labview software set I had.  I still get the same error.
    A few other questions:
    1.  Is the Xilinx cable different from a regular USB cable of the same configuration ?
    2.  When I program the FPGA I only have the USB cable connected between my computer and the Spartan 3e board.  Should any other cable be connected ?
    3.  What should be the correct jumper settings for J1 - JP30 (especially J30, J11, JP9, JP6, JP7, etc) ?
    I have been at this or over 3 days trying to figure it out.  Any help will be greatly appreciated.
     

  • 6500 E710 unable to communicate with the printer

    I have an HP Officejet 6500A Plus E710n-z.  It has in the past but it no longer connects (through wireless) to my computer (Apple OSX 10.8.4).  It has become intermittent over the last month, and then did not respond at all.  I had a growing list of items to print.  
    I have followed each of the steps on  - http://h10025.www1.hp.com/ewfrf/wc/document?docname=c02205477&cc=au&dlc=en&lang=en&lc=en&product=408... .
    Wifi to each is not a problem.  
    The printer has been disconnected (deleted) as the computer printer.  I have been able to add back in the 'scanner' part of the printer, but cannot add in the printer - it has the message 'unable to communicate with the printer'.
    What do I do next?
    This question was solved.
    View Solution.

    I would recommend that you do a hard reset on the printer. To do that, use the following steps.
    1. Press the Power button to turn on the product.
    2. With the product turned on, disconnect the power cord from the rear of the product.
    3. Unplug the power cord from the wall outlet.
    4. Wait at least 15 seconds.
    5. Plug the power cord back into the wall outlet.
    6. Reconnect the power cord to the rear of the product.
    7. If the product does not turn on by itself, press the power button to turn it on.
    Try that and let me know if it helps!
    Best of luck,
    Kyle
    -------------How do I give Kudos? | How do I mark a post as Solved? --------------------------------------------------------

Maybe you are looking for

  • Question on closing Front Panel references

    I'm manipulating controls on the Front Panel of my VI.  In doing this, I open a slew of references (to the VI, to the Front Panel, to its Panes, and to the objects on the Front Panel).  Normally, before exiting the VI, I carefully close them (in LIFO

  • I lost my iTunes card that I bought earlier today.  Is there any way I can still redeem it?

    I am worried that I've spend 25 dollars for nothing.  I bought an iTunes card earlier today and seem to have lost it.  Does anyone know a way I can still redeem it?  I have the reciept they gave me when I bought it.  Any help would really be apprecia

  • Page navigation issues

    I am not able to move to next page in the ebooks adobe digital version - tried in both version 2 & 3 - please help I have to go to the main topic of content tab & then click on any topic - again It will not let me scroll furhter down than what i can

  • Extenion Panel not showing installed addons

    Hi - I have bought a numer of 'add ons; using the creative cloud add-on section of the adobe site. Only one (a free one called Krul) appears. The rest are noweher to be found in the extensions panel. I see the in Extension Manager but not in cc 2014

  • ICP Module of HFM

    Dear all, I have one doubt. If we are going to use ICP module of HFM then do we need to load the data ONLY in PERIODIC and not YTD mode? Which method is OK for dealing with ICP transactions, using ICP module or dealing with the same without it. Do we