CUPS Server capacity

I've been scouring the CUPS documents to try to find the maximum number of users supported per server. But I've failed to find a simple table that says server type X supports Y users. (I understand that there are differences between the deployment method: i.e. full CUCM integration or just IM)
There is information about capacity in both the Deployment Guide and the SRND, but I can't see the wood for the tress.
Thanks,
GTG

Hi Ross,
Please have a look into Docwiki if it helps
http://docwiki.cisco.com/wiki/Virtualization_for_Unified_CM_IM_and_Presence#Notes_on_1000_user_VM_configuration
Number of “Jabber for Everyone” users = (Number of full UC users/Maximum number of full UC users) x
Maximum number of “Jabber for Everyone” users
For example, if you have 10,000 full UC users on a server that supports a maximum of 15,000 users, then
you are operating at 2/3 of the scale for UC, which means that 1/3 is available for “Jabber for Everyone” users.
The IM and Presence Service supports 25,000 users for IM-only mode, therefore, you can add 8,333 users
(25,000 x 1/3) through “Jabber for Everyone”. This amounts to a total of 18,333 users.
http://www.cisco.com/en/US/docs/voice_ip_comm/cucm/srnd/9x/presence.html
this is table 23.4 for above link
Cisco IM and Presence Service Platforms and Number of Users Supported 
Server Platform
Users Supported Per Platform in Full Unified Communications Mode
Users Supported Per Platform in Instant Messaging Only Mode
Cisco MCS 7816
3,000
7,500
Cisco MCS 7825
6,000
15,000
Cisco MCS 7835 or OVA equivalent
15,000
37,500
Cisco MCS 7845 or OVA equivalent
45,000
75,000
regds,
aman

