Getting http printing to windows printer server to work! - IPP over HTTP

Im trying to get our macs to print to our windows print server using web printing (http). The server is setup to accept anonymous as well as domain user print requests.
when i add the printer using advanced setup > ipp over http and enter our printer url, e.g. http://ourprinterserver.mydomain.com/printers/printername
and enter our printer name in the appropriate field, select the correct driver, any file sent the printer sits in the print cue.
when i looks at the cups page http://localhost:631, I see an error that that the destination printer does not exist.
Has anyone had success?

I don't have a Windows print server, but the standard port for IPP printing is 631, so you need to specify that in the URI like this:
http://ourprinterserver.mydomain.com:631/printers/printername
(otherwise, http defaults to port 80)
HTH

Similar Messages

  • Domain Printing to Windows Print Server

    Hi all,
    Does anyone have some basic tips to get 10.8 clients to nicely print to windows printer shares in a domain (active directory) enviroment?
    I would really like to keep my Mac's - but printing is becoming the issue.
    My Macs run 10.8 fully patched and are AD bound. They login and authenticate to fileshares flawlessly.
    I need to print to a Windows Server queue because all jobs are monitored via Papercut. Papercut client works well on the macs.
    There seems to be two different methods to attach a printer; System Preferences > Printers > Add Printer (Default / Open Directory) or Add Printer (Windows - Domain - Servername - Printername) - both methods seem to work (sometimes)
    However I often get authentication / job on hold errors, or "'yourprinter' is trying to use the printer. Type the name/password of a user in the 'print operator' group".
    Yet sometimes everything works.
    The last option would be to install papercut server on the mac server - and somehow join/share the databases, but I would like to try fixing the issues with printing first if possible.
    Cheers
    Matt

    I have changed one of the labs to lpd printing - appears ok so far so will monitor it over the next few days.
    The only way I can actually see its printing via ldp is using the cups interface (localhost:631)
    The only issue I have now is that the print driver (Konica C360) defaults to 2-sided. This happens on PC and Mac, but is a minor annoyance compared to the inability to print.
    Will let you know if its all sorted and mark as answer soon. Thanks!
    Matt

  • I have hp 1018 laser printer and windows 7 ,all was working fine, suddenly it stop printing all PDFs

    i have hp 1018 laser printer and windows 7 ,all was working fine, suddenly it stop printing all PDFs.i have adobe acrobat X pro installed and adobe X1 reader installed, i searched a lot, nothing i found when i send command to print a PDF it just do nothing , but rest of images or word doc and webpages are beings printed, can any one help me whats going on ?

    well i have found that i needed to not just uninstall itunes, but also apple mobile device support, bonjour apple software update and apple application support - uninstall all these and then install itunes - that seesm to have fixed it, though now i am sync fail - that's a different matter perhaps

  • Safari 3.2.1 - now unable to access Window based server at work (Citrix)

    I have recently bought a 2nd iMac and updated Safari 3.2.1 on both machines. Since then I have not been able to access the Windows based server at work (I work from home a lot) which is accessed using Citrix software and Java Applet etc. I am certain it is Safari as I am able to access my work server on my old iBook (which runs Safari 1.3.2). It is very frustrating as I am unable to work. IT services at work are unable to assist as they do not support Macs and Apple software. Anyone out there able to advise on what I need to do?
    Thanks
    elwoodJJ

    Update: after months of wrangling with our IT dept (who do NOT support Macs) the problem has somehow been resolved. I do not believe it was OS x 10.5.6 problem but more related to the 'Client Server' Java Applets. We now have a single log-in procedure for the Citrix server which works perfectly well. So I am using the latest OS X, Citrix software and Safari apps.
    elwoodJJ

  • [solved] Owncloud over SSL: http works, but over https only apache

    Hello,
    I try to setup owncloud with SSL.
    Accessing over http works, but over https, I reach the default apache page instead of the owncloud page.
    (I set up SSL according to https://wiki.archlinux.org/index.php/LAMP#SSL )
    How could I make the owncloud site available over https?
    relevant files:
    owncloud.conf:
    <IfModule mod_alias.c>
    Alias /owncloud /usr/share/webapps/owncloud/
    </IfModule>
    <Directory /usr/share/webapps/owncloud/>
    Options FollowSymlinks
    Require all granted
    php_admin_value open_basedir "/srv/http/:/home/:/tmp/:/usr/share/pear/:/usr/share/webapps/owncloud/:/etc/webapps/owncloud/:/mt/daten/owncloud/"
    </Directory>
    <VirtualHost *:80>
    ServerAdmin [email protected]
    DocumentRoot /usr/share/webapps/owncloud
    ServerName http://example.com/owncloud
    </VirtualHost>
    I tried to change 80 to 443, but then, systemctl restart httpd didn't work. (apache failed)
    httpd.conf:
    # This is the main Apache HTTP server configuration file. It contains the
    # configuration directives that give the server its instructions.
    # See <URL:http://httpd.apache.org/docs/2.4/> for detailed information.
    # In particular, see
    # <URL:http://httpd.apache.org/docs/2.4/mod/directives.html>
    # for a discussion of each configuration directive.
    # Do NOT simply read the instructions in here without understanding
    # what they do. They're here only as hints or reminders. If you are unsure
    # consult the online docs. You have been warned.
    # Configuration and logfile names: If the filenames you specify for many
    # of the server's control files begin with "/" (or "drive:/" for Win32), the
    # server will use that explicit path. If the filenames do *not* begin
    # with "/", the value of ServerRoot is prepended -- so "logs/access_log"
    # with ServerRoot set to "/usr/local/apache2" will be interpreted by the
    # server as "/usr/local/apache2/logs/access_log", whereas "/logs/access_log"
    # will be interpreted as '/logs/access_log'.
    # ServerRoot: The top of the directory tree under which the server's
    # configuration, error, and log files are kept.
    # Do not add a slash at the end of the directory path. If you point
    # ServerRoot at a non-local disk, be sure to specify a local disk on the
    # Mutex directive, if file-based mutexes are used. If you wish to share the
    # same ServerRoot for multiple httpd daemons, you will need to change at
    # least PidFile.
    ServerRoot "/etc/httpd"
    # Mutex: Allows you to set the mutex mechanism and mutex file directory
    # for individual mutexes, or change the global defaults
    # Uncomment and change the directory if mutexes are file-based and the default
    # mutex file directory is not on a local disk or is not appropriate for some
    # other reason.
    # Mutex default:/run/httpd
    # Listen: Allows you to bind Apache to specific IP addresses and/or
    # ports, instead of the default. See also the <VirtualHost>
    # directive.
    # Change this to Listen on specific IP addresses as shown below to
    # prevent Apache from glomming onto all bound IP addresses.
    #Listen 12.34.56.78:80
    Listen 80
    <IfModule mod_ssl.c>
    Listen 443
    </IfModule>
    # Dynamic Shared Object (DSO) Support
    # To be able to use the functionality of a module which was built as a DSO you
    # have to place corresponding `LoadModule' lines at this location so the
    # directives contained in it are actually available _before_ they are used.
    # Statically compiled modules (those listed by `httpd -l') do not need
    # to be loaded here.
    # Example:
    # LoadModule foo_module modules/mod_foo.so
    LoadModule authn_file_module modules/mod_authn_file.so
    #LoadModule authn_dbm_module modules/mod_authn_dbm.so
    #LoadModule authn_anon_module modules/mod_authn_anon.so
    #LoadModule authn_dbd_module modules/mod_authn_dbd.so
    #LoadModule authn_socache_module modules/mod_authn_socache.so
    LoadModule authn_core_module modules/mod_authn_core.so
    LoadModule authz_host_module modules/mod_authz_host.so
    LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
    LoadModule authz_user_module modules/mod_authz_user.so
    #LoadModule authz_dbm_module modules/mod_authz_dbm.so
    #LoadModule authz_owner_module modules/mod_authz_owner.so
    #LoadModule authz_dbd_module modules/mod_authz_dbd.so
    LoadModule authz_core_module modules/mod_authz_core.so
    #LoadModule authnz_ldap_module modules/mod_authnz_ldap.so
    LoadModule access_compat_module modules/mod_access_compat.so
    LoadModule auth_basic_module modules/mod_auth_basic.so
    #LoadModule auth_form_module modules/mod_auth_form.so
    #LoadModule auth_digest_module modules/mod_auth_digest.so
    #LoadModule allowmethods_module modules/mod_allowmethods.so
    #LoadModule file_cache_module modules/mod_file_cache.so
    #LoadModule cache_module modules/mod_cache.so
    #LoadModule cache_disk_module modules/mod_cache_disk.so
    #LoadModule cache_socache_module modules/mod_cache_socache.so
    LoadModule socache_shmcb_module modules/mod_socache_shmcb.so
    #LoadModule socache_dbm_module modules/mod_socache_dbm.so
    #LoadModule socache_memcache_module modules/mod_socache_memcache.so
    #LoadModule watchdog_module modules/mod_watchdog.so
    #LoadModule macro_module modules/mod_macro.so
    #LoadModule dbd_module modules/mod_dbd.so
    #LoadModule dumpio_module modules/mod_dumpio.so
    #LoadModule echo_module modules/mod_echo.so
    #LoadModule buffer_module modules/mod_buffer.so
    #LoadModule data_module modules/mod_data.so
    #LoadModule ratelimit_module modules/mod_ratelimit.so
    LoadModule reqtimeout_module modules/mod_reqtimeout.so
    #LoadModule ext_filter_module modules/mod_ext_filter.so
    #LoadModule request_module modules/mod_request.so
    LoadModule include_module modules/mod_include.so
    LoadModule filter_module modules/mod_filter.so
    #LoadModule reflector_module modules/mod_reflector.so
    #LoadModule substitute_module modules/mod_substitute.so
    #LoadModule sed_module modules/mod_sed.so
    #LoadModule charset_lite_module modules/mod_charset_lite.so
    #LoadModule deflate_module modules/mod_deflate.so
    #LoadModule xml2enc_module modules/mod_xml2enc.so
    #LoadModule proxy_html_module modules/mod_proxy_html.so
    LoadModule mime_module modules/mod_mime.so
    #LoadModule ldap_module modules/mod_ldap.so
    LoadModule log_config_module modules/mod_log_config.so
    #LoadModule log_debug_module modules/mod_log_debug.so
    #LoadModule log_forensic_module modules/mod_log_forensic.so
    #LoadModule logio_module modules/mod_logio.so
    #LoadModule lua_module modules/mod_lua.so
    LoadModule env_module modules/mod_env.so
    #LoadModule mime_magic_module modules/mod_mime_magic.so
    #LoadModule cern_meta_module modules/mod_cern_meta.so
    #LoadModule expires_module modules/mod_expires.so
    LoadModule headers_module modules/mod_headers.so
    #LoadModule ident_module modules/mod_ident.so
    #LoadModule usertrack_module modules/mod_usertrack.so
    #LoadModule unique_id_module modules/mod_unique_id.so
    LoadModule setenvif_module modules/mod_setenvif.so
    LoadModule version_module modules/mod_version.so
    #LoadModule remoteip_module modules/mod_remoteip.so
    LoadModule proxy_module modules/mod_proxy.so
    LoadModule proxy_connect_module modules/mod_proxy_connect.so
    LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
    LoadModule proxy_http_module modules/mod_proxy_http.so
    LoadModule proxy_fcgi_module modules/mod_proxy_fcgi.so
    LoadModule proxy_scgi_module modules/mod_proxy_scgi.so
    #LoadModule proxy_fdpass_module modules/mod_proxy_fdpass.so
    LoadModule proxy_wstunnel_module modules/mod_proxy_wstunnel.so
    LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
    LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
    LoadModule proxy_express_module modules/mod_proxy_express.so
    #LoadModule session_module modules/mod_session.so
    #LoadModule session_cookie_module modules/mod_session_cookie.so
    #LoadModule session_crypto_module modules/mod_session_crypto.so
    #LoadModule session_dbd_module modules/mod_session_dbd.so
    LoadModule slotmem_shm_module modules/mod_slotmem_shm.so
    #LoadModule slotmem_plain_module modules/mod_slotmem_plain.so
    LoadModule ssl_module modules/mod_ssl.so
    #LoadModule dialup_module modules/mod_dialup.so
    LoadModule lbmethod_byrequests_module modules/mod_lbmethod_byrequests.so
    LoadModule lbmethod_bytraffic_module modules/mod_lbmethod_bytraffic.so
    LoadModule lbmethod_bybusyness_module modules/mod_lbmethod_bybusyness.so
    LoadModule lbmethod_heartbeat_module modules/mod_lbmethod_heartbeat.so
    #LoadModule mpm_event_module modules/mod_mpm_event.so
    LoadModule mpm_prefork_module modules/mod_mpm_prefork.so
    LoadModule unixd_module modules/mod_unixd.so
    #LoadModule heartbeat_module modules/mod_heartbeat.so
    #LoadModule heartmonitor_module modules/mod_heartmonitor.so
    #LoadModule dav_module modules/mod_dav.so
    LoadModule status_module modules/mod_status.so
    LoadModule autoindex_module modules/mod_autoindex.so
    #LoadModule asis_module modules/mod_asis.so
    #LoadModule info_module modules/mod_info.so
    #LoadModule suexec_module modules/mod_suexec.so
    #LoadModule cgid_module modules/mod_cgid.so
    #LoadModule cgi_module modules/mod_cgi.so
    #LoadModule dav_fs_module modules/mod_dav_fs.so
    #LoadModule dav_lock_module modules/mod_dav_lock.so
    #LoadModule vhost_alias_module modules/mod_vhost_alias.so
    LoadModule negotiation_module modules/mod_negotiation.so
    LoadModule dir_module modules/mod_dir.so
    #LoadModule imagemap_module modules/mod_imagemap.so
    #LoadModule actions_module modules/mod_actions.so
    #LoadModule speling_module modules/mod_speling.so
    LoadModule userdir_module modules/mod_userdir.so
    LoadModule alias_module modules/mod_alias.so
    #LoadModule rewrite_module modules/mod_rewrite.so
    #own additions:
    LoadModule php5_module modules/libphp5.so
    <IfModule unixd_module>
    # If you wish httpd to run as a different user or group, you must run
    # httpd as root initially and it will switch.
    # User/Group: The name (or #number) of the user/group to run httpd as.
    # It is usually good practice to create a dedicated user and group for
    # running httpd, as with most system services.
    User http
    Group http
    </IfModule>
    # 'Main' server configuration
    # The directives in this section set up the values used by the 'main'
    # server, which responds to any requests that aren't handled by a
    # <VirtualHost> definition. These values also provide defaults for
    # any <VirtualHost> containers you may define later in the file.
    # All of these directives may appear inside <VirtualHost> containers,
    # in which case these default settings will be overridden for the
    # virtual host being defined.
    # ServerAdmin: Your address, where problems with the server should be
    # e-mailed. This address appears on some server-generated pages, such
    # as error documents. e.g. [email protected]
    ServerAdmin [email protected]
    # ServerName gives the name and port that the server uses to identify itself.
    # This can often be determined automatically, but we recommend you specify
    # it explicitly to prevent problems during startup.
    # If your host doesn't have a registered DNS name, enter its IP address here.
    #ServerName www.example.com:80
    # Deny access to the entirety of your server's filesystem. You must
    # explicitly permit access to web content directories in other
    # <Directory> blocks below.
    <Directory />
    Options FollowSymLinks
    AllowOverride none
    Require all denied
    </Directory>
    # Note that from this point forward you must specifically allow
    # particular features to be enabled - so if something's not working as
    # you might expect, make sure that you have specifically enabled it
    # below.
    # DocumentRoot: The directory out of which you will serve your
    # documents. By default, all requests are taken from this directory, but
    # symbolic links and aliases may be used to point to other locations.
    DocumentRoot "/srv/http"
    <Directory "/srv/http">
    # Possible values for the Options directive are "None", "All",
    # or any combination of:
    # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
    # Note that "MultiViews" must be named *explicitly* --- "Options All"
    # doesn't give it to you.
    # The Options directive is both complicated and important. Please see
    # http://httpd.apache.org/docs/2.4/mod/core.html#options
    # for more information.
    Options Indexes FollowSymLinks
    # AllowOverride controls what directives may be placed in .htaccess files.
    # It can be "All", "None", or any combination of the keywords:
    # AllowOverride FileInfo AuthConfig Limit
    AllowOverride None
    # Controls who can get stuff from this server.
    Require all granted
    </Directory>
    # DirectoryIndex: sets the file that Apache will serve if a directory
    # is requested.
    <IfModule dir_module>
    DirectoryIndex index.html
    </IfModule>
    # The following lines prevent .htaccess and .htpasswd files from being
    # viewed by Web clients.
    <Files ".ht*">
    Require all denied
    </Files>
    # ErrorLog: The location of the error log file.
    # If you do not specify an ErrorLog directive within a <VirtualHost>
    # container, error messages relating to that virtual host will be
    # logged here. If you *do* define an error logfile for a <VirtualHost>
    # container, that host's errors will be logged there and not here.
    ErrorLog "/var/log/httpd/error_log"
    # LogLevel: Control the number of messages logged to the error_log.
    # Possible values include: debug, info, notice, warn, error, crit,
    # alert, emerg.
    LogLevel warn
    <IfModule log_config_module>
    # The following directives define some format nicknames for use with
    # a CustomLog directive (see below).
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
    LogFormat "%h %l %u %t \"%r\" %>s %b" common
    <IfModule logio_module>
    # You need to enable mod_logio.c to use %I and %O
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
    </IfModule>
    # The location and format of the access logfile (Common Logfile Format).
    # If you do not define any access logfiles within a <VirtualHost>
    # container, they will be logged here. Contrariwise, if you *do*
    # define per-<VirtualHost> access logfiles, transactions will be
    # logged therein and *not* in this file.
    CustomLog "/var/log/httpd/access_log" common
    # If you prefer a logfile with access, agent, and referer information
    # (Combined Logfile Format) you can use the following directive.
    #CustomLog "/var/log/httpd/access_log" combined
    </IfModule>
    <IfModule alias_module>
    # Redirect: Allows you to tell clients about documents that used to
    # exist in your server's namespace, but do not anymore. The client
    # will make a new request for the document at its new location.
    # Example:
    # Redirect permanent /foo http://www.example.com/bar
    # Alias: Maps web paths into filesystem paths and is used to
    # access content that does not live under the DocumentRoot.
    # Example:
    # Alias /webpath /full/filesystem/path
    # If you include a trailing / on /webpath then the server will
    # require it to be present in the URL. You will also likely
    # need to provide a <Directory> section to allow access to
    # the filesystem path.
    # ScriptAlias: This controls which directories contain server scripts.
    # ScriptAliases are essentially the same as Aliases, except that
    # documents in the target directory are treated as applications and
    # run by the server when requested rather than as documents sent to the
    # client. The same rules about trailing "/" apply to ScriptAlias
    # directives as to Alias.
    ScriptAlias /cgi-bin/ "/srv/http/cgi-bin/"
    </IfModule>
    <IfModule cgid_module>
    # ScriptSock: On threaded servers, designate the path to the UNIX
    # socket used to communicate with the CGI daemon of mod_cgid.
    #Scriptsock cgisock
    </IfModule>
    # "/srv/http/cgi-bin" should be changed to whatever your ScriptAliased
    # CGI directory exists, if you have that configured.
    <Directory "/srv/http/cgi-bin">
    AllowOverride None
    Options None
    Require all granted
    </Directory>
    <IfModule mime_module>
    # TypesConfig points to the file containing the list of mappings from
    # filename extension to MIME-type.
    TypesConfig conf/mime.types
    # AddType allows you to add to or override the MIME configuration
    # file specified in TypesConfig for specific file types.
    #AddType application/x-gzip .tgz
    # AddEncoding allows you to have certain browsers uncompress
    # information on the fly. Note: Not all browsers support this.
    #AddEncoding x-compress .Z
    #AddEncoding x-gzip .gz .tgz
    # If the AddEncoding directives above are commented-out, then you
    # probably should define those extensions to indicate media types:
    AddType application/x-compress .Z
    AddType application/x-gzip .gz .tgz
    # AddHandler allows you to map certain file extensions to "handlers":
    # actions unrelated to filetype. These can be either built into the server
    # or added with the Action directive (see below)
    # To use CGI scripts outside of ScriptAliased directories:
    # (You will also need to add "ExecCGI" to the "Options" directive.)
    #AddHandler cgi-script .cgi
    # For type maps (negotiated resources):
    #AddHandler type-map var
    # Filters allow you to process content before it is sent to the client.
    # To parse .shtml files for server-side includes (SSI):
    # (You will also need to add "Includes" to the "Options" directive.)
    #AddType text/html .shtml
    #AddOutputFilter INCLUDES .shtml
    </IfModule>
    # The mod_mime_magic module allows the server to use various hints from the
    # contents of the file itself to determine its type. The MIMEMagicFile
    # directive tells the module where the hint definitions are located.
    #MIMEMagicFile conf/magic
    # Customizable error responses come in three flavors:
    # 1) plain text 2) local redirects 3) external redirects
    # Some examples:
    #ErrorDocument 500 "The server made a boo boo."
    #ErrorDocument 404 /missing.html
    #ErrorDocument 404 "/cgi-bin/missing_handler.pl"
    #ErrorDocument 402 http://www.example.com/subscription_info.html
    # MaxRanges: Maximum number of Ranges in a request before
    # returning the entire resource, or one of the special
    # values 'default', 'none' or 'unlimited'.
    # Default setting is to accept 200 Ranges.
    #MaxRanges unlimited
    # EnableMMAP and EnableSendfile: On systems that support it,
    # memory-mapping or the sendfile syscall may be used to deliver
    # files. This usually improves server performance, but must
    # be turned off when serving from networked-mounted
    # filesystems or if support for these functions is otherwise
    # broken on your system.
    # Defaults: EnableMMAP On, EnableSendfile Off
    #EnableMMAP off
    #EnableSendfile on
    # Supplemental configuration
    # The configuration files in the conf/extra/ directory can be
    # included to add extra features or to modify the default configuration of
    # the server, or you may simply copy their contents here and change as
    # necessary.
    # Server-pool management (MPM specific)
    Include conf/extra/httpd-mpm.conf
    # Multi-language error messages
    Include conf/extra/httpd-multilang-errordoc.conf
    # Fancy directory listings
    Include conf/extra/httpd-autoindex.conf
    # Language settings
    Include conf/extra/httpd-languages.conf
    # User home directories
    Include conf/extra/httpd-userdir.conf
    # Real-time info on requests and configuration
    #Include conf/extra/httpd-info.conf
    # Virtual hosts
    #Include conf/extra/httpd-vhosts.conf
    # Local access to the Apache HTTP Server Manual
    #Include conf/extra/httpd-manual.conf
    # Distributed authoring and versioning (WebDAV)
    #Include conf/extra/httpd-dav.conf
    # Various default settings
    Include conf/extra/httpd-default.conf
    # Include owncloud
    Include /etc/httpd/conf/extra/owncloud.conf
    Include conf/extra/php5_module.conf
    # Configure mod_proxy_html to understand HTML4/XHTML1
    <IfModule proxy_html_module>
    Include conf/extra/proxy-html.conf
    </IfModule>
    # Secure (SSL/TLS) connections
    Include conf/extra/httpd-ssl.conf
    # Note: The following must must be present to support
    # starting without SSL on platforms with no /dev/random equivalent
    # but a statically compiled-in mod_ssl.
    <IfModule ssl_module>
    SSLRandomSeed startup builtin
    SSLRandomSeed connect builtin
    </IfModule>
    # uncomment out the below to deal with user agents that deliberately
    # violate open standards by misusing DNT (DNT *must* be a specific
    # end-user choice)
    #<IfModule setenvif_module>
    #BrowserMatch "MSIE 10.0;" bad_DNT
    #</IfModule>
    #<IfModule headers_module>
    #RequestHeader unset DNT env=bad_DNT
    #</IfModule>
    thanks!
    Last edited by Carl Karl (2014-05-06 07:40:53)

    OK, solved.
    What I made wrong:
    https://localhost leads to the apache page
    https://localhost/owncloud leads to the owncloud page.
    (Just as an information if there are other apache noobs like me...)

  • Printing from windows 2k server, Canon MP600

    Hi, I have a mostly pc home based network, and my wife would like to be able to print from her mac to the networked printer. I can get the printer to show up in "Windows Printing" selection box, and comes up as CanonMP6 with generic postscript printer labeling. If I try to print it appears to send it to the server, i can see the print queue in the server receive something, but never prints. I know it works from windows based clients, so I guess I am wondering if there is a driver issue? I've installed the drivers to the mac, the ones that came with the printer. Any help would be appreciated. Getting tired of swapping the usb cable every time my wife wants to print.
    Thanks
    Scott
    MacBook PRo   Mac OS X (10.4.8)  

    Definitely a driver issue. Canon-provided driver doesn't do network.
    Two choices - buy third party driver:
    http://www.printfab.net.
    or, set up PC to be postscript translator/server:
    http://iharder.sourceforge.net/current/macosx/winmacprinter/

  • Printing through Windows 2003 server

    I'm the only Mac in the house and have been printing through our Windows 2003 server just fine until this week after my last Apple Update. When printing to any printer on our system, (I have reset printers with no change to results), I get a heading with my name, plus (RE: my job), and a bold underscore with the following message below the line:
    %%[Error: undefined; OffendingCommand: languagelevel]%%
    %%[Flushing: rest of job (to end-of-file) will be ingnored]%%
    This has only become a problem in the last week. I first noticed the problem on my G5, but I just plugged my Powerbook G4 into our Ethernet system with the same results.
    Power Mac7,3 (G5) Mac OS X (10.4.7) Windows Server 2003

    I am not aware of what drivers were used before or if there has been a change. I used the standard print utility and it identified all printers on the system and I just added them. Printing was no problem until this last week.

  • Cant add a printer in Windows 2008 Server printer server HP LaserJet P1606dn

    Hello,
    I am trying to install a HP LaserJet P1606dn printer in a Windows 2008 Server Virtual machine.
    The printer is connected to the corporate network and I am able to do ping from my desktop to the printer.
    Then I follow this steps.
    1.- Install the driver application for W2008 Server.
    2.- Add printer in W2008 Printer Server.
    3.-Select "add a local or network printer" as an administrator.
    4.- Choose network printer
    5.-Create a new port --> Standard TCP/IP Port
    6.- Fill the host name ---> ("printer1") or IP address --> (XX.XXX.XX.13)  I have tried the both options separately but with no result. And fill the port name
    7.-At this stage . W2008 Server tells me that " the device is not found on the network" . Be sure that: .....
     So, in select device type, I select  "Standard" and "Generic Network Card"  and click on Next
    8.- Install printer driver  -> I select the proper driver HP LaserJet 1606dn
    9.- Install the printer driver ---> use the driver that is currently installed (recommend)
    10.- Type printer name --> "printer1"
    11.-Share printer name ---> "printer1"
    Here, begins the problem. Trying to print a test page, It says me that  "A test page has been sent to your printer", I can see the document in the queue, but the printer page it isn`t thrown away outside.
    I dont explain myself why, I have done several trials, and I dont know what happens
    I would be very grateful if somebody could help me to solve this issue
    Many Thanks
    Robert

    Hi lespaul80,
     1st- check if you can connect to your printer on web interface(in IE: \\printer ip address
    and check under network setup  if subnet mask and  def. gateway setup
    also if you have DNS setup check it too
    check if you have SNMP options - desable it
    on server try ad printer by direct IP and try use upd drive(PCL6 or PS)
    Hope it help you
    Regards,
    I am an HP employee.
    *Say thanks by clicking the "Kudos! Star" which is on the left*
    *Make it easier for other people to find solutions, by marking my answer with "Accept as Solution" if it solves your issue.*

  • Slow network printing on Windows 2008 Server

    Hi,
    We are just testing/configuring a Windows 2008 (x64) server to replace an aging Windows 2000 file & print server.
    I have added the print services role and added a network TCP/IP printer (a HP Laserjet 2200).
    When I print to this printer from either the server (via print test page) or from a client, it takes around 30 seconds before the print will start to print. On our Windows 2000 server, this would print immediately.
    I have insalled the HP 2200 driver that came with Windows 2008.
    Anyone any ideas where to find the problem causing the delay?
    Thanks,
    Kenny

    Hello,
    I have done some research and I find firewall component of the antivirus software such as Mcafee might cause similar network delay issues.
    If you have installed AV softwares on Windows Server 2008, please try uninstalling it temperately and test whether this will make any difference.
    Moreover, You could also try disabling TCP Chimney Offload, RSS, Receive Window Auto-Tuning Level on Windows Server 2008 one by one to see whether it makes any difference.
    To disable TCP Chimney Offload, follow these steps:
    a.   Use administrative credentials to open a command prompt.
    b.   At the command prompt, type the following command, and then press ENTER:
           netsh int tcp set global chimney=disabled
    To disable RSS, follow these steps:
    a.   Use administrative credentials to open a command prompt.
    b.   At the command prompt, type the following command, and then press ENTER:
           netsh int tcp set global RSS=disabled
    To disable 'Receive Window Auto-Tuning Level', follow these steps: :
    a.   Use administrative credentials to open a command prompt.
    b.   At the command prompt, type the following command, and then press ENTER:
           netsh interface tcp set global autotuninglevel=disabled
    I hope this helps. Thanks.
    Regards,
    Neo Zhu

  • Cannot Print to Windows Printer after Security 2008-002 update

    I am unable to print to a Canon image runner 3380 printer on a Windows network after installing Security update 2008-002. Whenever I try to print I get the following error: On Hold Authentication Required. I can click on the Resume button in the print queue and a box pops up to enter my username and password. I've tried entering my user name and password but it does no good. I've also tried reinstalling the printers which also does me no good.
    This printer is located on a Windows 2003 server that is setup as a Domain Controler.

    I did some searching -- more info: This is apparently due to an upgrade to CUPS, which is the Common Unix Printing System (available to administer directly at: http://localhost:631/ ) This is the way to add a printer if you feel especially geeky.
    There is another discussion: http://discussions.apple.com/thread.jspa?messageID=6914585&#6914585
    about this, but apparently it is not a resolution, just a description of the problem.
    So, I really don't want to deinstall the 2008-002 update, if I can help it. I already installed version 1.1, which did not resolve the issue. I would like to be able to print to my Windows-Active Directory printers without resorting to IP printing. It sounds like this is something Apple has to fix, from the discussions I read. Is this true? And if so, any ideas about how long Apple will take to fix it?

  • Printing to windows printer via mac - am i being stupid?

    I really don't get this. I've just bought my 1st mac, a macbook pro, to replace my old windows laptop. I also have a windows pc, with an Epson USB printer attached to it, as well as the windows desktop being connect via ethernet to a netgear wireless router/modem. When i have the windows laptop i could print wirelessly via the windows desktop without problems, with the mac! no chance. I can connect to the windows desktop wirelessly so long as i connect via the finder/go/connect to server option as it doesn't show under finder/shared sidebar, but can't access the printer. I installed bonjour for windows today but running the printer wizard on the desktop doesn't show any bonjour printers, yet the printer is connected directly to the desktop via usb. Am i misunderstanding what this is all about. I just want to print from my mac, wirelessly via the PC. And yes the printer is shared.
    Can anyone advise, I'm really at a loss

    Hi iVirtual, what Mac OS are you running, Leopard (10.5.4) or Tiger (10.4.11)? Also, is your printer directly attached to your pc or is it a network printer directly on the local area network? One last question, do you have a firewall (like Trend Micro or Norton Internet Security) on your PC?
    From my Mac running Leopard, I have no problem printing to a printer directly attached to my WindowsXP machine. However, I don't have the same luck from my Tiger Machines.
    When I print to any networked printer (by that I mean printers directly attached to the network) from the WindowsXP machine with SP3, I always have to use the IP address. The printer.local name no longer works since I installed SP3.
    simonparker, If your printer is directly attached to your PC using a USB cable, I don't think you'll be able to see it with the Bonjour Printer Wizard application. Since your printer is shared, you might check your WORKGROUP name on your PC. Something you might check is this:
    Do you have a password on your user account on the PC? You'll probably need a password on your PC account. I don't think you can share anything if you don't have a password (I could be wrong, but it has never worked for me without a password).
    On leopard, when I added the printer to the Mac I did this:
    1) bring up System Preferences/Print&Fax
    2) Press the + sign under the printer list, when the add window pops up, choose the "Windows" icon and you should see your workgroup name in the left list.
    3) Choose the workgroup and it should populate with your machine name.
    4) Select the machine name in the middle list and you should get a login and password dialog box.
    5) Enter your PC's Username and Password.
    6) You should see a list of shared printers in the right most list.
    7) Select the printer and then select the driver.
    Your printer should now be configured on the Mac. I know that I had to enter my PC's user name and password several times before I could print.

  • Printing to windows printer via SMB - Printing garbled text

    Hi all.
    I have been working on this issue for around 3 hrs this morning and finally figured it out. Thought I'd post what I did to help others with similar issues.
    Here's my set up:
    I have a PC with HP photosmart printer connected to it. I've a Macbook Pro that I connect to the PC via SMB protocol for file sharing. If I wanted to print from the mac to the printer I had to disconnect the printer form the PC and directly connect it to the mac. I wanted to be able to print from the Mac to the printer via the PC. Should be that hard right as I have already successfully file shared via SMB.
    Well it was a little difficult. I did many a search on here and the web and eventually found the following article:
    http://docs.info.apple.com/article.html?path=Mac/10.4/en/mh2231.html
    So, following these steps i tried to print a single page word (office 2008 for mac) doc from the mac. Hey presto! The printer kicked into life and started...
    ...problem was it spewed out around 20 pages of Garbled text! I tought it might have been print jobs stacked up from the last unsuccessful attemt at doing this but no, no jobs there. Thought it might have been Word/office for mac, etc. so tried to print from Text Edit but same thing.
    After hrs of screaming, F'ing & Blinding I finally figured out it was to do with what printer I had it set up on. I went into Print & Fax in System Preferences, highlighted the printer and clicked printer setup tab. In the drop down tab I selected printer model. It was set on Generic.
    In the drop down list there it shows a huge selection of printers. my particular model was not there so I chose the closest thing and selected that.
    After exiting all that and trying again it worked.
    I'm very happy.
    Adam

    Hi iVirtual, what Mac OS are you running, Leopard (10.5.4) or Tiger (10.4.11)? Also, is your printer directly attached to your pc or is it a network printer directly on the local area network? One last question, do you have a firewall (like Trend Micro or Norton Internet Security) on your PC?
    From my Mac running Leopard, I have no problem printing to a printer directly attached to my WindowsXP machine. However, I don't have the same luck from my Tiger Machines.
    When I print to any networked printer (by that I mean printers directly attached to the network) from the WindowsXP machine with SP3, I always have to use the IP address. The printer.local name no longer works since I installed SP3.
    simonparker, If your printer is directly attached to your PC using a USB cable, I don't think you'll be able to see it with the Bonjour Printer Wizard application. Since your printer is shared, you might check your WORKGROUP name on your PC. Something you might check is this:
    Do you have a password on your user account on the PC? You'll probably need a password on your PC account. I don't think you can share anything if you don't have a password (I could be wrong, but it has never worked for me without a password).
    On leopard, when I added the printer to the Mac I did this:
    1) bring up System Preferences/Print&Fax
    2) Press the + sign under the printer list, when the add window pops up, choose the "Windows" icon and you should see your workgroup name in the left list.
    3) Choose the workgroup and it should populate with your machine name.
    4) Select the machine name in the middle list and you should get a login and password dialog box.
    5) Enter your PC's Username and Password.
    6) You should see a list of shared printers in the right most list.
    7) Select the printer and then select the driver.
    Your printer should now be configured on the Mac. I know that I had to enter my PC's user name and password several times before I could print.

  • Bonjour printer on Windows XP's stops working after reboot

    Hello!
    We have a AirPort extreme with an HP LaserJet 1010 connected to it. AirPort Extreme also serves as a gateway and DHCP server for the LAN.
    Installing the printer on the local machines running Windows XP thru Bonjour works fine and all the documents are printed correctly. The printer is being installed as a single default printer on the system.
    However, printer stops working after Windows XP machines are rebooted (the next morning). The installed printer keeps accumulating documents in queue and not spooling them to the printer. Issue could only be resolved by adding a new printer (which also works fine).
    It seems not to be a connectivity problem as XP machines access the Internet thru the AirPort Extreme without any problem. Bonjour printer setup wizard also instantly sees the printer and is able to install it correctly. Mac's in the same network (iBook G3 and PowerBook G4 with Tiger) are not affected by the issue.
    Any ideas on how the situation could be corrected?
    - Baglan

    Did anyone find a solution to this.
    I have a HP Laserjet 1020 attached to my Airport. Using the Bonjour program on my Windows XP computer it found the printer attached, and added it to my printers. When I print all seems ok - it appears in the printer queue, then disappears as though its printed - but nothing comes out of the printer.
    Any ideas? Thanks.
    Message was edited by: jonny999

  • Failed Printing to Windows Printer - no entry in error log

    I cannot print to a windows printer (smb://mydomain/thePrinter).  I enter my username and password when prompted for authentication, but then nothing happens.  I checked the access_log and error_log, but there is no record of the failure.  If I add a new printer using a bogus URI (smb://bogusdomain/thePrinter) then I see entries in the log about a failed connection.  In contrast, if I use the correct domain and indicate a bogus printer name (smb://mydomain/BogusPrinter) there are no entries in the logs.
    How can I determine why the windows printer is not responding?

    Apparently, the System Preferences tool for adding smb printers is broken in the initial release of Lion and can be worked around by using CUPS directly.
    The answer is here:
    https://discussions.apple.com/message/15759095#15759095

  • Trouble with printing with windows printing via spoolss

    My school has network printing that worked with snow leopard but doesn't work anymore with Lion and the IT-guys don't know how to fix this issue

    Get them to enable LPR (aka Unix Print Services) on the Windows print server and you can use LPD on the Mac instead of SMB to print from the Mac.
    If they won't enable LPR then you may just need to remove the printer and any previous login keychain for the SMB connection and add the queue again.

Maybe you are looking for

  • Empty Creative Cloud window after OS 10.9.4 update.

    Since updating to Mac OS 10.9.4 I get an empty window with a spinning wheel when I open the Creative Cloud window on the desktop.

  • Comparision of two subtypes

    Hi All, I have a requirement wherein i need to compare last record of PA0008-SUBTY (11) with PA0008-SUBTY (0). Any pointers in this regard would be of utmost help. Regards, Amrita Edited by: Amrita Kuruvail on Sep 16, 2008 8:36 AM

  • Tethered capture 7D mark ii

    When will tethered capture in lightroom support the canon 7D mark ii

  • Single SQL statement that does multiple column checks

    I have multiple sql statements (see below) that do value and format checking on different columns within the same table. I am trying to condense these checks into one SQL statement, anyone know how to do this? select colx, coly, col1 from table1 wher

  • How to read columns from spreadsheet?

    I have text based spreadsheet files containing several columns of data (previously collected data written to file by "write to spreadsheet file" function). Each column is separated by a tab character. I need to plot each column on a separate waveform