Is a created collection automatically cached per session.

Hi,
I am implementing custom security using a PLSQL package. In my LogIn function I create a collection and I store user information. In the IsLoggedIn function I check to see if the collection exists but it does not. I was wondering if when calling create_or_truncate_collection the collection is automatically called in the session.
Thanks,
Bashar

Bashar,
It would be better if you did not try to implement a custom authentication solution at this point. The out-of-the box session management and credentials verification using the wizard-generated login page should meet your needs. If you have your own username/password table, you can call your own function to do that piece of the work only, then let HTML DB handle everything else.
To create the collection, you could add a process to the login page (after the login process), or create a before-header application-level process that fires conditionally when v('APP_USER') <> 'nobody' and the collection does not exist (this will fire it once, but not on the login page). You say you want to avoid "hitting the database every time". Why? Is the initial collection creation step expensive? If not, be aware that each time you access that collection, you will hit the database.
For more detailed explanation of how authentication schemes work, I recommend that you create a few with different built-in/custom component combinations. Then for each one, go to the authentication schemes report and click the popup flowchart view (the magnifying glass icon). Carefully read the narrative that describes the logic flow of each scheme, i.e., what the engine will do at each step, where it uses your custom code and where it uses built-in logic. This will give you the best instruction about how it all works.
Scott