Similar Messages

  • [Solved] Samba log spam: Unable to connect to CUPS server

    Hi everyone,
    I'm running into an annoying issue with samba. I don't have any printers installed, and probably won't. However smbd complains to no end in /var/log/errors.log about not being able to connect to a cups server:
    Apr 18 12:30:05 asakura nmbd[4361]: *****
    Apr 18 12:30:05 asakura nmbd[4361]:
    Apr 18 12:30:05 asakura nmbd[4361]: Samba name server ASAKURA is now a local master browser for workgroup MYGROUP on subnet 192.168.1.121
    Apr 18 12:30:05 asakura nmbd[4361]:
    Apr 18 12:30:05 asakura nmbd[4361]: *****
    Apr 18 12:32:22 asakura smbd[4552]: [2009/04/18 12:32:22, 0] printing/print_cups.c:cups_connect(103)
    Apr 18 12:32:22 asakura smbd[4552]: Unable to connect to CUPS server localhost:631 - Connection refused
    Apr 18 12:32:22 asakura smbd[4553]: [2009/04/18 12:32:22, 0] printing/print_cups.c:cups_connect(103)
    Apr 18 12:32:22 asakura smbd[4553]: Unable to connect to CUPS server localhost:631 - Connection refused
    Those last two lines get spammed constantly.
    I've done a little bit of research into the matter, and followed the steps here to try to resolve the problem: http://www.davekb.com/browse_computer_t … server:txt
    Unfortunately it doesn't appear to make any difference.
    Here is my /etc/samba/smb.conf:
    # This is the main Samba configuration file. You should read the
    # smb.conf(5) manual page in order to understand the options listed
    # here. Samba has a huge number of configurable options (perhaps too
    # many!) most of which are not shown in this example
    # For a step to step guide on installing, configuring and using samba,
    # read the Samba-HOWTO-Collection. This may be obtained from:
    # http://www.samba.org/samba/docs/Samba-HOWTO-Collection.pdf
    # Many working examples of smb.conf files can be found in the
    # Samba-Guide which is generated daily and can be downloaded from:
    # http://www.samba.org/samba/docs/Samba-Guide.pdf
    # Any line which starts with a ; (semi-colon) or a # (hash)
    # is a comment and is ignored. In this example we will use a #
    # for commentry and a ; for parts of the config file that you
    # may wish to enable
    # NOTE: Whenever you modify this file you should run the command "testparm"
    # to check that you have not made any basic syntactic errors.
    #======================= Global Settings =====================================
    [global]
    # workgroup = NT-Domain-Name or Workgroup-Name, eg: MIDEARTH
    workgroup = MYGROUP
    # server string is the equivalent of the NT Description field
    server string = Samba Server
    # Security mode. Defines in which mode Samba will operate. Possible
    # values are share, user, server, domain and ads. Most people will want
    # user level security. See the Samba-HOWTO-Collection for details.
    security = user
    # This option is important for security. It allows you to restrict
    # connections to machines which are on your local network. The
    # following example restricts access to two C class networks and
    # the "loopback" interface. For more examples of the syntax see
    # the smb.conf man page
    ; hosts allow = 192.168.1. 192.168.2. 127.
    # If you want to automatically load your printer list rather
    # than setting them up individually then you'll need this
    load printers = no
    # you may wish to override the location of the printcap file
    ; printcap name = /etc/printcap
    # on SystemV system setting printcap name to lpstat should allow
    # you to automatically obtain a printer list from the SystemV spool
    # system
    ; printcap name = lpstat
    # It should not be necessary to specify the print system type unless
    # it is non-standard. Currently supported print systems include:
    # bsd, cups, sysv, plp, lprng, aix, hpux, qnx
    ; printing = cups
    # Uncomment this if you want a guest account, you must add this to /etc/passwd
    # otherwise the user "nobody" is used
    ; guest account = pcguest
    # this tells Samba to use a separate log file for each machine
    # that connects
    log file = /var/log/samba/%m.log
    # Put a capping on the size of the log files (in Kb).
    max log size = 50
    # Use password server option only with security = server
    # The argument list may include:
    # password server = My_PDC_Name [My_BDC_Name] [My_Next_BDC_Name]
    # or to auto-locate the domain controller/s
    # password server = *
    ; password server = <NT-Server-Name>
    # Use the realm option only with security = ads
    # Specifies the Active Directory realm the host is part of
    ; realm = MY_REALM
    # Backend to store user information in. New installations should
    # use either tdbsam or ldapsam. smbpasswd is available for backwards
    # compatibility. tdbsam requires no further configuration.
    ; passdb backend = tdbsam
    # Using the following line enables you to customise your configuration
    # on a per machine basis. The %m gets replaced with the netbios name
    # of the machine that is connecting.
    # Note: Consider carefully the location in the configuration file of
    # this line. The included file is read at that point.
    ; include = /usr/local/samba/lib/smb.conf.%m
    # Configure Samba to use multiple interfaces
    # If you have multiple network interfaces then you must list them
    # here. See the man page for details.
    ; interfaces = 192.168.12.2/24 192.168.13.2/24
    # Browser Control Options:
    # set local master to no if you don't want Samba to become a master
    # browser on your network. Otherwise the normal election rules apply
    ; local master = no
    # OS Level determines the precedence of this server in master browser
    # elections. The default value should be reasonable
    ; os level = 33
    # Domain Master specifies Samba to be the Domain Master Browser. This
    # allows Samba to collate browse lists between subnets. Don't use this
    # if you already have a Windows NT domain controller doing this job
    ; domain master = yes
    # Preferred Master causes Samba to force a local browser election on startup
    # and gives it a slightly higher chance of winning the election
    ; preferred master = yes
    # Enable this if you want Samba to be a domain logon server for
    # Windows95 workstations.
    ; domain logons = yes
    # if you enable domain logons then you may want a per-machine or
    # per user logon script
    # run a specific logon batch file per workstation (machine)
    ; logon script = %m.bat
    # run a specific logon batch file per username
    ; logon script = %U.bat
    # Where to store roving profiles (only for Win95 and WinNT)
    # %L substitutes for this servers netbios name, %U is username
    # You must uncomment the [Profiles] share below
    ; logon path = \\%L\Profiles\%U
    # Windows Internet Name Serving Support Section:
    # WINS Support - Tells the NMBD component of Samba to enable it's WINS Server
    ; wins support = yes
    # WINS Server - Tells the NMBD components of Samba to be a WINS Client
    # Note: Samba can be either a WINS Server, or a WINS Client, but NOT both
    ; wins server = w.x.y.z
    # WINS Proxy - Tells Samba to answer name resolution queries on
    # behalf of a non WINS capable client, for this to work there must be
    # at least one WINS Server on the network. The default is NO.
    ; wins proxy = yes
    # DNS Proxy - tells Samba whether or not to try to resolve NetBIOS names
    # via DNS nslookups. The default is NO.
    dns proxy = no
    # These scripts are used on a domain controller or stand-alone
    # machine to add or delete corresponding unix accounts
    ; add user script = /usr/sbin/useradd %u
    ; add group script = /usr/sbin/groupadd %g
    ; add machine script = /usr/sbin/adduser -n -g machines -c Machine -d /dev/null -s /bin/false %u
    ; delete user script = /usr/sbin/userdel %u
    ; delete user from group script = /usr/sbin/deluser %u %g
    ; delete group script = /usr/sbin/groupdel %g
    #============================ Share Definitions ==============================
    ; [homes]
    ; comment = Home Directories
    ; browseable = no
    ; writable = yes
    # Un-comment the following and create the netlogon directory for Domain Logons
    ; [netlogon]
    ; comment = Network Logon Service
    ; path = /usr/local/samba/lib/netlogon
    ; guest ok = yes
    ; writable = no
    ; share modes = no
    # Un-comment the following to provide a specific roving profile share
    # the default is to use the user's home directory
    ;[Profiles]
    ; path = /usr/local/samba/profiles
    ; browseable = no
    ; guest ok = yes
    # NOTE: If you have a BSD-style print system there is no need to
    # specifically define each individual printer
    ; [printers]
    ; comment = All Printers
    ; path = /var/spool/samba
    ; browseable = no
    # Set public = yes to allow user 'guest account' to print
    ; guest ok = no
    ; writable = no
    ; printable = yes
    # This one is useful for people to share files
    ;[tmp]
    ; comment = Temporary file space
    ; path = /tmp
    ; read only = no
    ; public = yes
    # A publicly accessible directory, but read only, except for people in
    # the "staff" group
    ;[public]
    ; comment = Public Stuff
    ; path = /home/samba
    ; public = yes
    ; writable = yes
    ; printable = no
    ; write list = @staff
    # Other examples.
    # A private printer, usable only by fred. Spool data will be placed in fred's
    # home directory. Note that fred must have write access to the spool directory,
    # wherever it is.
    ;[fredsprn]
    ; comment = Fred's Printer
    ; valid users = fred
    ; path = /homes/fred
    ; printer = freds_printer
    ; public = no
    ; writable = no
    ; printable = yes
    # A private directory, usable only by fred. Note that fred requires write
    # access to the directory.
    ;[fredsdir]
    ; comment = Fred's Service
    ; path = /usr/somewhere/private
    ; valid users = fred
    ; public = no
    ; writable = yes
    ; printable = no
    # a service which has a different directory for each machine that connects
    # this allows you to tailor configurations to incoming machines. You could
    # also use the %U option to tailor it by user name.
    # The %m gets replaced with the machine name that is connecting.
    ;[pchome]
    ; comment = PC Directories
    ; path = /usr/pc/%m
    ; public = no
    ; writable = yes
    # A publicly accessible directory, read/write to all users. Note that all files
    # created in the directory by users will be owned by the default user, so
    # any user with access can delete any other user's files. Obviously this
    # directory must be writable by the default user. Another user could of course
    # be specified, in which case all files would be owned by that user instead.
    ;[public]
    ; path = /usr/somewhere/else/public
    ; public = yes
    ; only guest = yes
    ; writable = yes
    ; printable = no
    # The following two entries demonstrate how to share a directory so that two
    # users can place files there that will be owned by the specific users. In this
    # setup, the directory should be writable by both users and should have the
    # sticky bit set on it to prevent abuse. Obviously this could be extended to
    # as many users as required.
    ;[myshare]
    ; comment = Mary's and Fred's stuff
    ; path = /usr/somewhere/shared
    ; valid users = mary fred
    ; public = no
    ; writable = yes
    ; printable = no
    ; create mask = 0765
    [shared]
    path = /media/shared
    valid users = foosoft
    public = no
    writable = yes
    [tomato]
    path = /media/data1/tomato
    valid users = foosoft
    public = no
    writable = yes
    show add printer wizard = no
    printing = none
    printcap name = /dev/null
    disable spoolss = yes
    I'm totally out of ideas here, anyone have a tip on what I could try next?
    Last edited by FooSoft (2009-04-18 19:52:28)

    glad you posted it first i had the same problem.
    However, samba was complaining that
    printing = none
    was invalid. I removed that line and it works great.
    thanks
    Last edited by lio (2009-10-16 00:20:14)

  • Documents shift down and to the right when scaled and sent to CUPS server

    This problem has been driving me up a wall, and I hope that you all might have some insight.
    We have a CUPS server setup within our department. This server runs Ubuntu 6.06 and CUPS 1.2.7 with native postscript to a variety of HP printers including Color 4700, 2430, 4250, etc.
    When printing from OS X (10.4.X) Preview to the CUPS server, and the print is a PDF that is larger than letter size, the print is scaled down to the letter paper in the printer, but prins down and to the right. This happens on a variety of printers, and can also happen in Excel if the sheet are larger than Letter. We've tried every combination of paper size, scaling and borders that we could think of. I haven't been able to try this with OS X 10.3.X yet.
    Scaling and printing works fine if run through the built-in OS X CUPS server. Printing also works fine if Adobe Reader is used with the external CUPS server.

    Click and hold. Not right click.

  • OS X 10.5 client and NON-OS X CUPS server: adding printers, solved

    Dear all,
    I had trouble in adding printers under OS X 10.5, those printers are shared via a FreeBSD CUPS 1.2.10 server on the local network.
    So I did the following:
    - System Preferences;
    - Print & Fax, right click on the leftmost part of the window, then "Reset printing system";
    - Open Terminal;
    - As admin via sudo or root edit the /etc/cups/cupsd.conf file and modify the first lines so they look like:
    Browsing On
    BrowseOrder allow,deny
    BrowseAllow all
    BrowseProtocols all
    BrowseRemoteProtocols all
    BrowsePoll hostnameof_your_cupsserver:631
    BrowsePort 631
    - Save the file;
    - Restart the client;
    - Now you should be able to see/add the printers.
    This is a quick and dirty fix, hope this helps.
    Regards,
    Alessandro

    Hi John,
    my apologies for having misinterpreted your post. I think that Apple engineers really did a big mistake by omitting the keyword BrowseProtocol="all" in the print engine setup (cupsd.conf), since that keyword basically allows the cups-polld daemon, that is the piece of the local printing engine of OS X that can "ask" the LAN for the presence of printers, to ask for printers shared via CUPS/LDAP/SLP and so on.
    I hope that this will be soon fixed in a minor release, since quite a lot of people (especially in the educational/research environments) heavily relies on a centralized CUPS server to manage tens or hundreds of printers (we do have 40+ printers, exported to more 400+ clients, both OS X and Windows).
    BTW, this morning I was asking a little joke to my colleagues I said to them "300+ new features, an old one missing.. try to guess which one"
    All the best,
    Alessandro

  • How to start CUP server

    I was able to install iFS withoout errors, but upon trying to upload the insurance exmaple upload_insapp.bat I get a CUP server not running error. How do I check/start the CUP server? also I was able to install the windows explorer client but I don't show any iFS drives and cannot seem to connect to my DB machine/ifs from windows explorer.
    Thanks
    Glenn Mckinlay

    I am seeing cupserver timing out. do i have to change timeouts, as i am having similar problem . I do start servers using ifsstart,
    but cup server doesn't start.
    Any directions.
    QUOTE]Originally posted by Luis:
    In order to take advantage of the iFS, you must start the iFS servers. Go to your %ORACLE_HOME%\ifs\bin directory and invoke the ifsstart.bat command. This will start the protocol servers you selected in the iFS Configuration Assistant. You must provide valid iFS credentials to start the servers. This will also start the Java Web Server, if it was selected. Consult the iFS Installation Guide for more info.
    null

  • Always duplex printing when printing through cups server

    I have about 6 printers which people normally accesses through a cups server running on a Linux box.
    We have always printed through the cups server from the Macs we have - and this has always worked great (they get auto-detected as shared printers and so on).
    But a few months ago something changed on the Macs - they can now ONLY print duplex - nomatter what i tell them to do in the print dialog. When printing first to a postscript file and then sending the postscript file to the printer (via terminal/lpr) everything gets printing correctly - but when using the printing dialog it always prints duplex.
    When printing to the printers directly (many different models) everything works - but going through the cups server - only duplex.
    All our Linux machines prints both duplex and simplex as they should, so the cups server isn't the problem.
    Has anybody else had this problem?
      Other OS  

    Armin,
    You need to do the following to make the duplex printing work for postscript in Oracle Reports.
    You need a printer with duplex option and an appropriate PPD file.
    You also need the Unix tool sed to filter the output file.
    The problem is that duplexing is enabled in the job level set up of the PostScript document but gets reset in the page set up because paper size and printer tray information is generated for every page. The workaround would be to write a script, which removes page level set-up information for the paper size and printer tray set up commands. As a side effect of this - it is no longer possible to switch the printer tray between pages.
    Write a sed script file called 'duplexsed' with the following three lines. This
    /^%%BeginPageSetup/,$ {
    /^%%BeginFeature/,/^%%EndFeature/d
    Copy the file to an appropriate directory, for example $ORACLE_HOME/bin.
    Set the environment variable TK_PRINT:
    TK_PRINT="sed -f $ORACLE_HOME/bin/duplexsed | lpr -l -s -P'%n' -#'%c'"
    export TK_PRINT
    Note that the print command is different for the various kinds of Unix.
    You may need to refer your installation guide and make changes to the lpr command
    Thanks
    The Oracle Reports Team

  • CUPC client not showing softphone but showing up under presence viewer on CUP server

    Hello,
    Having a strange issue where the presence client wont show the softphone configured for them but when you go to the presence server and use the presence viewer to see what the client should be seeing, it shows up there. From that it looks like the UPC phone in call manager is being seen ok by the CUPS server but for some reason not by the client. Tried fully shutting down the client and also restarting the re-sync service on CUPS but no such luck.
    thanks

    Please check if TFTP is configured on CUPS (CUPS > Application > Settings)
    Also trying pulling the softphone manually from CUPC client workstation
    Command (from windows command prompt)
    tftp -i GET .cnf.xml
    If this doesn't successfully downloads the file there is firewall issue in the network or on the workstation over tftp.
    (Note: Windows 7 doesn't have tftp client installed by default, need to install it from Control Panel > Programs and Features > Add/Remove Windows Feature)

  • 9iR2 OLAP Reporting Server Capacity Question

    9iR2 OLAP Reporting Server Capacity Question
    We are running Oracle 9iR2 with OLAP.
    OS - RHEL3 AS
    SERVERS - Dell Poweredge 6600's
    cpu 4 x 2.4ghz
    24GB RAM
    1.5 TB space
    Our AWs are typically 30GB in size. My question is, what is my capacity of jdbc thin client user sessions per box? I haven't been able to find much documentation on scalability with large AWs and a large user base. We will need to host reports for 6000 users moving to 16000 by next year.
    We will be switching to 2x 1.6ghz 64bit opteron boxes this year sometime as well.

    9iR2 OLAP Reporting Server Capacity Question
    We are running Oracle 9iR2 with OLAP.
    OS - RHEL3 AS
    SERVERS - Dell Poweredge 6600's
    cpu 4 x 2.4ghz
    24GB RAM
    1.5 TB space
    Our AWs are typically 30GB in size. My question is, what is my capacity of jdbc thin client user sessions per box? I haven't been able to find much documentation on scalability with large AWs and a large user base. We will need to host reports for 6000 users moving to 16000 by next year.
    We will be switching to 2x 1.6ghz 64bit opteron boxes this year sometime as well.

  • Precalculation SAP Server Capacity before deploy Roll Out Project

    Hello Experts,
    Kindly any one share your great experience to help our requirement.
    We are planning to implement new business scenarios and new client in existing Production server.
    Before deploy new business functionalists, what are factors need to consider in existing Production server.
    How to precalculate SAP server capacity to adopt new functionality, how affect workload, performance, memory..etc..
    Kindly any one the list of factors.. and some standard document.
    Regards,
    Karthik

    Hi Karthik,
    First find out the 'capacity' of your current server hardware. Ask the HW provider for the SAPS number of the machines, or look it up on SAP's benchmark sides http://service.sap.com/benchmarks
    Then monitor the current usage of your servers to find out how many SAPS you need for the existing functions, and how much headroom you have left.
    And for the new functions, look whether some sizing guideline exists (http://service.sap.com/sizing) or if a sizing for the new application is implemented in the quicksizer tool.
    With that, it should be a simple a + b = c type calculation.
    Best Regards, Randolf

  • FSCT (File Server Capacity Tool)

    I have  following questions.
    1) Do we have Report on WINDOWS Server 2012 and Windows Server 2012 R2?
    2) What kind of Hardware FC Storage Array are used as part of the testing (WIN2K8 R2)?
    3) Apart from predefined  scenarios,  Is there a way I can write customer scenarios and hook this to the tool?
    thanks, Your help is highly appreciated.
    Sathya

    Hi,
    As this issue is related to File Server Capacity Tool, I recommend posting it in the following forum. You could get better answers from there.
    http://social.technet.microsoft.com/Forums/en-US/home?forum=fsct
    Best Regards,
    Joyce
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • CUP Server Not Responding

    Hi,
    I have been trying to use Command line utilities to access my CMSDK server. I did the basic three variable setting in the ifscmdline. I started the ifshell but it's just hanging. So how can I see whether CUP server is UP or not, Is it possible to start/stop that seperately, where is the log files for CUP activies.
    Thanks
    Prithivi

    Hi,
    1) CUP can be used in a batch processing situation, but it has obvious limitations - because functionality is hardcoded.
    For example, with a folder delete, you have multiple options when using the Java API:
    Use setFolderDepthOption(option) method on FolderDefinition
    Delete options specific to Folders:
    SYSTEMOPTIONVALUE_FOLDER_DEPTH_NONE - Frees only the folder, no referenced objects are freed
    SYSTEMOPTIONVALUE_FOLDER_DEPTH_DEEPEST - Frees folder as well as all referenced objects
    SYSTEMOPTIONVALUE_FOLDER_DEPTH_MUST_BE_EMPTY - Free is forbidden if the folder is not empty
    // Assumes that oldFolder is the Folder to be deleted
    Folder oldFolder =  �;
    // Create the folder definition
    FolderDefinition fdef = new FolderDefinition(session);
    // Set option to delete the folder and folder items
    fdef.setFolderDepthOption
         (Folder.SYSTEMOPTIONVALUE_FOLDER_DEPTH_DEEPEST);
    // Now delete the folder
    oldFolder.free(fdef);Using CUP, you have limited control of functionality.
    It is the perfrect tool to be used by an administrator for one-off commands - but as batch processing tool I would suggest using JAVA!
    2) Parallel versioning is possible in the CM SDK - even though the Javadoc states otherwise.
    3) Certain everyday error messages are described in the Admin and Developers guides.
    Matt.

  • CUP server behind NAT

    Would there be any problems in having a CUP server (IM & Presence) behind a NAT? A quick google indicates that XMPP isn't like SIP and is NAT friendly, but I wasn't sure if there are any gotchas. (The CUP server and it's CUCM partner are on the same subnet, so there's no issue with the presence SIP trunk between CUP & CUCM)
    Thanks,
    GTG

    It may work, but the client is going to be only functioning half way.  Take a look at the port mappings below.   you will see that XMP will get you connected to the server, but then directory calls go right to LDAP, etc.   You cant NAT LDAP requests.
    The correct way to do this is to run Collaboration Edge (VCS Expressway) in your DMX to hand off the secure communications between the Jabber client and the rest of the UC servers. (CUCM, CUC, LDAP, etc).
    http://www.cisco.com/c/en/us/td/docs/voice_ip_comm/cucm/port/9_0_1/CUCM_BK_T98E8963_00_tcp-port-usage-guide-90/CUCM_BK_T98E8963_00_tcp-port-usage-guide-90_chapter_010.html

  • Printing from Lion to Linux CUPS server problem

    Hi,
    Our printing infrastructure is built to use a Linux CUPS server. This server shares about 200 printers, and all the Linux and Mac clients use it to print (with the BROWSEPOLL option set  in the client cups.conf file).
    Everything works fine with all Mac OS versions except with Lion.
    On the Lion clients, the dialog with the server seems to work : printers are detected, and we can print using command line "lpr -P <printer> <file>".
    But we can't print with any application like Safari and Firefox.
    In system.log we have :
    for Safari
    12/01/12 11:26:10,520 Safari: -[__NSCFDictionary setObject:forKey:]: attempt to insert nil value (key: printer-location)
    12/01/12 11:26:10,523 Safari: (
    0   CoreFoundation                      0x00007fff99683286 __exceptionPreprocess + 198
    1   libobjc.A.dylib                     0x00007fff9528dd5e objc_exception_throw + 43
    2   CoreFoundation                      0x00007fff996830ba +[NSException raise:format:arguments:] + 106
    3   CoreFoundation                      0x00007fff99683044 +[NSException raise:format:] + 116
    4   CoreFoundation                      0x00007fff9964029b -[__NSCFDictionary setObject:forKey:] + 219
    5   PrintingPrivate                     0x000000010a54e37b -[PKBrowser(private) queueList] + 324
    6   PrintingPrivate                     0x000000010a54cc93 -[PKBrowser filteredDeviceList] + 75
    7   PrintCocoaUI                        0x000000010aa8a072 CreateDefaultFileName + 6849
    8   Foundation                          0x00007fff90d13de2 __-[NSNotificationCenter addObserver:selector:name:object:]_block_invoke_1 + 47
    9   CoreFoundation                      0x00007fff9962be0a _CFXNotificationPost + 2634
    10  PrintCocoaUI                        0x000000010aa8ac6f CreateDefaultFileName + 9918
    11  PrintCocoaUI                        0x000000010aa9712e CreateDefaultFileName + 60285
    12  PrintCocoaUI                        0x000000010aa976b5 CreateDefaultFileName + 61700
    13  AppKit                              0x00007fff8f7362c3 -[NSWindowController _windowDidLoad] + 566
    14  AppKit                              0x00007fff8f72d9a3 -[NSWindowController window] + 109
    15  AppKit                              0x00007fff8fa43019 -[NSPrintPanel beginSheetWithPrintInfo:modalForWindow:delegate:didEndSelector:contextInfo:] + 606
    16  AppKit                              0x00007fff8fa3f9b9 -[NSConcretePrintOperation runOperationModalForWindow:delegate:didRunSelector:contextInfo:] + 477
    17  Safari                              0x00007fff91ec1ed5 -[BrowserDocument printFrame:showingPrintPanel:waitUntilDone:] + 498
    18  Safari                              0x00007fff91eac914 _ZN6Safari28BrowserContentViewController9printPageEb + 102
    19  AppKit                              0x00007fff8f8df52e __-[NSDocument printDocumentWithSettings:showPrintPanel:delegate:didPrintSelector:contextInfo: ]_block_invoke_2 + 264
    20  AppKit                              0x00007fff8f8e70a5 -[NSDocument _commitEditingThenContinue:] + 337
    21  AppKit                              0x00007fff8f8e2e0a -[NSDocument _commitEditingWithDelegate:didSomethingSelector:contextInfo:thenContinue:] + 91
    22  AppKit                              0x00007fff8f8df39b __-[NSDocument printDocumentWithSettings:showPrintPanel:delegate:didPrintSelector:contextInfo: ]_block_invoke_1 + 232
    23  AppKit                              0x00007fff8f8effb4 -[NSDocument performActivityWithSynchronousWaiting:usingBlock:] + 82
    24  AppKit                              0x00007fff8f8df2ad -[NSDocument printDocumentWithSettings:showPrintPanel:delegate:didPrintSelector:contextInfo: ] + 103
    25  AppKit                              0x00007fff8f8df23f -[NSDocument printDocument:] + 70
    26  CoreFoundation                      0x00007fff99672a1d -[NSObject performSelector:withObject:] + 61
    27  AppKit                              0x00007fff8f63c710 -[NSApplication sendAction:to:from:] + 139
    28  Safari                              0x00007fff91e9d755 -[BrowserApplication sendAction:to:from:] + 80
    29  AppKit                              0x00007fff8f729bd7 -[NSMenuItem _corePerformAction] + 399
    30  AppKit                              0x00007fff8f72990e -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 125
    31  AppKit                              0x00007fff8f6a6c3a -[NSMenu performKeyEquivalent:] + 281
    32  AppKit                              0x00007fff8f6a588d -[NSApplication _handleKeyEquivalent:] + 526
    33  AppKit                              0x00007fff8f59d170 -[NSApplication sendEvent:] + 4282
    34  Safari                              0x00007fff91e9d6f8 -[BrowserApplication sendEvent:] + 822
    35  WebKit2                             0x00007fff98aa5e7f -[WKView(Internal) _resendKeyDownEvent:] + 141
    36  WebKit2                             0x00007fff98a90b26 _ZN6WebKit12WebPageProxy15didReceiveEventEjb + 2196
    37  WebKit2                             0x00007fff98a90220 _ZN7CoreIPC13handleMessageIN8Messages12WebPageProxy15DidReceiveEventEN6WebKit12 WebPageProxyEMS5_FvjbEEEvPNS_15ArgumentDecoderEPT0_T1_ + 53
    38  WebKit2                             0x00007fff98a827b3 _ZN6WebKit15WebProcessProxy17didReceiveMessageEPN7CoreIPC10ConnectionENS1_9Mess ageIDEPNS1_15ArgumentDecoderE + 161
    39  WebKit2                             0x00007fff98a826ae _ZN7CoreIPC10Connection15dispatchMessageERNS0_7MessageINS_15ArgumentDecoderEEE + 172
    40  WebKit2                             0x00007fff98a825c7 _ZN7CoreIPC10Connection16dispatchMessagesEv + 145
    41  WebKit2                             0x00007fff98a7ef03 _ZN7RunLoop11performWorkEv + 111
    42  WebKit2                             0x00007fff98a7ee74 _ZN7RunLoop11performWorkEPv + 76
    43  CoreFoundation                      0x00007fff995f1b51 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    44  CoreFoundation                      0x00007fff995f13bd __CFRunLoopDoSources0 + 253
    45  CoreFoundation                      0x00007fff996181a9 __CFRunLoopRun + 905
    46  CoreFoundation                      0x00007fff99617ae6 CFRunLoopRunSpecific + 230
    47  HIToolbox                           0x00007fff953b63d3 RunCurrentEventLoopInMode + 277
    48  HIToolbox                           0x00007fff953bd63d ReceiveNextEventCommon + 355
    49  HIToolbox                           0x00007fff953bd4ca BlockUntilNextEventMatchingListInMode + 62
    50  AppKit                              0x00007fff8f5373f1 _DPSNextEvent + 659
    51  AppKit                              0x00007fff8f536cf5 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
    52  Safari                              0x00007fff91e9d3b3 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 171
    53  AppKit                              0x00007fff8f53362d -[NSApplication run] + 470
    54  AppKit                              0x00007fff8f7b280c NSApplicationMain + 867
    55  Safari                              0x00007fff92053a6f SafariMain + 197
    56  Safari                              0x0000000106424f24 Safari + 3876
    12/01/12 11:26:37,897 netbiosd: name servers down?
    for Firefox :
    12/01/12 11:25:53,479 firefox: Mozilla has caught an Obj-C exception [NSInvalidArgumentException: -[__NSCFDictionary setObject:forKey:]: attempt to insert nil value (key: printer-location)]
    12/01/12 11:25:53,480 [0x0-0x184184].org.mozilla.firefox: 2012-01-12 11:25:53.478 firefox[9718:503] Mozilla has caught an Obj-C exception [NSInvalidArgumentException: -[__NSCFDictionary setObject:forKey:]: attempt to insert nil value (key: printer-location)]
    Any idea ?
    Regards,
    Jean-Francois

    [NSInvalidArgumentException: -[__NSCFDictionary setObject:forKey:]: attempt to insert nil value (key: printer-location)]
    Apparently the Lion version of CUPS doesn't understand how your server specifies the location of the printer. That's about all I can tell you. You might find more information in the CUPS error log on the client.

  • Leopard CUPS Server - CUPS 1.1 clients

    Hello,
    I would like to print from CUPS 1.1 clients to a CUPS server running on Leopard 10.5.2.
    The CUPS 1.1 clients are not capable of using utf-8 characters.
    Updating the clients is not possible.
    lpstat -a
    I get on the client:
    lpstat: get-printers failed: client-error-bad-request
    On the server:
    Unsupported character set "iso-8859-1"!
    How can I fix this? Or should I wait for an update?
    Regards.
    Petra Humann

    We hit the exact same issue, the exact same bug, but had an additional manifestation as described in the bug details - users not able to be migrated from inactive to active.
    TAC got in and fixed the database and it fixed the spurious logs for us, too.  Thanks for the feedback!

  • CUP SERVER

    I get a CUP server not running error message. How do I start the CUP server?

    Luis
    I too had this problem. While installing, I made sure I installed CUP Server. I also started using ifsstart.bat. But, still while uploading the Insurance application, I get a message stating CUP Server not started.
    Hans
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Luis:
    1. Install iFS (skip this step if you have already done so)
    2. Execute the iFS Configuration Assistant (run $ORACLE_HOME/ifs/bin/ifsconfig)
    3. Go to the "protocols" page and make sure the CUP is selected.
    4. If it wasn't selected (or you just installed iFS), make sure to run the configuration; otherwise, skip it (cancel).
    5. Start the iFS servers (run $ORACLE_HOME/ifs/bin/ifsstart).<HR></BLOCKQUOTE>
    null

Maybe you are looking for

  • How to get counter values from pci 6221 card?

    Hii  I am using PCI 6221 card .. In that i am using the ctr o .. In my application i am using Linear encoder to measure the Lift movement.. so from software how to access the counter values i.e how much mm it moves... 

  • Does any one know about Classification of Objects

    Hi I have a requirement , in that a field is stored as part of the Vendor Class's Classification Object. How can I add this in my Model (DSO) ?Do I need to create any spl things for this ? I have recieved a flat file for this requirement also for thi

  • WF problem with rule

    Hi expert, i have created a rule with Category = Agent Determination: Responsabilities; this rule doesn't work correctly  only in production and only with some values. I have tried the note 855494 but i haven't understand what "The rule resolution is

  • How can I find who deleted my files?

    Hello all. In my local network, A user see my share partitions and files then removed them, How can I find who did it? THanks.

  • Holder-Position relationship not created during hiring in PA40

    Hi, I have an issue right now where the holder-position relationship was not created when I hired a new employee thru PA40. We could correct this via RHINTE00. However, we would like to know first before we run the program on what could be the probab