String.replaceAll doesn't work

Hi,
I hope this is the correct forum to post about this problem. It's not a compiler error, it rather seems to be an interpreter or a logical error.
Please consider this test program I wrote to clarify the problem.
public class Test {
    public static void main( String args[]) {
     String someString = "Hello $place!";
     System.out.println( someString.replaceAll( "place", "world"));
     System.out.println( someString.replaceAll( "$place", "world"));
}The method String.replaceAll should replace all occurences of regex with replacement.
Also see http://java.sun.com/j2se/1.4.2/docs/api/java/lang/String.html#replaceAll(java.lang.String, java.lang.String)
So, one should think my test program would have the following output:
Hello $world!
Hello world!Alas, it isn't so. The program outputs the following using SDK 1.2.4:
Hello $world!
Hello $place!The String.replaceAll method doesn't seem to replace occurences if they are preceeded of "$". Or am I just missing something?

The String.replaceAll method doesn't seem to replace
occurences if they are preceeded of "$". Or am I just
missing something?You're right. The method replaceAll is expecting a [url http://java.sun.com/j2se/1.4.2/docs/api/java/util/regex/Pattern.html]regular expression. See there how to escape special control chars like $ which means 'end of line'.

Similar Messages

  • String.replaceAll() don't works!!!

    Hi all,
    I want to use replaceAll(string,string), but it don't works.
    Here is an example:
    String str = "This is the 'repl' I want replace and a second 'repl'";
    String regex = "repl";
    String replace = "new string";
    str.replaceAll(regex,replace);
    //Result should be: str => "This is the 'new string' I want replace and a second 'new string'"
    The Result is the same string I had before, absolutely no changes!!!
    Can someone tell me whats wrong????
    Thanx for your help.
    cya JayR

    str.replaceAll(regex,replace);
    //Result should be: str => "This is the 'new string' I want replace and a second 'new string'"As the others said, the value of str itself will not change. That's not Strings work. They're immutable (meaning they will never change value once instantiated). If you want str to have the new value, you'll need to do:str = str.replaceAll(regex,replace); And by the way... "This is the 'repl' I want replace and a second 'repl'" will not end up being "This is the 'new string' I want replace and a second 'new string'", actually, it will be "This is the 'new string' I want new stringace and a second 'new string'". The "repl" in the word "replace" will be replaced by "new string" as well.

  • Why string comparison doesn't work here?

    Public Sub getAbstract()
        For i = 1 To ActiveDocument.Paragraphs.count
            Set para = ActiveDocument.Paragraphs(i)
            If para.Range.Style = "Heading 1" Then
            abst = para.Range.Text
            MsgBox abst ' Here the code shows "ABSTRACT" on the textbox
            If Trim(abst) = "ABSTRACT" Then
            MsgBox 1
            End If
            Exit For
            End If
        Next
    End Sub
    When I run this code it doesn't shows "1" on the textbox. I don't know why
    Can someone help me with that?

