Intermittent FileNotFoundException exception when writing files

OS: Windows
JRE 1.3.1
I have an application that tries to write files to an existing folder (overwriting the files that are already there). This code is run very often at my site, and I�ve never had a problem. At some customer sites, we get an intermittent exception:
java.io.FileNotFoundException (Cannot create a file when that file already exists).
Each time it is run and the exception occurs, a different file takes the hit. Sometimes running against one folder works and against another doesn�t, on the same machine. I don�t think file protections are an issue (if I try to reproduce the problem by marking a file to be written over as read-only, I get an �access denied� exception on that file consistently).
Of course, it is intermittent at just a few sites, and I can�t reproduce it myself.
I�m wondering if it is possible that some other process (say a virus scan or back-up utility) is temporarily locking files in a way such that when I do my FileOutputStream.write() I catch this exception. Has anyone seen or heard of anything like this?
Thanks,
Paul

Are you sure you are not accidently trying to open an output stream on a directory? From the API docs:
FileOutputStream
public FileOutputStream(File file)
                 throws FileNotFoundExceptionCreates a file output stream to write to the file represented by the specified File object. A new FileDescriptor object is created to represent this file connection.
First, if there is a security manager, its checkWrite method is called with the path represented by the file argument as its argument.
If the file exists but is a directory rather than a regular file, does not exist but cannot be created, or cannot be opened for any other reason then a FileNotFoundException is thrown.
Parameters:
file - the file to be opened for writing.
Throws:
FileNotFoundException - if the file exists but is a directory rather than a regular file, does not exist but cannot be created, or cannot be opened for any other reason
SecurityException - if a security manager exists and its checkWrite method denies write access to the file.
See Also:
File.getPath(), SecurityException, SecurityManager.checkWrite(java.lang.String)Note the case where a FileNotFoundException will be thrown.
- Saish

