Canon

Buongiorno a tutta la comunity!
Ho problemi con software canon digital professional 3.12.52.0
Se voglio visualizzare in rete file presenti su mac 10.8.3 aprendo tali file da un pc o da un mac il software canon si blocca.
Il disco in rete è condiviso,la cosa strana è che gli stessi file sono visualizzabili in rete da pc o da un altro mac con finder o esplora risorse,ma il DPP canon non li vede e si blocca
Accade con qualsiasi disco, i 4 interni e i 2 esterni.
Sembra che qualche firewall blocchi la condivisione proprio con quel programma...
grazie a chiunque ne sappia qualcosa

http://support.apple.com/kb/DL899

Similar Messages

  • Limited-access user permission lockdown mode and allowing anon users to view list items

    I'm working on setting up a public-facing SharePoint website that will need to support anonymous user access. I'm using the Enterprise Publishing Portal site collection template, so the Limited-access user permission lockdown mode feature is turned on.
    Everything is working great, except allowing users to view a list item. One of the key features I was hoping to leverage was the ability to display custom lists on a web page using a List View web part. Then they could click on an item and see the DispForm.aspx
    so the item's content was accessible, including any file attachments.
    A real-world example is adding an RSS viewer web part to the home page and allowing anon users to click on one of the events to see the details of it. Currently, in lockdown mode, the users gets an authentication prompt. 
    I toyed with the idea of turning the lockdown feature off. However, I'm uncertain of the full impact that would have on security. For example, I know it will allow anonymous users to see who created and modified an item, which we don't want exposed to the
    public (i.e. our employee names). Seems like opening a can of worms by disabling the lockdown mode... 
    Any ideas on how to tackle this would be greatly appreciated.

    So far, this is the most promising solution I've come across:
    http://soerennielsen.wordpress.com/2012/05/29/how-to-make-list-items-visible-to-anonymous-users-in-search

  • Returning result set from procedure out parameter, display with anon block

    I'm trying to do something pretty simple (I think it should be simple at least). I want to use a pl/sql procedure to return a result set in an OUT parameter. If I run this code by itself (in the given anonymous block at the end, without trying to display any results), toad says that the PL/SQL procedure successfully completed.
    How can I display the results from this procedure? I am assuming that the result set should be stored in the O_RETURN_REDEEM_DTL, but how can I get anything out of it?
    I have this package with the following procedure:
    /* FUNCTION - REDEEM_DTL_READ                          */
         PROCEDURE REDEEM_DTL_READ(
              ZL_DIVN_NBR_IN     IN     REDEEM_DTL.ZL_DIVN_NBR%TYPE,
              GREG_DATE_IN     IN     REDEEM_DTL.GREG_DATE%TYPE,
              ZL_STORE_NBR_IN     IN     REDEEM_DTL.ZL_STORE_NBR%TYPE,
              REGISTER_NBR_IN     IN     REDEEM_DTL.REGISTER_NBR%TYPE,
              TRANS_NBR_IN     IN     REDEEM_DTL.TRANS_NBR%TYPE,
              O_RETURN_REDEEM_DTL OUT REDEEM_DTL_TYPE,
              o_rtrn_cd       OUT NUMBER,
              o_err_cd        OUT NUMBER,
              o_err_msg       OUT VARCHAR2
         IS
         BEGIN
              o_rtrn_cd := 0;
              o_err_msg := ' ';
              o_err_cd := 0;
              --OPEN REDEEM_DTL_READ_CUR(ZL_DIVN_NBR_IN, GREG_DATE_IN, ZL_STORE_NBR_IN, REGISTER_NBR_IN, TRANS_NBR_IN);
              OPEN O_RETURN_REDEEM_DTL FOR SELECT * FROM REDEEM_DTL;
    --           LOOP
    --                FETCH REDEEM_DTL_READ_CUR INTO O_RETURN_REDEEM_DTL;
    --                EXIT WHEN REDEEM_DTL_READ_CUR%NOTFOUND;
    --           END LOOP;
    --           CLOSE REDEEM_DTL_READ_CUR;
         EXCEPTION
          WHEN OTHERS
          THEN
               o_rtrn_cd := 7;
                 o_err_msg := SUBSTR (SQLERRM, 1, 100);
                 o_err_cd  := SQLCODE;
         END REDEEM_DTL_READ;and call it in an anonymous block with:
    DECLARE
      ZL_DIVN_NBR_IN NUMBER;
      GREG_DATE_IN DATE;
      ZL_STORE_NBR_IN NUMBER;
      REGISTER_NBR_IN NUMBER;
      TRANS_NBR_IN NUMBER;
      O_RETURN_REDEEM_DTL PSAPP.CY_SALESPOSTING.REDEEM_DTL_TYPE;
      O_RETURN_REDEEM_DTL_OUT PSAPP.CY_SALESPOSTING.REDEEM_DTL_READ_CUR%rowtype;
      O_RTRN_CD NUMBER;
      O_ERR_CD NUMBER;
      O_ERR_MSG VARCHAR2(200);
    BEGIN
      ZL_DIVN_NBR_IN := 71;
      GREG_DATE_IN := TO_DATE('07/21/2008', 'MM/DD/YYYY');
      ZL_STORE_NBR_IN := 39;
      REGISTER_NBR_IN := 1;
      TRANS_NBR_IN := 129;
      -- O_RETURN_REDEEM_DTL := NULL;  Modify the code to initialize this parameter
      O_RTRN_CD := NULL;
      O_ERR_CD := NULL;
      O_ERR_MSG := NULL;
      PSAPP.CY_SALESPOSTING.REDEEM_DTL_READ ( ZL_DIVN_NBR_IN, GREG_DATE_IN, ZL_STORE_NBR_IN,
    REGISTER_NBR_IN, TRANS_NBR_IN, O_RETURN_REDEEM_DTL, O_RTRN_CD, O_ERR_CD, O_ERR_MSG );
      FOR item IN O_RETURN_REDEEM_DTL
      LOOP
        DBMS_OUTPUT.PUT_LINE('ZL_DIVN_NBR = ' || item.ZL_DIVN_NBR);
      END LOOP;
    END; And end up with an error:
    ORA-06550: line 25, column 15:
    PLS-00221: 'O_RETURN_REDEEM_DTL' is not a procedure or is undefined
    ORA-06550: line 25, column 3:
    PL/SQL: Statement ignoredMessage was edited by:
    user607908

    Aha, I knew I forgot something!
    I actually had it defined as a REF CURSOR in PSAPP.CY_SALESPOSTING package spec:
    TYPE REDEEM_DTL_TYPE IS REF CURSOR;since I wasn't sure what to make it.
    Cursor used in procedure:
    CURSOR REDEEM_DTL_READ_CUR (
      zl_divn_nbr_in IN NUMBER,
      greg_date_in IN DATE,
      zl_store_nbr_in IN NUMBER,
      register_nbr_in IN NUMBER,
      trans_nbr_in IN NUMBER)
    IS
    SELECT ZL_DIVN_NBR, GREG_DATE, ZL_STORE_NBR, REGISTER_NBR, TRANS_NBR, PAYMENT_TYP_NBR
    FROM REDEEM_DTL
    WHERE ZL_DIVN_NBR = zl_divn_nbr_in AND GREG_DATE = greg_date_in AND
       ZL_STORE_NBR = zl_store_nbr_in AND REGISTER_NBR = register_nbr_in AND
       TRANS_NBR = trans_nbr_in;Updated code:
    /* PROCEDURE - REDEEM_DTL_READ                          */
         PROCEDURE REDEEM_DTL_READ(
              ZL_DIVN_NBR_IN     IN     REDEEM_DTL.ZL_DIVN_NBR%TYPE,
              GREG_DATE_IN     IN     REDEEM_DTL.GREG_DATE%TYPE,
              ZL_STORE_NBR_IN     IN     REDEEM_DTL.ZL_STORE_NBR%TYPE,
              REGISTER_NBR_IN     IN     REDEEM_DTL.REGISTER_NBR%TYPE,
              TRANS_NBR_IN     IN     REDEEM_DTL.TRANS_NBR%TYPE,
              O_RETURN_REDEEM_DTL OUT REDEEM_DTL_TYPE,
              o_rtrn_cd       OUT NUMBER,
              o_err_cd        OUT NUMBER,
              o_err_msg       OUT VARCHAR2
         IS
         BEGIN
              o_rtrn_cd := 0;
              o_err_msg := ' ';
              o_err_cd := 0;
              OPEN REDEEM_DTL_READ_CUR(ZL_DIVN_NBR_IN, GREG_DATE_IN, ZL_STORE_NBR_IN,
                   REGISTER_NBR_IN, TRANS_NBR_IN);
              --OPEN O_RETURN_REDEEM_DTL FOR SELECT * FROM REDEEM_DTL;
              LOOP
                  FETCH REDEEM_DTL_READ_CUR INTO O_RETURN_REDEEM_DTL;
                   EXIT WHEN REDEEM_DTL_READ_CUR%NOTFOUND;
                   DBMS_OUTPUT.PUT_LINE('ZL_DIVN_NBR = ' || O_RETURN_REDEEM_DTL.ZL_DIVN_NBR);
                END LOOP;
               CLOSE REDEEM_DTL_READ_CUR;
    --           LOOP
    --                FETCH REDEEM_DTL_READ_CUR INTO O_RETURN_REDEEM_DTL;
    --                EXIT WHEN REDEEM_DTL_READ_CUR%NOTFOUND;
    --           END LOOP;
    --           CLOSE REDEEM_DTL_READ_CUR;
         EXCEPTION
          WHEN OTHERS
          THEN
               o_rtrn_cd := 7;
                 o_err_msg := SUBSTR (SQLERRM, 1, 100);
                 o_err_cd  := SQLCODE;
         END REDEEM_DTL_READ;the updated anon block:
    DECLARE
      ZL_DIVN_NBR_IN NUMBER;
      GREG_DATE_IN DATE;
      ZL_STORE_NBR_IN NUMBER;
      REGISTER_NBR_IN NUMBER;
      TRANS_NBR_IN NUMBER;
      O_RETURN_REDEEM_DTL PSAPP.CY_SALESPOSTING.REDEEM_DTL_TYPE;
      O_RTRN_CD NUMBER;
      O_ERR_CD NUMBER;
      O_ERR_MSG VARCHAR2(200);
    BEGIN
      ZL_DIVN_NBR_IN := 71;
      GREG_DATE_IN := TO_DATE('07/21/2008', 'MM/DD/YYYY');
      ZL_STORE_NBR_IN := 39;
      REGISTER_NBR_IN := 1;
      TRANS_NBR_IN := 129;
      -- O_RETURN_REDEEM_DTL := NULL;  Modify the code to initialize this parameter
      O_RTRN_CD := NULL;
      O_ERR_CD := NULL;
      O_ERR_MSG := NULL;
      PSAPP.CY_SALESPOSTING.REDEEM_DTL_READ ( ZL_DIVN_NBR_IN, GREG_DATE_IN, ZL_STORE_NBR_IN,
         REGISTER_NBR_IN, TRANS_NBR_IN, O_RETURN_REDEEM_DTL, O_RTRN_CD, O_ERR_CD, O_ERR_MSG );
      FOR item IN 1..O_RETURN_REDEEM_DTL.COUNT
      LOOP
        DBMS_OUTPUT.PUT_LINE('ZL_DIVN_NBR = ' || O_RETURN_REDEEM_DTL(item).ZL_DIVN_NBR);
      END LOOP;
    END;and the new error:
    ORA-06550: line 25, column 38:
    PLS-00487: Invalid reference to variable 'O_RETURN_REDEEM_DTL'
    ORA-06550: line 25, column 3:
    PL/SQL: Statement ignoredAlso, it would be nice if the forums would put a box around code so that it would be easy to
    distinguish between what is supposed to be code and what should be regular text...
    Message was edited by:
    user607908

  • Diagnostics and usage - metriclog.anon

    I have an Ipad mini and an Iphone 4S. Under Diagnostics and usage, I have files named ...consolidated.metriclog but I now also seem to have a lot named ....consolidated.metriclog.anon, which never contain any data. Can somebody please explain why I now have the second set of usage files.

    Huh?  Do you have a technical question here?

  • Anon Ghost toolbar - can't reset safari

    Safari version 5.0.6 - Accidently clicked a page called lunaclock.com/toolbar which has been hacked by Anon Ghost. Now have an icon in my toolbar that plays ominous audio constantly and can't be removed. Safari reset is not working. Will upgrading Safari resolve this? To what version?

    This computer was donated to our charity. There were no extensions installed when we received it but there could have been previously. I am not an experienced MAC user. I found the OS but it didn't say Leopard - just MAC OS X 10.5.8
    I assume the main menu bar is directly underneath the nav bar with the bookmarks underneath that. In that case the icon is in the main menu bar.
    I will create another user and see what happens

  • Can anone recommed a solid case for the Touch 4g with belt clip

    Can anone recommed a solid case for the Touch 4g with belt clip

    I was going to suggest something from Otterbox. Unfortunately, they've chosen to discontinue iPod accessories. Still you may be able to find something on eBay. I don't know if the iPhone case can work. It'll likely be too big.

  • Anon inner classes + final vars

    Ive always taken it for granted that anon inner classes can access outside variables only if they are static.
    Googling this yields about the same information but no good explaination.
    can someone kindly explain why the JVM wants this restriction? i suppose it must have something to do with the way objects are handled internally.
    ill give dukes!

    The "final" restriction only applies to variables within a method which you want to use outside the method. I would assume it is down to
    1) The variable goes out of scope when the method ends.
    2) init().field and init.AnonActionListener().field would actually be different variables, changing init().field would not be replicated to init.AnonActionListener().field. This would be very confusing.
    �8.1.3 does not give any reason for this.

  • HELP: ld: fatal: file /dev/zero: mmap anon failed: Not enough space

    Trying to build a debug version of our code using Solaris 10 and SunStudio 12, and we get this error:
    ld: fatal: file /dev/zero: mmap anon failed: Not enough space
    Any idea?
    The ld process grows to ~4GB then dies.
    The compile server has plenty of memory and swap available.
    Any idea? Our program is getting quite large, but I am sure there are larger ones out there.

    The only suggestion I have is to switch to stabs debug format (-xdebugformat=stabs compiler option) and don't specify -xs so that most of debug info is stored in .o files. Maybe it'll save some linker address space. Other than that, try asking on linker forum:
    http://www.opensolaris.org/jive/forum.jspa?forumID=63
    I know that it's a hot topic and you will probably get an answer as soon as someone from linker team take a look.

  • UCM 11g anon users req to login

    We have this setting in our general configs:
    DefaultAccounts=#all(R),#none(R)
    Even with this setting, for public docs that have no account, anon users are required to login. Any suggestions as to why this is happening?

    Might be using the wrong setting.
    "DefaultAccounts=#all(R),#none(R)" would apply to UCM 10g and earlier "local" users. In 11g, "local" users are largely unused.
    Try setting "DefaultNetworkAccounts=#all(R),#none(R)" instead.

  • HT201328 after clicking on ''reset all'' on my iphone4,it has refused to come on. All i see is a prompt on the screen asking me to connect to iTunes. I cant make any calls or do an6ything with the phone. Anone with any advice?

    After clicking on ''reset all'' on my iphone4,it has refused to come on. All i see is a prompt on the screen asking me to connect to iTunes. I cant make any calls or do an6ything with the phone. Anone with any advice?

    Hi Tonma,
    Sounds like your device is in recovery mode. Follow the instructions in this article:
    http://support.apple.com/kb/ht1808
    Cheers,
    GB

  • Sequence created in anon PL/SQL missing initial value

    If I create a sequence in an anonymous PL/SQL block, with execute immediate, then perform a select nextval from that sequence outside the block, it misses it's initial value.
    Easily reproducable here:
    create table tab_a ( col_a number(4) not null );
    begin
      execute immediate 'create sequence seq_a start with 47 increment by 1';
    end;
    insert into tab_a select seq_a.nextval from dual;
    select * from tab_a;
    This is a much simplified representation of the circumstance I found myself in, but it reproduces the effect I see.
    If I drop the sequence and truncate the table, and run the statements (excluding the first) again, it works as expected. If I drop the table and run all the statements again, it returns the wrong answer again.
    I don't need a workaround, the issue has been addressed long ago, but I would like to know WHY this happens. starting the sequence at 47 can be any number, it's there just to show the issue when 48 is inserted into the table. The insert could be into any table, and the from could be over any table rather than dual.
    Oracle EE 11.2.0.1.0 on OE Linux, RAC and Single node.
    TIA.

    Can you show the output you get like this? Mine is a 10g DB. But sure it would work in 11g DB as well.
    SQL> select * from v$version where rownum = 1;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bi
    SQL> drop table t;
    Table dropped.
    SQL> create table t (no integer not null);
    Table created.
    SQL> begin
      2     execute immediate 'create sequence seq start with 47 increment by 1';
      3  end;
      4  /
    PL/SQL procedure successfully completed.
    SQL> insert into t select seq.nextval from dual;
    1 row created.
    SQL> select * from t;
            NO
            47
    SQL>

  • Cursor query retrieves records in anon pl/sql block but no data in store pr

    Hello,
    Can any one please help me,
    I am using the below query, to get the table name and constraint name
    select table_name,constraint_name
    from all_constraints
    where constraint_type in ('R','P')
    and status = 'ENABLED'
    and owner='IRIS_DATA'
    order by constraint_type desc;
    The below query retrieves data in anonymous pl/sql block and retrieve no data when i use the same cursor with the same query in procedure inside the package.
    CREATE USER CLONEDEV
    IDENTIFIED BY CLONE123
    DEFAULT TABLESPACE IRIS
    TEMPORARY TABLESPACE TEMP;
    GRANT DBA TO CLONEDEV;
    the user from which i am executing this query is granted dba role.
    My oracle version is 10.2.0.4
    Please update if you any other information.
    Please advice.
    Thanks

    >
    Roles cannot be used by pl/sql.
    >
    NOT TRUE!
    That is an oft quoted myth. There are many posts in the forum that mis-state this.
    Roles can be, and are used by PL/SQL. In fact, OP stated and demonstrated that in their question: their anonymous block worked.
    The Oracle docs provide a very clear explanation - the core restriction is for NAMED PL/SQL blocks that use DEFINER's rights (the default):
    >
    Roles Used in Named Blocks with Definer's Rights
    All roles are disabled in any named PL/SQL block (stored procedure, function, or trigger) that executes with definer's rights. Roles are not used for privilege checking and you cannot set roles within a definer's rights procedure.
    >
    The Database Security Guide has the information in the section 'How Roles Work in PL/SQL Blocks (which, of course, wouldln't be needed if they didn't work. ;) )
    http://docs.oracle.com/cd/B28359_01/network.111/b28531/authorization.htm#i1007304
    >
    The use of roles in a PL/SQL block depends on whether it is an anonymous block or a named block (stored procedure, function, or trigger), and whether it executes with definer's rights or invoker's rights.
    Roles Used in Named Blocks with Definer's Rights
    All roles are disabled in any named PL/SQL block (stored procedure, function, or trigger) that executes with definer's rights. Roles are not used for privilege checking and you cannot set roles within a definer's rights procedure.
    The SESSION_ROLES view shows all roles that are currently enabled. If a named PL/SQL block that executes with definer's rights queries SESSION_ROLES, then the query does not return any rows.
    See Also:
    Oracle Database Reference
    Roles Used in Named Blocks with Invoker's Rights and Anonymous PL/SQL Blocks
    Named PL/SQL blocks that execute with invoker's rights and anonymous PL/SQL blocks are executed based on privileges granted through enabled roles. Current roles are used for privilege checking within an invoker's rights PL/SQL block. You can use dynamic SQL to set a role in the session.

  • Anon EOS Camera Utility broken by the Mac OSX 10.7.5 update put out today 09/19/2012.  What to do next?

    After installing the minor update to OS X lion (not the latest 10.8.2 {that was never compatible} the program crashes upon the camera being tethered. With a big shoot tomorrow I'm considering using Capture one or Lightroom. Any suggestions? Would love for Canon to have the EOS utility fixed because I like using live view. I ran permisions repair with Disk Utility and while there were lots of repairs this did not fix the problem.

    After installing the minor update to OS X lion (not the latest 10.8.2 {that was never compatible} the program crashes upon the camera being tethered. With a big shoot tomorrow I'm considering using Capture one or Lightroom. Any suggestions? Would love for Canon to have the EOS utility fixed because I like using live view. I ran permisions repair with Disk Utility and while there were lots of repairs this did not fix the problem.

  • Upgrade to SP7 vs 72 broke SQLCC Anon user in XS app

    We have an XS application set up to use an anonymous sql connection.  It worked before we upgraded to SP7 v. 72 but not after. We're being prompted for credentials now.  There are no errors in the xsengine log file and the user is still set in the XS admin tool.  Any thoughts?
    Thanks,
    Amy

    Not really.  I went to here, http://<hostname>:80<InstNo>/sap/hana/xs/admin/, and set each package to public in order for it not to prompt for login.  Not ideal because this defeats the purpose of setting up the privileges for the "anonymous user" but I haven't been able to find another solution.

  • ANON: Gazoo - "Always On & Ready" UI for relative adjustment of develop settings, and other things..

    Many people have tried plugins for relative adjustment of develop settings, and the main complaint has always been the same - it takes a few seconds for the UI to come up, and you can't do anything else in Lr while it's up, so it's being invoked, and closed, and invoked, and closed... yuck.
    Those days are over...
    Gazoo
    R

    To clarify, this is a completely free plugin and so Rob's post is not considered to be spam under our current guidelines.

  • Odd floating point issue, can anone explain it

    Hi
    Below I have pinpointed an odd problem that I recently found using the newest express build of the compiler. Can
    anyone reproduce it ? Can anyone explain what the problem is ?
    Thanks a lot in advance,
    Cheers, Jacob
    jwp@per$ cat foo_simple.f90
    program foo
    implicit none
    integer(4) :: ta(8)
    call date_and_time(values=ta)
    write(*,*) 'floating issue', (ta(8))*(1.0e-3)
    end program
    jwp@per$ /data/sw/sunstudio_201006/solstudioex1006/bin/f95 -g -O0 -ftrap=%all -fsimple=0 -fns=no foo_simple.f90
    jwp@per$ ./a.out
    Floating point exception
    jwp@per$

    Thanks for getting back. Isn't is so that ta must be an integer to be passed onto date_and_time ? So is your suggestion to do something like
    real(4) :: a
    call date_and_time(values=ta)
    a=real((ta(8)))
    write(*,*) 'floating issue', a*(1.0e-3_4)
    or
    real(8) :: a
    call date_and_time(values=ta)
    a=dble((ta(8)))
    write(*,*) 'floating issue', a*(1.0e-3_8)
    ??? Unfortunately, both expressions above also gives rise to a floating point exception. Maybe I misread your suggestion.
    Cheers, Jacob

Maybe you are looking for

  • Changing the column color

    Hi , would I be able to change the complete column color dynamically (it does'nt work using the Advanced Datagrid -- styleFunction property) I am able to change the color of the text of a specific column dynamically ( http://livedocs.adobe.com/flex/3

  • Refreshing an UIX page

    Does anybody know how to explicitly for an refresh on a UIX page. The problem that I have now is that only after I some where did a rollback, the page is displayed correctly. Before the rollback, the page shows one table updated and one table still i

  • Required transaction

    Hi Experts, We want to have this following journal entry created after vendor payment made to A/P invoice:   Db  Credit Card Payable   Cr    Cash / Bank I am referring to the credit card billing payment. Do I have to change the payable account so tha

  • BPS variable in BeX

    Hi! I have a question. May I use BPS variable in BeX?

  • Joining a Domain on my new server

    I've just set up my AD domain on Windows Server 2008 R2. I've added users to domains before but right now I'm completely blanking on what steps I've missed. Basically so far I have ran DCPROMO and set up my FQDN, the computer name is server and lets