Cannot access Network Non plug and play printer

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default Cannot access Network Non plug and play printer

    I have a web service that want to print something to a printer
    connected on another computer in the network. And that printer happens
    to be a non-plug and play printer (It's a thermal printer).

    I tried to install the printer to the server directly and it works
    fine (I use PrinterSettings.PrinterName to set the printer). But when
    I set it up on another computer it doesn't work. I have installed the
    networked printer's driver to the server and I notice something odd.

    When debug, I look at PrinterSettings.InstalledPrinter[], the thermal
    printer in not in the list while other networked plug and play
    printers are in the list. (but again, the thermal printer is in the
    "Printers and Faxes" folder, I'm using WinXP)

    Whenever I tried to access the printer, I got "RPC not available"
    error. But I have checked that service is started and I can print test
    pages remotely.

    Please give me some ideas about what can went wrong.

    Thanks,
    Homa Wong
    Homa Guest

  2. Similar Questions and Discussions

    1. How to make my Windows 2003 Server *non Plug-n-play*??
      Gurus, How do I set a Windows Server 2003 box *not* to look for Plug-n-play devices when it boots up? I have some NICs that I want it *not* to...
    2. WS Interoperablity: plug-and-play, plug-and-pray, or plug-and-pry?
      Hi- Are web services interoperable? The debate continues. The answer is yes and no. The real question is when, where, and how much. Here's a set...
    3. Autorun issue in XP with Plug and Play
      The autorun feature works on my XP machine in most respects, but during any plug and play installation - specifically the stage when it asks you to...
    4. windows network printer
      Hi everybody I'm sorry if this is a FAQ, but I kinda have a problem. at home I have set up a little network, and there is only one printer....
    5. how to disable parallel port plug and play device detection
      Hello all, Does anyone know how to disable parallel port plug and play device detection? I have created a silent install for a printer but...
  3. #2

    Default Re: Cannot access Network Non plug and play printer

    local accounts such as the machine account asp.net runs under do not have
    network access rights. you have to fill in a domain userName and password
    in the web config.

    -- bruce (sqlwork.com)


    "Homa" <homaneag@yahoo.com> wrote in message
    news:a9a6fc0b.0308041438.32fbc8ac@posting.google.c om...
    > I have a web service that want to print something to a printer
    > connected on another computer in the network. And that printer happens
    > to be a non-plug and play printer (It's a thermal printer).
    >
    > I tried to install the printer to the server directly and it works
    > fine (I use PrinterSettings.PrinterName to set the printer). But when
    > I set it up on another computer it doesn't work. I have installed the
    > networked printer's driver to the server and I notice something odd.
    >
    > When debug, I look at PrinterSettings.InstalledPrinter[], the thermal
    > printer in not in the list while other networked plug and play
    > printers are in the list. (but again, the thermal printer is in the
    > "Printers and Faxes" folder, I'm using WinXP)
    >
    > Whenever I tried to access the printer, I got "RPC not available"
    > error. But I have checked that service is started and I can print test
    > pages remotely.
    >
    > Please give me some ideas about what can went wrong.
    >
    > Thanks,
    > Homa Wong

    bruce barker Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139