Similar Messages

  • How to set up automatic cache purge

    I am using the event polling table for setting up automatic cache purging.
    I have created a table 'event polling table' in the database with the following fields:
    CATALOGNAME
    DATABASENAME
    OTHER
    SCHEMANAME
    TABLENAME
    UPDATETIME
    UPDATETYPE
    LOAD_ID
    with TABLENAME, UPDATETIME, UPDATETYPE as non-nullable fields.
    Then I have imported the table to the physical layer of the rpd, set up 'Oracle BI Event tables' in the Utilities as this table and set up a polling frequency of 15min.
    I have created a report with 2 columns (DeptID, Saleamt) from 2 tables (Department, Sales) respectively. Both these tables were made 'cacheable' in the physical layer with cache never expires. Now the saved report is ran by logging in once again. So a cache entry is registered. My NQSCONFIG file enables cache.
    I have added these 2 tables to the event polling table after the cache entry was registered. Technically after 15min, this cache should be purged automatically as the request created was from these 2 tables. But that does not happen. Even after half hr when I log in and run this report a cachehit occurs as cache still persists. My cache folder is the C:\OracleBIData\cache. I also check entries in the Repository (Manage ->cache).
    Please let me know where am I making a mistake.
    My goal is to get cache purged automatically every time there's an entry in the EPT. (To test when I create an entry in the EPT, I give the tablename and updatetype (=1), the updatetime is obtained automatically as sysdate.
    Thanks
    ===================================================
    For reference I have copied an earlier posting here:
    ===================================================
    lets look at all your questions one by one
    As the event polling table gets a row added for each table whose data is updated at the end of each ETL run, when exactly does the BI server purges cache related to that table - As soon as the polling happens and it finds a new record in your table
    Lets say I set up a polling frequency (in Tools -> Utilities -> Oracle BI Event Tables) to every 60 minutes. At the end of every 60 minutes does the BI server restart by itself or does the polling take place without restart. - Polling takes place only when the server is up (there is no need to restart)
    At the end of every 60 minutes does the BI server poll the event polling table whether or not any new rows are added to it? -(Yes )
    What exactly happens when a new record is added to the event polling table in the database. - (The cache is purged )
    If at the end of the ETL run data in 3 tables has changed, would 3 records be added to the event polling table in the database. - (yes , after the polling happens)
    Let me know if you have more questions ...
    Another way you can set it up is to create a batch file which would purge a table as its updated (use a procedure to capture the tables which have a value of 1 for update_type or use triggers to populate a table with these table names ) ...once purged you can set up your cache by using ibots (use javascripts) .
    =============================================================================

    I seem to have all the steps running except #3 - which is clearing the cache!
    select T54927.UPDATE_TYPE as c1,
    T54927.UPDATE_TIME as c2,
    T54927.DB_NAME as c3,
    T54927.CATALOG_NAME as c4,
    T54927.SCHEMA_NAME as c5,
    T54927.TABLE_NAME as c6
    from
    MPO_OWNER.MPO_EVENT_POLLING T54927
    where ( T54927.OTHER in ('') or T54927.OTHER is null )
    minus
    select T54927.UPDATE_TYPE as c1,
    T54927.UPDATE_TIME as c2,
    T54927.DB_NAME as c3,
    T54927.CATALOG_NAME as c4,
    T54927.SCHEMA_NAME as c5,
    T54927.TABLE_NAME as c6
    from
    MPO_OWNER.MPO_EVENT_POLLING T54927
    where ( T54927.OTHER = 'cac7057v' )
    +++Administrator:fffe0000:fffe021b:----2009/03/27 17:02:14
    -------------------- Execution Node: <<121787>>, Close Row Count = 1, Row Width = 384 bytes
    +++Administrator:fffe0000:fffe021b:----2009/03/27 17:02:14
    -------------------- Sending query to database named Event Polling (id: <<121830>>):
    insert into
    MPO_OWNER.MPO_EVENT_POLLING("UPDATE_TYPE", "UPDATE_TIME", "DB_NAME", "CATALOG_NAME", "SCHEMA_NAME", "TABLE_NAME", "OTHER") values (1, TIMESTAMP '2009-03-27 16:59:19', 'Trading', 'remedy', 'MPO_READ', 'MPO_POSITION_DATE_CHOICES', 'cac7057v')
    +++Administrator:fffe0000:fffe021b:----2009/03/27 17:02:14
    -------------------- Execution Node: <<121830>>, Close Row Count = 0, Row Width = 0 bytes
    +++Administrator:fffe0000:fffe021b:----2009/03/27 17:02:14
    -------------------- Execution Node: <<121830>> DbGateway Exchange, Close Row Count = 0, Row Width = 0 bytes
    +++Administrator:fffe0000:fffe021b:----2009/03/27 17:02:14
    -------------------- Execution Node: <<121830>> DbGateway Exchange, Close Row Count = 0, Row Width = 0 bytes
    +++Administrator:fffe0000:fffe021b:----2009/03/27 17:02:14
    -------------------- Execution Node: <<121787>> DbGateway Exchange, Close Row Count = 1, Row Width = 384 bytes
    +++Administrator:fffe0000:fffe021b:----2009/03/27 17:02:14
    -------------------- Execution Node: <<121787>> DbGateway Exchange, Close Row Count = 1, Row Width = 384 bytes
    +++Administrator:fffe0000:fffe021b:----2009/03/27 17:02:14
    -------------------- Sending query to database named Event Polling (id: <<121831>>):
    select T54927.UPDATE_TIME as c1
    from
    MPO_OWNER.MPO_EVENT_POLLING T54927
    where ( T54927.OTHER = 'cac7057v' )
    group by T54927.UPDATE_TIME
    having count(T54927.UPDATE_TIME) = 1
    +++Administrator:fffe0000:fffe021b:----2009/03/27 17:02:14
    -------------------- Execution Node: <<121831>>, Close Row Count = 1, Row Width = 16 bytes
    +++Administrator:fffe0000:fffe021b:----2009/03/27 17:02:14
    -------------------- Execution Node: <<121831>> DbGateway Exchange, Close Row Count = 1, Row Width = 16 bytes
    +++Administrator:fffe0000:fffe021b:----2009/03/27 17:02:14
    -------------------- Execution Node: <<121831>> DbGateway Exchange, Close Row Count = 1, Row Width = 16 bytes
    +++Administrator:fffe0000:fffe021b:----2009/03/27 17:02:14
    -------------------- Sending query to database named Event Polling (id: <<121875>>):
    delete from
    MPO_OWNER.MPO_EVENT_POLLING where MPO_OWNER.MPO_EVENT_POLLING.UPDATE_TIME = TIMESTAMP '2009-03-27 16:59:19'
    What am I missing? My NQServer.log shows this:
    The physical table Trading:remedy:MPO_READ:MPO_POSITION_DATE_CHOICES in a cache polled row does not exist.
    Any thoughts are appreciated.
    Thanks
    Mano

  • How can I create a one image per page caption sheet that includes the description in Bridge?

    I am trying to find a way to create a one-image-per-page caption sheet for my workflow. I currently place each image into Word and copy the description onto the document, then repeat for each image. I am hoping that there is a way to automate this process using Bridge. I know that it can be done using Lightroom, however, that is not currently an option for me. Is this something that can be done or am I bound, like Sisyphus to Microsoft Word? I have a very limited grasp of scripting, but I feel like this is possible.
    Thanks for any help.

    To create a NetBoot image, you could just put the cluster node in target mode and attach it to your PowerBook. Then use SIU to create the NetBoot image.
    If you're trying to create a backup image of the disk, use hdiutil, or put in in target mode and create the image with Disk Utility.

  • Client automatically cache the data got from cache server?

    Hi expert,
    I have 2 questions about the client local cache. Would you please help to give me some suggestion?
    1. Will client automatically locally cache the data got from cache server the first time and automatically update the data in local cache when getting the same data from cache server again? I go through the API reference but cannot find any API to query the data currently cached in the local cache.
    2. If client will automatically cache the data got from cache server. Is there any way for a client to get the data event that happens to its local cache, such as entry created in local cache, entry deleted from local cache and entry updated in local cache? In my opinion, when getting an entry from cache server the first time, the MapListener's entry create event should be triggered. When getting the same entry again, the entry update event should be triggered.
    However, I have tried a client with replicated cache, a client with partitioned cache, an extend client with remote cache and a client with local cache(front cache part of near cache), the client (the NamedCache object has been set the MapListener) cannot get any event notification after getting data from cache server. By the way, my listener is OK since when putting data the entry create event and entry update event will be triggered.
    Your suggestion is very appreciated. :)

    Hi
    If I were you I would read this http://download.oracle.com/docs/cd/E14526_01/coh.350/e14510/toc.htm
    and particularly the section about Near Caching here http://download.oracle.com/docs/cd/E14526_01/coh.350/e14510/nearcache.htm#CDEFEAJG
    which is what you are asking about in your question.
    Near Caching is how Coherence stores data in the locally - which is the answetr to your first question. How Near Caching works is explained in the documentation.
    Events, which you ask about in your second question are explained here http://download.oracle.com/docs/cd/E14526_01/coh.350/e14510/delivereventsjava.htm#CBBIIEFA
    It might be that ContinuousQueryCache is closer to what you want. This is explained here http://download.oracle.com/docs/cd/E14526_01/coh.350/e14510/queryabledatafabric.htm#sthref38 A ContinuousQueryCache is like having a sub-set of the underlying cache on the local client which you can then listen to etc...
    JK

  • Web service request ....one db connection per session OR all share one...

    in servlet i use
    public void init(ServletConfig config) throws ServletException { }
    so it only gets the db connection once per session
    now that I am working on a web service....im not sure how to do something similiar
    I want to either have all request coming in to use the same ONE connection OR maybe one created per session
    I have way too many web service requests and it creates too many jdbc connections....what can i do to pervent this?
    I dont care if they have to wait longer;
    I just want to cut down the number of jdbc connections to 1 to 2
    any help appreciated, thanks

    You want to use a connection pool. If you just use one connection, your web users are likely to be waiting on the availabilty of the connection. A pool will let you set whatever maximum you want; 1 or 100...
    There are a number of database connection pooling options. One of the morepopular is DBCP, part of the Apache project, which is free and open source.
    http://jakarta.apache.org/commons/dbcp/
    There are other such "drop in" poolers and some database vendors are now supplying connection pooling in their drivers.

  • AUTOMATICALLY KILL  INACTIVE SESSIONS

    Hi all. we are using oracle 8.1.6 on windows-2000 with 2gb ram. we facing
    ora-12500 listner failed to start a dedicated server.
    error and for this we made certain changes. we also added a parameter in sqlnet.ora at server side sqlnet.expire_time=10.. for automatically killing inactive sessions but it did not helped and many sessions remain in v$session. i wana know what should we do to kill inactive sessions. because i think when the sessions reach more than 300 then we face problem of listner failed. thanks for u'r valueable comments in advance as well.
    best wishes
    muhammad mohsin chattha

    Hi Nicolas, what you say is correct, but, unless the user try to do something (and receives an error),
    those sessions will show up as SNIPED in V$SESSION, and never go away.
    We can create a procedure to kill these sessions, something like this :  1  CREATE OR REPLACE PROCEDURE Kill_Sessions   IS
      2      Stmt           VARCHAR2(200);
      3      V_Sid          VARCHAR2(30);
      4      V_Serial       VARCHAR2(30);
      5      V_Username     VARCHAR2(30);
      6      CURSOR pri IS
      7      SELECT Sid, Serial#, Username
      8      FROM V$Session
      9      WHERE Username Is Not Null
    10      And Username not like 'SYS%'
    11      And Status = 'SNIPED';
    12  BEGIN
    13      FOR usr in pri LOOP
    14      V_Sid     := usr.Sid;
    15      V_Serial  := Usr.Serial#;
    16      Stmt      := 'ALTER SYSTEM KILL SESSION ''' || V_Sid || ',' || V_Serial || '''';
    17      Execute Immediate(Stmt);
    18      END LOOP;
    19* END;
    20  /  and execute it every minute (change 1440 to change the frequence) :SQL> Declare
      2     Out_Var Int;
      3  Begin
      4     Dbms_Job.Submit(Out_Var,
      5     'Kill_Sessions;',
      6     Sysdate,
      7     'Sysdate+1/1440' );
      8* End;
    SQL> /
    PL/SQL procedure successfully completed.
    SQL> commit;
    Commit complete.
    SQL>

  • Transaction cache VS Session cache

    Hi,
    Some one please help me to understand the concepts of ttransaction cache VS Session cache.
    In the user guide its given that
    For AM : Any data stored on the transaction is accessible to all pages that share the same root application module instance .
    For Session : Session cache only when you need to set and access simple values in many pages, which have different root application modules
    (The transaction cache discussed above isn't an option)
    Are these 2 different ? if so how ? Why the transaction cache is different from session cache, both are used to store data and both are available across pages assuming all pages share the same AM.
    Thank you for all your help.

    GustavoJimenez,
    Thank for taking time and explaining it.
    I understand that, if multiple pages share the same AM and retainAM flag ='N' then it will create multiple instances of same AM. so is the AM cache is common for all the AM instances ?
    Can you please explain more about session cache and where it comes into picture ? Is session cache and AM cache has same attributes ?

  • Is 11g auto stats collection automatic on? where can I find this job?

    Is 11g auto stats collection automatic on?
    I manually created a 11g database, but I did not see auto stats collection job. where can I find this job? or how could I verify this is on?
    Thank you.

    Found in Automated Maintenance Tasks.

  • Steps to create Collective delivery

    Hi,
    Someone pl tell me steps to create collective delivery
    Thanks Munna

    hi,
    You can schedule delivery creation for whenever you like using automatic background processing.
    Procedure
    To plan background processing for delivery creation, proceed as follows:
    1.Either apply a user role for background processing or make a copy of a user role for shipment due processing for yourself.
    During the test phase, use a function code profile for shipment due list display within this user role.
    2.Test the shipment due processing with this user role until you only need to execute the Create delivery in background function after the shipment due list is first displayed in order to ship part of the delivery list. (Vary the rules for line selection or for quantity definition during item processing, for instance.)
    3.Change the function code profile in the user role from Display to Deliver.
    4.From Logistics ® Logistics Execution ® Outbound Process ® Goods Issue for Outbound Delivery, choose Outbound Delivery ® Create ® Collective Processing of Documents Due for Delivery ® Delivery scenario of your choice.
    5.Choose the user role that you want to use for background scheduling in the User role field on the User role tab page.
    6.Enter additional selection parameters on the selection screen.
    7.Save the selection screen as a variant.
    8.From shipping, choose Outbound delivery ® Create ® Collective Processing of Documents Due for Delivery ® Plan Background Processing and execute the delivery scenario for background planning.
    9.Choose the selection variant you want and then select Schedule job.
    10.Follow the basis dialog for scheduling a background job.
    regards
    sadhu kishore

  • Per session QoS for LNS

    We have some LNSs running 12.4 SP Services, running with the following config (qos specific lines and currently not working):
    class-map match-all voice-signaling
    match access-group 101
    class-map match-all voice-traffic
    match access-group 102
    policy-map sub-policy
    class voice-traffic
    priority 240
    class voice-signaling
    bandwidth 16
    policy-map XXX_qos-voice
    class class-default
    shape average 256000
    fair-queue
    service-policy sub-policy
    interface Virtual-Template1
    ip unnumbered Loopback0
    ip mroute-cache
    no peer default ip address
    ppp authentication chap
    no clns route-cache
    access-list 101 remark -- SCCP/H323/MGCP/SIP --
    access-list 101 permit tcp any any range 2000 2002
    access-list 101 permit tcp any any eq 1720
    access-list 101 permit tcp any any range 11000 11999
    access-list 101 permit udp any any eq 2427
    access-list 101 permit udp any any eq 4569
    access-list 101 permit udp any any eq 5036
    access-list 101 permit udp any any eq 5060
    access-list 102 remark -- RTP Traffic --
    access-list 102 permit udp any any range 16384 32767
    in the feature set for the IOS currently running it suggests this configuration should work, however it will not apply the policy via the Cisco-AVPair command (the command is visible via the debug AAA per user so radius is working, even when we test it by applying the service-policy to the actual virtual-template it errors saying it will only work on an MPL bundle. From what I have read it is suggested that even though this feature is supposed to work, it does not in practice and an upgrade to a feature set which includes QoS:per session shaping and queueing on LNS is needed.
    If anyone has any experience of the or has any suggestion of if we can achieve our QoS for voice per session with the current IOS that would be great.

    This feature is not related to the NPE type. This feature is performance impacting so you should do some tests to see if your NPE-400 can support the number of L2TP tunnels you want with this feature enabled. If it's not the case, you will have to upgrade your NPE.
    HTH
    Laurent.

  • Create TO automatic by using wave pick for outbound delivery NLC (STPO)

    Dear all,
    In Cross company code process, we have to create TO automatic by using wave pick for outbound delivery NLC (delivery type NLCC). Time data in outbound delivery NLC have been fulfilled, but there is no TO created, what is wrong in this? pls help.
    Thanks

    Hi Kishor,
    Is there any requirement of TO when ECC system is Interfaced to EWM.
    As per my understanding we have terminology WT & WO in EWM.
    Regards,
    Rock

  • Max streaming connections per session error

    I have a flex application that uses messaging with a streaming AMF connection, falling back to polling. When the max number of streaming connections on the server is reached, it does fall back to polling (at least it prints the max-streaming-clients error but the client connects, so I assume it is falling back - how can I tell?). However, occasionally the streaming connection will not initialize and it does not fall back - no messages are received on the client. The following error is logged on the server:
    [EMST]09/25/2008 13:43:18.231 [ERROR] Endpoint with id 'my-streaming-amf' cannot grant streaming connection to FlexClient with id 'D5B8E3A1-1A1C-063E-84A6-6A743A1E4EE0' because max-streaming-connections-per-session limit of '1' has been reached.
    This would make sense if the issue was caused by trying to initialize the streaming connection in two tabs of a browser, but I am only trying to initialize in one tab. Closing the browser (and thus destroying the session) does not fix it. The only solution I've found is to reboot the client machine. This has happened in both FireFox 3.0.2 and IE 7.
    (1) What could cause the client to get in this state?
    (2) When it happens, why doesn't it fall back to polling? Is the fallback only for when the server max connections is reached? When the streaming connection doesn't initialize, no messages are received.
    (3) Is there a way to explicitly close the streaming connection on the client so we can fix this without rebooting?
    Thanks!

    Hi Mary. If you turn on Debug level logging on the client and the server you should be able to tell if you have fallen back to a polling channel after the attempt to connect over the streaming channel has been rejected. In the client log, you will see the flex application sending poll requests to the server at the polling interval configured in the channel and in the server log you should see that the server is receiving these requests.
    The behaviour you are seeing seems very strange to me. The reason we have the max-streaming-connections-per-session limit on the server is because most browsers limit the number of active connections that can be made to a server from a single session. In IE for example, this is 2. What happens in most cases when the browser's connection limit is reached is that new connections are put on hold until one of the existing connections closes. This would cause your flex application to hang with no errors being reported on the client or the server. This is why we need the max-streaming-connections-per-session setting on the server. This prevents more than one persistent connection from being made from the same session, so the browser should never reach it's max connections per server limit and lock up.
    It looks like you are somehow getting the browser to lock up even though the server is only limiting you to one streaming connection per session. It may be possible to do this if you reload the flex application in the browser (by doing a page refresh) in which case the browser could possibly briefly leave the streaming connection open in the background and when you tried to create a new streaming connection, the browser's connection limit to the server would have been reached and the application could hang. When the application hangs are you reloading the swf/page in the browser?
    I really don't know why closing the browser wouldn't fix the problem. You're right that closing the browser should end the session. If you launch a new browser and load the swf do you get the same "cannot grant streaming connection" error on the server or is the browser just locked up, ie. no error is received on the client and the server?
    You're not using a proxy server or anything like that are you that might be holding a connection open to the server?
    -Alex

  • Just got an iphone but mail doesnt collect automatically - push or fetch??

    I have just started using my new iphone but noticed that the mail doesnt collect automatically. I have successfully setup up my hotmail plus account and if I click on mail it will search and update new mail but I was under the impression that it would frequently search for mail without me having to do that using the 3G technology by accessing my email server? I am currently set to "push" data should I be fetching instead?

    Push email account access is supported with an Exchange account, a MobileMe account, and with a Yahoo account when using the Yahoo account preset when creating the account with the iPhone's mail client.

  • This is what i have:eMac Machine Model:     PowerMac6,4   CPU Type:     PowerPC G4  (1.5)   Number Of CPUs:1   CPU Speed:     1.42 GHz   L2 Cache (per CPU):     512 KB   Memory:512 MB   Bus Speed:     167 MHz   Boot ROM Version:     4.9.2f1? can i update

    this is what I have
    eMac
      Machine Model:          PowerMac6,4
      CPU Type:          PowerPC G4  (1.5)
      Number Of CPUs:          1
      CPU Speed:          1.42 GHz
      L2 Cache (per CPU):          512 KB
      Memory:          512 MB
      Bus Speed:          167 MHz
      Boot ROM Version:          4.9.2f1
    can i update to snow leopard?? and how?  im having a hard time its my first mac.   I need to to create documents, Im trying to avoid buying a new computer.

    You cannot upgrade to snow leopard. Snow leopard was the first of os x to drop support for the motorola ppc processors. The latest you could possibly run would be leopard.
    Hope it helps,
    Ryan

  • Lion 10.7.2 On both mac book pro and iMac, both with Lion 10.7.2, obtain repeated iCal event notifications from calendar or address book.  Cannot turn these off.  They repeat several times per session and every time computer is used.  How to diagnose this

    Lion 10.7.2 On both mac book pro and iMac, both with Lion 10.7.2, obtain repeated iCal event notifications from calendar or address book.  Cannot turn these off.  They repeat several times per session and every time computer is used.  How to diagnose this?

    First, uninstall "SuperTV" (whatever that is) according to the developer's instructions. It isn't working and it's filling the log with noise.
    If you have more than one user account, these instructions must be carried out as an administrator.
    Launch the Console application.
    Step 1
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left.
    Enter "BOOT_TIME" (without the quotes) in the search box. Note the timestamps of those log messages, which refer to the times when the system was booted. Now clear the search box and scroll back in the log to the last boot time when you had the problem. Post the messages logged before the boot, while the system was unresponsive or was failing to shut down. Please include the BOOT_TIME message at the end of the log extract.
    Post the log text, please, not a screenshot. If there are runs of repeated messages, post only one example of each. Don’t post many repetitions of the same message. When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    PLEASE DO NOT INDISCRIMINATELY DUMP THOUSANDS OF LINES FROM THE LOG INTO A MESSAGE. If you do that, I will not respond.
    Important: Some private information, such as your name, may appear in the log. Edit it out by search-and-replace in a text editor before posting.
    Step 2
    Still in Console, look under System Diagnostic Reports for crash or panic logs, and post the most recent one, if any. In the interest of privacy, I suggest you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header of the report, if present (it may not be.) Please don’t post shutdownStall, spin, or hang logs — they're very long and not helpful.

Maybe you are looking for

  • Is there a way to enter a link & have it go to a specific spot on the page?

    hi, i have a long list of items and i want to have a directory at the top of the page.. then a person can click on an item and it takes them to the middle of the page or so... then a link that says "top of page" underneath the items.. is this possibl

  • The trash icon is missing from the sidebar in iPhoto.

    In my sidebar when on iphoto I often used the trash icon there to delete photos quickly. All of a sudden I notice it is no longer there. How do I put it back please? Thanks.

  • Something is eating harddrive on my Mac?.. Time Machine?

    Hello, every day I have less and less disk space on my StartUp disk. Like by two, three gigs or more a day. I'm not downloading anything, just browsing the web... Browsing the web should consume 10s of megs, rather than gigs... And after like, two we

  • FLVplayer Buffering bar doesn't work

    I have used a standard flv player (actionscript 3) component, standard skin, but when I add a buffering bar, the bar just runs through the whole movie. When I set up an actionscript 2 file and use the as2 components the buffer bar works as expected.

  • Key for 3DES

    Hi all i'm new to java card. i need to port a design using old secure chip that does not have a OS to a new chip that run JTOP. After Java card receives the APDU command, the data need to be decrypted using 3DES. How should i store these key during t