Similar Messages

  • Need help. I am running a 27 in imac with 16 gigs of ram. Photoshop runs really fast, except when opening files. It takes 5-10 minutes to open even a small file of 1 meg. I cleaned and validated all the fonts and removed all questionable fonts. Reset pref

    Need help. I am running a 27 in imac with 16 gigs of ram. Photoshop runs really fast, except when opening files. It takes 5-10 minutes to open even a small file of 1 meg. I cleaned and validated all the fonts and removed all questionable fonts. Reset preferences and still have problem. Slow to open and in force quit "Photoshop not responding" At this point should I uninstall and start over.

    What are the performance Preferences?

  • Itunes 9.2.1.5 "Error when writing file C:\program files\apple software....

    Got an error message when installing itues 9.2.1.5 "Error when writing file C:\program files\apple software update\softwareupdate.exe you do not have admin right to read/write the menu." "寫入檔案時發生錯誤 C:\program files\apple software update\softwareupdate.exe 你沒有權限存取目錄"
    There is no "apple software update" folder in my C:\program files\
    I tried to uninstalled all apple related software, restart the computer and reinstall the itunes, I still get this error message.
    It appears that the installation of quicktime was successful.

    After the last update I get "QuickTime was not found" Error I have uninstalled and re-installed itunes 9.2.1.5. several times but the problem persists

  • ORA-29283 when writing file to server

    I am trying to setup procedure that writes the result of a query to a file on the database server. I am currently testing the writing of file using some generic code.
    The database is on Red Hat Linux. The directory was created on the server as the mfts_user account and the oracle user granted read/write access. This was verified by logging into the server as oracle and creating a file via "touch test.txt".
    The following 2 procedures/functions were created to test utl_file:
    create or replace FUNCTION dump_csv ( p_query IN VARCHAR2
    , p_separator IN VARCHAR2 DEFAULT ','
    , p_dir IN VARCHAR2
    , p_filename IN VARCHAR2)
    RETURN NUMBER
    AS
    l_output utl_file.file_type;
    l_thecursor INTEGER DEFAULT dbms_sql.open_cursor;
    l_columnvalue VARCHAR2(2000);
    l_status INTEGER;
    l_colcnt NUMBER DEFAULT 0;
    l_separator VARCHAR2(10) DEFAULT '';
    l_cnt NUMBER DEFAULT 0;
    BEGIN
    l_output := utl_file.fopen(p_dir, p_filename, 'w');
    dbms_sql.parse(l_thecursor, p_query, dbms_sql.native);
    FOR i IN 1 .. 255
    LOOP
    BEGIN
    dbms_sql.define_column(l_thecursor, i, l_columnvalue, 2000);
    l_colcnt := i;
    EXCEPTION
    WHEN others
    THEN
    IF(SQLCODE = -1007) THEN
    EXIT;
    ELSE
    RAISE;
    END IF;
    END;
    END LOOP;
    dbms_sql.define_column(l_thecursor, 1, l_columnvalue, 2000);
    l_status := dbms_sql.EXECUTE(l_thecursor);
    LOOP
    EXIT WHEN(dbms_sql.fetch_rows(l_thecursor) <= 0);
    l_separator := '';
    FOR i IN 1 .. l_colcnt
    LOOP
    dbms_sql.column_value(l_thecursor, i, l_columnvalue);
    utl_file.put(l_output, l_separator || l_columnvalue);
    l_separator := p_separator;
    END LOOP;
    utl_file.new_line(l_output);
    l_cnt := l_cnt + 1;
    END LOOP;
    dbms_sql.close_cursor(l_thecursor);
    utl_file.fclose(l_output);
    RETURN l_cnt;
    END dump_csv;
    create or replace PROCEDURE TEST_DUMP_CSV
    AS
    l_count NUMBER;
    l_fn VARCHAR2(30);
    BEGIN
    SELECT TO_CHAR(SYSDATE,'YYYYMMDDHH24MISS') INTO l_fn FROM DUAL;
    l_count := dump_csv( p_query => 'select * from coreq',
    p_separator => ',',
    p_dir => 'OUTBOUND_NEW_DIR',
    p_filename => 'dump_csv' || l_fn || '.csv' );
    dbms_output.put_line( to_char(l_count) || ' rows extracted to file dump_csv' || l_fn || '.csv.' );
    END TEST_DUMP_CSV;
    To test utl_file, I execute as the MAXIMO user:
    CREATE OR REPLACE DIRECTORY outbound_new_dir AS '/home/mfts_user/Maximo/outbound_new';
    select dump_csv('select * from coreq', ',', 'OUTBOUND_NEW_DIR', 'dump_csv.csv' ) from dual;
    Here is the error I get:
    ORA-29283: invalid file operation
    ORA-06515: at "SYS.UTL_FILE", line 449
    ORA-29283: invalid file operation
    ORA-06512: at "MAXIMO.DUMP_CSV", line 15
    ORA-06512: at line 1
    This same setup works on Windows XP when logged in as an Admin user, which tells me that the syntax and logic is correct.
    What could be wrong with the Linux setup?

    Yes. I read that read/write is automatically granted to the user that creates the DIRECTORY object.
    The result of the query you gave was 2 records:
    GRANTOR GRANTEE TABLE_SCHEMA TABLE_NAME PRIVILEGE GRANTABLE HIERARCHY
    SYS     MAXIMO     SYS     OUTBOUND_NEW_DIR     READ     YES     NO
    SYS     MAXIMO     SYS     OUTBOUND_NEW_DIR     WRITE     YES     NO

  • Java Does Not Throw Exception When Writing To Read-Only Files

    I have noticed that when I try to write to a read-only file in a window environment, Java does not throw an IOExcpetion, it just dosn't write to the file.
    I am writing an FTP server and here is the code:
         public static long copyStream(InputStream in, OutputStream out)throws IOException
              IOException exception = null;
              long copied = 0;
              try
                   byte buffer[] = new byte[1024];
                   int read;
                   while((read = in.read(buffer)) != -1)
                        out.write(buffer, 0, read);
                        copied += read;
              catch(IOException e)
                   //ensures that the streams are closed.
                   exception = e;
              try
                   in.close();//ensures output stream gets closed, even if there is an
                   //excption here.
              catch(IOException e){exception = e;}
              out.close();//try to close output.
              if(exception != null)
                   //exception is not null, an exception has occured.
                   //rethrow exception.
                   throw exception;
              return copied;//all ok, return bytes copied.
         }Is this a bug in JAVA VM? Is so, how should I report it?

    I have noticed that when I try to write to a read-only file in a window environment,
    Java does not throw an IOExcpetion, it just dosn't write to the file.C:\source\java\Markov>attrib readonly.out
    A R C:\source\java\Markov\readonly.out
    �C:\source\java\Markov>java b
    java.io.FileNotFoundException: readonly.out (Access is denied)
    at java.io.FileOutputStream.open(Native Method)
    at java.io.FileOutputStream.<init>(Unknown Source)
    at java.io.FileOutputStream.<init>(Unknown Source)
    at b.main(b.java:5)
    import java.io.*;
    public class b {
        public static void main(String[] args) {
         try     {
              OutputStream os = new FileOutputStream ( "readonly.out");
         catch (Exception e) {
              e.printStackTrace();
    }

  • Is there anyway to handle an exception when a file is being read?

    Let's say that I have a BPEL process that is initiated when the polling File Reader finds a file (flat file) to process. I've noticed before that if the flat file it finds does not have enough characters in one of the record lines, the reading of the file will fail and an error message appears in the server logs.
    Is there anyway to handle this error/exception and proceed, through BPEL, to send notifications...etc?

    When file is read your main bpel process doesn't come in the picture, it is done via File adapter. If adapter fails to read, you can call second bpel process (rejection handler, which implements specific interface and reads as opaque).
    In nut-shell, you will need one more proccess, but that can be genaric and shared across the enterprise.
    Regards,
    Chintan

  • Strange characters when writing files

    I've made a program using a FileWriter. The program is coded and compiled on a Linux PC. I'm using the filewriter to dynamically write HTML-lines. I use "\r" to write returns. On my Linux PC and on my Windows XP sp2 laptop it works fine. On the PC of a friend it does not work correctly. It sees the "\r" as an unknown character. The browser also comments on that (illegal character). She also has Windows XP sp 2 installed running explorer 6. What could be the solution for this problem? Should I recompile on my friends PC? It is strange though. We use the same Java version (1.5).

    I don't know why you aren't using a print writer (with a println) method.
    Regardless with text files you will always find that they will render correctly on one system and not another because different systems have different line seperators and some software is pretty crappy when it comes to display and gets it's knickers in a knot when it sees line seperators it doesn't like. i.e. Notepad.

  • Illegal State Exception when uploading file

              I am getting the following error in a jsp page that does a upload
              of a file. My enviorment is WL6.0 SP1 and it seems to occur
              when I do a pageContext.forward("xxx.jsp")
              java.lang.IllegalStateException: One of the getParameter family
              of methods calle
              d after reading from the ServletInputStream(), can't mix these
              two!
              at weblogic.servlet.internal.ServletRequestImpl.mergePostParams(ServletR
              equestImpl.java:664)
              at weblogic.servlet.internal.ServletRequestImpl.parseQueryParams(Servlet
              RequestImpl.java:585)
              at weblogic.servlet.internal.ServletRequestImpl.parseQueryParams(Servlet
              RequestImpl.java:578)
              at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispat
              cherImpl.java:124)
              at weblogic.servlet.jsp.PageContextImpl.forward(PageContextImpl.java:111
              at jsp_servlet._processagencylogoselection._jspService(_processagencylog
              oselection.java:444)
              at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
              pl.java:213)
              at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppSe
              rvletContext.java:1265)
              at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestIm
              pl.java:1622)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              >
              Any help would greatly be appreciated.
              

    Mike,
              You should not use request.getParameter before getInputStream as per servlet spec.
              Mike G wrote:
              > Yes I do within a servlet, but I don't understand why this would
              > occur though. Maybe it's because the content type is
              > multipart/x-mixed-replace;boundary=End????
              >
              > Mettu Kumar <[email protected]> wrote:
              > >Did you use request.getParameter before calling request.getInputStream
              > >?
              > >Looks like this is causing the error.
              > >
              > >Kumar.
              > >
              > >Mike G wrote:
              > >
              > >> I am getting the following error in a jsp page that
              > >does a upload
              > >> of a file. My enviorment is WL6.0 SP1 and it seems
              > >to occur
              > >> when I do a pageContext.forward("xxx.jsp")
              > >>
              > >> java.lang.IllegalStateException: One of the getParameter
              > >family
              > >> of methods calle
              > >> d after reading from the ServletInputStream(), can't
              > >mix these
              > >> two!
              > >> at weblogic.servlet.internal.ServletRequestImpl.mergePostParams(ServletR
              > >> equestImpl.java:664)
              > >> at weblogic.servlet.internal.ServletRequestImpl.parseQueryParams(Servlet
              > >> RequestImpl.java:585)
              > >> at weblogic.servlet.internal.ServletRequestImpl.parseQueryParams(Servlet
              > >> RequestImpl.java:578)
              > >> at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispat
              > >> cherImpl.java:124)
              > >> at weblogic.servlet.jsp.PageContextImpl.forward(PageContextImpl.java:111
              > >> )
              > >> at jsp_servlet._processagencylogoselection._jspService(_processagencylog
              > >> oselection.java:444)
              > >> at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
              > >> at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
              > >> pl.java:213)
              > >> at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppSe
              > >> rvletContext.java:1265)
              > >> at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestIm
              > >> pl.java:1622)
              > >> at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
              > >> at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              > >> >
              > >> Any help would greatly be appreciated.
              > >
              

  • Null Exception when XSL Files longer than 8192 char

    javax.servlet.jsp.JspException: Error applying stylesheet stylesheets/Sds.xsl 8192
    This is the error message obtained where transforming applying an XSL sheet longuer then 8K !
    How can we use XSL files > 8k ??
    Context:
    Oracle9iAS (9.0.3.0.0) Containers for J2EE
    Source code for JSP:
    <%@ taglib uri="/WEB-INF/jml.tld" prefix="jml" %>
    <jml:transform href="stylesheets/Sds.xsl">
    </jml:transform>

    Thanks Francois. Here is the part of the code used:
              pl := create_parameter_list('REC');
              add_parameter(pl, 'P_COUS', text_parameter, rtrim                    (:content.TLAST_NAME||', '||:content.TFIRST_NAME, ', '));
         new_form('C_DETAILS', no_rollback, no_query_only, pl);
    It works with:
    MAIN STREET RESTAURANT & PUB
    but
    SOUTH MAIN STREET RESTAURANT & PUB
    I set the corresponding parameter, PARAMETER.P_COUS length to char 100.
    Thank you again.
    Jimmy
    Message was edited by:
    Jimmy

  • Latest update of 10.6.8 freezes while writing files

    When I try to complete the latest update for 10.6.8 I follow the prompts for the restart and the update begins. Except when the files are writing, the update freezes and will not complete and I have to manually shut down my MacBook. I have tried to complete the update at least 3 times were no success. Help please!

    ultimately i solved the problem by downloading the update from support directly ( http://support.apple.com/kb/DL1400 ) and  installing it from the dmg.
    but to read in the log did not seem to help /-:
    had to go to View->Show log list, then mine was /private/var/log
    the below was all i saw. nothing seemed relevant.
    Sep 20 15:08:50 Cristobal Software Update[7003]: JS: Printing drivers update available for HP_CHorse. (return value 2)
    Sep 20 17:16:45 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:16:45 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:16:45 Cristobal Software Update[7003]: JS: Printer EPSON_DriverCommon029 does not require an update.
    Sep 20 17:16:45 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:16:45 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:16:45 Cristobal Software Update[7003]: JS: Printer EPSON_DriverCommon048 does not require an update.
    Sep 20 17:16:45 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:16:45 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:16:45 Cristobal Software Update[7003]: JS: Printer EPSON_DriverCommon050 does not require an update.
    Sep 20 17:16:45 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:16:45 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:16:45 Cristobal Software Update[7003]: JS: Printer EPSON_DriverCommon052 does not require an update.
    Sep 20 17:16:45 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:16:45 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:16:45 Cristobal Software Update[7003]: JS: Printer EPSON_DriverCommon054 does not require an update.
    Sep 20 17:16:45 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:16:45 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Printer EPSON_DriverCommon083 does not require an update.
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Printing drivers update available for EPSON_DriverCommon084. (return value 2)
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Printing drivers update available for EPSON_DriverCommon087. (return value 2)
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Printing drivers update available for EPSON_DriverCommon095. (return value 2)
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Printing drivers update available for EPSON_DriverCommon119. (return value 2)
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Printing drivers update available for EPSON_DriverCommon125. (return value 2)
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Printing drivers update available for EPSON_ICA. (return value 2)
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Printing drivers update available for EPSON_IJP09WW002. (return value 2)
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Printing drivers update available for EPSON_IOKit. (return value 2)
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Printing drivers update available for EPSON_Libraries. (return value 2)
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Printer EPSON_DriverCommon029 does not require an update.
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Printer EPSON_DriverCommon048 does not require an update.
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Printer EPSON_DriverCommon050 does not require an update.
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Printer EPSON_DriverCommon052 does not require an update.
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Printer EPSON_DriverCommon054 does not require an update.
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Printer EPSON_DriverCommon083 does not require an update.
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:16:46 Cristobal Software Update[7003]: JS: Printing drivers update available for EPSON_DriverCommon084. (return value 2)
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Printer EPSON_DriverCommon029 does not require an update.
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Printer EPSON_DriverCommon048 does not require an update.
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Printer EPSON_DriverCommon050 does not require an update.
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Printer EPSON_DriverCommon052 does not require an update.
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Printer EPSON_DriverCommon054 does not require an update.
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Printer EPSON_DriverCommon083 does not require an update.
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Printing drivers update available for EPSON_DriverCommon084. (return value 2)
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Printing drivers update available for EPSON_DriverCommon087. (return value 2)
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Printing drivers update available for EPSON_DriverCommon095. (return value 2)
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Printing drivers update available for EPSON_DriverCommon119. (return value 2)
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Printing drivers update available for EPSON_DriverCommon125. (return value 2)
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Printing drivers update available for EPSON_ICA. (return value 2)
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Printing drivers update available for EPSON_IJP09WW002. (return value 2)
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Printing drivers update available for EPSON_IOKit. (return value 2)
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Printing drivers update available for EPSON_Libraries. (return value 2)
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Printer EPSON_DriverCommon029 does not require an update.
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Printer EPSON_DriverCommon048 does not require an update.
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Printer EPSON_DriverCommon050 does not require an update.
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Printer EPSON_DriverCommon052 does not require an update.
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Printer EPSON_DriverCommon054 does not require an update.
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Printer EPSON_DriverCommon083 does not require an update.
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:16:47 Cristobal Software Update[7003]: JS: Printing drivers update available for EPSON_DriverCommon084. (return value 2)
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet 4250
    Sep 20 17:16:50: --- last message repeated 1 time ---
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet P4010 Series
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet 4250
    Sep 20 17:16:50: --- last message repeated 1 time ---
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet P4010 Series
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:Photosmart C4500 series
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Printing drivers update available for HP_CHorse. (return value 2)
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet 4250
    Sep 20 17:16:50: --- last message repeated 1 time ---
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet P4010 Series
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet 4250
    Sep 20 17:16:50: --- last message repeated 1 time ---
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet P4010 Series
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Printing drivers update available for HP_CHorseD. (return value 2)
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:Photosmart C4500 series
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Printing drivers update available for HP_CHorseI. (return value 2)
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet 4250
    Sep 20 17:16:50: --- last message repeated 1 time ---
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet P4010 Series
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet 4250
    Sep 20 17:16:50: --- last message repeated 1 time ---
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet P4010 Series
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:Photosmart C4500 series
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Printing drivers update available for HP_CHorseIL. (return value 2)
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet 4250
    Sep 20 17:16:50: --- last message repeated 1 time ---
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet P4010 Series
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet 4250
    Sep 20 17:16:50: --- last message repeated 1 time ---
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet P4010 Series
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Printing drivers update available for HP_CHorseL. (return value 2)
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet 4250
    Sep 20 17:16:50: --- last message repeated 1 time ---
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet P4010 Series
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet 4250
    Sep 20 17:16:50: --- last message repeated 1 time ---
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet P4010 Series
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:Photosmart C4500 series
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Printing drivers update available for HP_Chuckwalla. (return value 2)
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet 4250
    Sep 20 17:16:50: --- last message repeated 1 time ---
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet P4010 Series
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet 4250
    Sep 20 17:16:50: --- last message repeated 1 time ---
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet P4010 Series
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:Photosmart C4500 series
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Printing drivers update available for HP_Cmd2HP. (return value 2)
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet 4250
    Sep 20 17:16:50: --- last message repeated 1 time ---
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet P4010 Series
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet 4250
    Sep 20 17:16:50: --- last message repeated 1 time ---
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet P4010 Series
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:Photosmart C4500 series
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Printing drivers update available for HP_DMF. (return value 2)
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet 4250
    Sep 20 17:16:50: --- last message repeated 1 time ---
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet P4010 Series
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet 4250
    Sep 20 17:16:50: --- last message repeated 1 time ---
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet P4010 Series
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Printing drivers update available for HP_DesignjetIO. (return value 2)
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet 4250
    Sep 20 17:16:50: --- last message repeated 1 time ---
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet P4010 Series
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet 4250
    Sep 20 17:16:50: --- last message repeated 1 time ---
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet P4010 Series
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:Photosmart C4500 series
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Printing drivers update available for HP_Fax2. (return value 3)
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet 4250
    Sep 20 17:16:50: --- last message repeated 1 time ---
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet P4010 Series
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet 4250
    Sep 20 17:16:50: --- last message repeated 1 time ---
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet P4010 Series
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:Photosmart C4500 series
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Printer HP_ImageEnhancement does not require an update.
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:Photosmart C4500 series
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Printer HP_Interlaken does not require an update.
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:Photosmart C4500 series
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Printing drivers update available for HP_PDE. (return value 2)
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet 4250
    Sep 20 17:16:50: --- last message repeated 1 time ---
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet P4010 Series
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet 4250
    Sep 20 17:16:50: --- last message repeated 1 time ---
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet P4010 Series
    Sep 20 17:16:50 Cristobal Software Update[7003]: JS: Printing drivers update available for HP_PS. (return value 2)
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:Photosmart C4500 series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Printing drivers update available for HP_Pdf2Pdf1. (return value 2)
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet 4250
    Sep 20 17:16:51: --- last message repeated 1 time ---
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet P4010 Series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet 4250
    Sep 20 17:16:51: --- last message repeated 1 time ---
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet P4010 Series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Printing drivers update available for HP_Pdf2Pdf2. (return value 3)
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:Photosmart C4500 series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Printing drivers update available for HP_Photosmart. (return value 2)
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:Photosmart C4500 series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Printer HP_ResourceManager does not require an update.
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:Photosmart C4500 series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Printing drivers update available for HP_Scan. (return value 2)
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet 4250
    Sep 20 17:16:51: --- last message repeated 1 time ---
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet P4010 Series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet 4250
    Sep 20 17:16:51: --- last message repeated 1 time ---
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet P4010 Series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:Photosmart C4500 series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Printing drivers update available for HP_Scan3. (return value 3)
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet 4250
    Sep 20 17:16:51: --- last message repeated 1 time ---
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet P4010 Series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet 4250
    Sep 20 17:16:51: --- last message repeated 1 time ---
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet P4010 Series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:Photosmart C4500 series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Printing drivers update available for HP_SmartX. (return value 2)
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet 4250
    Sep 20 17:16:51: --- last message repeated 1 time ---
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet P4010 Series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet 4250
    Sep 20 17:16:51: --- last message repeated 1 time ---
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet P4010 Series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:Photosmart C4500 series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Printing drivers update available for HP_CHorse. (return value 2)
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet 4250
    Sep 20 17:16:51: --- last message repeated 1 time ---
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet P4010 Series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet 4250
    Sep 20 17:16:51: --- last message repeated 1 time ---
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet P4010 Series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:Photosmart C4500 series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Printing drivers update available for HP_CHorse. (return value 2)
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet 4250
    Sep 20 17:16:51: --- last message repeated 1 time ---
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet P4010 Series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet 4250
    Sep 20 17:16:51: --- last message repeated 1 time ---
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet P4010 Series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Printing drivers update available for HP_CHorseD. (return value 2)
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:Photosmart C4500 series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Printing drivers update available for HP_CHorseI. (return value 2)
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet 4250
    Sep 20 17:16:51: --- last message repeated 1 time ---
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet P4010 Series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet 4250
    Sep 20 17:16:51: --- last message repeated 1 time ---
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet P4010 Series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:Photosmart C4500 series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Printing drivers update available for HP_CHorseIL. (return value 2)
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet 4250
    Sep 20 17:16:51: --- last message repeated 1 time ---
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet P4010 Series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet 4250
    Sep 20 17:16:51: --- last message repeated 1 time ---
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet P4010 Series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Printing drivers update available for HP_CHorseL. (return value 2)
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet 4250
    Sep 20 17:16:51: --- last message repeated 1 time ---
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet P4010 Series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet 4250
    Sep 20 17:16:51: --- last message repeated 1 time ---
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet P4010 Series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:Photosmart C4500 series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Printing drivers update available for HP_Chuckwalla. (return value 2)
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet 4250
    Sep 20 17:16:51: --- last message repeated 1 time ---
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet P4010 Series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet 4250
    Sep 20 17:16:51: --- last message repeated 1 time ---
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet P4010 Series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:Photosmart C4500 series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Printing drivers update available for HP_Cmd2HP. (return value 2)
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet 4250
    Sep 20 17:16:51: --- last message repeated 1 time ---
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet P4010 Series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet 4250
    Sep 20 17:16:51: --- last message repeated 1 time ---
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet P4010 Series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:Photosmart C4500 series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Printing drivers update available for HP_DMF. (return value 2)
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet 4250
    Sep 20 17:16:51: --- last message repeated 1 time ---
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet P4010 Series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet 4250
    Sep 20 17:16:51: --- last message repeated 1 time ---
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet P4010 Series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Printing drivers update available for HP_DesignjetIO. (return value 2)
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet 4250
    Sep 20 17:16:51: --- last message repeated 1 time ---
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet P4010 Series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet 4250
    Sep 20 17:16:51: --- last message repeated 1 time ---
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet P4010 Series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:Photosmart C4500 series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Printing drivers update available for HP_Fax2. (return value 3)
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet 4250
    Sep 20 17:16:51: --- last message repeated 1 time ---
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet P4010 Series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet 4250
    Sep 20 17:16:51: --- last message repeated 1 time ---
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet P4010 Series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:Photosmart C4500 series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Printer HP_ImageEnhancement does not require an update.
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:Photosmart C4500 series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Printer HP_Interlaken does not require an update.
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:Photosmart C4500 series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Printing drivers update available for HP_PDE. (return value 2)
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet 4250
    Sep 20 17:16:51: --- last message repeated 1 time ---
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet P4010 Series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet 4250
    Sep 20 17:16:51: --- last message repeated 1 time ---
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet P4010 Series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Printing drivers update available for HP_PS. (return value 2)
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:Photosmart C4500 series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Printing drivers update available for HP_Pdf2Pdf1. (return value 2)
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet 4250
    Sep 20 17:16:51: --- last message repeated 1 time ---
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet P4010 Series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet 4250
    Sep 20 17:16:51: --- last message repeated 1 time ---
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet P4010 Series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Printing drivers update available for HP_Pdf2Pdf2. (return value 3)
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:Photosmart C4500 series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Printing drivers update available for HP_Photosmart. (return value 2)
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:Photosmart C4500 series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Printer HP_ResourceManager does not require an update.
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:Photosmart C4500 series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Printing drivers update available for HP_Scan. (return value 2)
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet 4250
    Sep 20 17:16:51: --- last message repeated 1 time ---
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet P4010 Series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet 4250
    Sep 20 17:16:51: --- last message repeated 1 time ---
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet P4010 Series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:Photosmart C4500 series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Printing drivers update available for HP_Scan3. (return value 3)
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet 4250
    Sep 20 17:16:51: --- last message repeated 1 time ---
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet P4010 Series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet 4250
    Sep 20 17:16:51: --- last message repeated 1 time ---
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet P4010 Series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:Photosmart C4500 series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Printing drivers update available for HP_SmartX. (return value 2)
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet 4250
    Sep 20 17:16:51: --- last message repeated 1 time ---
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet P4010 Series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet 4250
    Sep 20 17:16:51: --- last message repeated 1 time ---
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet P4010 Series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Connected printer: MANUFACTURER:HP;MODEL:Photosmart C4500 series
    Sep 20 17:16:51 Cristobal Software Update[7003]: JS: Printing drivers update available for HP_CHorse. (return value 2)
    Sep 20 17:16:55 Cristobal Software Update[7003]: Calculated need 3383 MB; 15621 MB free.
    Sep 20 17:18:02 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:18:02 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:18:02 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Printer EPSON_DriverCommon029 does not require an update.
    Sep 20 17:18:02 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:18:02 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:18:02 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Printer EPSON_DriverCommon048 does not require an update.
    Sep 20 17:18:02 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:18:02 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:18:02 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Printer EPSON_DriverCommon050 does not require an update.
    Sep 20 17:18:02 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:18:02 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:18:02 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Printer EPSON_DriverCommon052 does not require an update.
    Sep 20 17:18:02 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:18:02 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:18:02 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Printer EPSON_DriverCommon054 does not require an update.
    Sep 20 17:18:02 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:18:02 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:18:02 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Printer EPSON_DriverCommon083 does not require an update.
    Sep 20 17:18:02 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:18:02 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:18:02 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Printing drivers update available for EPSON_DriverCommon084. (return value 2)
    Sep 20 17:18:02 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:18:02 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:18:02 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Printing drivers update available for EPSON_DriverCommon087. (return value 2)
    Sep 20 17:18:02 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:18:02 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:18:02 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Printing drivers update available for EPSON_DriverCommon095. (return value 2)
    Sep 20 17:18:02 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:18:02 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:18:02 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Printing drivers update available for EPSON_DriverCommon119. (return value 2)
    Sep 20 17:18:02 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:18:02 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:18:02 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Printing drivers update available for EPSON_DriverCommon125. (return value 2)
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Printing drivers update available for EPSON_ICA. (return value 2)
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Printing drivers update available for EPSON_IJP09WW002. (return value 2)
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Printing drivers update available for EPSON_IOKit. (return value 2)
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Printing drivers update available for EPSON_Libraries. (return value 2)
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Printer EPSON_DriverCommon029 does not require an update.
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Printer EPSON_DriverCommon048 does not require an update.
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Printer EPSON_DriverCommon050 does not require an update.
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Printer EPSON_DriverCommon052 does not require an update.
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Printer EPSON_DriverCommon054 does not require an update.
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Printer EPSON_DriverCommon083 does not require an update.
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:Epson Stylus NX510
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON Epson Stylus NX510
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Printing drivers update available for EPSON_DriverCommon084. (return value 2)
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet 4250
    Sep 20 17:18:03: --- last message repeated 1 time ---
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet P4010 Series
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet 4250
    Sep 20 17:18:03: --- last message repeated 1 time ---
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet P4010 Series
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:HP;MODEL:Photosmart C4500 series
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Printing drivers update available for HP_CHorse. (return value 2)
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet 4250
    Sep 20 17:18:03: --- last message repeated 1 time ---
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet P4010 Series
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet 4250
    Sep 20 17:18:03: --- last message repeated 1 time ---
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet P4010 Series
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Printing drivers update available for HP_CHorseD. (return value 2)
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:HP;MODEL:Photosmart C4500 series
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Printing drivers update available for HP_CHorseI. (return value 2)
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet 4250
    Sep 20 17:18:03: --- last message repeated 1 time ---
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet P4010 Series
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet 4250
    Sep 20 17:18:03: --- last message repeated 1 time ---
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet P4010 Series
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:HP;MODEL:Photosmart C4500 series
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Printing drivers update available for HP_CHorseIL. (return value 2)
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet 4250
    Sep 20 17:18:03: --- last message repeated 1 time ---
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet P4010 Series
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet 4250
    Sep 20 17:18:03: --- last message repeated 1 time ---
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet P4010 Series
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Printing drivers update available for HP_CHorseL. (return value 2)
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet 4250
    Sep 20 17:18:03: --- last message repeated 1 time ---
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet P4010 Series
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet 4250
    Sep 20 17:18:03: --- last message repeated 1 time ---
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet P4010 Series
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:HP;MODEL:Photosmart C4500 series
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Printing drivers update available for HP_Chuckwalla. (return value 2)
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet 4250
    Sep 20 17:18:03: --- last message repeated 1 time ---
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet P4010 Series
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet 4250
    Sep 20 17:18:03: --- last message repeated 1 time ---
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:HP;MODEL:HP LaserJet P4010 Series
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:HP;MODEL:Photosmart C4500 series
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Printing drivers update available for HP_Cmd2HP. (return value 2)
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update[7189]: JS: Connected printer: MANUFACTURER:HP;MODEL:LaserJet 4250
    Sep 20 17:18:03: --- last message repeated 1 time ---
    Sep 20 17:18:03 Cristobal /System/Library/CoreServices/Software Update.app/Contents/

  • WebLogic server's charset for writing files

    Hi!
    I have the following situation. Webapp (servlet) instantiates a class, which periodically writes data to files. The data is written to a file using the following code:
    fos = new FileOutputStream(outfile);
    //Don't wanna specify charset here
    fos.write(line.getBytes());
    The question is, where do I specify the charset to be used? Weblogic-application.xml has the following definition:
    <application-param>
    <param-name>webapp.encoding.default</param-name>
    <param-value>UTF-8</param-value>
    </application-param>
    Should this define also the encoding used when writing files, or should I define it in the server startup somehow, or what?

    Hi!
    I have the following situation. Webapp (servlet) instantiates a class, which periodically writes data to files. The data is written to a file using the following code:
    fos = new FileOutputStream(outfile);
    //Don't wanna specify charset here
    fos.write(line.getBytes());
    The question is, where do I specify the charset to be used? Weblogic-application.xml has the following definition:
    <application-param>
    <param-name>webapp.encoding.default</param-name>
    <param-value>UTF-8</param-value>
    </application-param>
    Should this define also the encoding used when writing files, or should I define it in the server startup somehow, or what?

  • File Adapter not writing file when processed from one node in a clustered environment

    In our environment, we have 4 server nodes running. We are using a file adapter to write file to a location in the server. the adapter is writing files when its processing data in all nodes except one.
    Below is the JCA File
    <connection-factory location="eis/FileAdapter" adapterRef=""/>
    <endpoint-interaction portType="Write_ptt" operation="Write">
    <interaction-spec className="oracle.tip.adapter.file.outbound.FileInteractionSpec">
    <property name="PhysicalDirectory" value="/data/prd"/>
    <property name="FileNamingConvention" value="Sample.dat"/>
    <property name="Append" value="true"/>
    </interaction-spec>
    </endpoint-interaction>
    the File Adapter health is running OK. What would be the potential cause

    In our environment, we have 4 server nodes running. We are using a file adapter to write file to a location in the server. the adapter is writing files when its processing data in all nodes except one.
    Below is the JCA File
    <connection-factory location="eis/FileAdapter" adapterRef=""/>
    <endpoint-interaction portType="Write_ptt" operation="Write">
    <interaction-spec className="oracle.tip.adapter.file.outbound.FileInteractionSpec">
    <property name="PhysicalDirectory" value="/data/prd"/>
    <property name="FileNamingConvention" value="Sample.dat"/>
    <property name="Append" value="true"/>
    </interaction-spec>
    </endpoint-interaction>
    the File Adapter health is running OK. What would be the potential cause

  • Error reading/writing file message when opening garageband and/or files

    I've been recently getting this message when I open garageband and files
    "Error reading/writing file\U201Ccom.apple.garageband.cs\U201D
    I've been in and repaired disk permissions and all that it says it is all fine, reinstall garageband and message still comes up, weird.
    not only is garageband being a nuisance, Mac OS X 10.6.2 is being a pain when shutting down telling me to restart the computer. This only happened since upgrading to 10.6. No one as yet knows this promble so I'm gonna have to ring apple and see what is going on here.
    and also my other problem is that mac doesn't seem as snappy anymore I noticed this before upgrading to 10.6 and made no difference when "cleanly" installing 10.6. I get a colour wheel popping up and i'm having to wait with simple tasks. iMac only 2 years old.

    i give up with this discussion forum no no one knows anything

  • I just recently upgraded my itouch from 4.1 to ios5, and updated to itunes 10.5. when isynced my music files,ebooks and other apps, all is working except when im trying to sync my video files. it says, canot be synced as cannot be played on this ipod.help

    i just recently upgraded my itouch from 4.1 to ios 5, and updated to itunes 10.5. but when i synced my music files,ebooks and other apps, all is working except when im trying to sync my video files. it says, canot be synced as cannot be played on this ipod. but those are the same files that i have when i was using the old 4.1 version and its syncing just fine.. the itunes advanced tab "create iphone or ipod version" is not working either so i cant convert it to be xferred and synced. what can i do to have my video files synced?

    i had the same problem but i just got a new video converter and made it convert videos to ipod/iphone format and then put them into itunes. i would suggest GOM encoder as the encoder can convert them and then once they're finished converting, put them automatically into your itunes for you. from there you can just sync them to your ipod.

  • Errors when writing metadata to files on Windows Server

    Good day!
    I have an iMac running OSX 10.9 (Maverick) and Lightroom 5.2.
    My catalog is on the local iMac drive, and the images are on SMB shared drive (handled by Windows 2012 server).
    I decided to do the final layout of my album using InDesign, and for that I needed to access to images using Bridge. So selected all the images (the rated once...) and issue a Metadata/Save command.
    The system came back with errors on many of the files (such as Photos are read only, and unknown errors).
    Retrying to save the metadata on image that was flagged with an error usually (but not always) worked.
    I tried to select save the metadata for few (6) images in a time, many times it was ok, but sometimes, one or two of them failed (and retrying again usually solved the problem).
    It looks to me like a timing related issue.
    Any ideas?
    (After spending about an hour on this, I have exported the images to my local drive...). In general I don't have similar problems with other apps.
    Any ideas?
    Yuval

    I Yuval
    I'm experiencing more or less the same behavior (see Read-only error when writing metadata to file over network (Synology DS1315+ using AFP) ). For me however, the problem is more pronounced if I use the AFP protocol and is better (I think as you described) if I use SMB (all done on a Synology DS1315+). With SMB it most often works but in very rare cases I also get the "read only" message!
    Do you have solution to this? Or are you stuck as I am?
    Cheers, Chris

Maybe you are looking for