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

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".

  • 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

  • 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

  • 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

  • HP Officejet 6700 "unable to communicate with printer".

    Before I left on vacation, the wireless printer was working fine.  Now I get this error message.  I have disconnected and reconnected everything.  I have run the diagnostic tests and the wireless network checks out fine.  I have tried everything in the troubleshooting guide to no avail.  I think it's probably a setting somewhere, but I can't figure out where.  Help!!!!

    I have the same problem with an HP OfficeJet 8600 Plus.
    It worked last week, this week it gives "Unable to communicate with printer" on both of our PCs (XP, Vista).
    I have tried all of these:
    Rebooting router
    Rebooting printer (5 times)
    Rerunning the wireless setup wizard on the printer (3 times).
    Start menu > HP OfficeJet  Pro 8600 > Update IP Address (3 times)
    Download & run latest HP Print and Scan Doctor (connected via USB cable) (once)
    On the print & scan doctor, it gave no errors or warnings, and appears to have completed successfully. Nonetheless when I clicked on 'print test page' from within the HP Print and Scan doctor, I still get the "Unable to Communicate with Printer" popup box.
    On the 'HP Hardware DIagnostic Utility 3.1 "Wizard" tab, Connectivity and Device Status bogh gave green checks, and, the 'Print Test' WAS SUCCESSFUL in printing a page from within that utility. Hardware DIagnostic Utility 3.1 completed with all tests marked successful. All other printing still fails, e.g. regular printing and Windows 'Print Test Page' still fails with the Unable to Communicate with Printer error.
    The HP Hardware Diagnostic Utility 3.1 'Printer Data' tab says I am running Firmware Version CLP1CN1232AR, Born On Date 10/3/2012, Software Version 25.0.169.0, Printer Driver Version 06.64.00.994.
    My printer is less than 1 year old -- has it died/shoud I start up the warranty process, or is there something yet to try?

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

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

  • Unable to communicate with printer via WiFi

    Laptop is not recognizing printer, stating "unable to communicate with printer at this time.  ! No Printer Selected".
    There is only one printer and only one to select from.
    All other laptops, iphones, etc communicate FINE!
    It is just THIS puter unable to print.  Printer is HP Photosmart C410 All-In-One Premium Fax.
    Router, modem, etc all functioning properly.  PRINTER functions properly.
    This has gotten VERY old!  Brand new MacBook Pro!
    OS X 10.9.5

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

  • Unable to communicate with printer-hp deskjet 1000

    I have used this Printer for almost 2 yrs and dis problem ne'er occoured before........forst my text print came distorted then it showed offline and later its says printer is ready but when i give the print command......it says "unable to communicate with printer"
    Help pls!!!!
    This question was solved.
    View Solution.

    Welcome to the forums niks!
    I understand you are having an issue with your Deskjet 1000 showing the message "unable to communicate with printer".
    Please let me know which operating system you are running and I will look into this for you.
    Help to find which Operating System you are running:
    Which Windows Operating System am I running?
    Mac OS X: How Do I Find Which Mac OS X Version Is on My Computer?
    Happy Monday
    R a i n b o w 7000I work on behalf of HP
    Click the “Kudos Thumbs Up" at the bottom of this post to say
    “Thanks” for helping!
    Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

  • Unable to Communicate with Printer. HP Officejet Pro 8600 N911g

    Unable to Communicate with Printer. HP Officejet Pro 8600 N911g {Removed for privacy}
    I cant even connect to the printer on IE, Firefox I get in just fine.
    I have it set to only warn of ink when printing so what fix won't work
    I noted my Firmware
    I am on Win 7 64 bit

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

  • Error: Unable to communicate with the Reports Server

    The configuration I am working with is:
    * Oracle 8.1.6 DB on a Unix machine
    * Oracle Reports 6i on an NT machine
    * Microsoft IIS web server
    I have successfully tested my reports during the development phase of my project. Unfortunately, now that it is considered production and is available to upwards of 30 people, I am getting the following error message after verifying the server is up and after a numerous reports have been served:
    Error: The requested URL was not found, or cannot be served at this time.
    Oracle Reports Server CGI - Unable to communicate with the Reports Server.
    After receiving this message I noticed that the Report Server service is down and the log only indicates that it "shut down immediately". (no ORA messages) I tried restarting the service, but after serving one report, it would shut down again with the same message.
    I am wondering if it is a problem related to the cache. I used the default of 50M in the config file, but when the cache directory reaches 50M, the problem seems to appear. I then deleted approx. 30M of files from the cache directory and the Report Server service appeared stable. I changed the cache limit to 1M to see if there was a problem with the cache being so big. All appeared well for the first few hours of operation but then the Report Server service shut down again and upon restart crashed within a minute or two (usually as someone tests a report, it crashes again).
    Do I have a configuration problem? Has anyone seen this problem? Thanks in advance.

    Hi,
    I just found out that if i give
    http://localhost/cgi-bin/rwcgi60.exe?key1
    where key1 is a key mapping file that contains the report name,username and pwd for the database and desformat...etc..
    the report pulls out fine with the correct data..
    i am stunned...
    while none of the other commands like
    http://.../rwcgi60.exe
    or
    http://..../showenv?server=repserver
    or any other usual command doesnt work...
    anybody faced this before??
    Thanks.

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

  • Oracle reports 6i error unable to communicate with the reports server

    Hi,
    I have followed the steps for running oracle reports server 6i..i am using win2k3 and IIS6.0
    i have checked tnsnames.ora and sqlnet.ora and everything looks good..
    when i try
    http://localhost/cgi-bin/rwcgi60.exe
    i get a page called User Database Authentication and asks for username,password and database..instead of the help page that should be displayed..
    when i enter those values nothing happens for the first time and the same page is displayed again..when i enter it again i am getting this error
    url requested not found or cannot be served at this time
    oracle reports cgi: unable to communicate with the reports server
    any help would be grateful..
    Thanks.

    Hi,
    I just found out that if i give
    http://localhost/cgi-bin/rwcgi60.exe?key1
    where key1 is a key mapping file that contains the report name,username and pwd for the database and desformat...etc..
    the report pulls out fine with the correct data..
    i am stunned...
    while none of the other commands like
    http://.../rwcgi60.exe
    or
    http://..../showenv?server=repserver
    or any other usual command doesnt work...
    anybody faced this before??
    Thanks.

Maybe you are looking for