How to implement a file system in my app?

How to implement a file system in my app? So that we can connect to my iPhone via Finder->Go->Connect to Server. And my iPhone will show as a shared disk. Any ideas about it? Thanks.

Hi Rain--
From webdav.org:
DAV-E is a WebDAV client for iPhone, with free and full versions. It provides remote file browsing via WebDAV, and can be used to upload pictures taken with the iPhone.
http://greenbytes.de/dav-e.html
http://www.greenbytes.de/tech/webdav/
Hope this helps.

Similar Messages

  • How to determine the file system on Solaris

    Friends,
    How to determine which file system I have installed UFS or ZFS on Solaris
    Thanks

    Other methods would include looking at the /etc/vfstab if it's in there or fstyp(1M):
    System Administration Commands fstyp(1M)
    NAME
    fstyp - determine file system type
    SYNOPSIS
    fstyp [-a | -v] special [:logical-drive]

  • How to extend the file system?

    hello experts,
                             how to check wether file system is full?and how to extend the file system?

    Hi,
    You can check whether your file system occupancy using Unix level command df -k.
    how to extend the file system?
    Whats the OS platform you working upon and need to extend the file system. Based on individual OS platform commands may vary.
    Regards,
    Deepak Kori

  • How to find .pld files version in Oracle apps

    Hi,
    How to find .pld file version in Oracle apps using unix command or any other way.
    Regards

    Connect to the forms server.
    In the $AU_TOP/resource directory run the following...
    strings -a <NAMEOFFILE>.plx | grep '$Header'
    For example...
    To find the .pld version of INVAMCAP.plx I would run this on the forms server.
    cd $AU_TOP/resource
    strings -a INVAMCAP.plx | grep '$Header'
    This will return the .pld version.
    Hope this helps!
    Jen

  • HT204053 How do i move files from my dropbox app to my music app on my ipad?

    How do i move files from my dropbox app to my music app on my ipad?

    You can't.
    You have to add them from DropBox to iTunes on your computer and then sync them to your iPad

  • How to implement an audit system to track ADF applications DML activity?

    We have implemented a complete audit system for one of our databases in order to keep history for every table and every value that has been modified.
    The solution that we currently have can be split into two discrete parts:
    1. Keeping a record of all connections to the db account
    This is achieved via a table ‘user_sessions’ into which we record data for every session in the database with the help of on-logon and on-logoff triggers and some PL/SQL procedures:
    Column name        |  Explanation
    -------------------|-------------------------------------------
    US_ID              | PK, based on a sequence
    SESSION_ID         | sys_context('USERENV' ,'SESSIONID')  
    USER_NAME          | sys_context('USERENV' ,'OS_USER')
    LOGON_TIME         | when the on-logon trigger fires
    LOGOFF_TIME        | when the on-logoff trigger fires
    USER_SCHEMA        | sys_context('USERENV' ,'SESSION_USER')
    IP_ADDRESS         | sys_context('USERENV' ,'IP_ADDRESS')
    us_id |session_id |user_name|user_sschema|ip_address|logon_time               |logoff_time     
    560066|8498062       |BOB      |ABD         |1.1.1.2   |14-SEP-06 03.51.52.000000|14-SEP-06 03.52.30.000000
    560065|8498061       |ALICE    |ABC         |1.1.1.1   |14-SEP-06 02.45.31.000000|14-SEP-06 04.22.43.0000002. Keeping the history of every change of data made by a given user
    For every table in the account there is a corresponding history table with all of the columns of the original table plus columns to denote the type of the operation (Insert, Delete, Update), start and end time of validity for this record (createtime, retiretime) and us_id (which points to the user_sessions table).
    The original table has triggers, which fire if there is an insert, update or delete and they insert the data into the corresponding history table. For every record inserted into a history table the us_id taken from the user_sessions table is recorded as well, allowing us to determine who has modified what data via the combination of these two tables.
    Below is an example of a table TASKS, the history related triggers and the history table TASKS_HIST.
    At the moment we are developing new applications by using ADF. Since there is an Application Module Pool and Database Connection Pool implemented for the ADF, one connection to the database could be used by several users at different moments of time. In that case the history records will point to a database session logged into the user_sessions table, but we will not know who actually modified the data.
    Could you, please, give us a suggestion, how we can know at any moment of time who (which of our users currently making use of an ADF application) is using a given database connection?
    By way of an example of the problem we are facing, here is how we solved the same problem posed by the use of Oracle Forms applications.
    When the user starts to work with a given Forms application, user_sessions table would attempt to record the relevant information about he user, but since the db session was created by the application server, would in actual fact record the username and ip address of the application server itself.
    The problem was easy to solve due to the fact that there is no connection pooling and when a user opens their browser to work with Forms applications, a db connection is opened for the duration of their session (until they close their browser window).
    In that case, the moment when the user is authenticated (they log in), there is a PL/SQL procedure called from the login Form, which updates the record in the user_sessions table with the real login name and ip address of the user.
    Example of a table and its ‘shadow’ history table
    CREATE TABLE TASKS (
         TASKNAME     VARCHAR2(40),
         DESCRIPTION  VARCHAR2(80)
    ALTER TABLE TASKS ADD (
         CONSTRAINT TASKS_PK PRIMARY KEY (TASKNAME));
    CREATE OR REPLACE TRIGGER TASKS_HISTSTMP
    BEFORE INSERT OR UPDATE OR DELETE ON TASKS
       BEGIN
         HISTORY.SET_OPERATION_TIME('TASKS');
       EXCEPTION
         WHEN OTHERS THEN
           ERROR.REPORT_AND_GO;
    END TASKS_HISTSTMP;
    CREATE OR REPLACE TRIGGER TASKS_WHIST
      AFTER INSERT OR UPDATE OR DELETE ON TASKS
      FOR EACH ROW
      BEGIN
    CASE
          WHEN INSERTING THEN
            UPDATE TASKS_HIST
               SET retiretime = HISTORY.GET_OPERATION_TIME
             WHERE createtime = (SELECT MAX(createtime)
                                   FROM TASKS_HIST
                                  WHERE retiretime IS NULL AND TASKNAME=:NEW.TASKNAME)
               AND retiretime IS NULL AND TASKNAME=:NEW.TASKNAME;
            INSERT INTO TASKS_HIST (TASKNAME      ,DESCRIPTION      ,optype
                                    ,createtime                    
                                    ,us_id)
                   VALUES          (:NEW.TASKNAME ,:NEW.DESCRIPTION ,'I'
                                    ,HISTORY.GET_OPERATION_TIME    
                                    ,USER_SESSION.GET_USER_SESSIONS_ID);
          WHEN UPDATING THEN
            UPDATE TASKS_HIST
               SET retiretime = HISTORY.GET_OPERATION_TIME
             WHERE createtime = (SELECT MAX(createtime)
                                   FROM TASKS_HIST
                                  WHERE TASKNAME=:OLD.TASKNAME) 
               AND TASKNAME=:OLD.TASKNAME;
            INSERT INTO TASKS_HIST (TASKNAME      ,DESCRIPTION      ,optype
                                    ,createtime
                                    ,us_id)
                   VALUES          (:NEW.TASKNAME ,:NEW.DESCRIPTION ,'U'
                                    ,HISTORY.GET_OPERATION_TIME
                                    ,USER_SESSION.GET_USER_SESSIONS_ID);
          ELSE
            UPDATE TASKS_HIST
               SET retiretime = HISTORY.GET_OPERATION_TIME
             WHERE createtime = (SELECT MAX(createtime)
                                   FROM TASKS_HIST
                                  WHERE TASKNAME=:OLD.TASKNAME) 
               AND TASKNAME=:OLD.TASKNAME;
            INSERT INTO TASKS_HIST (TASKNAME      ,DESCRIPTION      ,optype
                                    ,createtime
                                    ,us_id)
                   VALUES          (:OLD.TASKNAME ,:OLD.DESCRIPTION ,'D'
                                    ,HISTORY.GET_OPERATION_TIME
                                    ,USER_SESSION.GET_USER_SESSIONS_ID);
        END CASE;
      EXCEPTION
        WHEN OTHERS THEN
          ERROR.REPORT_AND_GO;
    END TASKS_WHIST;
    CREATE TABLE TASKS_HIST (
         TASKNAME       VARCHAR2(40),
         DESCRIPTION    VARCHAR2(80),
         OPTYPE         VARCHAR2(1),
         CREATETIME     TIMESTAMP(6),
         RETIRETIME     TIMESTAMP(6),
         US_ID          NUMBER
    ALTER TABLE TASKS_HIST ADD (
         CONSTRAINT TASKS_HIST_PK PRIMARY KEY (TASKNAME, CREATETIME)
           );

    Frank,
    Thanks for your reply.
    I checked the site that you mentioned.
    I try the sample “demo with bundle. The sample worked.
    But it needed to start separately with the application.
    I do not know how to build a help system with the existed web application developed with Jdeveloper (It has two projects: model and user-view-control. It is deployed on Oracle Application server).
    Could you help me step by step to build the help system?

  • How to work with file system in linux within a JSF app?

    I use this line in my backing bean to log some events:
    FileHandler fhxml = new FileHandler("../webapps/MyWebApp/Log/MyWebAppLog.xml", append);
    fhxml.setFormatter(new XMLFormatter());That works fine in windows but when I deploy it in my Tomcat 6 in linux It doesn't work. How can I work with file system in linux?

    You should never use relative paths to access the filesystem. The path would be relative to the current working directory which is not per se the same in all environments. To convert a relative web path to an absolute file system path, you need ServletContext#getRealPath(). Use this absolute file system path in the java.io stuff. In a JSF application on top of Servlet API you can get the underlying ServletContext by ExternalContext#getContext().
    Alternatively, if the file is located in one of the default paths of the classpath or if its path is added to the classpath, you can also just use ExternalContext#getResource() or even #getResourceAsStream() using just the file name.

  • How to design a file system based on java card

    I have reviewed all kinds of articles about it.And right now I can not find any source code to do that function.But how to design a full gsm file system using java card.
    of course you need fast access,dynamic allocate memory,file properties management.Let's talk about it.

    just do it.
    there is no such feature in the javacard api. This must be coded by hand, you have to manage memory, etc.
    I know, that's not cool.

  • How to create common file systems for both development & quality systems

    Hello Team
    Need some calrification & advise
    we are planning to install ECC6 with EHP5 on AIX7.1 with DB2 9.7 version on single physical server ( NO Virutal IP'S) for both development(SID : D10 & System number 20) & quality(SID : Q10 & System number 20) systems.And it will be running in single LPAR for development & quality systems.
    please advise me how can we create the below common file systems for both development & quality to avoid file permission & installation issues.
    /sapmnt/<SID>
    /usr/sap/
    /usr/sap/trans/
    /db2/IBM
    Thanks in advance & Regards
    BM

    Thanks you Juan for your response
    We are planning for seperate DB instance only.
    what could be the owner(UID) & group(GID) for the below file systems
    /sapmnt/
    usr/sap/
    usr/sap/trans
    Thanks in advance
    BM

  • /em/console/notif/addMetrics, How I specify multiple file systems?

    People,
    In EM 10gR2,
    How do configure
    Filesystem Space Available (%)
    metric which I find here:
    /em/console/notif/addMetrics
    It seems obvious if I have just 1 file system to monitor.
    I just type in /u01 for example.
    How do I specify multiple file systems?
    Do I separate each file system name by a comma:
    /u01, /u02, /u03
    ...Peter
    http://GoodJobFastCar.com

    You can use like /u0*

  • How do I switch file systems?

    I have /home on a separate partition with jfs as it's file system. It is driving me bonkers by freezing and having to be restarted and checked every hour or so. It just started doing it this much just over the last week since my gal got a new Dell XPS with Vista. It seems to happen much more frequently when I have had the computer on for long periods when she is also on the wireless network. It's a Linksys Wireless N WRT300N, she has an Intel Wireless N card that I believe is the latest model, the 5100, and I have the 4965.
    All of my temps are reading normal, including the hard drive. I have never had a fail from the reiserfs / partition, or any ext3's that I had had in the past. I just want to swap it back to the ext3, because I have not seen any performance gains, and it has this lovely freezing issue.
    I have it mounted noatime and nodiratime (I think thats the spellings for those two) and I have made sure to keep the commit times fairly low so it doesn't use up the hard drive's Load Cycle Count, because mine is one that has that issue in Linux. (Has it in Win Serv 2k8 as well, but that is another story.)
    I know that I can simply reformat the partition my home partition is on, but I am not sure how to go about re-establishing the /home and the users that are stored on the partition. I've taken out the / partition and re-installed leaving the /home, but I have never just done the /home.
    Is there an easier way to alter the file system? or am I just going to have to deal with a reformat?

    This guide describes the procedure I use when I want to switch a partition to a different filesystem: http://inferno.slug.org/cgi-bin/wiki?Dr … nd_Cloning
    It needs to be adjusted intelligently for Arch (i.e. sda rather than hda and so on) but the general principle remains the same.

  • How to create a file-system repository

    I am tring to find the path 
    Content Management>Repository Managers>File System Repository.
    I cannot find this under Content Management.
    I am trying to create an external repository on a UNIX filesystem
    Thanks
    JB

    hi Jeremy,
    If you are using EP 6, for creating the file system repository go to the following path.
    System Administration->System Configuration->Knowledge Management->Configuration->Content Management -> Repository Manager -> File System Repository.
    Regards,
    Moiz Khan

  • How do I add files to third party apps?

    Hey guys,
    I recently updated iTunes to 12.1. I needed to add some pdf files to my iPad for a class. In previous versions of iTunes, I would just click the app tab and there would be a section for Adobe Reader/Acrobat where I could click and drag the file. Now that I've updated, I can't seem to find that section. How do I add files? Thanks in advance.

    You're welcome.
    tt2

  • Backup of application file system in oracle apps 11i

    what are the ways to take the backup of application file system in oracle application 11i ?
    Can anyone suggest regarding this ?
    Application :11.5.10.2
    OS : RHEL 3.0

    Check the following threads:
    Apps Backup
    Re: Apps Backup
    Backup Oracle Applications (11.5.10.2)
    Re: Backup Oracle Applications (11.5.10.2)
    Best Backup Strategy
    Re: Best Backup Strategy
    System Backup
    system backup
    Reommended backup and recovery startegy for EBS
    Re: Reommended backup and recovery startegy for EBS

  • How to implement for sap system use HADR

    hi expert ,
           i am a newbie to sap basis, we have a requirement that do HA for our sap using HADR,i want know if there are some good sulotion for my scenario。
       our scenaro is we have two window 2008 sever host,one host  has a sap system and we want the sap db2 database as a primary,and the other host also has a same the system which is restore from the previous sap system which we implement by system copy using database restore not migration。i want know as our secanrio could i achive SAP application HA by HADR,if we donu2018t have  HA  software  like MSCS。whether we must manual monitor the primary sap   when it stop because any issue like hardware failed and then manual start the other sap system in the other host?
      our two sap system have different sap profile beacause the hostname are different.
    our aim is when one of our host can't use we can immediate start the other sap system in the other host, the less the change the better the solution .
    is it possible?
    thanx very much,
    best regards.

    hi paul ,
        thanx for your information,i have already read the inforamtion about sg247363 once-over and SAMP。 but unfortunately we have a different situation,we only have two windows servers and must installed windows server 2008 OS because some reasons。we also don't have have other host to install sap。as this situation,how could we implement HA beacuse we also don't have shared disk。the window server are isolation。
    i  also read some pdf which download from sdn , in the book the HA is  implemneted as the sap application has a separate host and has two host for DB2 database using HADR,the HA is rely the cluster software 。in this situation the sap application also need HA to avoid single point failure。
        as the limited i have said above, is it possible to do HA by MSCS ,can any body tell me if the MSCS is free to install in OS windows 2008? if we can't use it  free,have any other solution?in the worst , we must manual monitor the application and when a sap application or database can't work ,we want to restart the other sap which in the other host,we need the database synchronization between two database which using HADR。is it possible ?if it do, whether there are some additional setup for sap application because the two sap application have different sap profile name(a sap is a system copy from the other by database restore)。
        any reply will be appreciated。

Maybe you are looking for

  • How can I get ALL my songs from my ext.HD into my new Mac?

    They are ALL backed up from my old computer onto an external HD. But they stay there. The only ones I can get are those that I purchased from the iTunes store. How can I transfer the others? Any suggestions?

  • Problem with bluetooth driver (bootcamp windows 7) ! Can't connect any bluetooth device...

    1st word, so sorry about my poor English ! My device here is : macbook pro mid 2012 MD101 (MacOSX & Windows 7 Ultimate, my question here's on Windows 7) ! I have a bluetooth mouse and a speaker, at my workplace I need to use 2 devices wireless, altho

  • Problem in pp order settlement

    I tried to settle production order system displays message "there are no accrued amounts;settlement is not possible where as when I go to cost-->analysis actual cost is visible in the order. The posting period is also correct. Can any body help me in

  • BB hardly working at all!

    hi i was looking for help on a few issues that have happened with my BB first of all it was working for about 3 days after the activation day , 2 weeks ago on wednesday , and i thought i needed to settle down for 10 days like the help site says its b

  • How to: enable 3D acceleration for Savage IX/MV graphic cards

    'lo all, I'm trying out Arch Linux and this my first post on this forum. Here is my solution for a hardware configuration issue. This was also posted on the Ubuntu forums. Regards Satellite Pro 4280 laptops come with a S3 Savage IX/MV graphics card w