EJBException in ejbStore() doesn't reach client

Oracle 8.1.7
Entity Bean (Bean managed persistence)
Transaction Attrib : Required
I am trying to get any SQLException thrown in ejbStore() to be thrown to the client wrapped in an EJBException and somehow this doesnt happen. My ejbStore() method tries to execute an update statement, but if the update fails for some reason then I need the exception thrown back to the client.
Sample piece of code:
public void ejbStore() throws EJBException {
try {
conn = getConnection();
PreparedStatement stmt = conn.prepareStatement("...");
stmt.setString(1, ...);
int a = stmt.executeUpdate();
} catch (SQLException e) {
throw new EJBException(e.getMessage());
Is there something wrong with this approach or a am I missing something ???
Thanks in advance for any help.
Ashish.

I have tried and tried and failed to make sense of this.
Can anyone give me the slightest of hints?
TIA.
Ashish.

Similar Messages

  • HELP - EJBException in ejbStore() doesnt propogate to client

    Oracle 8.1.7
    Entity Bean (Bean managed persistence)
    Transaction Attrib : Required
    I am trying to get any SQLException thrown in ejbStore() to be thrown to the client wrapped in an EJBException and somehow this doesnt happen. My ejbStore() method tries to execute an update statement, but if the update fails for some reason then I need the exception thrown back to the client.
    Sample piece of code:
    public void ejbStore() throws EJBException {
    try {
    conn = getConnection();
    PreparedStatement stmt = conn.prepareStatement("...");
    stmt.setString(1, ...);
    int a = stmt.executeUpdate();
    } catch (SQLException e) {
    throw new EJBException(e.getMessage());
    Is there something wrong with this approach or a am I missing something ???
    Thanks in advance for any help.
    Ashish.
    null

    I have tried and tried and failed to make sense of this.
    Can anyone give me the slightest of hints?
    TIA.
    Ashish.

  • Non SMTP inbound email doesn't reach to SAP

    Hi Experts,
    Currently we are trying to implement offline approval in SRM for Shopping Cart. So approver will approve and reject through email.
           i) Approver receive an email from SRM system which has two buttons approve and reject , This email is sent from SAP using SMTP protocol.
          ii) Approver takes an action by clicking approve button at this point automatic reply is triggered out to SAP with an approval note in the body.
         iii) Approver Mail in  step c) doesn’t reach to SAP , but it comes to mail box which we have in outlook exchange server.
    Problem: The email doesn't reach SAP because for inbound emails we have configured SMTP protocol however the client's outbound email config is non SMTP. SAP doesn't support any non SMTP protocol for inbound emails. 
                One way to achieve this is by consuming EWS in ABAP for moving mails in exchange mail box to SAP mail box.
                Has anyone tried this before? Please suggest if there is a alternate solution to achieve this.
    Regards,
    Gowri           

    For a US based mail service like Comcast, your best bet is to run through your mail account settings and verify that it is configured properly. Quickest way to check would be to drop your email address into the iPhone mail helper, located at http://www.apple.com/support/iphone/mailhelper/ , also linked at the top of this section. Often times it is an SSL setting toggled the wrong way, or a port number assigned incorrectly.
    If everything looks to be in there properly, remove and then enter in the account manually using the steps from the mail helper. And always verify that you are using the correct user name & password combination by logging in to your Comcast webmail. Hope this helps.
    Message was edited by: X_oran

  • Is there a device that extends the range of airport?  it doesn't reach throughout my home.

    is there a device that extends the range of airport?  it doesn't reach throughout my home.

    Another AirPort router will do what you want.

  • Thinkpad L512 display doesn't reach full brightness

    My 2 month old Thinkpad L512 display doesn't reach full brightness, except for a few seconds after bootup. Then it dims down to maybe 8 or so on a scale of 1-10. Which is often good indoors, but in a bright situation, I could use the extra screen brightness.
    The screen correctly dims significantly (to maybe 2 or so on a scale of 1-10) after siting idle for a few minutes, as specified in the Power settings. But when it recovers, it is at full brightness for 10 seconds or so, then dims back down to 8 and stays there until I repeat the cycle.
    I have poked around in the Display and Power settings, and the display is set to 100% there.
    Any ideas? Thanks!
    David

    I had this problem with several of my machines.  I noticed that if you unplugged the power and plugged it back in, the machine would jump back up to the brightest setting.  But if you tried to adjust the brightness down and *then* back up, it would never reach the highest brightness.
    I tried reinstalling the Power Management Driver and reinstalling Power Manager itself (both to no avail).  I tried to downgrade to BIOS 1.20 but that didn't really have an effect either.
    Finally, I downgraded to BIOS 1.19 and that resolved the issue.  However, now I'm having an issue where the brightness changes two settings every time you hit the button (which was supposedly fixed in 1.20...though I had the same issue in 1.21).
    I'm pretty frustrated with this machine.  Hopefully the *next* BIOS resolves all of brightness related the issues...

  • Wifi signal from Airport Extreme doesn't reach all areas of my house.  Is there a way to extend it without sacrificing bandwidth?  Airport Extreme version 7.6.1

    The wifi signal from my Airport Extreme doesn't reach all areas of my house.  Is there a way to extend it without sacrificing bandwidth?  I have an Airport Extreme running version 7.6.1.

    You will need to add another device like an AirPort Extreme to provide additional wireless coverage in the house.
    The only way to preserve bandwidth on a network would be to connect the two AirPort Extremes using an Ethernet cable connection.
    While you can "extend" using wireless only, typically half of the bandwidth on the network is sacrificed when you do this.

  • Can servlet know if data reaches client?

    Is there any way for a servlet to tell if the data it sent on the response
              output stream really reached the client? Presumably using sockets we could
              check if the connection was closed cleanly or if it aborted but the servlet
              API doesn't seem to have anything relating to this.
              Does the new fuss over web services provide something to help with this - it
              must be an issue with web services!
              Thanks,
              -Dominic
              

    Hi Mike,
              my experiments suggest otherwise:
              If my client makes a request and then is killed off, the server appears to
              notice and the isCommitted() method on the response returns false. However,
              if I remove the network cable from the client machine after the request is
              made, the client connection times out and notices but the server does not -
              the response just vanishes. There is no IOException in this case (even
              though I explicitly flush the stream).
              It seems incredible that the TCP/IP protocol knows the connection has gone
              but there's no way for the servlets to find out.
              Cheers,
              -Dominic
              "Mike Mormando" <[email protected]> wrote in message
              news:3c6a8c1a$[email protected]..
              > "Dominic Tulley" <[email protected]> wrote in
              message
              > news:3c6a8156$[email protected]..
              > > Is there any way for a servlet to tell if the data it sent on the
              response
              > > output stream really reached the client? Presumably using sockets we
              > could
              > > check if the connection was closed cleanly or if it aborted but the
              > servlet
              > > API doesn't seem to have anything relating to this.
              > When you flush the output stream, if the client isn't connected you get an
              > IOException I believe.
              > I think that's as close as it gets.
              > Mike
              >
              >
              >
              

  • Epson SX218 doesn't print (client-error-document-format-not-supported)

    Hi there,
    I'm currently trying to figure out how to get my Epson Stylus SX 218 to work. Unfortunately, cups (or the printer or whatever causes my problems...) obviously just doesn't want me to get this to work.
    Here's what I've done so far:
    I installed everything as described in the CUPS wiki article (so ghostscript and all the foomatic-stuff is installed, usblp is NOT blacklisted, see why below)
    I installed epson-inkjet-printer-workforce-sx218 from AUR
    I started cups...
    Nothing worked (Printer not recognized, either with or without blacklisted usblp module...)
    I searched the forums for a solution
    I installed cups-usblp and reinstalled all the cups stuff
    Printer got recognized! Yay!
    So, now the printer is set up in cups using the avasys driver. But...
    It doesn't print!
    When I try to print a test page via the cups webinterface it keeps telling me
    Unsupported format "application/vnd.cups-banner".
    The following packages are installed now:
    $ pacman -Qs cups
    local/cups-usblp 1.5.0-1
    local/libcups 1.5.0-1
    $ pacman -Qs foomatic
    local/foomatic-db 1:4.0.7_20110707-1
    local/foomatic-db-engine 1:4.0.7_20110707-1
    local/foomatic-db-nonfree 1:4.0.7_20110707-1
    local/foomatic-filters 1:4.0.7_20110707-1
    $ pacman -Qs epson
    local/epson-inkjet-printer-workforce-320-sx218 1.0.0-6
    $ pacman -Qs ghostscript
    local/ghostscript 9.04-5
    Here's my cups error log:
    I [01/Jan/2012:18:59:01 +0100] Listening to [v1.::1]:631 (IPv6)
    I [01/Jan/2012:18:59:01 +0100] Listening to 127.0.0.1:631 (IPv4)
    I [01/Jan/2012:18:59:01 +0100] Listening to /var/run/cups/cups.sock (Domain)
    I [01/Jan/2012:18:59:01 +0100] Remote access is disabled.
    D [01/Jan/2012:18:59:01 +0100] Added auto ServerAlias mamapc
    I [01/Jan/2012:18:59:01 +0100] Loaded configuration file "/etc/cups/cupsd.conf"
    I [01/Jan/2012:18:59:01 +0100] Using default TempDir of /var/spool/cups/tmp...
    I [01/Jan/2012:18:59:01 +0100] Configured for up to 100 clients.
    I [01/Jan/2012:18:59:01 +0100] Allowing up to 100 client connections per host.
    I [01/Jan/2012:18:59:01 +0100] Using policy "default" as the default.
    D [01/Jan/2012:18:59:01 +0100] cupsdMarkDirty(---p--)
    D [01/Jan/2012:18:59:01 +0100] cupsdSetBusyState: newbusy="Dirty files", busy="Not busy"
    I [01/Jan/2012:18:59:01 +0100] Partial reload complete.
    I [01/Jan/2012:18:59:01 +0100] Listening to [v1.::1]:631 on fd 6...
    I [01/Jan/2012:18:59:01 +0100] Listening to 127.0.0.1:631 on fd 8...
    I [01/Jan/2012:18:59:01 +0100] Listening to /var/run/cups/cups.sock:631 on fd 9...
    I [01/Jan/2012:18:59:01 +0100] Resuming new connection processing...
    D [01/Jan/2012:18:59:01 +0100] cupsdSetBusyState: newbusy="Dirty files", busy="Dirty files"
    D [01/Jan/2012:18:59:01 +0100] Discarding unused server-restarted event...
    D [01/Jan/2012:18:59:01 +0100] cupsdAcceptClient: 13 from localhost:631 (IPv4)
    D [01/Jan/2012:18:59:01 +0100] Report: clients=1
    D [01/Jan/2012:18:59:01 +0100] Report: jobs=0
    D [01/Jan/2012:18:59:01 +0100] Report: jobs-active=0
    D [01/Jan/2012:18:59:01 +0100] Report: printers=0
    D [01/Jan/2012:18:59:01 +0100] Report: printers-implicit=0
    D [01/Jan/2012:18:59:01 +0100] Report: stringpool-string-count=407
    D [01/Jan/2012:18:59:01 +0100] Report: stringpool-alloc-bytes=4648
    D [01/Jan/2012:18:59:01 +0100] Report: stringpool-total-bytes=5736
    D [01/Jan/2012:18:59:01 +0100] PID 928 (/usr/lib/cups/cgi-bin/admin.cgi) exited with no errors.
    D [01/Jan/2012:18:59:01 +0100] cupsdReadClient: 13 GET /images/wait.gif HTTP/1.1
    D [01/Jan/2012:18:59:01 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
    D [01/Jan/2012:18:59:01 +0100] cupsdAuthorize: Authorized as root using Basic
    D [01/Jan/2012:18:59:01 +0100] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
    D [01/Jan/2012:18:59:06 +0100] cupsdReadClient: 13 GET /admin/?OP=redirect HTTP/1.1
    D [01/Jan/2012:18:59:06 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
    D [01/Jan/2012:18:59:06 +0100] cupsdAuthorize: Authorized as root using Basic
    D [01/Jan/2012:18:59:06 +0100] [CGI] argv[0] = "/usr/lib/cups/cgi-bin/admin.cgi"
    D [01/Jan/2012:18:59:06 +0100] [CGI] argv[1] = "OP=redirect"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[0] = "CUPS_CACHEDIR=/var/cache/cups"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[1] = "CUPS_DATADIR=/usr/share/cups"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[2] = "CUPS_DOCROOT=/usr/share/cups/doc"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[3] = "CUPS_FONTPATH=/usr/share/cups/fonts"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[4] = "CUPS_REQUESTROOT=/var/spool/cups"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[5] = "CUPS_SERVERBIN=/usr/lib/cups"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[6] = "CUPS_SERVERROOT=/etc/cups"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[7] = "CUPS_STATEDIR=/var/run/cups"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[8] = "HOME=/var/spool/cups/tmp"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[9] = "PATH=/usr/lib/cups/filter:/usr/bin:/usr/sbin:/bin:/usr/bin"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[10] = "SERVER_ADMIN=root@mamapc"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[11] = "SOFTWARE=CUPS/1.5.0"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[12] = "TMPDIR=/var/spool/cups/tmp"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[13] = "USER=root"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[14] = "CUPS_SERVER=/var/run/cups/cups.sock"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[15] = "CUPS_ENCRYPTION=IfRequested"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[16] = "IPP_PORT=631"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[17] = "AUTH_TYPE=Basic"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[18] = "LANG=de_DE.UTF8"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[19] = "REDIRECT_STATUS=1"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[20] = "GATEWAY_INTERFACE=CGI/1.1"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[21] = "SERVER_NAME=localhost"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[22] = "SERVER_PORT=631"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[23] = "REMOTE_ADDR=127.0.0.1"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[24] = "REMOTE_HOST=localhost"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[25] = "SCRIPT_NAME=/admin/"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[26] = "SCRIPT_FILENAME=/usr/share/cups/doc/admin/"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[27] = "REMOTE_USER=root"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[28] = "SERVER_PROTOCOL=HTTP/1.1"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[29] = "HTTP_COOKIE=org.cups.sid=960956618ce3e170434dd2afacd4fad3"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[30] = "HTTP_USER_AGENT=Opera/9.80 (X11; Linux i686; U; de) Presto/2.10.229 Version/11.60"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[31] = "HTTP_REFERER=http://localhost:631/admin"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[32] = "REQUEST_METHOD=GET"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[33] = "QUERY_STRING=OP=redirect"
    D [01/Jan/2012:18:59:06 +0100] [CGI] Started /usr/lib/cups/cgi-bin/admin.cgi (PID 929)
    I [01/Jan/2012:18:59:06 +0100] Started "/usr/lib/cups/cgi-bin/admin.cgi" (pid=929)
    D [01/Jan/2012:18:59:06 +0100] cupsdSendCommand: 13 file=14
    D [01/Jan/2012:18:59:06 +0100] [CGI] admin.cgi started...
    D [01/Jan/2012:18:59:06 +0100] cupsdAcceptClient: 16 from localhost (Domain)
    D [01/Jan/2012:18:59:06 +0100] [CGI] http=0xb9359360
    D [01/Jan/2012:18:59:06 +0100] [CGI] org.cups.sid cookie is "960956618ce3e170434dd2afacd4fad3"
    D [01/Jan/2012:18:59:06 +0100] [CGI] redirecting with prefix http://localhost:631!
    D [01/Jan/2012:18:59:06 +0100] cupsdReadClient: 16 WAITING Closing on EOF
    D [01/Jan/2012:18:59:06 +0100] cupsdCloseClient: 16
    D [01/Jan/2012:18:59:06 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [01/Jan/2012:18:59:06 +0100] Script header: Location: http://localhost:631/admin
    D [01/Jan/2012:18:59:06 +0100] Script header:
    D [01/Jan/2012:18:59:06 +0100] cupsdAcceptClient: 16 from localhost:631 (IPv4)
    D [01/Jan/2012:18:59:06 +0100] cupsdReadClient: 16 GET /admin HTTP/1.1
    D [01/Jan/2012:18:59:06 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [01/Jan/2012:18:59:06 +0100] cupsdAuthorize: Authorized as root using Basic
    D [01/Jan/2012:18:59:06 +0100] [CGI] argv[0] = "/usr/lib/cups/cgi-bin/admin.cgi"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[0] = "CUPS_CACHEDIR=/var/cache/cups"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[1] = "CUPS_DATADIR=/usr/share/cups"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[2] = "CUPS_DOCROOT=/usr/share/cups/doc"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[3] = "CUPS_FONTPATH=/usr/share/cups/fonts"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[4] = "CUPS_REQUESTROOT=/var/spool/cups"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[5] = "CUPS_SERVERBIN=/usr/lib/cups"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[6] = "CUPS_SERVERROOT=/etc/cups"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[7] = "CUPS_STATEDIR=/var/run/cups"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[8] = "HOME=/var/spool/cups/tmp"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[9] = "PATH=/usr/lib/cups/filter:/usr/bin:/usr/sbin:/bin:/usr/bin"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[10] = "SERVER_ADMIN=root@mamapc"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[11] = "SOFTWARE=CUPS/1.5.0"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[12] = "TMPDIR=/var/spool/cups/tmp"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[13] = "USER=root"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[14] = "CUPS_SERVER=/var/run/cups/cups.sock"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[15] = "CUPS_ENCRYPTION=IfRequested"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[16] = "IPP_PORT=631"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[17] = "AUTH_TYPE=Basic"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[18] = "LANG=de_DE.UTF8"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[19] = "REDIRECT_STATUS=1"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[20] = "GATEWAY_INTERFACE=CGI/1.1"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[21] = "SERVER_NAME=localhost"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[22] = "SERVER_PORT=631"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[23] = "REMOTE_ADDR=127.0.0.1"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[24] = "REMOTE_HOST=localhost"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[25] = "SCRIPT_NAME=/admin"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[26] = "SCRIPT_FILENAME=/usr/share/cups/doc/admin"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[27] = "REMOTE_USER=root"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[28] = "SERVER_PROTOCOL=HTTP/1.1"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[29] = "HTTP_COOKIE=org.cups.sid=960956618ce3e170434dd2afacd4fad3"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[30] = "HTTP_USER_AGENT=Opera/9.80 (X11; Linux i686; U; de) Presto/2.10.229 Version/11.60"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[31] = "HTTP_REFERER=http://localhost:631/admin"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[32] = "REQUEST_METHOD=GET"
    D [01/Jan/2012:18:59:06 +0100] [CGI] envp[33] = "QUERY_STRING="
    D [01/Jan/2012:18:59:06 +0100] [CGI] Started /usr/lib/cups/cgi-bin/admin.cgi (PID 930)
    I [01/Jan/2012:18:59:06 +0100] Started "/usr/lib/cups/cgi-bin/admin.cgi" (pid=930)
    D [01/Jan/2012:18:59:06 +0100] cupsdSendCommand: 16 file=17
    D [01/Jan/2012:18:59:06 +0100] PID 929 (/usr/lib/cups/cgi-bin/admin.cgi) exited with no errors.
    D [01/Jan/2012:18:59:06 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [01/Jan/2012:18:59:06 +0100] [CGI] admin.cgi started...
    D [01/Jan/2012:18:59:06 +0100] cupsdAcceptClient: 14 from localhost (Domain)
    D [01/Jan/2012:18:59:06 +0100] [CGI] http=0xb866c360
    D [01/Jan/2012:18:59:06 +0100] [CGI] org.cups.sid cookie is "960956618ce3e170434dd2afacd4fad3"
    D [01/Jan/2012:18:59:06 +0100] [CGI] No form data, showing main menu...
    D [01/Jan/2012:18:59:06 +0100] [CGI] /usr/share/cups/drivers/pscript5.dll: Datei oder Verzeichnis nicht gefunden
    D [01/Jan/2012:18:59:06 +0100] cupsdReadClient: 14 POST / HTTP/1.1
    D [01/Jan/2012:18:59:06 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [01/Jan/2012:18:59:06 +0100] cupsdAuthorize: No authentication data provided.
    D [01/Jan/2012:18:59:06 +0100] cupsdReadClient: 14 1.1 Get-Subscriptions 1
    D [01/Jan/2012:18:59:06 +0100] Get-Subscriptions ipp://localhost/
    D [01/Jan/2012:18:59:06 +0100] Get-Subscriptions client-error-not-found: No subscriptions found.
    D [01/Jan/2012:18:59:06 +0100] Returning IPP client-error-not-found for Get-Subscriptions (ipp://localhost/) from localhost
    D [01/Jan/2012:18:59:06 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [01/Jan/2012:18:59:06 +0100] Script header: Content-Type: text/html;charset=utf-8
    D [01/Jan/2012:18:59:06 +0100] Script header:
    D [01/Jan/2012:18:59:06 +0100] cupsdReadClient: 14 WAITING Closing on EOF
    D [01/Jan/2012:18:59:06 +0100] cupsdCloseClient: 14
    D [01/Jan/2012:18:59:06 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [01/Jan/2012:18:59:06 +0100] PID 930 (/usr/lib/cups/cgi-bin/admin.cgi) exited with no errors.
    D [01/Jan/2012:18:59:06 +0100] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
    D [01/Jan/2012:18:59:11 +0100] cupsdReadClient: 13 GET / HTTP/1.1
    D [01/Jan/2012:18:59:11 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
    D [01/Jan/2012:18:59:11 +0100] cupsdAuthorize: Authorized as root using Basic
    D [01/Jan/2012:18:59:11 +0100] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
    D [01/Jan/2012:18:59:11 +0100] cupsdReadClient: 13 WAITING Closing on EOF
    D [01/Jan/2012:18:59:11 +0100] cupsdCloseClient: 13
    D [01/Jan/2012:18:59:11 +0100] cupsdSetBusyState: newbusy="Dirty files", busy="Dirty files"
    D [01/Jan/2012:18:59:12 +0100] cupsdReadClient: 16 WAITING Closing on EOF
    D [01/Jan/2012:18:59:12 +0100] cupsdCloseClient: 16
    D [01/Jan/2012:18:59:12 +0100] cupsdSetBusyState: newbusy="Dirty files", busy="Dirty files"
    D [01/Jan/2012:18:59:12 +0100] cupsdAcceptClient: 13 from localhost:631 (IPv4)
    D [01/Jan/2012:18:59:12 +0100] cupsdReadClient: 13 GET /admin/log/access_log? HTTP/1.1
    D [01/Jan/2012:18:59:12 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
    D [01/Jan/2012:18:59:12 +0100] cupsdAuthorize: Authorized as root using Basic
    D [01/Jan/2012:18:59:12 +0100] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
    I [01/Jan/2012:18:59:32 +0100] Generating printcap /etc/printcap...
    D [01/Jan/2012:18:59:32 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Dirty files"
    D [01/Jan/2012:18:59:35 +0100] cupsdAcceptClient: 14 from localhost (Domain)
    D [01/Jan/2012:18:59:35 +0100] cupsdReadClient: 14 POST / HTTP/1.1
    D [01/Jan/2012:18:59:35 +0100] cupsdSetBusyState: newbusy="Active clients", busy="Not busy"
    D [01/Jan/2012:18:59:35 +0100] cupsdAuthorize: No authentication data provided.
    D [01/Jan/2012:18:59:35 +0100] cupsdReadClient: 14 1.1 CUPS-Get-Devices 1
    D [01/Jan/2012:18:59:35 +0100] CUPS-Get-Devices
    D [01/Jan/2012:18:59:35 +0100] cupsdIsAuthorized: username=""
    D [01/Jan/2012:18:59:35 +0100] Returning HTTP Unauthorized for CUPS-Get-Devices (no URI) from localhost
    D [01/Jan/2012:18:59:35 +0100] cupsdSendHeader: 14 WWW-Authenticate: Basic realm="CUPS", trc="y"
    D [01/Jan/2012:18:59:35 +0100] cupsdReadClient: 14 WAITING Closing on EOF
    D [01/Jan/2012:18:59:35 +0100] cupsdCloseClient: 14
    D [01/Jan/2012:18:59:35 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Active clients"
    D [01/Jan/2012:18:59:35 +0100] cupsdAcceptClient: 14 from localhost (Domain)
    D [01/Jan/2012:18:59:35 +0100] cupsdAcceptClient: 16 from localhost (Domain)
    D [01/Jan/2012:18:59:35 +0100] cupsdReadClient: 14 WAITING Closing on EOF
    D [01/Jan/2012:18:59:35 +0100] cupsdCloseClient: 14
    D [01/Jan/2012:18:59:35 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Not busy"
    D [01/Jan/2012:18:59:35 +0100] cupsdReadClient: 16 POST / HTTP/1.1
    D [01/Jan/2012:18:59:35 +0100] cupsdSetBusyState: newbusy="Active clients", busy="Not busy"
    D [01/Jan/2012:18:59:35 +0100] cupsdAuthorize: Authorized as root using PeerCred
    D [01/Jan/2012:18:59:35 +0100] cupsdReadClient: 16 1.1 CUPS-Get-Devices 1
    D [01/Jan/2012:18:59:35 +0100] CUPS-Get-Devices
    D [01/Jan/2012:18:59:35 +0100] cupsdIsAuthorized: username="root"
    D [01/Jan/2012:18:59:35 +0100] [CGI] argv[0] = "/usr/lib/cups/daemon/cups-deviced"
    D [01/Jan/2012:18:59:35 +0100] [CGI] argv[1] = "1"
    D [01/Jan/2012:18:59:35 +0100] [CGI] argv[2] = "0"
    D [01/Jan/2012:18:59:35 +0100] [CGI] argv[3] = "2"
    D [01/Jan/2012:18:59:35 +0100] [CGI] argv[4] = "2"
    D [01/Jan/2012:18:59:35 +0100] [CGI] argv[5] = "requested-attributes=all exclude-schemes='beh','cups-pdf','bluetooth','dnssd','http','https','ipp','lpd','ncp','parallel','scsi','smb','snmp','socket'"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[0] = "CUPS_CACHEDIR=/var/cache/cups"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[1] = "CUPS_DATADIR=/usr/share/cups"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[2] = "CUPS_DOCROOT=/usr/share/cups/doc"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[3] = "CUPS_FONTPATH=/usr/share/cups/fonts"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[4] = "CUPS_REQUESTROOT=/var/spool/cups"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[5] = "CUPS_SERVERBIN=/usr/lib/cups"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[6] = "CUPS_SERVERROOT=/etc/cups"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[7] = "CUPS_STATEDIR=/var/run/cups"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[8] = "HOME=/var/spool/cups/tmp"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[9] = "PATH=/usr/lib/cups/filter:/usr/bin:/usr/sbin:/bin:/usr/bin"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[10] = "SERVER_ADMIN=root@mamapc"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[11] = "SOFTWARE=CUPS/1.5.0"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[12] = "TMPDIR=/var/spool/cups/tmp"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[13] = "USER=root"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[14] = "CUPS_SERVER=/var/run/cups/cups.sock"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[15] = "CUPS_ENCRYPTION=IfRequested"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[16] = "IPP_PORT=631"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[17] = "AUTH_TYPE=PeerCred"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[18] = "LANG=en_US.UTF8"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[19] = "REDIRECT_STATUS=1"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[20] = "GATEWAY_INTERFACE=CGI/1.1"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[21] = "SERVER_NAME=localhost"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[22] = "SERVER_PORT=631"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[23] = "REMOTE_ADDR="
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[24] = "REMOTE_HOST=localhost"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[25] = "SCRIPT_NAME=/"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[26] = "SCRIPT_FILENAME=/usr/share/cups/doc/"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[27] = "REMOTE_USER=root"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[28] = "SERVER_PROTOCOL=HTTP/1.1"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[29] = "HTTP_USER_AGENT=CUPS/1.5.0"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[30] = "REQUEST_METHOD=POST"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[31] = "CONTENT_LENGTH=244"
    D [01/Jan/2012:18:59:35 +0100] [CGI] envp[32] = "CONTENT_TYPE=application/ipp"
    D [01/Jan/2012:18:59:35 +0100] [CGI] Started /usr/lib/cups/daemon/cups-deviced (PID 948)
    I [01/Jan/2012:18:59:35 +0100] Started "/usr/lib/cups/daemon/cups-deviced" (pid=948)
    D [01/Jan/2012:18:59:35 +0100] cupsdSendCommand: 16 file=14
    D [01/Jan/2012:18:59:35 +0100] [cups-deviced] Started backend /usr/lib/cups/backend/mdns (PID 949)
    D [01/Jan/2012:18:59:35 +0100] [cups-deviced] Started backend /usr/lib/cups/backend/usb (PID 950)
    D [01/Jan/2012:18:59:35 +0100] [cups-deviced] Started backend /usr/lib/cups/backend/ipps (PID 951)
    D [01/Jan/2012:18:59:35 +0100] [cups-deviced] Started backend /usr/lib/cups/backend/serial (PID 952)
    D [01/Jan/2012:18:59:35 +0100] [cups-deviced] PID 949 (mdns) exited with no errors.
    D [01/Jan/2012:18:59:35 +0100] [CGI] list_devices
    D [01/Jan/2012:18:59:35 +0100] [CGI] usb_find_busses=2
    D [01/Jan/2012:18:59:35 +0100] [CGI] usb_find_devices=7
    D [01/Jan/2012:18:59:35 +0100] [CGI] libusb couldn't open USB device /dev/bus/usb/002/002: Permission denied.
    D [01/Jan/2012:18:59:35 +0100] [CGI] libusb requires write access to USB device nodes.
    D [01/Jan/2012:18:59:35 +0100] [cups-deviced] PID 950 (usb) exited with no errors.
    D [01/Jan/2012:18:59:35 +0100] [CGI] Flushed attributes...
    D [01/Jan/2012:18:59:35 +0100] [cups-deviced] Found device "ipps"...
    D [01/Jan/2012:18:59:35 +0100] [cups-deviced] PID 951 (ipps) exited with no errors.
    D [01/Jan/2012:18:59:35 +0100] Script header: Content-Type: application/ipp
    D [01/Jan/2012:18:59:35 +0100] Script header:
    D [01/Jan/2012:18:59:35 +0100] [CGI] Flushed attributes...
    D [01/Jan/2012:18:59:35 +0100] [cups-deviced] Found device "serial:/dev/ttyS0?baud=115200"...
    D [01/Jan/2012:18:59:35 +0100] [CGI] Flushed attributes...
    D [01/Jan/2012:18:59:35 +0100] [cups-deviced] Found device "serial:/dev/ttyS1?baud=115200"...
    D [01/Jan/2012:18:59:35 +0100] [cups-deviced] PID 952 (serial) exited with no errors.
    D [01/Jan/2012:18:59:35 +0100] PID 948 (/usr/lib/cups/daemon/cups-deviced) exited with no errors.
    D [01/Jan/2012:18:59:35 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Active clients"
    D [01/Jan/2012:18:59:35 +0100] cupsdReadClient: 16 WAITING Closing on EOF
    D [01/Jan/2012:18:59:35 +0100] cupsdCloseClient: 16
    D [01/Jan/2012:18:59:35 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Not busy"
    D [01/Jan/2012:19:00:23 +0100] Report: clients=1
    D [01/Jan/2012:19:00:23 +0100] Report: jobs=0
    D [01/Jan/2012:19:00:23 +0100] Report: jobs-active=0
    D [01/Jan/2012:19:00:23 +0100] Report: printers=0
    D [01/Jan/2012:19:00:23 +0100] Report: printers-implicit=0
    D [01/Jan/2012:19:00:23 +0100] Report: stringpool-string-count=407
    D [01/Jan/2012:19:00:23 +0100] Report: stringpool-alloc-bytes=4648
    D [01/Jan/2012:19:00:23 +0100] Report: stringpool-total-bytes=5736
    D [01/Jan/2012:19:01:15 +0100] cupsdReadClient: 13 WAITING Closing on EOF
    D [01/Jan/2012:19:01:15 +0100] cupsdCloseClient: 13
    D [01/Jan/2012:19:01:15 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Not busy"
    D [01/Jan/2012:19:19:03 +0100] Report: clients=0
    D [01/Jan/2012:19:19:03 +0100] Report: jobs=0
    D [01/Jan/2012:19:19:03 +0100] Report: jobs-active=0
    D [01/Jan/2012:19:19:03 +0100] Report: printers=0
    D [01/Jan/2012:19:19:03 +0100] Report: printers-implicit=0
    D [01/Jan/2012:19:19:03 +0100] Report: stringpool-string-count=407
    D [01/Jan/2012:19:19:03 +0100] Report: stringpool-alloc-bytes=4648
    D [01/Jan/2012:19:19:03 +0100] Report: stringpool-total-bytes=5736
    D [01/Jan/2012:19:22:10 +0100] Report: clients=0
    D [01/Jan/2012:19:22:11 +0100] Report: jobs=0
    D [01/Jan/2012:19:22:11 +0100] Report: jobs-active=0
    D [01/Jan/2012:19:22:11 +0100] Report: printers=0
    D [01/Jan/2012:19:22:11 +0100] Report: printers-implicit=0
    D [01/Jan/2012:19:22:11 +0100] Report: stringpool-string-count=407
    D [01/Jan/2012:19:22:11 +0100] Report: stringpool-alloc-bytes=4648
    D [01/Jan/2012:19:22:11 +0100] Report: stringpool-total-bytes=5736
    D [01/Jan/2012:19:24:21 +0100] Report: clients=0
    D [01/Jan/2012:19:24:21 +0100] Report: jobs=0
    D [01/Jan/2012:19:24:21 +0100] Report: jobs-active=0
    D [01/Jan/2012:19:24:21 +0100] Report: printers=0
    D [01/Jan/2012:19:24:21 +0100] Report: printers-implicit=0
    D [01/Jan/2012:19:24:21 +0100] Report: stringpool-string-count=407
    D [01/Jan/2012:19:24:21 +0100] Report: stringpool-alloc-bytes=4648
    D [01/Jan/2012:19:24:21 +0100] Report: stringpool-total-bytes=5736
    D [01/Jan/2012:19:27:26 +0100] Report: clients=0
    D [01/Jan/2012:19:27:26 +0100] Report: jobs=0
    D [01/Jan/2012:19:27:26 +0100] Report: jobs-active=0
    D [01/Jan/2012:19:27:26 +0100] Report: printers=0
    D [01/Jan/2012:19:27:26 +0100] Report: printers-implicit=0
    D [01/Jan/2012:19:27:26 +0100] Report: stringpool-string-count=407
    D [01/Jan/2012:19:27:26 +0100] Report: stringpool-alloc-bytes=4648
    D [01/Jan/2012:19:27:26 +0100] Report: stringpool-total-bytes=5736
    D [01/Jan/2012:19:37:11 +0100] Report: clients=0
    D [01/Jan/2012:19:37:11 +0100] Report: jobs=0
    D [01/Jan/2012:19:37:11 +0100] Report: jobs-active=0
    D [01/Jan/2012:19:37:11 +0100] Report: printers=0
    D [01/Jan/2012:19:37:11 +0100] Report: printers-implicit=0
    D [01/Jan/2012:19:37:11 +0100] Report: stringpool-string-count=407
    D [01/Jan/2012:19:37:11 +0100] Report: stringpool-alloc-bytes=4648
    D [01/Jan/2012:19:37:11 +0100] Report: stringpool-total-bytes=5736
    I [01/Jan/2012:19:37:41 +0100] Scheduler shutting down normally.
    D [01/Jan/2012:19:37:41 +0100] Discarding unused server-stopped event...
    I [01/Jan/2012:19:37:41 +0100] Saving job.cache...
    I [01/Jan/2012:19:38:18 +0100] Listening to [v1.::1]:631 (IPv6)
    I [01/Jan/2012:19:38:18 +0100] Listening to 127.0.0.1:631 (IPv4)
    I [01/Jan/2012:19:38:18 +0100] Listening to /var/run/cups/cups.sock (Domain)
    I [01/Jan/2012:19:38:18 +0100] Remote access is disabled.
    D [01/Jan/2012:19:38:18 +0100] Added auto ServerAlias mamapc
    I [01/Jan/2012:19:38:18 +0100] Loaded configuration file "/etc/cups/cupsd.conf"
    D [01/Jan/2012:19:38:18 +0100] Creating missing directory "/var/run/cups"
    D [01/Jan/2012:19:38:18 +0100] Repairing ownership of "/var/run/cups"
    D [01/Jan/2012:19:38:18 +0100] Repairing access permissions of "/var/run/cups"
    D [01/Jan/2012:19:38:18 +0100] Creating missing directory "/var/run/cups/certs"
    D [01/Jan/2012:19:38:18 +0100] Repairing ownership of "/var/run/cups/certs"
    D [01/Jan/2012:19:38:18 +0100] Repairing access permissions of "/var/run/cups/certs"
    I [01/Jan/2012:19:38:18 +0100] Using default TempDir of /var/spool/cups/tmp...
    I [01/Jan/2012:19:38:18 +0100] Configured for up to 100 clients.
    I [01/Jan/2012:19:38:18 +0100] Allowing up to 100 client connections per host.
    I [01/Jan/2012:19:38:18 +0100] Using policy "default" as the default.
    I [01/Jan/2012:19:38:18 +0100] Full reload is required.
    I [01/Jan/2012:19:38:19 +0100] Loaded MIME database from "/usr/share/cups/mime" and "/etc/cups": 35 types, 42 filters...
    I [01/Jan/2012:19:38:19 +0100] Loading job cache file "/var/cache/cups/job.cache"...
    I [01/Jan/2012:19:38:19 +0100] Full reload complete.
    D [01/Jan/2012:19:38:19 +0100] cupsdCleanFiles(path="/var/spool/cups/tmp", pattern="(null)")
    I [01/Jan/2012:19:38:19 +0100] Cleaning out old files in "/var/spool/cups/tmp"...
    D [01/Jan/2012:19:38:19 +0100] Removed "/var/spool/cups/tmp/0039f4f0366a5"...
    D [01/Jan/2012:19:38:19 +0100] cupsdCleanFiles(path="/var/cache/cups", pattern="*.ipp")
    I [01/Jan/2012:19:38:19 +0100] Cleaning out old files in "/var/cache/cups"...
    I [01/Jan/2012:19:38:19 +0100] Listening to [v1.::1]:631 on fd 8...
    I [01/Jan/2012:19:38:19 +0100] Listening to 127.0.0.1:631 on fd 9...
    I [01/Jan/2012:19:38:19 +0100] Listening to /var/run/cups/cups.sock:631 on fd 10...
    I [01/Jan/2012:19:38:19 +0100] Resuming new connection processing...
    D [01/Jan/2012:19:38:19 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Not busy"
    D [01/Jan/2012:19:38:19 +0100] Discarding unused server-started event...
    D [01/Jan/2012:19:38:20 +0100] Report: clients=0
    D [01/Jan/2012:19:38:20 +0100] Report: jobs=0
    D [01/Jan/2012:19:38:20 +0100] Report: jobs-active=0
    D [01/Jan/2012:19:38:20 +0100] Report: printers=0
    D [01/Jan/2012:19:38:20 +0100] Report: printers-implicit=0
    D [01/Jan/2012:19:38:20 +0100] Report: stringpool-string-count=289
    D [01/Jan/2012:19:38:20 +0100] Report: stringpool-alloc-bytes=4648
    D [01/Jan/2012:19:38:20 +0100] Report: stringpool-total-bytes=4792
    I [01/Jan/2012:20:53:48 +0100] Scheduler shutting down normally.
    D [01/Jan/2012:20:53:48 +0100] Discarding unused server-stopped event...
    I [01/Jan/2012:20:53:48 +0100] Saving job.cache...
    I [01/Jan/2012:20:54:26 +0100] Listening to [v1.::1]:631 (IPv6)
    I [01/Jan/2012:20:54:26 +0100] Listening to 127.0.0.1:631 (IPv4)
    I [01/Jan/2012:20:54:26 +0100] Listening to /var/run/cups/cups.sock (Domain)
    I [01/Jan/2012:20:54:26 +0100] Remote access is disabled.
    D [01/Jan/2012:20:54:26 +0100] Added auto ServerAlias mamapc
    I [01/Jan/2012:20:54:26 +0100] Loaded configuration file "/etc/cups/cupsd.conf"
    D [01/Jan/2012:20:54:26 +0100] Creating missing directory "/var/run/cups"
    D [01/Jan/2012:20:54:26 +0100] Repairing ownership of "/var/run/cups"
    D [01/Jan/2012:20:54:26 +0100] Repairing access permissions of "/var/run/cups"
    D [01/Jan/2012:20:54:26 +0100] Creating missing directory "/var/run/cups/certs"
    D [01/Jan/2012:20:54:26 +0100] Repairing ownership of "/var/run/cups/certs"
    D [01/Jan/2012:20:54:26 +0100] Repairing access permissions of "/var/run/cups/certs"
    I [01/Jan/2012:20:54:26 +0100] Using default TempDir of /var/spool/cups/tmp...
    I [01/Jan/2012:20:54:26 +0100] Configured for up to 100 clients.
    I [01/Jan/2012:20:54:26 +0100] Allowing up to 100 client connections per host.
    I [01/Jan/2012:20:54:26 +0100] Using policy "default" as the default.
    I [01/Jan/2012:20:54:26 +0100] Full reload is required.
    I [01/Jan/2012:20:54:27 +0100] Loaded MIME database from "/usr/share/cups/mime" and "/etc/cups": 35 types, 42 filters...
    I [01/Jan/2012:20:54:27 +0100] Loading job cache file "/var/cache/cups/job.cache"...
    I [01/Jan/2012:20:54:27 +0100] Full reload complete.
    D [01/Jan/2012:20:54:27 +0100] cupsdCleanFiles(path="/var/spool/cups/tmp", pattern="(null)")
    I [01/Jan/2012:20:54:27 +0100] Cleaning out old files in "/var/spool/cups/tmp"...
    D [01/Jan/2012:20:54:27 +0100] cupsdCleanFiles(path="/var/cache/cups", pattern="*.ipp")
    I [01/Jan/2012:20:54:27 +0100] Cleaning out old files in "/var/cache/cups"...
    I [01/Jan/2012:20:54:27 +0100] Listening to [v1.::1]:631 on fd 8...
    I [01/Jan/2012:20:54:27 +0100] Listening to 127.0.0.1:631 on fd 9...
    I [01/Jan/2012:20:54:27 +0100] Listening to /var/run/cups/cups.sock:631 on fd 10...
    I [01/Jan/2012:20:54:27 +0100] Resuming new connection processing...
    D [01/Jan/2012:20:54:27 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Not busy"
    D [01/Jan/2012:20:54:27 +0100] Discarding unused server-started event...
    D [01/Jan/2012:20:54:28 +0100] Report: clients=0
    D [01/Jan/2012:20:54:28 +0100] Report: jobs=0
    D [01/Jan/2012:20:54:28 +0100] Report: jobs-active=0
    D [01/Jan/2012:20:54:28 +0100] Report: printers=0
    D [01/Jan/2012:20:54:28 +0100] Report: printers-implicit=0
    D [01/Jan/2012:20:54:28 +0100] Report: stringpool-string-count=289
    D [01/Jan/2012:20:54:28 +0100] Report: stringpool-alloc-bytes=4648
    D [01/Jan/2012:20:54:28 +0100] Report: stringpool-total-bytes=4792
    I [02/Jan/2012:05:34:23 +0100] Scheduler shutting down normally.
    D [02/Jan/2012:05:34:24 +0100] Discarding unused server-stopped event...
    I [02/Jan/2012:05:34:24 +0100] Saving job.cache...
    I [02/Jan/2012:05:35:05 +0100] Listening to [v1.::1]:631 (IPv6)
    I [02/Jan/2012:05:35:05 +0100] Listening to 127.0.0.1:631 (IPv4)
    I [02/Jan/2012:05:35:05 +0100] Listening to /var/run/cups/cups.sock (Domain)
    I [02/Jan/2012:05:35:05 +0100] Remote access is disabled.
    D [02/Jan/2012:05:35:05 +0100] Added auto ServerAlias mamapc
    I [02/Jan/2012:05:35:05 +0100] Loaded configuration file "/etc/cups/cupsd.conf"
    D [02/Jan/2012:05:35:05 +0100] Creating missing directory "/var/run/cups"
    D [02/Jan/2012:05:35:05 +0100] Repairing ownership of "/var/run/cups"
    D [02/Jan/2012:05:35:05 +0100] Repairing access permissions of "/var/run/cups"
    D [02/Jan/2012:05:35:05 +0100] Creating missing directory "/var/run/cups/certs"
    D [02/Jan/2012:05:35:05 +0100] Repairing ownership of "/var/run/cups/certs"
    D [02/Jan/2012:05:35:05 +0100] Repairing access permissions of "/var/run/cups/certs"
    I [02/Jan/2012:05:35:05 +0100] Using default TempDir of /var/spool/cups/tmp...
    I [02/Jan/2012:05:35:05 +0100] Configured for up to 100 clients.
    I [02/Jan/2012:05:35:05 +0100] Allowing up to 100 client connections per host.
    I [02/Jan/2012:05:35:05 +0100] Using policy "default" as the default.
    I [02/Jan/2012:05:35:05 +0100] Full reload is required.
    I [02/Jan/2012:05:35:06 +0100] Loaded MIME database from "/usr/share/cups/mime" and "/etc/cups": 35 types, 42 filters...
    I [02/Jan/2012:05:35:06 +0100] Loading job cache file "/var/cache/cups/job.cache"...
    I [02/Jan/2012:05:35:06 +0100] Full reload complete.
    D [02/Jan/2012:05:35:06 +0100] cupsdCleanFiles(path="/var/spool/cups/tmp", pattern="(null)")
    I [02/Jan/2012:05:35:06 +0100] Cleaning out old files in "/var/spool/cups/tmp"...
    D [02/Jan/2012:05:35:06 +0100] cupsdCleanFiles(path="/var/cache/cups", pattern="*.ipp")
    I [02/Jan/2012:05:35:06 +0100] Cleaning out old files in "/var/cache/cups"...
    I [02/Jan/2012:05:35:06 +0100] Listening to [v1.::1]:631 on fd 8...
    I [02/Jan/2012:05:35:06 +0100] Listening to 127.0.0.1:631 on fd 9...
    I [02/Jan/2012:05:35:06 +0100] Listening to /var/run/cups/cups.sock:631 on fd 10...
    I [02/Jan/2012:05:35:06 +0100] Resuming new connection processing...
    D [02/Jan/2012:05:35:06 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Not busy"
    D [02/Jan/2012:05:35:06 +0100] Discarding unused server-started event...
    D [02/Jan/2012:05:35:07 +0100] Report: clients=0
    D [02/Jan/2012:05:35:07 +0100] Report: jobs=0
    D [02/Jan/2012:05:35:07 +0100] Report: jobs-active=0
    D [02/Jan/2012:05:35:07 +0100] Report: printers=0
    D [02/Jan/2012:05:35:07 +0100] Report: printers-implicit=0
    D [02/Jan/2012:05:35:07 +0100] Report: stringpool-string-count=289
    D [02/Jan/2012:05:35:07 +0100] Report: stringpool-alloc-bytes=4648
    D [02/Jan/2012:05:35:07 +0100] Report: stringpool-total-bytes=4792
    I [02/Jan/2012:05:56:24 +0100] Scheduler shutting down normally.
    D [02/Jan/2012:05:56:24 +0100] Discarding unused server-stopped event...
    I [02/Jan/2012:05:56:24 +0100] Saving job.cache...
    I [02/Jan/2012:17:22:51 +0100] Listening to [v1.::1]:631 (IPv6)
    I [02/Jan/2012:17:22:51 +0100] Listening to 127.0.0.1:631 (IPv4)
    I [02/Jan/2012:17:22:51 +0100] Listening to /var/run/cups/cups.sock (Domain)
    I [02/Jan/2012:17:22:51 +0100] Remote access is disabled.
    D [02/Jan/2012:17:22:51 +0100] Added auto ServerAlias mamapc
    I [02/Jan/2012:17:22:51 +0100] Loaded configuration file "/etc/cups/cupsd.conf"
    D [02/Jan/2012:17:22:51 +0100] Creating missing directory "/var/run/cups"
    D [02/Jan/2012:17:22:51 +0100] Repairing ownership of "/var/run/cups"
    D [02/Jan/2012:17:22:51 +0100] Repairing access permissions of "/var/run/cups"
    D [02/Jan/2012:17:22:51 +0100] Creating missing directory "/var/run/cups/certs"
    D [02/Jan/2012:17:22:51 +0100] Repairing ownership of "/var/run/cups/certs"
    D [02/Jan/2012:17:22:51 +0100] Repairing access permissions of "/var/run/cups/certs"
    I [02/Jan/2012:17:22:51 +0100] Using default TempDir of /var/spool/cups/tmp...
    I [02/Jan/2012:17:22:51 +0100] Configured for up to 100 clients.
    I [02/Jan/2012:17:22:51 +0100] Allowing up to 100 client connections per host.
    I [02/Jan/2012:17:22:51 +0100] Using policy "default" as the default.
    I [02/Jan/2012:17:22:51 +0100] Full reload is required.
    I [02/Jan/2012:17:22:52 +0100] Loaded MIME database from "/usr/share/cups/mime" and "/etc/cups": 35 types, 42 filters...
    I [02/Jan/2012:17:22:52 +0100] Loading job cache file "/var/cache/cups/job.cache"...
    I [02/Jan/2012:17:22:52 +0100] Full reload complete.
    D [02/Jan/2012:17:22:52 +0100] cupsdCleanFiles(path="/var/spool/cups/tmp", pattern="(null)")
    I [02/Jan/2012:17:22:52 +0100] Cleaning out old files in "/var/spool/cups/tmp"...
    D [02/Jan/2012:17:22:52 +0100] cupsdCleanFiles(path="/var/cache/cups", pattern="*.ipp")
    I [02/Jan/2012:17:22:52 +0100] Cleaning out old files in "/var/cache/cups"...
    I [02/Jan/2012:17:22:52 +0100] Listening to [v1.::1]:631 on fd 8...
    I [02/Jan/2012:17:22:52 +0100] Listening to 127.0.0.1:631 on fd 9...
    I [02/Jan/2012:17:22:52 +0100] Listening to /var/run/cups/cups.sock:631 on fd 10...
    I [02/Jan/2012:17:22:52 +0100] Resuming new connection processing...
    D [02/Jan/2012:17:22:52 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Not busy"
    D [02/Jan/2012:17:22:52 +0100] Discarding unused server-started event...
    D [02/Jan/2012:17:22:53 +0100] Report: clients=0
    D [02/Jan/2012:17:22:53 +0100] Report: jobs=0
    D [02/Jan/2012:17:22:53 +0100] Report: jobs-active=0
    D [02/Jan/2012:17:22:53 +0100] Report: printers=0
    D [02/Jan/2012:17:22:53 +0100] Report: printers-implicit=0
    D [02/Jan/2012:17:22:53 +0100] Report: stringpool-string-count=289
    D [02/Jan/2012:17:22:53 +0100] Report: stringpool-alloc-bytes=4648
    D [02/Jan/2012:17:22:53 +0100] Report: stringpool-total-bytes=4792
    I [02/Jan/2012:18:15:27 +0100] Scheduler shutting down normally.
    D [02/Jan/2012:18:15:27 +0100] Discarding unused server-stopped event...
    I [02/Jan/2012:18:15:27 +0100] Saving job.cache...
    E [02/Jan/2012:18:40:40 +0100] cupsdAuthorize: pam_authenticate() returned 7 (Authentication failure)!
    E [02/Jan/2012:18:41:03 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:18:41:03 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:18:41:03 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:18:41:03 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:18:41:04 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:18:44:36 +0100] Returning HTTP Forbidden for CUPS-Delete-Printer (ipp://localhost/printers/Epson-Stylus-SX218) from localhost
    E [02/Jan/2012:18:46:25 +0100] Returning IPP client-error-document-format-not-supported for Print-Job (ipp://localhost:631/printers/Epson_Stylus_SX218) from localhost
    E [02/Jan/2012:18:54:25 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:18:54:25 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:18:54:25 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:18:54:26 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:18:56:58 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:18:58:04 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:18:58:04 +0100] Bad request line "%16%03%01" from localhost!
    W [02/Jan/2012:19:01:48 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Brother/BR5070DN_GPL.ppd.gz!
    E [02/Jan/2012:19:01:49 +0100] [cups-driverd] Bad driver information file "/usr/share/cups/model/foomatic-db-ppds/Kyocera/ReadMe.htm"!
    W [02/Jan/2012:19:01:53 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/KONICA_MINOLTA/KOC451JX.ppd.gz!
    W [02/Jan/2012:19:01:53 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Xerox/xrx6120pu.ppd!
    W [02/Jan/2012:19:01:54 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp950c.ppd.gz!
    W [02/Jan/2012:19:01:54 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp960s.ppd.gz!
    W [02/Jan/2012:19:01:54 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp9100.ppd.gz!
    W [02/Jan/2012:19:01:54 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp880c.ppd.gz!
    W [02/Jan/2012:19:01:54 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp980c.ppd.gz!
    W [02/Jan/2012:19:01:54 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp850c.ppd.gz!
    W [02/Jan/2012:19:01:54 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp920c.ppd.gz!
    W [02/Jan/2012:19:01:54 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp830c.ppd.gz!
    E [02/Jan/2012:19:02:06 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:19:02:11 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:19:02:11 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:19:02:11 +0100] Bad request line "%16%03%01" from localhost!
    W [02/Jan/2012:19:02:57 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Brother/BR5070DN_GPL.ppd.gz!
    E [02/Jan/2012:19:02:57 +0100] [cups-driverd] Bad driver information file "/usr/share/cups/model/foomatic-db-ppds/Kyocera/ReadMe.htm"!
    W [02/Jan/2012:19:02:57 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/KONICA_MINOLTA/KOC451JX.ppd.gz!
    W [02/Jan/2012:19:02:57 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Xerox/xrx6120pu.ppd!
    W [02/Jan/2012:19:02:57 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp950c.ppd.gz!
    W [02/Jan/2012:19:02:57 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp960s.ppd.gz!
    W [02/Jan/2012:19:02:57 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp9100.ppd.gz!
    W [02/Jan/2012:19:02:57 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp880c.ppd.gz!
    W [02/Jan/2012:19:02:57 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp980c.ppd.gz!
    W [02/Jan/2012:19:02:57 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp850c.ppd.gz!
    W [02/Jan/2012:19:02:57 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp920c.ppd.gz!
    W [02/Jan/2012:19:02:57 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp830c.ppd.gz!
    W [02/Jan/2012:19:03:42 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Brother/BR5070DN_GPL.ppd.gz!
    E [02/Jan/2012:19:03:42 +0100] [cups-driverd] Bad driver information file "/usr/share/cups/model/foomatic-db-ppds/Kyocera/ReadMe.htm"!
    W [02/Jan/2012:19:03:42 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/KONICA_MINOLTA/KOC451JX.ppd.gz!
    W [02/Jan/2012:19:03:43 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Xerox/xrx6120pu.ppd!
    W [02/Jan/2012:19:03:43 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp950c.ppd.gz!
    W [02/Jan/2012:19:03:43 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp960s.ppd.gz!
    W [02/Jan/2012:19:03:43 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp9100.ppd.gz!
    W [02/Jan/2012:19:03:43 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp880c.ppd.gz!
    W [02/Jan/2012:19:03:43 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp980c.ppd.gz!
    W [02/Jan/2012:19:03:43 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp850c.ppd.gz!
    W [02/Jan/2012:19:03:43 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp920c.ppd.gz!
    W [02/Jan/2012:19:03:43 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp830c.ppd.gz!
    W [02/Jan/2012:19:04:46 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Brother/BR5070DN_GPL.ppd.gz!
    E [02/Jan/2012:19:04:46 +0100] [cups-driverd] Bad driver information file "/usr/share/cups/model/foomatic-db-ppds/Kyocera/ReadMe.htm"!
    W [02/Jan/2012:19:04:46 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/KONICA_MINOLTA/KOC451JX.ppd.gz!
    W [02/Jan/2012:19:04:46 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Xerox/xrx6120pu.ppd!
    W [02/Jan/2012:19:04:46 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp950c.ppd.gz!
    W [02/Jan/2012:19:04:46 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp960s.ppd.gz!
    W [02/Jan/2012:19:04:46 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp9100.ppd.gz!
    W [02/Jan/2012:19:04:46 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp880c.ppd.gz!
    W [02/Jan/2012:19:04:46 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp980c.ppd.gz!
    W [02/Jan/2012:19:04:46 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp850c.ppd.gz!
    W [02/Jan/2012:19:04:46 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp920c.ppd.gz!
    W [02/Jan/2012:19:04:46 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp830c.ppd.gz!
    E [02/Jan/2012:19:05:17 +0100] Bad request line "%16%03%01" from localhost!
    W [02/Jan/2012:19:06:12 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Brother/BR5070DN_GPL.ppd.gz!
    E [02/Jan/2012:19:06:12 +0100] [cups-driverd] Bad driver information file "/usr/share/cups/model/foomatic-db-ppds/Kyocera/ReadMe.htm"!
    W [02/Jan/2012:19:06:12 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/KONICA_MINOLTA/KOC451JX.ppd.gz!
    W [02/Jan/2012:19:06:12 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Xerox/xrx6120pu.ppd!
    W [02/Jan/2012:19:06:12 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp950c.ppd.gz!
    W [02/Jan/2012:19:06:12 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp960s.ppd.gz!
    W [02/Jan/2012:19:06:12 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp9100.ppd.gz!
    W [02/Jan/2012:19:06:12 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp880c.ppd.gz!
    W [02/Jan/2012:19:06:12 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp980c.ppd.gz!
    W [02/Jan/2012:19:06:12 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp850c.ppd.gz!
    W [02/Jan/2012:19:06:12 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp920c.ppd.gz!
    W [02/Jan/2012:19:06:12 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp830c.ppd.gz!
    E [02/Jan/2012:19:06:57 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:19:06:58 +0100] Bad request line "%16%03%01" from localhost!
    E [02/Jan/2012:19:15:57 +0100] Avahi client failed, closing client to allow a clean restart
    W [02/Jan/2012:19:18:48 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Brother/BR5070DN_GPL.ppd.gz!
    E [02/Jan/2012:19:18:48 +0100] [cups-driverd] Bad driver information file "/usr/share/cups/model/foomatic-db-ppds/Kyocera/ReadMe.htm"!
    W [02/Jan/2012:19:18:49 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/KONICA_MINOLTA/KOC451JX.ppd.gz!
    W [02/Jan/2012:19:18:49 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Xerox/xrx6120pu.ppd!
    W [02/Jan/2012:19:18:49 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp950c.ppd.gz!
    W [02/Jan/2012:19:18:49 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp960s.ppd.gz!
    W [02/Jan/2012:19:18:49 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp9100.ppd.gz!
    W [02/Jan/2012:19:18:49 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp880c.ppd.gz!
    W [02/Jan/2012:19:18:49 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp980c.ppd.gz!
    W [02/Jan/2012:19:18:49 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp850c.ppd.gz!
    W [02/Jan/2012:19:18:49 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp920c.ppd.gz!
    W [02/Jan/2012:19:18:49 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp830c.ppd.gz!
    W [02/Jan/2012:19:19:55 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Brother/BR5070DN_GPL.ppd.gz!
    E [02/Jan/2012:19:19:55 +0100] [cups-driverd] Bad driver information file "/usr/share/cups/model/foomatic-db-ppds/Kyocera/ReadMe.htm"!
    W [02/Jan/2012:19:19:55 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/KONICA_MINOLTA/KOC451JX.ppd.gz!
    W [02/Jan/2012:19:19:55 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Xerox/xrx6120pu.ppd!
    W [02/Jan/2012:19:19:55 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp950c.ppd.gz!
    W [02/Jan/2012:19:19:55 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp960s.ppd.gz!
    W [02/Jan/2012:19:19:55 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp9100.ppd.gz!
    W [02/Jan/2012:19:19:55 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp880c.ppd.gz!
    W [02/Jan/2012:19:19:55 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp980c.ppd.gz!
    W [02/Jan/2012:19:19:55 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp850c.ppd.gz!
    W [02/Jan/2012:19:19:55 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp920c.ppd.gz!
    W [02/Jan/2012:19:19:55 +0100] [CGI] Missing NickName and ModelName in /usr/share/cups/model/foomatic-db-ppds/Epson/eplp830c.ppd.gz!
    E [02/Jan/2012:19:20:30 +0100] Returning IPP client-error-document-format-not-supported for Print-Job (ipp://localhost:631/printers/Epson_Stylus_SX218) from localhost
    E [02/Jan/2012:19:24:03 +0100] Returning IPP client-error-document-format-not-supported for Send-Document (ipp://localhost:631/printers/Epson_Stylus_SX218) from localhost
    Please let me know if you should need other outputs, logfiles, etc. I appreciate any idea that could help me to get this damn thing to finally print something.
    Thank you very much!

    Hi Radhakrishnan,
    ORARRP doesn't actually do any printing itself. Via COM/Active-X, it calls the appropriate program that corresponds to the type of output, and then this program does the actual printing. For PDF, it calls Acrobat Reader to print the document. Acrobat Reader displays the printer dialog to let you choose which printer to use, and then when you click OK, Acrobat Reader prints the document and sends it to the printer.
    I expect that you'll find that when you use Acrobat Reader yourself on this machine it has exactly the same problems with this particular printer configuration. If so, you'll need to contact Adobe for further assistance.
    regards,
    Stewart

  • If BP is created with sales area, it doesn't reach R/3

    Hi,
    In our CRM 5.0 system, if we create a BP only with general information (name, address etc.), it reaches R/3 fine. But if I create a BP with general information & sales area info at the same time & then save it, problems...
    An entry is created in SMW01 with queue name SEE_TABLE_SMW3_BDOCQ. This entry has two rows of data. One INSERT entry for creating BP general info, and one UPDATE entry for sales area data. I can see the update entry as first row.
    I think what is happening is, when this bdoc is processed,first UPDATE entry is processed. Unfortunately since the customer is not created in R/3 by that time, bdoc gets an error "Business partner 0001234567 does not exist as customer, change not possible".
    And bdoc is not processed, BP doesn't go to R/3.
    Any idea how can this be corrected?
    Regards,
    Kaushal

    Did you check the mandatory fields on R/3 with respect to sales area data? As a quick test make all R/3 sales area fields for that account group as optional and try to upload
    Thanks,
    Paul Kondaveeti

  • EAP-TLS w/freeradius failing. Phone doesn't present Client certificate.

    Hello,
    I'm currently on the first phases of deploying a Cisco IPT 802.1X based proof of concept using freeradius, Cisco switching infrastructure (4500's).
    The requirements are to use EAP-TLS authentication for the phones, and freeradius as Radius Server.
    While trying out the concept in lab using an ISE Radius server, the configuration was straightforward and I did manage to authenticate IP phones using their MIC certificates to the ISE.
    Going to actual testing with freeradius, EAP-TLS authentication keeps looping, the phones keep sending RADIUS Access requests, but not being rejected or allowed.
    What was done:
    - set up freeradius with EAP-TLS configuration, trusting both cisco CA root  and manufacturing root.
    - freeradius has a server certificate generated by Thawte SSL CA certificate, where EKU fields are properly set for server authentication (and also client authentication)
    - Phone had 802.1X enabled (and it does support EAP-TLS, as verified with the ISE test)
    What I can see while running a wireshark trace on freeradius is:
         - both parties negotiate properly that they will engage in EAP-TLS.
         - they  start the TLS handshake
         - Server sends its certificate on a Server Hello to the phone (which is meant to not validate it)
         - Client (phone) never sends its certificate (MIC) to the server.
         - Client restarts EAP-TLS negotiation and goes on and on.
    Unfortunately the debugs/Captures on freeradius do not allow to verify if the server certificate exchange is finished, or if it is failing somewhere (like a fragment being dropped).
    Does anyone have an idea on what might be happening? I find it very strange that the phone, on a freeradius deployment, would behave differently than one on a ISE deployment, especially because it doesn't validate the server certificate, so it shouldn't matter what is presented to the phone.
    Phone firmware is 9.2(3) and callmanager 8.6
    Thanks
    Gustavo Novais

    Found the problem. Apparently ADU can't access certificate store if client is not part of the AD domain

  • TS1398 I'm on a public network that doesn't allow client-to-client communication.

    I'm trying to make my Mom's iPad work with the Epson Stylus NX430 ("Small in One") printer I just bought from Apple, with the iPad 2. She's in a retirement community with free WiFi, but the service provider prevents client-to-client communication. So, I can get the printer registered to have internet access, but the iPad doesn't see it.
    If I connect a router to the public service, and get the iPad to connect to the router, that may work. Or, I can get a router with a USB connection for the printer, one that acts as a print server.
    Does anyone have experience with these configurations? Will an Apple router do this, connecting to the public WiFi,
    If I do this, it creates another problem: my Mom will have to select the local network when in her room and wanting to print. Because the public router names are all the same, I don't think I can get the iPad to forget the local public access point (in favor of her router), and still have it remember the other public ones, though I'll have to try it. My Mom isn't going to take to this technical issue. She's doing fine with the iPad for mail, solitare, etc., but at 87 the technical stuff will cause her trouble.
    Dick

    Some printers support ad hoc printing. That is the printer can be configured to communicate with an iPad without the need for a router.  Perhaps such a printer would be of help.
    Some of the Internet comments on the Epson Stylus NX430 indicate it doesn't support ad hoc printing.   You could check in the user setup manual.
    How do you switch between networks on the iPad?  I'd assume a printer  on a router would be the same.  Perhaps you could configure your router to be a relay for http traffic and route the print traffic to your iPad. That's what a router is far anyway.  Whether you configure a consumer grade router like this is another story.
    Can you return the printer & get one that supports ad hoc printing? Might be safer in the long run.  Printing is one of the big hassles for my parents.  It's usually the ink has run out on the printer.  You may still have to switch networks to print.
    Some printers support ad hoc printing. That is the printer can be configured to communicate with an iPad without the need for a router.  Perhaps such a printer would be of help.  Some of the comments on the Epson Stylus NX430 indicate it doesn't support ad hoc printing.  How do you switch between networks on the iPad?  I'd assume a printer  on a router would be the same.  Can you return the printer & get one that supports ad hoc printing? Might be safer in the long run.  Printing is one of the big hassles for my parents.  It's usually ink as run out on the printer.

  • Sun Directory Server 6.0 doesn't use client certificate

    Hi All,
    From a program, if I try to connect twice to a directory server 6.0 over SSL, first with simple anonymous bind and 2nd with client certificate, both the time it goes through, but 2nd time it doesn't use the client certificate. From the access log we get to know that it's not using the client certificate as it is expected for the 2nd attempt.
    Here is the sample code that I have -
    int main()
        int ret;
        char host[] = "xxx";
        int port = 1234;
        char path[] ="/home/xxx/certs";
        int version = LDAP_VERSION3;
        ret = ldapssl_client_init(path, NULL);
        if(ret) printf("ldapssl_client_init failed"), exit(1);
        LDAP *handle = ldapssl_init(host, port, 1);
        if(!handle) printf("ldapssl_init failed"), exit(1);
        ret = ldap_set_option( handle, LDAP_OPT_PROTOCOL_VERSION, &version);
        if(ret) printf("ldap_set_option failed"), exit(1);
        ret = ldap_simple_bind_s(handle, NULL, NULL);
        if(ret) printf("ldap_simple_bind_s failed"), exit(1);
        ret = ldap_unbind_s(handle);
        if(ret) printf("ldap_unbind_s failed"), exit(1);
        printf("1. Successfully connected and disconnected\n");
        ret = ldapssl_clientauth_init(path, NULL, 1, path, NULL);
        if(ret) printf("ldapssl_clientauth_init failed"), exit(1);
        LDAP *ldaph = NULL;
        ldaph = ldapssl_init(host, port, 1);
        if(!ldaph) printf("ldapssl_init failed"), exit(1);
        ret = ldap_set_option( ldaph, LDAP_OPT_PROTOCOL_VERSION, &version);
        if(ret) printf("ldap_set_option failed"), exit(1);
        ret = ldapssl_enable_clientauth(ldaph, (char*) "", (char*) "password", (char*) "nickname");
        if(ret) printf("ldapssl_enable_clientauth failed"), exit(1);
        struct berval* sc = NULL;
        ret = ldap_sasl_bind_s(ldaph, NULL, LDAP_SASL_EXTERNAL, NULL, NULL, NULL, &sc);
        if(ret) printf("ldap_sasl_bind_s failed"), exit(1);
        ret = ldap_unbind_s(ldaph);
        if(ret) printf("ldap_unbind_s failed"), exit(1);
        printf("2. Successfully connected and disconnected\n");
        return 0;
    }Any help/pointers in this regard will be highly appreciated.
    Thanks in advance.
    Regards,
    // Rahul

    The program works absolutely fine. Both the times it binds to the directory server. But the 2nd time it doesn't use the client certificate as we expect.
    Here is the output -
    1. Successfully connected and disconnected
    2. Successfully connected and disconnected
    and here is the access log contents -
    [13/Jul/2010:17:31:45 +0530] conn=1074 op=-1 msgId=-1 - fd=39 slot=39 LDAPS connection from 1.2.3.4:1234 to 1.2.3.4
    [13/Jul/2010:17:31:45 +0530] conn=1074 op=-1 msgId=-1 - SSL 128-bit RC4
    [13/Jul/2010:17:31:45 +0530] conn=1074 op=0 msgId=1 - BIND dn="" method=128 version=3
    [13/Jul/2010:17:31:45 +0530] conn=1074 op=0 msgId=1 - RESULT err=0 tag=97 nentries=0 etime=0 dn=""
    [13/Jul/2010:17:31:45 +0530] conn=1074 op=1 msgId=2 - UNBIND
    [13/Jul/2010:17:31:45 +0530] conn=1074 op=1 msgId=-1 - closing from 1.2.3.4:1234 - U1 - Connection closed by unbind client -
    [13/Jul/2010:17:31:45 +0530] conn=1075 op=-1 msgId=-1 - fd=40 slot=40 LDAPS connection from 1.2.3.4:1234 to 1.2.3.4
    [13/Jul/2010:17:31:45 +0530] conn=1074 op=-1 msgId=-1 - closed.
    [13/Jul/2010:17:31:46 +0530] conn=1075 op=-1 msgId=-1 - SSL 128-bit RC4
    [13/Jul/2010:17:31:46 +0530] conn=1075 op=0 msgId=1 - BIND dn="" method=sasl version=3 mech=EXTERNAL
    [13/Jul/2010:17:31:46 +0530] conn=1075 op=0 msgId=1 - RESULT err=0 tag=97 nentries=0 etime=0 dn=""
    [13/Jul/2010:17:31:46 +0530] conn=1075 op=1 msgId=2 - UNBIND
    [13/Jul/2010:17:31:46 +0530] conn=1075 op=1 msgId=-1 - closing from 1.2.3.4:1234 - U1 - Connection closed by unbind client -
    [13/Jul/2010:17:31:46 +0530] conn=1075 op=-1 msgId=-1 - closed.
    Thanks and Regards,
    // Rahul

  • J2ee RI doesn't understand client identity

    Hi all,
    I wrote a client application that try to use
    an EJB session bean deployed in J2EE RI App.Server.
    I specified the following data to connect to the server:
    Properties p = new Properties();
    p.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi. ......");
    p.put(Context.PROVIDER_URL, "iiop://localhost:1050");
    p.put(Context.SECURITY_PRINCIPAL, <my user>);
    p.put(Context.SECURITY_CREDENTIALS, <ma password>);
    Previously, I created <my user> (with password <my password>) inside J2EE RI.
    When I run (with runclient) my client application the login fails.
    Server side J2EE RI doesn't recognize my user
    (in a debug print inside Session Bean's ejbCreate()method,
    I see that Client Identity is "guest").
    Anybody can suggest me where I'm wrong ?
    Many Thanks in advance
    Moreno

    I think, that the object you put as Context.SECURITY_PRINCIPAL must implement the interface java.security.Principal.
    Why don't you use a callback-handler in your client. This is the specified way for a client to authentify.
    application-client.xml:
    =======================
    <application-client>
    <callback-handler>test.appclient.SimpleCallbackHandler</callback-handler>
    </application-client>
    Example for a simple Callback-Handler
    (in your client, not on the server!):
    ======================================
    package test.appclient;
    import java.io.IOException;
    import javax.security.auth.callback.Callback;
    import javax.security.auth.callback.NameCallback;
    import javax.security.auth.callback.PasswordCallback;
    import javax.security.auth.callback.CallbackHandler;
    import javax.security.auth.callback.UnsupportedCallbackException;
    public class SimpleCallbackHandler implements CallbackHandler
    public void handle(Callback[] callbacks) throws IOException, UnsupportedCallbackException
    for(int i=0; i<callbacks.length; i++)
    if( callbacks[i] instanceof NameCallback )
    NameCallback nc = (NameCallback)callbacks;
    nc.setName( "yourName" );
    else if( callbacks[i] instanceof PasswordCallback )
    PasswordCallback pc = (PasswordCallback)callbacks[i];
    pc.setPassword( "yourPassword".toCharArray() );
    else
    throw new UnsupportedCallbackException(callbacks[i]);

  • My iMac doesn't load past the start up white screen and doesn't reach the login screen.

    I'm having issues trying to load my iMac up after i had to to shut it down the other day. when i start it up it makes the chirme
    and reaches the white screen with the loading symbol but doesn't move on from there! Doesn't anyone know how to fix this to get to the login screen?

    Reinstall Lion.
    Reinstalling Lion
    Boot to the Recovery HD: Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alterhatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the main menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the main menu.
    Reinstall Lion: Select Reinstall Lion and click on the Continue button.
    Note: You can also re-download the Lion installer by opening the App Store application. Hold down the OPTION key and click on the Purchases icon in the toolbar. You should now see an active Install button to the right of your Lion purchase entry. There are situations in which this will not work. For example, if you are already booted into the Lion you originally purchased with your Apple ID or if an instance of the Lion installer is located anywhere on your computer.

  • How can I insert a Wordpress page into my Muse site?  I need a client to be able to edit links on specific pages.  Inbrowser doesn't allow client to ad links.

    I need to be able to give my client access to a few pages with links.  These links will change often and they want to make the changes.  What is the best solution if you can insert a Wordpress page into Muse?

    Hi Vickichic,
    It is not possible to insert a wordpress page in Muse. You can refer to this post for a similar discussion : Re: How can i integrate Wordpress in my Muse website?
    Regards,
    Aish

Maybe you are looking for