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

Similar Messages

  • 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

  • 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);
    }

  • 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

  • Unable to Communicate with Printer message, but still prints

    I installed a new ENVY 4500 printer on my Windows XP system. and it there are two problems:
    1.  when I try to print, it tkes some time, then a message window appears with "unable to communicate with printer", but it still prints.  I have uninstalled the printer and the drivers and reinstalled, but to no avail.
    2. I have a Seagate GoFlex USB backup drive attached.  However, when the printer is connected, the Seagate drive disappears.  It happily coexisted with my former HP C4100 printer for years, but the new one seems to cause problems.

    I solved the problem.  I purchased a new USB cable for the printer.  I deleted the printer, uninstalled the print drivers, and completely reinstalled the printer.  At first the installation did not work, but I discovered the USB cable was not completely inserted into the printer.  Initially it felt like it was, but I gave it an extra push and it clicked into place.  At that point the installation completed successfully.  Now the printer and the Seagate drive work properly.

  • "Unable to communicate with server error" when pasting data in in list via edit

    Hi Guys, I imported data into a SharePoint site and it seems that it made the fields in to multiline, so I had to edit each colum and make it single, but when I did that it seems that the html font code also detached and views in the record as you can see.
    So I went into edit list so I can copy and past the same data back in without having the font color html code in, but once I did that I am getting a error which isn't letting me save
    Does anyone know how to pass this error or another way to remove all these font codes in my fields names?
    Thank you.

    Hi,
    For your issue, try to do IIS Reset, compare the results.                       
    You can use compatibility mode to check whether it works.
    Open IE->Tools->Compatibility View Settings
    You can also use Internet Explorer 8,9,10 to check whether it works.
    Also, please check the SharePoint ULS log located at : C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\LOGS to get a detailed error description.
    meanwhile check the following, may help:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/8142d297-d8f7-4b7a-8faa-052ecb9ae74a/custom-item-updating-throws-unable-to-communicate-with-the-server-error?forum=sharepointgeneral
    http://sharepoint.stackexchange.com/questions/94087/give-users-edit-permission-to-a-list-but-no-access-to-the-site
    https://social.technet.microsoft.com/Forums/sharepoint/en-US/d7845547-e0f1-40de-badd-c66a34c0cfb4/the-server-was-unable-to-save-the-form-at-this-time-please-try-again
    Best Regards,
    Lisa Chen
    Lisa Chen
    TechNet Community Support

  • Custom Item updating throws Unable to Communicate with the server Error.

    Hi Team,
       I am trying to Implement Form based authentication in SharePoint 2013. When trying to update membership list (A Custom List) item it throws "Unable to Communicate with the Server" error. As shown in below image.
    Please let  me know how to resolve this issue.
    Thanks in advance.

    Hi Murali,
    I'm having a similiar problem with one of my customers. We haven't been able to resolve it but we have found a way around it, I'd like to do more testing but my customer justs wants to get on with it now that we have a workaround. Logging a call with Microsoft
    can be expensive, most businesses have a finite amount of support hours so you really have to do your homework before you starting chewing those hours up.
    Problem Description:
    Customer created a custom list with two calculated columns and various choice, string and multi-string columns. Customer was attempting to copy and paste 128 rows of data into each column from a spreadsheet. The first (title) column successfully pasted
    128 values.
    Subsequent columns would paste the values but not allow the values to be committed as every row displayed the "Unable to Communicate with the Server" message, preventing the list from being saved.
    Workaround:
    The problem appears to be related to the number of items the customer is trying to paste during each operation and the relationship this has with the calculated columns. We found that when we pasted 70 or less items in one operation we did not receive the
    error. I attempted pasting 128 rows of data into a seperate list with the same columns excluding the calculated columns, and was successfully able to paste all 128 rows.
    For the problem list I suggested to the customer to copy the formula's from the calculated columns, delete these columns and then trying pasting again, he didn't like the idea as he's happy to paste in 50% chunks. Based on the fact I was able to paste
    without any problems on a list without calculated columns I would suggest it's related.
    So my questions for you are:
    Are you trying to paste/add multiple values at once?
    Do you have any special column types, i.e. calculated or lookup columns?
    What columns do you have in your list?
    Have you tried adding the entries in using form entry instead of grid entry?
    Unforunately I don't know how generic this error message is, there is absolutely nothing in my ULS logs or event viewer. If this error is specific to submitting data to a list in grid view it would make it easier to diagnose, but if the error is generic
    in nature your problem could be as obscure as the FBA configuration.
    I hope this information helps you, I will try and do some more testing.

  • 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? --------------------------------------------------------

  • HP 5510,windows 7, new setup of printer, "unable to communicate with printer" when i try to print

    HP 5510, Windows 7, new printer, just picked it up!, "unable to communicate with printer" when I try to print a page, all network conections check out OK with Print Diagnostic Utility.

    Are you receiving any error messages when you print from the desktop? Its possible the print spooler is having issues which is not pushing the jobs to the printer. Lets restart the print spooler to get any old jobs that could be stuck in the queue removed.
    1. Press the start orb in the bottom left on the screen.
    2. Click on "Run"
    3. Type "services.msc" (without the quotes)
    4. Locate the Print Spooler service in the right column
    5. Click restart on the service link on the left
    After it restarts the spooler go ahead and retry printing. Let me know if this works.
    Thanks,
    Sean
    -------------How do I give Kudos? | How do I mark a post as Solved? --------------------------------------------------------

Maybe you are looking for

  • How do I create global settings for Firefox 6.0.2. deployment?

    Hello everyone, I hope someone can help. I'm getting very frustrated that Firefox 6.0.2 is not enterprise deployment friendly. Basically, I want to create a 6.0.2. software package that allows me to do the following: 1. set the home page for current

  • Is there any file carver technology tool to recover from a HDD only a group of named jpg files

    Is there any file carver technology tool to recover from a HDD only a group of named jpg files that i lost? I lost 500 jpg files in my iPhoto library named i.e from 1.jpg to 500.jpg and I want to recover ONLY them from an 1TB external WD My Book e-sa

  • I can't install Bamboo utility in my mac

    I'm trying install Bamboo dock (wacom tablet utily) in my mac. When the install program running it start to install but when almost finish a text appears of ADOBE AIR but this text is in chinesse caracthers. When I get down button, a message appears.

  • Delete a curve in a report with GraphObjDelete?

    Hello! I have a problem with deleting curves from a report. (Diadem 10.0, Windows XP, english) But first something working: Call GraphObjNew("Freetext","Text1") Call GraphObjOpen("Text1")      TxtTxt ="Test"      TxtSize =20      TxtColor ="red"     

  • About servletContext

    Hi! what is the use of servlet context. what is the difference between request.GetRequestDispatcher and servletContext.gerRequestDispatcher . Friends,i need a clear explanation with some example code.