Ask a Question related to ASP Components, Design and Development.

  1. #1

    Default Printer Error 482

    Has anyone come across this error in context of printing
    via ASP/IIS4. on NT4 (Sp5) Have a VB6 Dll that simply
    calls: Printer.Print "Test" Printer.EndDoc When using dll
    in VB6 App printing works fine. When using same dll called
    in ASP Page get: "Printer Error 482" Only way I can
    replicate error in VB6 App is to delete ALL Printers on NT
    Server. From trawling net for info it seems Error 482 is
    commonly associated with: 1.Printer Off-Line 2.Printer Out
    of Paper 3.No Default Printer 4.Hardware/Connection
    Faults. IIS4 user Local System account IUSER_MachineName
    which as far as I'm aware is sufficient to access printer.
    So don't think its a security issue. Have read printer
    share names containing spaces also trip this error. Am at
    a loss.... Any help,pointers gratefully received. Thanks
    Steve
    Mestre André Guest

  2. Similar Questions and Discussions

    1. Win32::Printer::Enum::Printer($server)
      Has anyone ever managed to get Win32::Printer::Enum::Printer($server) to enumerate printers on a server? I've tried $server with a plain server...
    2. Printer Error on XP
      After installing Adobe InDesign on XP I had the following error trying to print to a network printer. "Printing Error:Probelm Intializing current...
    3. Acrobat Distiller Printer Error Message: This Document Failed to Print
      Hi, all 3 of our office computers are using XP Pro and Acrobat 5.05. My computer has the Adobe update for 5.05. All the computers including mine...
    4. PRINTER ERROR
      Dear sirs, When i try to print any pdf documents from Acrobat 6 i have two empty pages and text - ERROR: syntaxerror, OFFENDING COMMAND ?, STACK:...
    5. Error msg when printing using the adobe PDF printer driver
      When I try to print an autocad file using the adobe PDF printer I am getting this error message %%%% %%%% Stack: -dict- %%%% %% %%
  3. #2

    Default Re: Printer Error 482

    ASP happens within the context of the web server, not the client machine.
    When your component calls the printer object, it's probably trying to find a
    printer on the server. To print from a webpage, you need clientside code
    (javascript: document.print() ), and not every browser supports it.



    "Mestre André" <tigre@hnet.com.br> wrote in message
    news:031101c3b842$f4fed6c0$a101280a@phx.gbl...
    > Has anyone come across this error in context of printing
    > via ASP/IIS4. on NT4 (Sp5) Have a VB6 Dll that simply
    > calls: Printer.Print "Test" Printer.EndDoc When using dll
    > in VB6 App printing works fine. When using same dll called
    > in ASP Page get: "Printer Error 482" Only way I can
    > replicate error in VB6 App is to delete ALL Printers on NT
    > Server. From trawling net for info it seems Error 482 is
    > commonly associated with: 1.Printer Off-Line 2.Printer Out
    > of Paper 3.No Default Printer 4.Hardware/Connection
    > Faults. IIS4 user Local System account IUSER_MachineName
    > which as far as I'm aware is sufficient to access printer.
    > So don't think its a security issue. Have read printer
    > share names containing spaces also trip this error. Am at
    > a loss.... Any help,pointers gratefully received. Thanks
    > Steve

    William Morris 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