    para.Range.Text includes the paragraph mark at the end of the paragraph. After the line
    abst = para.Range.Text
    insert
    abst = Left(abst, Len(abst) - 1)
    to chop off the paragraph mark.
    Regards, Hans Vogelaar (http://www.eileenslounge.com)

  • Matcher vs. String.replaceAll

    I have been experiencing a problem attempting to use an expression such as:
    s = s.replaceAll("PATTERN","REPLACEMENT");
    to replace certain regular expressions in a document. When using the Matcher to replace Strings as follows there is no problem, but using the same pattern with String.replaceAll doesn't seem to perform the replacement.
    Pattern pattern = Pattern.compile("PATTERN",Pattern.DOTALL);
    Matcher matcher = pattern.matcher(s);
    s = matcher.replaceAll("REPLACEMENT");
    The only thing I can think of is that the Pattern.DOTALL options allows the match to take succeed, where it wouldn't otherwise. Therefore I was wondering if there an equivalent for the String.replaceAll method perhaps? Any ideas?
    Thanks very much,
    Ross Butler

    I'm having trouble believing that PATTERN and REPLACEMENT are the real string you're using, but it's probably not important, since it sounds like you probably diagnosed the problem yourself.
    According to the Javadocs, replaceAll gives the same result as Pattern.compile(regex).matcher(str).replaceAll(repl), but obviously that wouldn't necessarily be true if you add extra parameters somewhere in there, so I would say that replaceAll is more of a convenience method that you use when you don't need any extra parameters.
    However, if you need to use DOTALL or something else similar, you'll need the longer way using Matcher.
    That shouldn't stop you from writing your own convenience method, though. :)

  • Why passing string from applet to jsp doesn't work?

    Hi,all:
    I have a application requires applet to get client side info, then pass this "info"--string to the JSP.
    Applet code:
    try{
         URL url = new URL(getCodeBase(),"test.jsp?
    java.version=1.2.2&java.vendor=Sun);
         URLConnection conn = url.openConnection();
         conn.setDoOutput(true);
         conn.setUseCaches(false);
         conn.setRequestProperty("Content-Type", "application/octet-stream");
         conn.connect();
    } catch (Exception e) {
         System.out.println("The error is at URL:"+e.getMessage());
    My jsp code is:
    <%
    String java_version=request.getParameter("java.version");
    String java_vendor=request.getParameter("java.vendor");
    %>
    However, it doesn't work. Could anybody help me figure out?
    Thanks in advance.
    Paul

    Request Jsp with
    test.jsp?URLEncoder.encode("java.version")=URLEncoder.encode("java.version.value")&URLEncoder.encode("java.vendor")=
    URLEncoder.encode("java.vendor.value")

  • Ios 6 orientation doesn't work and boot time increases. How to solve these issues for dummy? I don't understand code and strings suggested by others.

    I just upgraded from ios 5 to ios 6 on my ipad2. Now orientation doesn't work properly. Boot time increase, it takes longer time to boot. Is there any configuration to solve these issues? I can't understand the explanation with code and strings found on google to solve the orientation issue. Any easy configuration for dummy ?

    It supports well for ios 5. I couldn't remember (5.x.x) exactly but I always keeps update for ios5 and the abnormality starts when I upgraded to ios 6.

  • File download via servlet doesn't work with IE via https

    I have a URL from a jsp page which points to a struts action servlet. This works with firefox via http and https. With IE it works via http but it doesn't work via https. The error message I get is "Internet Explorer cannot download ...File_name.doc from Server_name.
    Internet Explorer was not able to open this Internet site. The requested site is either unavailable or cannot be found. Please try again later."
    Here is my code.
    public ActionForward execute(ActionMapping mapping, ActionForm form,
                   HttpServletRequest request, HttpServletResponse response)
                   throws Exception {
              String attachmentURL = AppSettings.get("EAIAttachmentURL");
              String encodingScheme = AppSettings.get("EAI_encoding");
              String filename = request.getParameter("URL");
              String fileStr = URLEncoder.encode(filename, encodingScheme);
              fileStr = fileStr.replaceAll("\\+","%20");
              URL targetURL = new URL(attachmentURL + "/" + fileStr);
              URLConnection connection = targetURL.openConnection();
              connection.setDoInput(true);
              connection.setDoOutput(false);
              connection.setAllowUserInteraction(false);
              BufferedInputStream attachmentStream = new BufferedInputStream(
                        connection.getInputStream());
              * Setting the content disposition filename, so that the
              * attachment preserves the original filename
              response.setHeader("Content-Disposition",
                        " attachment; filename=" + filename);
              if (connection.getContentType() != null) {
                   response.setContentType(connection.getContentType());
              else {
                   response.setContentType("application/octet-stream");
              response.setContentLength(connection.getContentLength());
              response.setHeader("Pragma", "public");
              response.setHeader("Cache-Control", "public, max-age=-1, must-revalidate");
              if ( connection.getContentEncoding() != null ) {
                   response.setHeader("Content-Encoding",
                             connection.getContentEncoding());
              BufferedOutputStream responseStream = new BufferedOutputStream(
                        response.getOutputStream());
              byte[] buffer = new byte[4096];
              int bytesRead;
              try {
                   while ((bytesRead = attachmentStream.read(buffer)) != -1) {
                        responseStream.write(buffer, 0, bytesRead);
              } catch (Exception e) {
                   log.error("AttachmentProxy error: " + e.getMessage());
              } finally {
                   if (attachmentStream != null) {
                        attachmentStream.close();
                   if (responseStream != null) {
                        responseStream.flush();
                        responseStream.close();
              return null;
    There is a bug with IE when downloading via https according to Microsoft support site. Refer to http://support.microsoft.com/default.aspx?scid=kb;en-us;812935
    According to this bug, I have set the response header - "pragma" to public and "cache-control" to public. I've also unchecked the Do not save encrypted pages to disk setting in IE Options, Advanced tab.
    Has anyone come across this problem or a similar problem. Any help is appreciated. Thanks.

    I have a URL from a jsp page which points to a struts action servlet. This works with firefox via http and https. With IE it works via http but it doesn't work via https. The error message I get is "Internet Explorer cannot download ...File_name.doc from Server_name.
    Internet Explorer was not able to open this Internet site. The requested site is either unavailable or cannot be found. Please try again later."
    Here is my code.
    public ActionForward execute(ActionMapping mapping, ActionForm form,
                   HttpServletRequest request, HttpServletResponse response)
                   throws Exception {
              String attachmentURL = AppSettings.get("EAIAttachmentURL");
              String encodingScheme = AppSettings.get("EAI_encoding");
              String filename = request.getParameter("URL");
              String fileStr = URLEncoder.encode(filename, encodingScheme);
              fileStr = fileStr.replaceAll("\\+","%20");
              URL targetURL = new URL(attachmentURL + "/" + fileStr);
              URLConnection connection = targetURL.openConnection();
              connection.setDoInput(true);
              connection.setDoOutput(false);
              connection.setAllowUserInteraction(false);
              BufferedInputStream attachmentStream = new BufferedInputStream(
                        connection.getInputStream());
              * Setting the content disposition filename, so that the
              * attachment preserves the original filename
              response.setHeader("Content-Disposition",
                        " attachment; filename=" + filename);
              if (connection.getContentType() != null) {
                   response.setContentType(connection.getContentType());
              else {
                   response.setContentType("application/octet-stream");
              response.setContentLength(connection.getContentLength());
              response.setHeader("Pragma", "public");
              response.setHeader("Cache-Control", "public, max-age=-1, must-revalidate");
              if ( connection.getContentEncoding() != null ) {
                   response.setHeader("Content-Encoding",
                             connection.getContentEncoding());
              BufferedOutputStream responseStream = new BufferedOutputStream(
                        response.getOutputStream());
              byte[] buffer = new byte[4096];
              int bytesRead;
              try {
                   while ((bytesRead = attachmentStream.read(buffer)) != -1) {
                        responseStream.write(buffer, 0, bytesRead);
              } catch (Exception e) {
                   log.error("AttachmentProxy error: " + e.getMessage());
              } finally {
                   if (attachmentStream != null) {
                        attachmentStream.close();
                   if (responseStream != null) {
                        responseStream.flush();
                        responseStream.close();
              return null;
    There is a bug with IE when downloading via https according to Microsoft support site. Refer to http://support.microsoft.com/default.aspx?scid=kb;en-us;812935
    According to this bug, I have set the response header - "pragma" to public and "cache-control" to public. I've also unchecked the Do not save encrypted pages to disk setting in IE Options, Advanced tab.
    Has anyone come across this problem or a similar problem. Any help is appreciated. Thanks.

  • String.replaceAll bottleneck

    Hi All,
    I have written a method to make a string "safe" for xml, by encoding characters that need to be replaced.
    It works just fine using String.replaceAll as below, but when i profile the app i see that it is a performance bottleneck.
    I can see that it is creating a lot of Strings so this is part of the problem.
    From reading through the forum I can see regexs used frequently for this type of problem, but it seems that they will not be more efficient than my existing approach.
    I see that StringBuffer has a replace method but i'm not sure that it is a good fit for my problem?
    Can anybody suggest a more efficient solution?
    Your help is much appreciated!
    emhart
    Here's my existing method:
    public static String makeSafeForXML(String str)
    String result = str;
    result = result.replaceAll("&", "&");
    result = result .replaceAll(">", ">");
    result = result .replaceAll("<", "<");
    result = result .replaceAll("'", "&apos;");
    result = result .replaceAll("\"", """);
    return result ;
    }

    That method doesn't make any sense to me:
    replacing strings with the same exact string?
    also the last one isn't correct, maybe missing a \ ?
    Also, you do realize that the replaceAll method uses the first argument as a regex to match patterns in the string?
    My apologies if I'm missing something.
    But if this really is what you want, then maybe this is faster (I haven't measured any times though):public static String makeSafeForXML2(String str)
        StringBuilder sb = new StringBuilder(str);
        for (int i = 0; i < sb.length(); i++) {
            switch (sb.charAt(i)) {
                case '&':
                    sb.replace(i, i + 1, "&");
                    break;
                case '>':
                    sb.replace(i, i + 1, ">");
                    break;
                case '<':
                    sb.replace(i, i + 1, "<");
                    break;
                case '\'':
                    sb.replace(i, i + 1, "'");
                    break;
                case '"':
                    sb.replace(i, i + 1, "\"");
                    break;
        return sb.toString();
    }

  • What to do when your program doesn't work.

    A huge number of posts here seem to relate to code that has been written (one presumes by the poster), but which doesn't work.
    I get the impression that people don't know what to do next.
    It's really not that difficult. When you're writing your program you constantly have in mind what you expect will happen as a result of each bit of code that you put.
    If at the end of the day, the program as a whole doesn't behave as you expected, then somewhere in there there must be a point at which the program starts doing something that doesn't correspond to what you anticipated. So, you add some System.err.println statements to test your beliefs.
    Consider this program that tests whether a number is prime.
    public class Test
        public static void main(String args[])
            // Get the number to test.
            int number = Integer.parseInt(args[0]);
            // Try each possible factor.
            int factor;
            for(factor = 2; factor < number; factor++)
                // See whether it is really a factor.
                if(number / factor == 0)
                    break;
            if(factor == number)
                System.out.println("Number is not prime.");
            else
                System.out.println("Number is prime.");
    }Straight forward enough, but it doesn't actually work :( It seems to say that every number is not prime. (Actually, not quite true, but I didn't test it that carefully, since it didn't work).
    Now, I could scrutinise it for errors, and then, having failed to find the problem, I could post it here. But let's suppose I'm too proud for that.
    What might be going wrong. Well, how sure am I that I'm even managing to capture the number of interest, number. Let's put in a System.err.println() to test that.
    Is the program in fact trying the factors I expect? Put in System.err.println() for that.
    Is the program correctly determining whether a number is a factor? Need another System.err.prinln (or two) for that.
    public class Test
        public static void main(String args[])
            // Get the number to test.
            int number = Integer.parseInt(args[0]);
            System.err.println("Number to check is " + number);
            // Try each possible factor.
            int factor;
            for(factor = 2; factor < number; factor++)
                System.err.println("Trying factor " + factor);
                // See whether it is really a factor.
                if(number / factor == 0)
                    System.err.println(factor + " is a factor.");
                    break;
                System.err.println(factor + " is not a factor.");
            if(factor == number)
                System.out.println("Number is not prime.");
            else
                System.out.println("Number is prime.");
    }Let's try with on the number 6.
    The output is:
    Number to check is 6
    Trying factor 2
    2 is not a factor.
    Trying factor 3
    3 is not a factor.
    Trying factor 4
    4 is not a factor.
    Trying factor 5
    5 is not a factor.
    Number is not prime.
    Whoah! That's not right. Clearly, the problem is that it's not correctly deciding whether a number is a factor. Well, we know exactly where that test is done. It's this statement:
                if(number / factor == 0)Hmm.... let's try 6 / 3, 'cos 3 is a factor.
    6 / 3 = 2.
    But that's not zero. What the.... Oh - I see, it should have been number % factor.
    Ok - let's fix that, and run it again.
    Now the output is:
    Number to check is 6
    Trying factor 2
    2 is a factor.
    Number is prime.
    Not the right answer, but at least it's now figured out that 2 is a factor of 6. Let's try a different number.
    Number to check is 9
    Trying factor 2
    2 is not a factor.
    Trying factor 3
    3 is a factor.
    Number is prime.
    Again, got the right factor, but still the wrong answer. Let's try a prime:
    Number to check is 7
    Trying factor 2
    2 is not a factor.
    Trying factor 3
    3 is not a factor.
    Trying factor 4
    4 is not a factor.
    Trying factor 5
    5 is not a factor.
    Trying factor 6
    6 is not a factor.
    Number is not prime.
    Aagh! Obvious - the final test is the wrong way round. Just fix that, remove that System.err.println()s and we're done.
    Sylvia.

    Consider this program that tests whether a number is
    prime.
    [attempt to divide by each integer from 2 to n-1]At risk of lowering the signal to noise ratio, I
    should point out that the algorithm given is just
    about the worst possible.
    I know that the point was to illustrate debugging
    and not good prime test algorithms, and I disagree
    with the correspondent who thought the post was
    condescending.
    Anyway, the java libraries have good prime testing
    methods based on advanced number theory research that the
    non-specialist is unlikely to know. Looking at the java
    libraries first is always a good idea.
    Even with the naive approach, dramatic improvements
    are possible.
    First, only try putative divisors up to the square root
    of the number. For 999997 this is about 1000 times faster.
    Next only try dividing by prime numbers. This is about
    7 times faster again. The snag, of course, is to find the
    prime numbers up to 1000, so there might not be much
    advantage unless you already have such a list. The sieve
    of Erastosthenes could be used. This involves 31 passes
    through an array of 1000 booleans and might allow an
    improvement in speed at the expense of space.
    Sorry if I've added too much noise :-)

  • File.delete() and File.deleteOnExit() doesn't work consistently..

    I am seeing some odd behavior with trying to delete files that were opened. Usually just doing new File("file.txt").delete() would work. However, in this case, I have created an input stream to the file, read it in, saved it to another location (copied it), and now I am trying to delete it.
    The odd thing is, in my simple application, the user can work with one file at a time, but I move "processed" files to a lower pane in a swing app. When they exit it, it then archives all the files in that lower pane. Usually every file but the last one opened deletes. However, I have seen odd behavior where by some files don't delete, sometimes all of them wont delete. I tried the deleteOnExit() call which to me should be done by the JVM after it has released all objects such that they don't matter and the JVM ignores any object refs and directly makes a call (through JNI perhaps) to the underlying OS to delete the file. This doesn't work either.
    I am at a loss as to why sometimes some files delete, and other times they don't. In my processing code, I always close the input stream and set its variable to null. So I am not sure how it is possible a reference could still be held to the object representing the file on disk.

    and then, in the other class
      public int cdplayerINIToMMCD(File aDatabase, String thePassword) throws IllegalArgumentException {
         /*---------DATA---------*/
         String dbLogin, dbPassword;
         JFileChooser fc;
         INIFileFilter ff;
         int dialogReturnVal;
         String nameChosen;
         File INIFile;
         ProgressMonitor progressMonitor;
         BufferedReader inFileStream;
         String oneLine;
         int totalLines = 0;
         int linesParsed = 0;
         boolean openDBResult;
         int hasPassword;
         if ((aDatabase == null) || (!aDatabase.exists()) ||
            (FileManagement.verifyMMCD(aDatabase) == FileManagement.VERIFY_FAILED)) {
            throw new IllegalArgumentException();       
         else { 
            currentDB = aDatabase;
            if(thePassword == null) {
              dbPassword = "";
            else { dbPassword = thePassword; }
            dbLogin = dbPassword; //For MSAccess dbLogin == dbPassword
         //Ask the user for the cdplayer.ini file.
         //Create a file chooser
         if (System.getProperty("os.name").indexOf("Windows") > -1) {
            fc = new JFileChooser("C:\\Windows");
         else {
            fc = new JFileChooser();     
         fc.setMultiSelectionEnabled(false);
         fc.setDragEnabled(false);
         //Create a new FileFilter
         ff = new INIFileFilter();
         //Add this filter to our File chooser.
         fc.addChoosableFileFilter(ff);
         fc.setFileFilter(ff);
         //Ask the user to locate it.
         do {
            dialogReturnVal = fc.showOpenDialog(mainFrame);
            if (dialogReturnVal == JFileChooser.APPROVE_OPTION) {
               nameChosen = fc.getSelectedFile().getAbsolutePath();
               if(nameChosen.toLowerCase().endsWith(INIFileFilter.FILE_TYPE)) { INIFile=new File(nameChosen); }
               else { INIFile = new File(nameChosen+INIFileFilter.FILE_TYPE); }
               if (!INIFile.exists()) {
                  continue; //If the name specified does not exist, ask again.
               else { break; }
            else { //User clicked cancel in the open dialog.
               //Ignore what we've done so far.
               return(IMPORT_ABORTED);
         } while(true); //Keep asking until cancelled or a valid file is specified.
         //Determine how many lines will be parsed.
         try {
           //Open the INI for counting
           inFileStream = new BufferedReader(new InputStreamReader(new FileInputStream(INIFile)));
           while ((inFileStream.readLine()) != null) {
               totalLines++;
           //Close the INI file.
           inFileStream.close();
         } catch (IOException ex) { return(IMPORT_FAILED); }
         //Make a progress monitor that will show progress while importing.
         progressMonitor = new ProgressMonitor(mainFrame, "Importing file","", 0, totalLines);
         progressMonitor.setProgress(0);
         progressMonitor.setMillisToPopup(100);
         progressMonitor.setMillisToDecideToPopup(1);
         //Make our DatabaseHandler to insert results to the database.
         dbh = new DatabaseHandler();
         //Open the database connection.
         do {
           try {
              openDBResult = dbh.openDBConnection(currentDB, dbLogin, dbPassword);
           } catch(JDBCException ex) { return(IMPORT_JDBC_ERROR); } //OUCH! can't write anything.
             catch(SQLException ex) {
                 openDBResult = DatabaseHandler.OPNCN_FAILED;
                 //Can not open the database. Is it password protected?
                 hasPassword = JOptionPane.showConfirmDialog(mainFrame, "Could not open the database. "+
                                                "The password is wrong or you have not specified it.\n"+
                           "Do you want to enter one now?", "New password?", JOptionPane.YES_NO_OPTION);
                if (hasPassword == MMCDCatalog.DLG_OPTN_YES) {
                   dbPassword = JOptionPane.showInputDialog(mainFrame, "Please enter your "+
                                                              "password for the DataBase:");
                    dbLogin = dbPassword; //For MSAccess, login == password                                                    
                //If the password wasn't the problem, then we can't help it.
                else { return(IMPORT_FAILED); }
         } while(openDBResult != DatabaseHandler.OPNCN_OK); //If it is OK, no exception thrown.
         //Import the ini file
         try {
            //Open the INI file for parsing.
            inFileStream = new BufferedReader(new InputStreamReader(new FileInputStream(INIFile)));
            //Read and parse the INI file. Save entries once parsed.
            while ((oneLine = inFileStream.readLine()) != null) {
               parseLine(oneLine);
               linesParsed++;
               progressMonitor.setNote("Entries imported so far: "+entriesImported);
               progressMonitor.setProgress(linesParsed);
               if ((progressMonitor.isCanceled()) || (linesParsed == progressMonitor.getMaximum())) {
                  progressMonitor.close();
                  break;
            //Close the INI file.
            inFileStream.close();
         } catch (IOException ex) {
              //Make absolutely sure the progressMonitor has disappeared
                progressMonitor.close();
                if (dbh.closeDBConnection() != DatabaseHandler.CLSCN_OK) {
                 JOptionPane.showMessageDialog(mainFrame, "Error while reading the INI file.\n"+
                    "Error while attempting to close the database", "Error", JOptionPane.INFORMATION_MESSAGE);
              else {
                 JOptionPane.showMessageDialog(mainFrame, "Error while reading the INI file.",
                                                    "Error", JOptionPane.INFORMATION_MESSAGE);     
                return(IMPORT_FAILED);
         //Make absolutely sure the progressMonitor has disappeared
         progressMonitor.close();
         //Close the database connection
         if (dbh.closeDBConnection() != DatabaseHandler.CLSCN_OK) {
            JOptionPane.showMessageDialog(mainFrame, "Error while closing the database after import.",
                                          "Error", JOptionPane.INFORMATION_MESSAGE);
         //Did the user cancel?
         if (totalLines != linesParsed) {
            return(IMPORT_ABORTED);     
         //Success!
         //Everything ok. Return the number of entries imported.
         return(entriesImported);
      }

  • L2TP on Cisco ASA 5505, just doesn't work??!

    This is pretty urgent, client expects me to have this up by lunch today
    So, there is this Cisco ASA 5505 ver 8.4.
    Most things work but now I want to setup a vpn connection...
    I have done this 2 ways, first by using the "VPN Wizard" in ASDM and then 5 hours later removing everything and configuring from cli.
    And it just doesn't work, client (WinXP & Win7) gets "error 792" and sometimes "error 789" (both indicating problem with phase 1, I'm pretty sure of that)
    Googling on those gives a few suggestions none works.
    All I get in the log on Cisco is the "Error processing payload: Payload ID: 1"
    Googling on that only comes up with a few pages telling me this message is caused by an error. (Yeah, I could never have guessed...)
    For the cli config, I followed this tutorial carefully (3 times actually...)
    http://www.cisco.com/en/US/docs/secu...html#wp1117464
    I'm using PSK for IPSec, entered same on Cisco and client - checked several times, this is not a password/PSK issue.
    Ports opened on Cisco: 500, 1701, 4500
    (For a try I opened all ports, no change.)
    And here's the "show run":
    Code:
    ASA Version 8.4(2)
    hostname ciscoasa
    enable password <string> encrypted
    passwd <string> encrypted
    names
    interface Ethernet0/0
    switchport access vlan 2
    interface Ethernet0/1
    interface Ethernet0/2
    interface Ethernet0/3
    interface Ethernet0/4
    interface Ethernet0/5
    interface Ethernet0/6
    interface Ethernet0/7
    switchport access vlan 7
    interface Vlan1
    nameif inside
    security-level 100
    ip address 192.168.5.1 255.255.255.0
    interface Vlan2
    nameif outside
    security-level 0
    ip address #.#.#.# 255.255.255.252
    interface Vlan7
    description VLAN till kontor
    no forward interface Vlan2
    nameif kontor
    security-level 100
    ip address 172.16.5.1 255.255.255.0
    ftp mode passive
    clock timezone GMT 0
    same-security-traffic permit inter-interface
    same-security-traffic permit intra-interface
    object network obj_any
    subnet 0.0.0.0 0.0.0.0
    object network Webserver
    host 192.168.5.2
    object network Webserver443
    host 192.168.5.2
    object network rdp
    host 192.168.5.2
    object network vpnserver
    host 192.168.5.2
    object service vpn-service-group
    object network VPN
    host 192.168.5.2
    object-group service Webports tcp-udp
    description Portar för webbserver
    port-object eq 443
    port-object eq www
    object-group service DM_INLINE_TCP_1 tcp
    group-object Webports
    port-object eq www
    object-group protocol TCPUDP
    protocol-object udp
    protocol-object tcp
    object-group service VPNports tcp-udp
    port-object eq 1701
    port-object eq 4500
    port-object eq 500
    object-group service RDP tcp-udp
    port-object eq 3389
    object-group service vpn-services tcp-udp
    port-object eq 1701
    port-object eq 500
    access-list outside_access_in extended permit tcp any object Webserver eq www
    access-list outside_access_in_1 extended permit tcp any object Webserver object-group DM_INLINE_TCP_1
    access-list outside_access_in_1 remark Ãppnar för vpn
    access-list outside_access_in_1 extended permit object-group TCPUDP any any object-group VPNports
    access-list outside_access_in_1 extended permit object-group TCPUDP any any object-group RDP
    pager lines 24
    logging enable
    logging asdm informational
    mtu inside 1500
    mtu outside 1500
    mtu kontor 1500
    ip local pool vpn1 10.10.10.10-10.10.10.50 mask 255.255.255.0
    icmp unreachable rate-limit 1 burst-size 1
    no asdm history enable
    arp timeout 14400
    object network obj_any
    nat (inside,outside) dynamic interface
    object network Webserver
    nat (inside,outside) static interface service tcp www www
    object network Webserver443
    nat (inside,outside) static interface service tcp https https
    object network rdp
    nat (inside,outside) static interface service tcp 3389 3389
    access-group outside_access_in_1 in interface outside
    route outside 0.0.0.0 0.0.0.0 79.142.243.33 1
    timeout xlate 3:00:00
    timeout conn 1:00:00 half-closed 0:10:00 udp 0:02:00 icmp 0:00:02
    timeout sunrpc 0:10:00 h323 0:05:00 h225 1:00:00 mgcp 0:05:00 mgcp-pat 0:05:00
    timeout sip 0:30:00 sip_media 0:02:00 sip-invite 0:03:00 sip-disconnect 0:02:00
    timeout sip-provisional-media 0:02:00 uauth 0:05:00 absolute
    timeout tcp-proxy-reassembly 0:01:00
    timeout floating-conn 0:00:00
    dynamic-access-policy-record DfltAccessPolicy
    user-identity default-domain LOCAL
    aaa authentication ssh console LOCAL
    aaa authorization command LOCAL
    aaa authorization exec LOCAL
    http server enable
    http 0.0.0.0 0.0.0.0 inside
    http 0.0.0.0 0.0.0.0 outside
    no snmp-server location
    no snmp-server contact
    snmp-server enable traps snmp authentication linkup linkdown coldstart warmstart
    crypto ipsec ikev1 transform-set ESP-AES-256-MD5 esp-aes-256 esp-md5-hmac
    crypto ipsec ikev1 transform-set ESP-DES-SHA esp-des esp-sha-hmac
    crypto ipsec ikev1 transform-set ESP-3DES-SHA esp-3des esp-sha-hmac
    crypto ipsec ikev1 transform-set ESP-3DES-SHA mode transport
    crypto ipsec ikev1 transform-set ESP-DES-MD5 esp-des esp-md5-hmac
    crypto ipsec ikev1 transform-set ESP-AES-192-MD5 esp-aes-192 esp-md5-hmac
    crypto ipsec ikev1 transform-set ESP-3DES-MD5 esp-3des esp-md5-hmac
    crypto ipsec ikev1 transform-set ESP-AES-256-SHA esp-aes-256 esp-sha-hmac
    crypto ipsec ikev1 transform-set ESP-AES-128-SHA esp-aes esp-sha-hmac
    crypto ipsec ikev1 transform-set ESP-AES-192-SHA esp-aes-192 esp-sha-hmac
    crypto ipsec ikev1 transform-set ESP-AES-128-MD5 esp-aes esp-md5-hmac
    crypto ipsec ikev1 transform-set TRANS_ESP_3DES_SHA esp-3des esp-sha-hmac
    crypto ipsec ikev1 transform-set TRANS_ESP_3DES_SHA mode transport
    crypto ipsec ikev2 ipsec-proposal 3DES-SHA
    protocol esp encryption aes-256 aes-192 aes 3des
    protocol esp integrity sha-1 md5
    crypto dynamic-map SYSTEM_DEFAULT_CRYPTO_MAP 65535 set ikev1 transform-set ESP-AES-128-SHA ESP-AES-128-MD5 ESP-AES-192-SHA ESP-AES-192-MD5 ESP-AES-256-SHA ESP-AES-256-MD5 ESP-3DES-SHA ESP-3DES-MD5 ESP-DES-SHA ESP-DES-MD5
    crypto dynamic-map SYSTEM_DEFAULT_CRYPTO_MAP 65535 set ikev2 ipsec-proposal 3DES-SHA
    crypto map outside_map 65535 ipsec-isakmp dynamic SYSTEM_DEFAULT_CRYPTO_MAP
    crypto map outside_map interface outside
    crypto ca trustpoint ASDM_TrustPoint0
    enrollment self
    subject-name CN=ciscoasa
    proxy-ldc-issuer
    crl configure
    crypto ca certificate chain ASDM_TrustPoint0
    .... (sorry, not giving you the cert...)
    crypto ikev2 policy 1
    encryption 3des
    integrity sha
    group 2 1
    prf sha
    lifetime seconds 86400
    crypto ikev1 enable outside
    crypto ikev1 policy 10
    authentication pre-share
    encryption 3des
    hash md5
    group 1
    lifetime 86400
    crypto ikev1 policy 20
    authentication rsa-sig
    encryption aes-256
    hash sha
    group 1
    lifetime 86400
    crypto ikev1 policy 30
    authentication pre-share
    encryption aes-256
    hash sha
    group 1
    lifetime 86400
    crypto ikev1 policy 40
    authentication crack
    encryption aes-192
    hash sha
    group 2
    lifetime 86400
    crypto ikev1 policy 50
    authentication rsa-sig
    encryption aes-192
    hash sha
    group 2
    lifetime 86400
    crypto ikev1 policy 60
    authentication pre-share
    encryption aes-192
    hash sha
    group 2
    lifetime 86400
    crypto ikev1 policy 70
    authentication crack
    encryption aes
    hash sha
    group 2
    lifetime 86400
    crypto ikev1 policy 80
    authentication rsa-sig
    encryption aes
    hash sha
    group 2
    lifetime 86400
    crypto ikev1 policy 90
    authentication pre-share
    encryption aes
    hash sha
    group 2
    lifetime 86400
    crypto ikev1 policy 100
    authentication crack
    encryption 3des
    hash sha
    group 2
    lifetime 86400
    crypto ikev1 policy 110
    authentication rsa-sig
    encryption 3des
    hash sha
    group 2
    lifetime 86400
    crypto ikev1 policy 120
    authentication pre-share
    encryption 3des
    hash sha
    group 1
    lifetime 86400
    crypto ikev1 policy 130
    authentication crack
    encryption des
    hash sha
    group 2
    lifetime 86400
    crypto ikev1 policy 140
    authentication rsa-sig
    encryption des
    hash sha
    group 2
    lifetime 86400
    crypto ikev1 policy 150
    authentication pre-share
    encryption des
    hash sha
    group 2
    lifetime 86400
    telnet timeout 5
    ssh scopy enable
    ssh 0.0.0.0 0.0.0.0 inside
    ssh 0.0.0.0 0.0.0.0 outside
    ssh timeout 10
    console timeout 0
    no vpn-addr-assign aaa
    no vpn-addr-assign dhcp
    l2tp tunnel hello 100
    dhcpd dns 8.8.8.8
    dhcpd auto_config outside
    dhcpd address 192.168.5.11-192.168.5.36 inside
    dhcpd enable inside
    threat-detection basic-threat
    threat-detection statistics access-list
    no threat-detection statistics tcp-intercept
    webvpn
    group-policy DefaultRAGroup internal
    group-policy DefaultRAGroup attributes
    vpn-tunnel-protocol ikev1 ikev2 l2tp-ipsec
    address-pools value vpn1
    group-policy DfltGrpPolicy attributes
    dns-server value 79.142.240.10
    vpn-tunnel-protocol l2tp-ipsec
    address-pools value vpn1
    username test password <string> nt-encrypted
    username someoneelse password <string> nt-encrypted privilege 15
    username someoneelse attributes
    vpn-tunnel-protocol ikev1 ikev2 l2tp-ipsec
    service-type admin
    username someone password <string> nt-encrypted privilege 0
    tunnel-group DefaultRAGroup general-attributes
    authorization-server-group LOCAL
    tunnel-group DefaultRAGroup ipsec-attributes
    ikev1 pre-shared-key *****
    tunnel-group DefaultRAGroup ppp-attributes
    authentication ms-chap-v2
    tunnel-group vpn1 type remote-access
    tunnel-group vpn1 ipsec-attributes
    ikev1 pre-shared-key *****
    class-map inspection_default
    match default-inspection-traffic
    policy-map type inspect dns preset_dns_map
    parameters
      message-length maximum client auto
      message-length maximum 512
    policy-map global_policy
    class inspection_default
      inspect dns preset_dns_map
      inspect ftp
      inspect h323 h225
      inspect h323 ras
      inspect rsh
      inspect rtsp
      inspect esmtp
      inspect sqlnet
      inspect skinny
      inspect sunrpc
      inspect xdmcp
      inspect sip
      inspect netbios
      inspect tftp
      inspect ip-options
    service-policy global_policy global
    privilege cmd level 3 mode exec command perfmon
    privilege cmd level 3 mode exec command ping
    privilege cmd level 3 mode exec command who
    privilege cmd level 3 mode exec command logging
    privilege cmd level 3 mode exec command failover
    privilege cmd level 3 mode exec command packet-tracer
    privilege show level 5 mode exec command import
    privilege show level 5 mode exec command running-config
    privilege show level 3 mode exec command reload
    privilege show level 3 mode exec command mode
    privilege show level 3 mode exec command firewall
    privilege show level 3 mode exec command asp
    privilege show level 3 mode exec command cpu
    privilege show level 3 mode exec command interface
    privilege show level 3 mode exec command clock
    privilege show level 3 mode exec command dns-hosts
    privilege show level 3 mode exec command access-list
    privilege show level 3 mode exec command logging
    privilege show level 3 mode exec command vlan
    privilege show level 3 mode exec command ip
    privilege show level 3 mode exec command ipv6
    privilege show level 3 mode exec command failover
    privilege show level 3 mode exec command asdm
    privilege show level 3 mode exec command arp
    privilege show level 3 mode exec command route
    privilege show level 3 mode exec command ospf
    privilege show level 3 mode exec command aaa-server
    privilege show level 3 mode exec command aaa
    privilege show level 3 mode exec command eigrp
    privilege show level 3 mode exec command crypto
    privilege show level 3 mode exec command ssh
    privilege show level 3 mode exec command vpn-sessiondb
    privilege show level 3 mode exec command vpnclient
    privilege show level 3 mode exec command vpn
    privilege show level 3 mode exec command dhcpd
    privilege show level 3 mode exec command blocks
    privilege show level 3 mode exec command wccp
    privilege show level 3 mode exec command dynamic-filter
    privilege show level 3 mode exec command webvpn
    privilege show level 3 mode exec command module
    privilege show level 3 mode exec command uauth
    privilege show level 3 mode exec command compression
    privilege show level 3 mode configure command interface
    privilege show level 3 mode configure command clock
    privilege show level 3 mode configure command access-list
    privilege show level 3 mode configure command logging
    privilege show level 3 mode configure command ip
    privilege show level 3 mode configure command failover
    privilege show level 5 mode configure command asdm
    privilege show level 3 mode configure command arp
    privilege show level 3 mode configure command route
    privilege show level 3 mode configure command aaa-server
    privilege show level 3 mode configure command aaa
    privilege show level 3 mode configure command crypto
    privilege show level 3 mode configure command ssh
    privilege show level 3 mode configure command dhcpd
    privilege show level 5 mode configure command privilege
    privilege clear level 3 mode exec command dns-hosts
    privilege clear level 3 mode exec command logging
    privilege clear level 3 mode exec command arp
    privilege clear level 3 mode exec command aaa-server
    privilege clear level 3 mode exec command crypto
    privilege clear level 3 mode exec command dynamic-filter
    privilege cmd level 3 mode configure command failover
    privilege clear level 3 mode configure command logging
    privilege clear level 3 mode configure command arp
    privilege clear level 3 mode configure command crypto
    privilege clear level 3 mode configure command aaa-server
    prompt hostname context
    no call-home reporting anonymous
    Cryptochecksum:dd92aa6707dc63e8ed7dad47cfecdd47
    : end
    In Pingvino Veritas!

    I lmost got it working now, new problem is that the connection is immediately ended.
    Logs shows that client is authenticated and assigned an ip.
    From the logs, all happens during one second:
    IPAA: Client assigned ip-address from local pool
    IPAA: Local pool request succeeded for tunnel-group
    IPAA: Freeing local pool address
    L2TP Tunnel created, tunnel_id is 24
    L2TP Tunnel deleted, tunnel_id =24
    IPSEC: An outbound remote access SA has been deleted
    IPSEC: An inbound remote access SA has been deleted
    Session is being torn down. Reason: L2TP initiated
    Teardown UDP connection

  • Date object doesn't work in query filters

    I'm trying to create a universe object called Next Biweekly Pay End Date.  Some background: there is an end date for our biweekly payrolls every 14 days, and the logic behind the object is basically that if there was a biweekly pay end date 7 days ago, the next one is 7 days from today (that is, sysdate + 7), etc.</p>
    I have it working so that it displays the correct date when used in a WebI report.  However, when I use it in a query filter in a WebI report (like, Pay End Date = Next Biweekly Pay End Date), I don't get an error, but I also don't get any data.  Somehow my object doesn't work in a query filter.  The purpose of the object is for use in query filters, so I need to get this to work.</p>
    My best guess about why it doesn't work in a query filter is due to some issue with the data type.  Pay End Date has a data type of date in the universe.  I gave Next Biweekly Pay End Date a data type of date also, but the query filter still doesn't work; I get "no data to fetch."</p>
    We're using XI 3.1.6 and Oracle 10.  Any ideas about how to get this to work?</p>
    If it helps, here is the definition of Next Biweekly Pay End Date.  The logic is that it takes today's date, subtracts Oct. 31, 2009 (a biweekly pay end date), divides by 14, and looks at the remainder.  If the remainder is 0, then today is a pay end date and the next one is 14 days from now.  If the remainder is 1, yesterday was a pay end date and the next one is 13 days from now, etc.</p>
    case</p>
      when mod((trunc(sysdate)) - (to_date('31/10/2009')),14) = 0 then (sysdate + 14)</p>
      when mod((trunc(sysdate)) - (to_date('31/10/2009')),14) = 1 then (sysdate + 13)</p>
      when mod((trunc(sysdate)) - (to_date('31/10/2009')),14) = 2 then (sysdate + 12)</p>
      when mod((trunc(sysdate)) - (to_date('31/10/2009')),14) = 3 then (sysdate + 11)</p>
      when mod((trunc(sysdate)) - (to_date('31/10/2009')),14) = 4 then (sysdate + 10)</p>
      when mod((trunc(sysdate)) - (to_date('31/10/2009')),14) = 5 then (sysdate + 9)</p>
      when mod((trunc(sysdate)) - (to_date('31/10/2009')),14) = 6 then (sysdate + 8)</p>
      when mod((trunc(sysdate)) - (to_date('31/10/2009')),14) = 7 then (sysdate + 7)</p>
      when mod((trunc(sysdate)) - (to_date('31/10/2009')),14) = 8 then (sysdate + 6)</p>
      when mod((trunc(sysdate)) - (to_date('31/10/2009')),14) = 9 then (sysdate + 5)</p>
      when mod((trunc(sysdate)) - (to_date('31/10/2009')),14) = 10 then (sysdate + 4)</p>
      when mod((trunc(sysdate)) - (to_date('31/10/2009')),14) = 11 then (sysdate + 3)</p>
      when mod((trunc(sysdate)) - (to_date('31/10/2009')),14) = 12 then (sysdate + 2)</p>
      when mod((trunc(sysdate)) - (to_date('31/10/2009')),14) = 13 then (sysdate + 1)</p>
    end

    Thanks for the suggestions.
    I did some more testing, and there seems to be something more complicated going on.  I ran the following code in SQL*Plus:
    SELECT distinct M_PYDW1.PYSTATUS.DW_OWNER,
    case
    when to_date(sysdate, 'dd/mm/yyyy hh24:mi:ss') >= to_date('01/01/2010','dd/mm/yyyy hh24:mi:ss') then To_Date((sysdate - 2),'dd/mm/yyyy')
    else to_date(sysdate +2, 'dd/mm/yyyy')
    end
    FROM M_PYDW1.PYSTATUS
    The condition should be true, because the sysdate (today is Jan. 20) is greater than 1/1/2010, so I should get a result of sysdate - 2 (Jan. 18).  But the result I get is Jan. 22 (sysdate +2).  It seems that the comparison is failing even though I'm formatting both sysdate and 1/1/2010 as dates with a timestamp.  What could cause that?
    One more mystery: when I run the same code as above in a WebI report (using custom SQL), I get the error ORA-1830, date format picture ends before converting entire input string.

  • [Solved] Lexmark Pro901 doesn't work

    EDIT: I forgot to install ghostscript, that solved it
    Hello everyone,
    I installed the lexmark-inkjet-legacy package from the AUR (https://aur.archlinux.org/packages/lexm … et-legacy/) and I configured my printer using the lx-postinstall script, which is shipped with the package but I'm not able to print a test page. It turns on the printer and the printer pulls a page but cups just says "Processing - Connected to printer".
    Here my cups error log:
    I [06/Dec/2013:14:31:17 +0100] Listening to [v1.::1]:631 (IPv6)
    I [06/Dec/2013:14:31:17 +0100] Listening to 127.0.0.1:631 (IPv4)
    I [06/Dec/2013:14:31:17 +0100] Listening to /run/cups/cups.sock (Domain)
    I [06/Dec/2013:14:31:17 +0100] Remote access is disabled.
    D [06/Dec/2013:14:31:17 +0100] Added auto ServerAlias AOD-255
    I [06/Dec/2013:14:31:17 +0100] Loaded configuration file "/etc/cups/cupsd.conf"
    I [06/Dec/2013:14:31:17 +0100] Using default TempDir of /var/spool/cups/tmp...
    I [06/Dec/2013:14:31:17 +0100] Configured for up to 100 clients.
    I [06/Dec/2013:14:31:17 +0100] Allowing up to 100 client connections per host.
    I [06/Dec/2013:14:31:17 +0100] Using policy "default" as the default.
    D [06/Dec/2013:14:31:17 +0100] load_ppd: Loading /var/cache/cups/Lexmark_Pro800Pro900_Series.data...
    D [06/Dec/2013:14:31:17 +0100] cupsdRegisterPrinter(p=0xb83f05a0(Lexmark_Pro800Pro900_Series))
    D [06/Dec/2013:14:31:17 +0100] cupsdMarkDirty(--p--)
    D [06/Dec/2013:14:31:17 +0100] cupsdSetBusyState: newbusy="Dirty files", busy="Not busy"
    I [06/Dec/2013:14:31:17 +0100] Partial reload complete.
    D [06/Dec/2013:14:31:17 +0100] systemd_checkin: Matched existing listener /run/cups/cups.sock with fd 3...
    D [06/Dec/2013:14:31:17 +0100] Calling FindDeviceById(cups-Lexmark_Pro800Pro900_Series)
    D [06/Dec/2013:14:31:17 +0100] Calling DeleteDevice(/org/freedesktop/ColorManager/devices/cups_Lexmark_Pro800Pro900_Series)
    D [06/Dec/2013:14:31:17 +0100] Using profile ID "Lexmark_Pro800Pro900_Series-Gray..".
    D [06/Dec/2013:14:31:17 +0100] Calling CreateProfile(Lexmark_Pro800Pro900_Series-Gray..,temp)
    W [06/Dec/2013:14:31:17 +0100] CreateProfile failed: org.freedesktop.ColorManager.AlreadyExists:profile id 'Lexmark_Pro800Pro900_Series-Gray..' already exists
    D [06/Dec/2013:14:31:17 +0100] Using profile ID "Lexmark_Pro800Pro900_Series-RGB..".
    D [06/Dec/2013:14:31:17 +0100] Calling CreateProfile(Lexmark_Pro800Pro900_Series-RGB..,temp)
    W [06/Dec/2013:14:31:17 +0100] CreateProfile failed: org.freedesktop.ColorManager.AlreadyExists:profile id 'Lexmark_Pro800Pro900_Series-RGB..' already exists
    I [06/Dec/2013:14:31:17 +0100] Registering ICC color profiles for "Lexmark_Pro800Pro900_Series".
    D [06/Dec/2013:14:31:17 +0100] Calling CreateDevice(cups-Lexmark_Pro800Pro900_Series,temp)
    D [06/Dec/2013:14:31:17 +0100] Created device "/org/freedesktop/ColorManager/devices/cups_Lexmark_Pro800Pro900_Series".
    I [06/Dec/2013:14:31:17 +0100] Listening to [v1.::1]:631 on fd 10...
    I [06/Dec/2013:14:31:17 +0100] Listening to 127.0.0.1:631 on fd 11...
    I [06/Dec/2013:14:31:17 +0100] Listening to /run/cups/cups.sock:631 on fd 3...
    I [06/Dec/2013:14:31:17 +0100] Resuming new connection processing...
    D [06/Dec/2013:14:31:17 +0100] cupsdSetBusyState: newbusy="Dirty files", busy="Dirty files"
    D [06/Dec/2013:14:31:17 +0100] Discarding unused server-restarted event...
    D [06/Dec/2013:14:31:18 +0100] Report: clients=0
    D [06/Dec/2013:14:31:18 +0100] Report: jobs=2
    D [06/Dec/2013:14:31:18 +0100] Report: jobs-active=1
    D [06/Dec/2013:14:31:18 +0100] Report: printers=1
    D [06/Dec/2013:14:31:18 +0100] Report: stringpool-string-count=10258
    D [06/Dec/2013:14:31:18 +0100] Report: stringpool-alloc-bytes=11424
    D [06/Dec/2013:14:31:18 +0100] Report: stringpool-total-bytes=178272
    D [06/Dec/2013:14:31:22 +0100] [Client 14] Accepted from localhost:631 (IPv6)
    D [06/Dec/2013:14:31:22 +0100] [Client 14] Waiting for request.
    D [06/Dec/2013:14:31:22 +0100] [Client 14] GET /admin/?OP=redirect HTTP/1.1
    D [06/Dec/2013:14:31:22 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
    D [06/Dec/2013:14:31:22 +0100] [Client 14] Authorized as root using Basic
    D [06/Dec/2013:14:31:22 +0100] [CGI] argv[0] = "/usr/lib/cups/cgi-bin/admin.cgi"
    D [06/Dec/2013:14:31:22 +0100] [CGI] argv[1] = "OP=redirect"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[0] = "CUPS_CACHEDIR=/var/cache/cups"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[1] = "CUPS_DATADIR=/usr/share/cups"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[2] = "CUPS_DOCROOT=/usr/share/cups/doc"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[3] = "CUPS_FONTPATH=/usr/share/cups/fonts"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[4] = "CUPS_REQUESTROOT=/var/spool/cups"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[5] = "CUPS_SERVERBIN=/usr/lib/cups"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[6] = "CUPS_SERVERROOT=/etc/cups"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[7] = "CUPS_STATEDIR=/run/cups"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[8] = "HOME=/var/spool/cups/tmp"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[9] = "PATH=/usr/lib/cups/filter:/usr/bin:/usr/bin:/bin:/usr/bin"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[10] = "SERVER_ADMIN=root@AOD-255"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[11] = "SOFTWARE=CUPS/1.7.0"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[12] = "TMPDIR=/var/spool/cups/tmp"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[13] = "USER=root"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[14] = "CUPS_MAX_MESSAGE=2047"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[15] = "CUPS_SERVER=/run/cups/cups.sock"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[16] = "CUPS_ENCRYPTION=IfRequested"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[17] = "IPP_PORT=631"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[18] = "AUTH_TYPE=Basic"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[19] = "LANG=de_DE.UTF8"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[20] = "REDIRECT_STATUS=1"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[21] = "GATEWAY_INTERFACE=CGI/1.1"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[22] = "SERVER_NAME=localhost"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[23] = "SERVER_PORT=631"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[24] = "REMOTE_ADDR=[v1.::1]"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[25] = "REMOTE_HOST=localhost"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[26] = "SCRIPT_NAME=/admin/"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[27] = "SCRIPT_FILENAME=/usr/share/cups/doc/admin/"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[28] = "REMOTE_USER=root"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[29] = "SERVER_PROTOCOL=HTTP/1.1"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[30] = "HTTP_COOKIE=org.cups.sid=b2c78295dd021592201110e11d3493a3"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[31] = "HTTP_USER_AGENT=Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.63 Safari/537.36"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[32] = "HTTP_REFERER=http://localhost:631/admin/"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[33] = "REQUEST_METHOD=GET"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[34] = "QUERY_STRING=OP=redirect"
    D [06/Dec/2013:14:31:22 +0100] [CGI] Started /usr/lib/cups/cgi-bin/admin.cgi (PID 689)
    I [06/Dec/2013:14:31:22 +0100] [Client 14] Started "/usr/lib/cups/cgi-bin/admin.cgi" (pid=689)
    D [06/Dec/2013:14:31:22 +0100] [Client 14] file=15
    D [06/Dec/2013:14:31:22 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:22 +0100] [CGI] admin.cgi started...
    D [06/Dec/2013:14:31:22 +0100] [Client 16] Accepted from localhost (Domain)
    D [06/Dec/2013:14:31:22 +0100] [Client 16] Waiting for request.
    D [06/Dec/2013:14:31:22 +0100] [CGI] http=0xb9218a08
    D [06/Dec/2013:14:31:22 +0100] [CGI] cgiSetVariable: SECTION="admin"
    D [06/Dec/2013:14:31:22 +0100] [CGI] cgiSetVariable: REFRESH_PAGE=""
    D [06/Dec/2013:14:31:22 +0100] [CGI] org.cups.sid cookie is "b2c78295dd021592201110e11d3493a3"
    D [06/Dec/2013:14:31:22 +0100] [CGI] cgiSetVariable: OP="redirect"
    D [06/Dec/2013:14:31:22 +0100] [CGI] redirecting with prefix http://localhost:631!
    D [06/Dec/2013:14:31:22 +0100] [Client 16] HTTP_STATE_WAITING Closing on EOF
    D [06/Dec/2013:14:31:22 +0100] [Client 16] Closing connection.
    D [06/Dec/2013:14:31:22 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [06/Dec/2013:14:31:22 +0100] [Client 14] CGI data ready to be sent.
    D [06/Dec/2013:14:31:22 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=0, response=(nil)(), pipe_pid=689, file=15
    D [06/Dec/2013:14:31:22 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:22 +0100] Script header: Location: http://localhost:631/admin
    D [06/Dec/2013:14:31:22 +0100] Script header:
    D [06/Dec/2013:14:31:22 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=689, file=15
    D [06/Dec/2013:14:31:22 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:22 +0100] [Client 14] CGI data ready to be sent.
    D [06/Dec/2013:14:31:22 +0100] PID 689 (/usr/lib/cups/cgi-bin/admin.cgi) exited with no errors.
    D [06/Dec/2013:14:31:22 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=689, file=15
    D [06/Dec/2013:14:31:22 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:22 +0100] [Client 14] Waiting for request.
    D [06/Dec/2013:14:31:22 +0100] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
    D [06/Dec/2013:14:31:22 +0100] [Client 14] GET /admin HTTP/1.1
    D [06/Dec/2013:14:31:22 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
    D [06/Dec/2013:14:31:22 +0100] [Client 14] No authentication data provided.
    D [06/Dec/2013:14:31:22 +0100] [CGI] argv[0] = "/usr/lib/cups/cgi-bin/admin.cgi"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[0] = "CUPS_CACHEDIR=/var/cache/cups"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[1] = "CUPS_DATADIR=/usr/share/cups"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[2] = "CUPS_DOCROOT=/usr/share/cups/doc"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[3] = "CUPS_FONTPATH=/usr/share/cups/fonts"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[4] = "CUPS_REQUESTROOT=/var/spool/cups"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[5] = "CUPS_SERVERBIN=/usr/lib/cups"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[6] = "CUPS_SERVERROOT=/etc/cups"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[7] = "CUPS_STATEDIR=/run/cups"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[8] = "HOME=/var/spool/cups/tmp"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[9] = "PATH=/usr/lib/cups/filter:/usr/bin:/usr/bin:/bin:/usr/bin"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[10] = "SERVER_ADMIN=root@AOD-255"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[11] = "SOFTWARE=CUPS/1.7.0"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[12] = "TMPDIR=/var/spool/cups/tmp"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[13] = "USER=root"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[14] = "CUPS_MAX_MESSAGE=2047"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[15] = "CUPS_SERVER=/run/cups/cups.sock"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[16] = "CUPS_ENCRYPTION=IfRequested"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[17] = "IPP_PORT=631"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[18] = "LANG=de_DE.UTF8"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[19] = "REDIRECT_STATUS=1"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[20] = "GATEWAY_INTERFACE=CGI/1.1"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[21] = "SERVER_NAME=localhost"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[22] = "SERVER_PORT=631"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[23] = "REMOTE_ADDR=[v1.::1]"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[24] = "REMOTE_HOST=localhost"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[25] = "SCRIPT_NAME=/admin"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[26] = "SCRIPT_FILENAME=/usr/share/cups/doc/admin"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[27] = "SERVER_PROTOCOL=HTTP/1.1"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[28] = "HTTP_COOKIE=org.cups.sid=b2c78295dd021592201110e11d3493a3"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[29] = "HTTP_USER_AGENT=Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.63 Safari/537.36"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[30] = "HTTP_REFERER=http://localhost:631/admin/"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[31] = "REQUEST_METHOD=GET"
    D [06/Dec/2013:14:31:22 +0100] [CGI] envp[32] = "QUERY_STRING="
    D [06/Dec/2013:14:31:22 +0100] [CGI] Started /usr/lib/cups/cgi-bin/admin.cgi (PID 690)
    I [06/Dec/2013:14:31:22 +0100] [Client 14] Started "/usr/lib/cups/cgi-bin/admin.cgi" (pid=690)
    D [06/Dec/2013:14:31:22 +0100] [Client 14] file=15
    D [06/Dec/2013:14:31:22 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:22 +0100] [CGI] admin.cgi started...
    D [06/Dec/2013:14:31:22 +0100] [Client 16] Accepted from localhost (Domain)
    D [06/Dec/2013:14:31:22 +0100] [Client 16] Waiting for request.
    D [06/Dec/2013:14:31:22 +0100] [CGI] http=0xb864da08
    D [06/Dec/2013:14:31:22 +0100] [CGI] cgiSetVariable: SECTION="admin"
    D [06/Dec/2013:14:31:22 +0100] [CGI] cgiSetVariable: REFRESH_PAGE=""
    D [06/Dec/2013:14:31:22 +0100] [CGI] org.cups.sid cookie is "b2c78295dd021592201110e11d3493a3"
    D [06/Dec/2013:14:31:22 +0100] [CGI] No form data, showing main menu...
    D [06/Dec/2013:14:31:22 +0100] [CGI] cgiSetVariable: DEBUG_LOGGING="CHECKED"
    D [06/Dec/2013:14:31:22 +0100] [CGI] cgiSetVariable: HAVE_GSSAPI="1"
    D [06/Dec/2013:14:31:22 +0100] [CGI] cgiSetVariable: KERBEROS=""
    D [06/Dec/2013:14:31:22 +0100] [CGI] cgiSetVariable: PRESERVE_JOBS="CHECKED"
    D [06/Dec/2013:14:31:22 +0100] [CGI] cgiSetVariable: PRESERVE_JOB_HISTORY="Yes"
    D [06/Dec/2013:14:31:22 +0100] [CGI] cgiSetVariable: PRESERVE_JOB_FILES="1d"
    D [06/Dec/2013:14:31:22 +0100] [CGI] cgiSetVariable: MAX_CLIENTS="100"
    D [06/Dec/2013:14:31:22 +0100] [CGI] cgiSetVariable: MAX_JOBS="500"
    D [06/Dec/2013:14:31:22 +0100] [CGI] cgiSetVariable: MAX_LOG_SIZE="1m"
    D [06/Dec/2013:14:31:22 +0100] [CGI] /usr/share/cups/drivers/pscript5.dll: Datei oder Verzeichnis nicht gefunden
    D [06/Dec/2013:14:31:22 +0100] [Client 16] POST / HTTP/1.1
    D [06/Dec/2013:14:31:22 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [06/Dec/2013:14:31:22 +0100] [Client 16] No authentication data provided.
    D [06/Dec/2013:14:31:22 +0100] [Client 16] 2.0 Get-Subscriptions 1
    D [06/Dec/2013:14:31:22 +0100] Get-Subscriptions ipp://localhost/
    D [06/Dec/2013:14:31:22 +0100] Get-Subscriptions client-error-not-found: No subscriptions found.
    D [06/Dec/2013:14:31:22 +0100] [Client 16] Returning IPP client-error-not-found for Get-Subscriptions (ipp://localhost/) from localhost
    D [06/Dec/2013:14:31:22 +0100] [Client 16] Content-Length: 117
    D [06/Dec/2013:14:31:22 +0100] [Client 16] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=117, response=0xb83f3568(IPP_IDLE), pipe_pid=0, file=-1
    D [06/Dec/2013:14:31:22 +0100] [Client 16] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
    D [06/Dec/2013:14:31:22 +0100] [Client 16] bytes=0, http_state=0, data_remaining=0
    D [06/Dec/2013:14:31:22 +0100] [Client 16] Waiting for request.
    D [06/Dec/2013:14:31:22 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [06/Dec/2013:14:31:22 +0100] [CGI] cgiSetVariable: SERVER_NAME="localhost"
    D [06/Dec/2013:14:31:22 +0100] [CGI] cgiSetVariable: CUPS_VERSION="CUPS v1.7.0"
    D [06/Dec/2013:14:31:22 +0100] [CGI] cgiSetVariable: TITLE="Administration"
    D [06/Dec/2013:14:31:22 +0100] [CGI] cgiSetVariable: SERVER_NAME="localhost"
    D [06/Dec/2013:14:31:22 +0100] [CGI] cgiSetVariable: CUPS_VERSION="CUPS v1.7.0"
    D [06/Dec/2013:14:31:22 +0100] [Client 14] CGI data ready to be sent.
    D [06/Dec/2013:14:31:22 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=0, response=(nil)(), pipe_pid=690, file=15
    D [06/Dec/2013:14:31:22 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:22 +0100] Script header: Content-Type: text/html;charset=utf-8
    D [06/Dec/2013:14:31:22 +0100] Script header:
    D [06/Dec/2013:14:31:22 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=690, file=15
    D [06/Dec/2013:14:31:22 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:22 +0100] [Client 14] CGI data ready to be sent.
    D [06/Dec/2013:14:31:22 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=690, file=15
    D [06/Dec/2013:14:31:22 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:22 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=690, file=15
    D [06/Dec/2013:14:31:22 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:22 +0100] [Client 14] CGI data ready to be sent.
    D [06/Dec/2013:14:31:22 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=690, file=15
    D [06/Dec/2013:14:31:22 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:22 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=690, file=15
    D [06/Dec/2013:14:31:22 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:22 +0100] [Client 14] CGI data ready to be sent.
    D [06/Dec/2013:14:31:22 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=690, file=15
    D [06/Dec/2013:14:31:22 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:22 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=690, file=15
    D [06/Dec/2013:14:31:22 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:22 +0100] [Client 14] CGI data ready to be sent.
    D [06/Dec/2013:14:31:22 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=690, file=15
    D [06/Dec/2013:14:31:22 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:22 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=690, file=15
    D [06/Dec/2013:14:31:22 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:22 +0100] [Client 14] CGI data ready to be sent.
    D [06/Dec/2013:14:31:22 +0100] [Client 16] HTTP_STATE_WAITING Closing on EOF
    D [06/Dec/2013:14:31:22 +0100] [Client 16] Closing connection.
    D [06/Dec/2013:14:31:22 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
    D [06/Dec/2013:14:31:22 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=690, file=15
    D [06/Dec/2013:14:31:22 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:22 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=690, file=15
    D [06/Dec/2013:14:31:22 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:22 +0100] [Client 14] CGI data ready to be sent.
    D [06/Dec/2013:14:31:22 +0100] PID 690 (/usr/lib/cups/cgi-bin/admin.cgi) exited with no errors.
    D [06/Dec/2013:14:31:22 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=690, file=15
    D [06/Dec/2013:14:31:22 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:22 +0100] [Client 14] Waiting for request.
    D [06/Dec/2013:14:31:22 +0100] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
    D [06/Dec/2013:14:31:28 +0100] [Client 14] GET /admin/log/error_log? HTTP/1.1
    D [06/Dec/2013:14:31:28 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
    D [06/Dec/2013:14:31:28 +0100] [Client 14] Authorized as root using Basic
    D [06/Dec/2013:14:31:28 +0100] [Client 14] Sending file.
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=20200, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=18152, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=16104, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=14056, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=12008, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=9960, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=7912, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=5864, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=3816, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=1768, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-280, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-2251, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-2451, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-2651, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-2851, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-3051, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-3251, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-3451, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-3651, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-3851, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-4051, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-4251, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-4451, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-4651, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-4851, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-5051, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-5251, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-5451, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-5651, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-5851, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-6051, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-6251, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-6451, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-6651, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-6851, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-7051, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-7251, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-7451, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-7651, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-7851, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-8051, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-8251, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-8451, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-8651, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-8851, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-9051, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-9251, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-9451, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-9651, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-9851, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-10051, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-10252, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-10453, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-10654, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-10855, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-11056, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-11257, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-11458, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-11659, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-11860, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-12061, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-12262, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-12463, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-12664, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-12865, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-13066, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-13267, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-13468, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-13669, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-13870, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-14071, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-14272, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-14473, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-14674, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-14875, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-15076, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-15277, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-15478, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-15679, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-15880, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-16081, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-16282, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-16483, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-16684, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-16885, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-17086, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-17287, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-17488, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-17689, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-17890, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-18091, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-18292, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-18493, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-18694, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-18895, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-19096, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-19297, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-19498, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-19699, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-19900, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-20101, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-20302, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-20503, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=-20704, response=(nil)(), pipe_pid=0, file=15
    D [06/Dec/2013:14:31:28 +0100] [Client 14] Closing on EOF
    D [06/Dec/2013:14:31:28 +0100] [Client 14] Closing connection.
    D [06/Dec/2013:14:31:28 +0100] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
    D [06/Dec/2013:14:31:29 +0100] [Client 14] Accepted from localhost:631 (IPv6)
    D [06/Dec/2013:14:31:29 +0100] [Client 14] Waiting for request.
    D [06/Dec/2013:14:31:29 +0100] [Client 14] GET /favicon.ico HTTP/1.1
    D [06/Dec/2013:14:31:29 +0100] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
    D [06/Dec/2013:14:31:29 +0100] [Client 14] No authentication data provided.
    D [06/Dec/2013:14:31:29 +0100] [Client 14] Closing because Keep-Alive disabled
    D [06/Dec/2013:14:31:29 +0100] [Client 14] Closing connection.
    D [06/Dec/2013:14:31:29 +0100] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
    I [06/Dec/2013:14:31:48 +0100] Generating printcap /etc/printcap...
    D [06/Dec/2013:14:31:48 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Dirty files"
    D [06/Dec/2013:14:31:55 +0100] [Client 14] Accepted from localhost:631 (IPv6)
    D [06/Dec/2013:14:31:55 +0100] [Client 14] Waiting for request.
    D [06/Dec/2013:14:31:55 +0100] [Client 15] Accepted from localhost:631 (IPv6)
    D [06/Dec/2013:14:31:55 +0100] [Client 15] Waiting for request.
    D [06/Dec/2013:14:31:55 +0100] [Client 16] Accepted from localhost:631 (IPv6)
    D [06/Dec/2013:14:31:55 +0100] [Client 16] Waiting for request.
    D [06/Dec/2013:14:31:55 +0100] [Client 17] Accepted from localhost:631 (IPv6)
    D [06/Dec/2013:14:31:55 +0100] [Client 17] Waiting for request.
    D [06/Dec/2013:14:31:55 +0100] [Client 18] Accepted from localhost:631 (IPv6)
    D [06/Dec/2013:14:31:55 +0100] [Client 18] Waiting for request.
    D [06/Dec/2013:14:31:55 +0100] [Client 19] Accepted from localhost:631 (IPv6)
    D [06/Dec/2013:14:31:55 +0100] [Client 19] Waiting for request.
    D [06/Dec/2013:14:31:56 +0100] [Client 14] GET /printers/ HTTP/1.1
    D [06/Dec/2013:14:31:56 +0100] cupsdSetBusyState: newbusy="Active clients", busy="Not busy"
    D [06/Dec/2013:14:31:56 +0100] [Client 14] No authentication data provided.
    D [06/Dec/2013:14:31:56 +0100] [CGI] argv[0] = "/usr/lib/cups/cgi-bin/printers.cgi"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[0] = "CUPS_CACHEDIR=/var/cache/cups"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[1] = "CUPS_DATADIR=/usr/share/cups"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[2] = "CUPS_DOCROOT=/usr/share/cups/doc"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[3] = "CUPS_FONTPATH=/usr/share/cups/fonts"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[4] = "CUPS_REQUESTROOT=/var/spool/cups"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[5] = "CUPS_SERVERBIN=/usr/lib/cups"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[6] = "CUPS_SERVERROOT=/etc/cups"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[7] = "CUPS_STATEDIR=/run/cups"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[8] = "HOME=/var/spool/cups/tmp"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[9] = "PATH=/usr/lib/cups/filter:/usr/bin:/usr/bin:/bin:/usr/bin"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[10] = "SERVER_ADMIN=root@AOD-255"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[11] = "SOFTWARE=CUPS/1.7.0"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[12] = "TMPDIR=/var/spool/cups/tmp"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[13] = "USER=root"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[14] = "CUPS_MAX_MESSAGE=2047"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[15] = "CUPS_SERVER=/run/cups/cups.sock"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[16] = "CUPS_ENCRYPTION=IfRequested"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[17] = "IPP_PORT=631"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[18] = "LANG=de_DE.UTF8"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[19] = "REDIRECT_STATUS=1"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[20] = "GATEWAY_INTERFACE=CGI/1.1"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[21] = "SERVER_NAME=localhost"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[22] = "SERVER_PORT=631"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[23] = "REMOTE_ADDR=[v1.::1]"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[24] = "REMOTE_HOST=localhost"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[25] = "SCRIPT_NAME=/printers/"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[26] = "SCRIPT_FILENAME=/usr/share/cups/doc/printers/"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[27] = "SERVER_PROTOCOL=HTTP/1.1"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[28] = "HTTP_COOKIE=org.cups.sid=b2c78295dd021592201110e11d3493a3"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[29] = "HTTP_USER_AGENT=Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.63 Safari/537.36"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[30] = "HTTP_REFERER=http://localhost:631/admin"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[31] = "REQUEST_METHOD=GET"
    D [06/Dec/2013:14:31:56 +0100] [CGI] envp[32] = "QUERY_STRING="
    D [06/Dec/2013:14:31:56 +0100] [CGI] Started /usr/lib/cups/cgi-bin/printers.cgi (PID 691)
    I [06/Dec/2013:14:31:56 +0100] [Client 14] Started "/usr/lib/cups/cgi-bin/printers.cgi" (pid=691)
    D [06/Dec/2013:14:31:56 +0100] [Client 14] file=20
    D [06/Dec/2013:14:31:56 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:56 +0100] [CGI] org.cups.sid cookie is "b2c78295dd021592201110e11d3493a3"
    D [06/Dec/2013:14:31:56 +0100] [CGI] cgiSetVariable: SECTION="printers"
    D [06/Dec/2013:14:31:56 +0100] [CGI] cgiSetVariable: REFRESH_PAGE=""
    D [06/Dec/2013:14:31:56 +0100] [Client 21] Accepted from localhost (Domain)
    D [06/Dec/2013:14:31:56 +0100] [Client 21] Waiting for request.
    D [06/Dec/2013:14:31:56 +0100] [Client 21] POST / HTTP/1.1
    D [06/Dec/2013:14:31:56 +0100] cupsdSetBusyState: newbusy="Active clients", busy="Active clients"
    D [06/Dec/2013:14:31:56 +0100] [Client 21] No authentication data provided.
    D [06/Dec/2013:14:31:56 +0100] [Client 21] 2.0 CUPS-Get-Default 1
    D [06/Dec/2013:14:31:56 +0100] CUPS-Get-Default
    D [06/Dec/2013:14:31:56 +0100] [Client 21] Returning IPP successful-ok for CUPS-Get-Default (no URI) from localhost
    D [06/Dec/2013:14:31:56 +0100] [Client 21] Content-Length: 202
    D [06/Dec/2013:14:31:56 +0100] [Client 21] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=202, response=0xb83f3388(IPP_IDLE), pipe_pid=0, file=-1
    D [06/Dec/2013:14:31:56 +0100] [Client 21] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
    D [06/Dec/2013:14:31:56 +0100] [Client 21] bytes=0, http_state=0, data_remaining=0
    D [06/Dec/2013:14:31:56 +0100] [Client 21] Waiting for request.
    D [06/Dec/2013:14:31:56 +0100] cupsdSetBusyState: newbusy="Active clients", busy="Active clients"
    D [06/Dec/2013:14:31:56 +0100] [CGI] cgiSetVariable: DEFAULT_NAME="Lexmark_Pro800Pro900_Series"
    D [06/Dec/2013:14:31:56 +0100] [CGI] cgiSetVariable: DEFAULT_URI="/printers/Lexmark_Pro800Pro900_Series"
    D [06/Dec/2013:14:31:56 +0100] [CGI] show_all_printers(http=0xb8bed528, user="(null)")
    D [06/Dec/2013:14:31:56 +0100] [CGI] cgiSetVariable: TITLE="Printers"
    D [06/Dec/2013:14:31:56 +0100] [CGI] cgiSetVariable: SERVER_NAME="localhost"
    D [06/Dec/2013:14:31:56 +0100] [CGI] cgiSetVariable: CUPS_VERSION="CUPS v1.7.0"
    D [06/Dec/2013:14:31:56 +0100] [Client 14] CGI data ready to be sent.
    D [06/Dec/2013:14:31:56 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=0, response=(nil)(), pipe_pid=691, file=20
    D [06/Dec/2013:14:31:56 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:56 +0100] Script header: Content-Type: text/html;charset=utf-8
    D [06/Dec/2013:14:31:56 +0100] Script header:
    D [06/Dec/2013:14:31:56 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=691, file=20
    D [06/Dec/2013:14:31:56 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:56 +0100] [Client 14] CGI data ready to be sent.
    D [06/Dec/2013:14:31:56 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=691, file=20
    D [06/Dec/2013:14:31:56 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:56 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=691, file=20
    D [06/Dec/2013:14:31:56 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:56 +0100] [Client 14] CGI data ready to be sent.
    D [06/Dec/2013:14:31:56 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=691, file=20
    D [06/Dec/2013:14:31:56 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:56 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=691, file=20
    D [06/Dec/2013:14:31:56 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:56 +0100] [Client 21] POST / HTTP/1.1
    D [06/Dec/2013:14:31:56 +0100] cupsdSetBusyState: newbusy="Active clients", busy="Active clients"
    D [06/Dec/2013:14:31:56 +0100] [Client 21] No authentication data provided.
    D [06/Dec/2013:14:31:56 +0100] [Client 21] 2.0 CUPS-Get-Printers 2
    D [06/Dec/2013:14:31:56 +0100] CUPS-Get-Printers
    D [06/Dec/2013:14:31:56 +0100] [Client 21] Returning IPP successful-ok for CUPS-Get-Printers (no URI) from localhost
    D [06/Dec/2013:14:31:56 +0100] [Client 21] Content-Length: 375
    D [06/Dec/2013:14:31:56 +0100] [Client 21] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=375, response=0xb83f3580(IPP_IDLE), pipe_pid=0, file=-1
    D [06/Dec/2013:14:31:56 +0100] [Client 21] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
    D [06/Dec/2013:14:31:56 +0100] [Client 21] bytes=0, http_state=0, data_remaining=0
    D [06/Dec/2013:14:31:56 +0100] [Client 21] Waiting for request.
    D [06/Dec/2013:14:31:56 +0100] cupsdSetBusyState: newbusy="Active clients", busy="Active clients"
    D [06/Dec/2013:14:31:56 +0100] [CGI] cgiSetVariable: TOTAL="1"
    D [06/Dec/2013:14:31:56 +0100] [CGI] cgiSetVariable: SERVER_NAME="localhost"
    D [06/Dec/2013:14:31:56 +0100] [CGI] cgiSetVariable: CUPS_VERSION="CUPS v1.7.0"
    D [06/Dec/2013:14:31:56 +0100] [CGI] cgiSetArray: printer_state[0]="3"
    D [06/Dec/2013:14:31:56 +0100] [CGI] cgiSetArray: printer_state_message[0]=""
    D [06/Dec/2013:14:31:56 +0100] [CGI] cgiSetArray: admin_uri[0]="/admin/"
    D [06/Dec/2013:14:31:56 +0100] [CGI] cgiSetArray: printer_uri_supported[0]="/printers/Lexmark_Pro800Pro900_Series"
    D [06/Dec/2013:14:31:56 +0100] [CGI] cgiSetArray: printer_name[0]="Lexmark_Pro800Pro900_Series"
    D [06/Dec/2013:14:31:56 +0100] [CGI] cgiSetArray: printer_location[0]=""
    D [06/Dec/2013:14:31:56 +0100] [CGI] cgiSetArray: printer_info[0]="Lexmark_Pro800Pro900_Series"
    D [06/Dec/2013:14:31:56 +0100] [CGI] cgiSetArray: printer_make_and_model[0]="Lexmark Pro800-Pro900 Series, 1.0"
    D [06/Dec/2013:14:31:56 +0100] [CGI] cgiSetVariable: THISURL="/printers/"
    D [06/Dec/2013:14:31:56 +0100] [Client 14] CGI data ready to be sent.
    D [06/Dec/2013:14:31:56 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=691, file=20
    D [06/Dec/2013:14:31:56 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:56 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=691, file=20
    D [06/Dec/2013:14:31:56 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:56 +0100] [Client 14] CGI data ready to be sent.
    D [06/Dec/2013:14:31:56 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=691, file=20
    D [06/Dec/2013:14:31:56 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:56 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=691, file=20
    D [06/Dec/2013:14:31:56 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:56 +0100] [Client 14] CGI data ready to be sent.
    D [06/Dec/2013:14:31:56 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=691, file=20
    D [06/Dec/2013:14:31:56 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:56 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=691, file=20
    D [06/Dec/2013:14:31:56 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:56 +0100] [Client 14] CGI data ready to be sent.
    D [06/Dec/2013:14:31:56 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=691, file=20
    D [06/Dec/2013:14:31:56 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:56 +0100] [Client 21] HTTP_STATE_WAITING Closing on EOF
    D [06/Dec/2013:14:31:56 +0100] [Client 21] Closing connection.
    D [06/Dec/2013:14:31:56 +0100] cupsdSetBusyState: newbusy="Active clients", busy="Active clients"
    D [06/Dec/2013:14:31:56 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=691, file=20
    D [06/Dec/2013:14:31:56 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:56 +0100] [Client 14] CGI data ready to be sent.
    D [06/Dec/2013:14:31:56 +0100] PID 691 (/usr/lib/cups/cgi-bin/printers.cgi) exited with no errors.
    D [06/Dec/2013:14:31:56 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=691, file=20
    D [06/Dec/2013:14:31:56 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:56 +0100] [Client 14] Waiting for request.
    D [06/Dec/2013:14:31:56 +0100] cupsdSetBusyState: newbusy="Not busy", busy="Active clients"
    D [06/Dec/2013:14:31:58 +0100] [Client 14] GET /printers/Lexmark_Pro800Pro900_Series HTTP/1.1
    D [06/Dec/2013:14:31:58 +0100] cupsdSetBusyState: newbusy="Active clients", busy="Not busy"
    D [06/Dec/2013:14:31:58 +0100] [Client 14] No authentication data provided.
    D [06/Dec/2013:14:31:58 +0100] [CGI] argv[0] = "/usr/lib/cups/cgi-bin/printers.cgi"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[0] = "CUPS_CACHEDIR=/var/cache/cups"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[1] = "CUPS_DATADIR=/usr/share/cups"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[2] = "CUPS_DOCROOT=/usr/share/cups/doc"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[3] = "CUPS_FONTPATH=/usr/share/cups/fonts"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[4] = "CUPS_REQUESTROOT=/var/spool/cups"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[5] = "CUPS_SERVERBIN=/usr/lib/cups"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[6] = "CUPS_SERVERROOT=/etc/cups"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[7] = "CUPS_STATEDIR=/run/cups"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[8] = "HOME=/var/spool/cups/tmp"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[9] = "PATH=/usr/lib/cups/filter:/usr/bin:/usr/bin:/bin:/usr/bin"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[10] = "SERVER_ADMIN=root@AOD-255"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[11] = "SOFTWARE=CUPS/1.7.0"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[12] = "TMPDIR=/var/spool/cups/tmp"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[13] = "USER=root"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[14] = "CUPS_MAX_MESSAGE=2047"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[15] = "CUPS_SERVER=/run/cups/cups.sock"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[16] = "CUPS_ENCRYPTION=IfRequested"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[17] = "IPP_PORT=631"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[18] = "LANG=de_DE.UTF8"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[19] = "REDIRECT_STATUS=1"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[20] = "GATEWAY_INTERFACE=CGI/1.1"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[21] = "SERVER_NAME=localhost"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[22] = "SERVER_PORT=631"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[23] = "REMOTE_ADDR=[v1.::1]"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[24] = "REMOTE_HOST=localhost"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[25] = "SCRIPT_NAME=/printers/Lexmark_Pro800Pro900_Series"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[26] = "SCRIPT_FILENAME=/usr/share/cups/doc/printers/Lexmark_Pro800Pro900_Series"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[27] = "PATH_INFO=/Lexmark_Pro800Pro900_Series"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[28] = "SERVER_PROTOCOL=HTTP/1.1"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[29] = "HTTP_COOKIE=org.cups.sid=b2c78295dd021592201110e11d3493a3"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[30] = "HTTP_USER_AGENT=Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.63 Safari/537.36"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[31] = "HTTP_REFERER=http://localhost:631/printers/"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[32] = "REQUEST_METHOD=GET"
    D [06/Dec/2013:14:31:58 +0100] [CGI] envp[33] = "QUERY_STRING="
    D [06/Dec/2013:14:31:58 +0100] [CGI] Started /usr/lib/cups/cgi-bin/printers.cgi (PID 692)
    I [06/Dec/2013:14:31:58 +0100] [Client 14] Started "/usr/lib/cups/cgi-bin/printers.cgi" (pid=692)
    D [06/Dec/2013:14:31:58 +0100] [Client 14] file=20
    D [06/Dec/2013:14:31:58 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:58 +0100] [CGI] org.cups.sid cookie is "b2c78295dd021592201110e11d3493a3"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetVariable: SECTION="printers"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetVariable: REFRESH_PAGE=""
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetVariable: PRINTER_NAME="Lexmark_Pro800Pro900_Series"
    D [06/Dec/2013:14:31:58 +0100] [Client 21] Accepted from localhost (Domain)
    D [06/Dec/2013:14:31:58 +0100] [Client 21] Waiting for request.
    D [06/Dec/2013:14:31:58 +0100] [Client 21] POST / HTTP/1.1
    D [06/Dec/2013:14:31:58 +0100] cupsdSetBusyState: newbusy="Active clients", busy="Active clients"
    D [06/Dec/2013:14:31:58 +0100] [Client 21] No authentication data provided.
    D [06/Dec/2013:14:31:58 +0100] [Client 21] 2.0 CUPS-Get-Default 1
    D [06/Dec/2013:14:31:58 +0100] CUPS-Get-Default
    D [06/Dec/2013:14:31:58 +0100] [Client 21] Returning IPP successful-ok for CUPS-Get-Default (no URI) from localhost
    D [06/Dec/2013:14:31:58 +0100] [Client 21] Content-Length: 202
    D [06/Dec/2013:14:31:58 +0100] [Client 21] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=202, response=0xb83f3388(IPP_IDLE), pipe_pid=0, file=-1
    D [06/Dec/2013:14:31:58 +0100] [Client 21] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
    D [06/Dec/2013:14:31:58 +0100] [Client 21] bytes=0, http_state=0, data_remaining=0
    D [06/Dec/2013:14:31:58 +0100] [Client 21] Waiting for request.
    D [06/Dec/2013:14:31:58 +0100] cupsdSetBusyState: newbusy="Active clients", busy="Active clients"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetVariable: DEFAULT_NAME="Lexmark_Pro800Pro900_Series"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetVariable: DEFAULT_URI="/printers/Lexmark_Pro800Pro900_Series"
    D [06/Dec/2013:14:31:58 +0100] [CGI] show_printer(http=0xb89f2578, printer="Lexmark_Pro800Pro900_Series")
    D [06/Dec/2013:14:31:58 +0100] [Client 21] POST / HTTP/1.1
    D [06/Dec/2013:14:31:58 +0100] cupsdSetBusyState: newbusy="Active clients", busy="Active clients"
    D [06/Dec/2013:14:31:58 +0100] [Client 21] No authentication data provided.
    D [06/Dec/2013:14:31:58 +0100] [Client 21] 2.0 Get-Printer-Attributes 2
    D [06/Dec/2013:14:31:58 +0100] Get-Printer-Attributes ipp://localhost/printers/Lexmark_Pro800Pro900_Series
    D [06/Dec/2013:14:31:58 +0100] [Client 21] Returning IPP successful-ok for Get-Printer-Attributes (ipp://localhost/printers/Lexmark_Pro800Pro900_Series) from localhost
    D [06/Dec/2013:14:31:58 +0100] [Client 21] Content-Length: 693
    D [06/Dec/2013:14:31:58 +0100] [Client 21] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=693, response=0xb83f3580(IPP_IDLE), pipe_pid=0, file=-1
    D [06/Dec/2013:14:31:58 +0100] [Client 21] Writing IPP response, ipp_state=DATA, old wused=0, new wused=0
    D [06/Dec/2013:14:31:58 +0100] [Client 21] bytes=0, http_state=0, data_remaining=0
    D [06/Dec/2013:14:31:58 +0100] [Client 21] Waiting for request.
    D [06/Dec/2013:14:31:58 +0100] cupsdSetBusyState: newbusy="Active clients", busy="Active clients"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetVariable: SERVER_NAME="localhost"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetVariable: CUPS_VERSION="CUPS v1.7.0"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetVariable: SERVER_NAME="localhost"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetVariable: CUPS_VERSION="CUPS v1.7.0"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetArray: printer_is_accepting_jobs[0]="1"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetArray: printer_is_shared[0]="1"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetArray: printer_state[0]="3"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetArray: admin_uri[0]="/admin/"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetArray: printer_uri_supported[0]="/printers/Lexmark_Pro800Pro900_Series"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetArray: printer_name[0]="Lexmark_Pro800Pro900_Series"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetArray: printer_location[0]=""
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetArray: printer_info[0]="Lexmark_Pro800Pro900_Series"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetArray: job_sheets_default[0]="none, none"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetArray: device_uri[0]="lxhcp://002000A3422C"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetArray: color_supported[0]="1"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetArray: printer_make_and_model[0]="Lexmark Pro800-Pro900 Series, 1.0"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetArray: media_default[0]="na_letter_8.5x11in"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetArray: sides_supported[0]="one-sided, two-sided-long-edge, two-sided-short-edge"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetArray: sides_default[0]="one-sided"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetArray: printer_commands[0]="none"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetArray: server_is_sharing_printers[0]="0"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetVariable: TITLE="Lexmark_Pro800Pro900_Series"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetVariable: SERVER_NAME="localhost"
    D [06/Dec/2013:14:31:58 +0100] [CGI] cgiSetVariable: CUPS_VERSION="CUPS v1.7.0"
    D [06/Dec/2013:14:31:58 +0100] [Client 14] CGI data ready to be sent.
    D [06/Dec/2013:14:31:58 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=0, response=(nil)(), pipe_pid=692, file=20
    D [06/Dec/2013:14:31:58 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:58 +0100] Script header: Content-Type: text/html;charset=utf-8
    D [06/Dec/2013:14:31:58 +0100] Script header:
    D [06/Dec/2013:14:31:58 +0100] [Client 14] cupsdWriteClient error=0, used=0, state=HTTP_STATE_GET_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=692, file=20
    D [06/Dec/2013:14:31:58 +0100] [Client 14] Waiting for CGI data.
    D [06/Dec/2013:14:31:58 +0100] [Client 14] CGI data

    zezke wrote:
    Hi, i've just installed Arch with LXDE on my netbook, but despite all my efforts, automount still doesn't work. What i've done so far:
    -installed pmount (didn't configure anything, because this isn't mentioned anywhere)
    -added myself to the hal group
    -put hal in the daemons (it boots in the background, but this shouldn't affect automounting).
    Anything i forgot?
    There were some reports to fix automounting you needed to change the PolicyKit file. Have you done that yet?
    Here's the link
    Last edited by Inxsible (2009-03-06 16:44:44)

  • TagExtraInfo example in weblogic 5.1 doesn't work!!!!!

              Hi
              i was trying example given in weblogic 5.1 i.e. session list. that uses tagextrainfo
              class to set the attributes in JSP. but it doesn't work.
              Please respond to this error.
              i am attaching error docs error.txt
              On Browser
              Compilation of 'E:\weblogic\myserver\classfiles\jsp_servlet\_sessionlist.java'
              failed:
              E:\weblogic\myserver\classfiles\jsp_servlet\_sessionlist.java:93: cannot resolve
              symbol
              probably occurred due to an error in /SessionList.jsp line 49:
              <td><%= name %></td>
              E:\weblogic\myserver\classfiles\jsp_servlet\_sessionlist.java:95: cannot resolve
              symbol
              probably occurred due to an error in /SessionList.jsp line 50:
              <td><%= value %></td>
              E:\weblogic\myserver\classfiles\jsp_servlet\_sessionlist.java:99: cannot resolve
              symbol
              probably occurred due to an error in /SessionList.jsp line 51:
              <td><a href="<%=request.getRequestURI()%>?action=delete&delName=<%=name%>">
              On Server Console
              Mon Oct 08 18:26:06 GMT+05:30 2001:<I> <ServletContext-General> looking for taglib
              uri session.tld a
              s resource /WEB-INF/session.tld in Web Application root:
              Mon Oct 08 18:26:10 GMT+05:30 2001:<I> <ServletContext-General> Generated java
              file: E:\weblogic\mys
              erver\classfiles\jsp_servlet\_sessionlist.java
              Mon Oct 08 18:26:29 GMT+05:30 2001:<E> <ServletContext-General> Compilation of
              E:\weblogic\myserver\
              classfiles\jsp_servlet\_sessionlist.java failed:
              E:\weblogic\myserver\classfiles\jsp_servlet\_sessionlist.java:93: cannot resolve
              symbol
              symbol : variable name
              location: class jsp_servlet._sessionlist
              out.print(weblogic.utils.StringUtils.valueOf( name )); //[ /SessionList.jsp;
              Line: 49]
              ^
              E:\weblogic\myserver\classfiles\jsp_servlet\_sessionlist.java:95: cannot resolve
              symbol
              symbol : variable value
              location: class jsp_servlet._sessionlist
              out.print(weblogic.utils.StringUtils.valueOf( value )); //[ /SessionList.jsp;
              Line: 50]
              ^
              E:\weblogic\myserver\classfiles\jsp_servlet\_sessionlist.java:99: cannot resolve
              symbol
              symbol : variable name
              location: class jsp_servlet._sessionlist
              out.print(weblogic.utils.StringUtils.valueOf(name)); //[ /SessionList.jsp;
              Line: 51]
              ^
              3 errors
              java.io.IOException: Compiler failed executable.exec([Ljava.lang.String;[d:/jdk1.3/bin/javac.exe,
              -c
              lasspath, d:\jdk1.3\jre\lib\rt.jar;d:\jdk1.3\jre\lib\i18n.jar;d:\jdk1.3\jre\lib\sunrsasign.jar;d:\jd
              k1.3\jre\classes;.\lib\weblogic510sp10boot.jar;.\classes\boot;.\eval\cloudscape\lib\cloudscape.jar;d
              :\jdk1.3\lib\tools.jar;;.\license;.\lib\weblogic510sp10.jar;.\classes;.\lib\weblogicaux.jar;.\myserv
              er\serverclasses;E:\weblogic\myserver\servletclasses;E:\weblogic\myserver\public_html;E:\weblogic\my
              server\classfiles;null, -d, E:\weblogic\myserver\classfiles, E:\weblogic\myserver\classfiles\jsp_ser
              vlet\_sessionlist.java])
              at weblogic.utils.compiler.CompilerInvoker.compileMaybeExit(CompilerInvoker.java:459)
              at weblogic.utils.compiler.CompilerInvoker.compile(CompilerInvoker.java:249)
              at weblogic.servlet.jsp.JspStub.compilePage(JspStub.java:366)
              at weblogic.servlet.jsp.JspStub.prepareServlet(JspStub.java:227)
              at weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.java:200)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:115)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:138)
              at weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImpl.java:922)
              at weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImpl.java:886)
              at weblogic.servlet.internal.ServletContextManager.invokeServlet(ServletContextManager.java:
              269)
              at weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.java:380)
              at weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:268)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)
              Mon Oct 08 18:26:31 GMT+05:30 2001:<E> <ServletContext-General> Servlet failed
              with Exception
              java.io.IOException: Compiler failed executable.exec([Ljava.lang.String;[d:/jdk1.3/bin/javac.exe,
              -c
              lasspath, d:\jdk1.3\jre\lib\rt.jar;d:\jdk1.3\jre\lib\i18n.jar;d:\jdk1.3\jre\lib\sunrsasign.jar;d:\jd
              k1.3\jre\classes;.\lib\weblogic510sp10boot.jar;.\classes\boot;.\eval\cloudscape\lib\cloudscape.jar;d
              :\jdk1.3\lib\tools.jar;;.\license;.\lib\weblogic510sp10.jar;.\classes;.\lib\weblogicaux.jar;.\myserv
              er\serverclasses;E:\weblogic\myserver\servletclasses;E:\weblogic\myserver\public_html;E:\weblogic\my
              server\classfiles;null, -d, E:\weblogic\myserver\classfiles, E:\weblogic\myserver\classfiles\jsp_ser
              vlet\_sessionlist.java])
              at weblogic.utils.compiler.CompilerInvoker.compileMaybeExit(CompilerInvoker.java:459)
              at weblogic.utils.compiler.CompilerInvoker.compile(CompilerInvoker.java:249)
              at weblogic.servlet.jsp.JspStub.compilePage(JspStub.java:366)
              at weblogic.servlet.jsp.JspStub.prepareServlet(JspStub.java:227)
              at weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.java:200)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:115)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:138)
              at weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImpl.java:922)
              at weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImpl.java:886)
              at weblogic.servlet.internal.ServletContextManager.invokeServlet(ServletContextManager.java:
              269)
              at weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.java:380)
              at weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:268)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)
              waitng for answer.
              Regards
              Abhi
    </a>

              Hi
              i was trying example given in weblogic 5.1 i.e. session list. that uses tagextrainfo
              class to set the attributes in JSP. but it doesn't work.
              Please respond to this error.
              i am attaching error docs error.txt
              On Browser
              Compilation of 'E:\weblogic\myserver\classfiles\jsp_servlet\_sessionlist.java'
              failed:
              E:\weblogic\myserver\classfiles\jsp_servlet\_sessionlist.java:93: cannot resolve
              symbol
              probably occurred due to an error in /SessionList.jsp line 49:
              <td><%= name %></td>
              E:\weblogic\myserver\classfiles\jsp_servlet\_sessionlist.java:95: cannot resolve
              symbol
              probably occurred due to an error in /SessionList.jsp line 50:
              <td><%= value %></td>
              E:\weblogic\myserver\classfiles\jsp_servlet\_sessionlist.java:99: cannot resolve
              symbol
              probably occurred due to an error in /SessionList.jsp line 51:
              <td><a href="<%=request.getRequestURI()%>?action=delete&delName=<%=name%>">
              On Server Console
              Mon Oct 08 18:26:06 GMT+05:30 2001:<I> <ServletContext-General> looking for taglib
              uri session.tld a
              s resource /WEB-INF/session.tld in Web Application root:
              Mon Oct 08 18:26:10 GMT+05:30 2001:<I> <ServletContext-General> Generated java
              file: E:\weblogic\mys
              erver\classfiles\jsp_servlet\_sessionlist.java
              Mon Oct 08 18:26:29 GMT+05:30 2001:<E> <ServletContext-General> Compilation of
              E:\weblogic\myserver\
              classfiles\jsp_servlet\_sessionlist.java failed:
              E:\weblogic\myserver\classfiles\jsp_servlet\_sessionlist.java:93: cannot resolve
              symbol
              symbol : variable name
              location: class jsp_servlet._sessionlist
              out.print(weblogic.utils.StringUtils.valueOf( name )); //[ /SessionList.jsp;
              Line: 49]
              ^
              E:\weblogic\myserver\classfiles\jsp_servlet\_sessionlist.java:95: cannot resolve
              symbol
              symbol : variable value
              location: class jsp_servlet._sessionlist
              out.print(weblogic.utils.StringUtils.valueOf( value )); //[ /SessionList.jsp;
              Line: 50]
              ^
              E:\weblogic\myserver\classfiles\jsp_servlet\_sessionlist.java:99: cannot resolve
              symbol
              symbol : variable name
              location: class jsp_servlet._sessionlist
              out.print(weblogic.utils.StringUtils.valueOf(name)); //[ /SessionList.jsp;
              Line: 51]
              ^
              3 errors
              java.io.IOException: Compiler failed executable.exec([Ljava.lang.String;[d:/jdk1.3/bin/javac.exe,
              -c
              lasspath, d:\jdk1.3\jre\lib\rt.jar;d:\jdk1.3\jre\lib\i18n.jar;d:\jdk1.3\jre\lib\sunrsasign.jar;d:\jd
              k1.3\jre\classes;.\lib\weblogic510sp10boot.jar;.\classes\boot;.\eval\cloudscape\lib\cloudscape.jar;d
              :\jdk1.3\lib\tools.jar;;.\license;.\lib\weblogic510sp10.jar;.\classes;.\lib\weblogicaux.jar;.\myserv
              er\serverclasses;E:\weblogic\myserver\servletclasses;E:\weblogic\myserver\public_html;E:\weblogic\my
              server\classfiles;null, -d, E:\weblogic\myserver\classfiles, E:\weblogic\myserver\classfiles\jsp_ser
              vlet\_sessionlist.java])
              at weblogic.utils.compiler.CompilerInvoker.compileMaybeExit(CompilerInvoker.java:459)
              at weblogic.utils.compiler.CompilerInvoker.compile(CompilerInvoker.java:249)
              at weblogic.servlet.jsp.JspStub.compilePage(JspStub.java:366)
              at weblogic.servlet.jsp.JspStub.prepareServlet(JspStub.java:227)
              at weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.java:200)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:115)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:138)
              at weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImpl.java:922)
              at weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImpl.java:886)
              at weblogic.servlet.internal.ServletContextManager.invokeServlet(ServletContextManager.java:
              269)
              at weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.java:380)
              at weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:268)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)
              Mon Oct 08 18:26:31 GMT+05:30 2001:<E> <ServletContext-General> Servlet failed
              with Exception
              java.io.IOException: Compiler failed executable.exec([Ljava.lang.String;[d:/jdk1.3/bin/javac.exe,
              -c
              lasspath, d:\jdk1.3\jre\lib\rt.jar;d:\jdk1.3\jre\lib\i18n.jar;d:\jdk1.3\jre\lib\sunrsasign.jar;d:\jd
              k1.3\jre\classes;.\lib\weblogic510sp10boot.jar;.\classes\boot;.\eval\cloudscape\lib\cloudscape.jar;d
              :\jdk1.3\lib\tools.jar;;.\license;.\lib\weblogic510sp10.jar;.\classes;.\lib\weblogicaux.jar;.\myserv
              er\serverclasses;E:\weblogic\myserver\servletclasses;E:\weblogic\myserver\public_html;E:\weblogic\my
              server\classfiles;null, -d, E:\weblogic\myserver\classfiles, E:\weblogic\myserver\classfiles\jsp_ser
              vlet\_sessionlist.java])
              at weblogic.utils.compiler.CompilerInvoker.compileMaybeExit(CompilerInvoker.java:459)
              at weblogic.utils.compiler.CompilerInvoker.compile(CompilerInvoker.java:249)
              at weblogic.servlet.jsp.JspStub.compilePage(JspStub.java:366)
              at weblogic.servlet.jsp.JspStub.prepareServlet(JspStub.java:227)
              at weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.java:200)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:115)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:138)
              at weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImpl.java:922)
              at weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImpl.java:886)
              at weblogic.servlet.internal.ServletContextManager.invokeServlet(ServletContextManager.java:
              269)
              at weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.java:380)
              at weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:268)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)
              waitng for answer.
              Regards
              Abhi
    </a>

  • Apache Sling JCR Resource Resolver doesn't work for the anchor tags which is been rendered through j

    Certainly I realized that Apache Sling JCR Resource Resolver doesn't work for the anchor tags which is been rendered through jquery or javascript.
    e.g.
    In Felix Console , in Apache Sling JCR Resource Resolver configuration I have added following mapping.
    /content/myproject/-/
    So If any anchor tag is there like <a href="/content/myproject/en.html"> click me </a> then it will be mapped to "/en.html" automatically.
    But the problem is there in following scenario.
    I have an anchor tag as follows.
    <a href="#" id="test"> click here </a>
    And I am assigning the href to anchor through JQUERY.
    <script>
    $("#test").attr("href","/content/myproject/en.html");
    </script>
    Ideally this should have been mapped to "/en.html".
    But it is not mapping to "/en.html". It still shows "/content/myproject/en.html".
    How to resolve this.
    Thanks,
    Sai

    In a servlet you have access to the resourceResolver so if you know which attributes contain links then it's relatively easy to apply resourceResolver.map to those links.
    Your challenge is clearly how do you know which attributes are links and which aren't. Its is the same challenge that makes parsing the response and rewriting it on the way out difficult - the JSON doesn't have any semantic meaning so how do identify which attributes require rewriting. There really is no good answer ot that question in my experience - all the options have down sides.
    Create some convention - all attributes matching this pattern X get mapped before being converted to JSON (could be attributes whose name ends in link, or it could a convention applied to the value of the attribute - if the attribute is a string that starts with /content apply the resource resolver mapping. In this case you have train your developers to follow this convention which is the down side.
    Create some configurable list of attribute names that require mapping. This is brittle, requires training and is easy to break.
    Implement a client side version of the resource resolver mapping. It wouldn't be as full proof as server side mapping (because that takes into account but you could make it work for simple logic like stripping of /content/site/en. If ou are just trying to solve the simple version of this issue - stripping off the top of the repository path this might be your best option.
    Not worry about it and set up Apache 301 redirects that catch any long URLs and redirect them to short URLs (so configure apache to look for any URL matching /content/site/en and strip off /content/site/en and do a 301 redirect to the shortened URL. You end up with a lot of extra HTTP request because of all the 301s but it would work (I wouldn't recommend this option - but it is possible).

Maybe you are looking for

  • How do I transfer my music from one computer to another?

    I just bought a new Mac. My iTunes library was on an external hard drive associated with my old Mac. When I import the music, it creates a large "unknown album" with music that was previously identified -- mostly WAV and AIFF files. How do I get iTun

  • I need a utility that allows OC from within windows

    Hi, I have a P6N SLI V2 mobo, E4400, 7600gt, 1gb ddrII 800Mhz running XP pro sp2. The MSI utility "dual core center" is absolutely useless as it won't let me access any MB parameters (maybe MSI should test their f***ing software before they ship it),

  • Question on free trials

    I currently use Paint Shop Pro. I want to try CS6 before I buy it my friend said you offer a 30 day free trial. I did not find the down load link on the site? Am I overlooking it?

  • I removed the settings icon from a new Flame phone, cannot get it back on the homescreen

    I was editing the homescreen page, by holding down and being able to move the icons and I inadvertently dragged away the settings gear icon, I didn't get any delete confirm or anything it just disappeared. Now I tried to retrieve the setting icon by

  • Product purchase and previous installs of trial version

    I entered the serial number to my previously downloaded Trial Version of Illustrator versus using the DVD I purchased. When I need to install the other programs from the DVD, will there be a time limit for me to do so? Also I like all my CS6 software