Two different application folders?

Why is users/username/documents the same as the "documents" on the sidebar, but users/username/applications is totally empty while the "applications" on the sidebar brings me to all my applications?

*"the "applications" on the sidebar brings me to all my applications?"*
Because that's where the sidebar link takes you. Remove it if you don't like it.
users/username/applications is for apps that are exclusive your user account. /Applications is for apps that all users on the computer can use.

Similar Messages

  • One instance for two different application

    Hello,
    I have to solve following problem..
    need have one instance of object for two different application..fist is standard SE application and second is EE (web)..
    SE application is a server..listen on and accepting connection from mobile phone..and EE application need to show list of connected devices and should say to SE application that new device was connected..
    I would like to do this without database..only server and web app..
    I have thought about RMI..but hope there is more simple solution..
    Thanks a lot for your ideas.
    Dmitrij

    I would like to do this without database..only server and web app..You have your reasons for wanting this to be the case. If you are sure you don't want a DB, then pass the state of the object between the two ends using XML as the transport form. As someone said, you can use JMS or you can write an HTTP POST or probably other transport mechanisms other people will suggest to actually get it over the wire from one side to the other.
    As to your question of how to sync state, just make the object you're sharing final after it's been created (on the side that creates it) and make the reference that receives it and holds it final also, after you've reconstructed it from the XML you received.

  • Service Contract and Service Quote, Are they two different application or s

    Service Contract and Service Quote, Are they two different application or same application ?
    What is the difference ?
    thanks
    siva

    Siva
    There is no application called Service Quote (But we can have services in the quoting lines).
    Thanks
    Nagamohan

  • I am unable to bookmark the same website in two different bookmark folders without one being automatically deleted by Firefox?

    I am a recent convert to Firefox. Regarding bookmarks: it seems that you cannot create a new bookmark the same website in two or more different bookmark folders. For example, if I bookmark a website in a bookmark folder called 'ABC' and then bookmark the same website in a different bookmark folder called XYZ, the bookmark will be in XYZ, but will be removed from ABC. This happens even when I assign a different name for the bookmark in ABC and XYZ.
    Is this the correct bookmark functionality or am I not doing something correctly? Thanks.

    You can do a Copy & Paste in the Bookmarks Manager (Shift+Ctrl+B) to create a copy of a bookmark.
    You can also drag the (fav)icon on the left end of the location bar to a folder in the Bookmarks menu drop down list or to a folder in the side bar (Ctrl+B) or to the Bookmarks Toolbar.
    In the side bar you need to click to the left of the icon to prevent Firefox from opening the bookmark.

  • Drag and Drop Swing Components between two different Application Windows

    Hi!!!
    I tried the Dnd feature using the DnD api. It was a simple test, where I ahd two different app windows each made up of a JLabel. One I registered as drag component and the other as a drop component. the drop componenet(JLabel) does not have any text making it invisble to the eyes. When I drag the other JLabel to the drop window, the drop JLAbel takes the text value. I was successful so far.
    But can I do the same for any other Swing component in a scenario where when I drag the component, the component should have physically moved into the other window.
    any help on this with sample code will be greatly apprciated.
    Thanks in advance
    Suja

    Ok I found the answer to your problem. If you download the tutorial they have the code there it's in one folder. I hope this helps.
    http://java.sun.com/docs/books/tutorial/

  • How to keep same database with two different names in SharePoint 2013 for two different applications

    Hi All,
    I have very strange situation.
    I had SP2010 production database(wss_content_contoso) migrated to SP13 few months back to migrate one site collection only while I have 15 site collections stored in this database and created a site contoso.com
    Now, I want to migrate same(wss_content_contoso) SP2010 database to SP13 and want to create contoso2.com.
    I changed database name from wss_content_contoso to wss_content_contoso2 and assigned newID during mount process.
    After this exercise, I don't see any site for contoso2.com and issue seems to be the same database. 
    My question is!!!!
    How I can keep both databases(actually same database with different names) and run both application simultaneously?
    Any help appreciated!!
    Thank you,
    AM
    AM Senior SharePoint Consultant

    You need to run Backup-SPSite/Restore-SPSite on each Site Collection you want to 'duplicate'. You cannot restore the same Content Database to the same farm as the Site Collections have the same GUID, which is stored globally for the farm.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Two Libraries and two different music folders? How it works?

    Hi all
    I have made two Itunes Libraries with Shift + Itunes Start.
    But if I Change at Library 1 the settings for "Itunes Music Folder" manage and the Copy options, Itunes writes these settings for both Libraries. First Library should be managed with Music Folder 1, the second Library should not be managed bei Itunes and should be connected to another music folder.
    Please for a hint.
    Thank you

    thx for the answer.
    I have to logout my windows account, login with a new one, start itunes, sync my Ipod Touch with the video library, logout, login with my main account?
    So i have to use Libra for the next time.

  • Using values of two different applications that are from the same class

    Hi,
    See the following little program
    What I can't figure out is
    i) How to change the values if I add a button
    ii) How to print just app.x1 etc. The way I have it now, it will just print x1, y1 etc, from both app and app1, but I want to be able to distinguish between the two of them so I can use the values.....ie for example add app.x1 and app1.x2 (only using that as an example of what I want to use them for)
    I'd really appreciate if anyone could help me out, it's probably simple, but just cant figure it.
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class drawLine extends JFrame{
    int x1, y1, x2, y2;
    JPanel topPanel;
    JButton button;
    public length l, l3;
    public drawLine(){
    super("drawLine");
    public drawLine(length l){
    this.l = l;
    topPanel = new JPanel();
    button = new JButton("Change");
    topPanel.add(button);
    getContentPane().add(topPanel, BorderLayout.NORTH);
    x1 = 100;
    y1 = 100;
    x2 = l.x2;
    y2 = l.y2;
    System.out.println(x1 + " " + y1 + " " + x2 + " " + y2);
    /*button.addActionListener(
    new ActionListener(){
    public void actionPerformed(ActionEvent e){
    l.length();
    repaint();
    public void hello(){
    System.out.println(x1 + " " + y1 + " " + x2 + " " + y2);
    public void paint(Graphics g){
    draw(g);
    public void draw(Graphics g){
    g.drawLine(x1, y1, x2, y2);
    public static void main(String args[]){
    length l1 = new length();
    length l2 = (length)l1.clone();
    l1.length();
    l2.length();
    drawLine app = new drawLine(l1);
    app.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
    app.setSize( 300, 300 );
    app.move(0,0) ;
    app.setVisible( true );
    drawLine app1 = new drawLine(l2);
    app1.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
    app1.setSize( 300, 300 );
    app1.move(300,0) ;
    app1.setVisible( true );
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class length implements Cloneable{
    String whatlength;
    int llength;
    int x1 = 100;
    int y1 = 100;
    public int x2, y2;
    public void length(){
    whatlength = JOptionPane.showInputDialog("What is the length of the line");
    llength = Integer.parseInt(whatlength);
    x2 = x1 + llength;
    y2 = y1;
    public Object clone() {
    Object object = null;
    try {
    object = super.clone();
    catch (CloneNotSupportedException exception) {
    System.err.println("AbstractSpoon is not Cloneable");
    return object;
    }

    I've tried it like this, ie by adding an int to drawLine and trying to keep an array of lengths, which sortof works, but see the code I have commented out in the button actionListener class. What I thought I'd ba able to do is access the arrays like that.....how come it gives me an exception?
    public class drawLine extends JFrame{
    int x1, y1, x2, y2;
    JPanel topPanel;
    JButton button;
    public length[] linelength = new length[2];
    public drawLine(final length l, final int k){
    super("drawLine");
    this.linelength[k] = l;
    topPanel = new JPanel();
    button = new JButton("Change");
    topPanel.add(button);
    getContentPane().add(topPanel, BorderLayout.NORTH);
    x1 = 100;
    y1 = 100;
    x2 = linelength[k].x2;
    y2 = linelength[k].y2;
    button.addActionListener(
    new ActionListener(){
    public void actionPerformed(ActionEvent e){
    //Update the length object int's
    linelength[k].getLineLength();
    // Copy these ints back to the drawline object
    x2 = linelength[k].x2;
    y2 = linelength[k].y2;
    System.out.println(k + " " + linelength[k].x1 + " " + linelength[k].y1 + " " + linelength[k].x2 + " " + linelength[k].y2);
    repaint();
    /*********This bit gives me a null pointer exception ********
    linelength[0].x1 = linelength[1].x1;
    linelength[0].x2 = linelength[1].x2;
    linelength[0].y1 = linelength[1].y1;
    linelength[0].y2 = linelength[1].y2;
    public void paint(Graphics g){
    g.clearRect( 0, 0, getWidth(), getHeight() );
    draw(g);
    public void draw(Graphics g){
    g.drawLine(x1, y1, x2, y2);
    public static void main(String args[]){
    length l1 = new length();
    length l2 = (length)l1.clone();
    l1.getLineLength();
    l2.getLineLength();
    drawLine app = new drawLine(l1, 0);
    app.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
    app.setSize( 300, 300 );
    app.move(0,0) ;
    app.setVisible( true );
    drawLine app1 = new drawLine(l2, 1);
    app1.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
    app1.setSize( 300, 300 );
    app1.move(300,0) ;
    app1.setVisible( true );
    }

  • Getting attributes from session between two different applications

    I'm developing with JDK 1.3 and deploying my webapp at ORACLE 9iAS.
    I would like to jump between JSPs deployed at differents OC4J instances and
    keep session object. I've seen I can get sessionID and it's the same but the attributes have disapeared.
    I jump using JavaScript code (document.location.href).
    Should I use a <form> ?
    Should I use getServletContext() method ?
    I dont know even if it's possible and I don't want to loose my time looking for a solution that doesn't exist.
    NEED HELP, AN EXAMPLE OR WHATEVER USEFUL.
    ... THE SOON AS POSSIBLE
    THANX in advance
    PS..- I have already look for in this forum but I didn't get any info to solve my doubts. If I mistaken please let me know

    Ok.
    getServletContext().getContext() may return null in 'security conscious' servers. Apparently this is your case, therefore you wouldn't be able to use it to store global data...
    As for sharing sessions directly between different web apps, the servlet spec (since 2.2 at least) explicitely prohibits it.
    The link provided by tolmank about pseudo-sessions should address your issue, since it will allow you to distribute your session data on your different webapps.
    Some other alternatives would be :
    -store the session data in the DB (slow)
    -use java serialization
    -use RMI
    -use JNDI
    -if you're using Tomcat, you can implement single-signon accross multiple apps using cookies :
    http://www.ingrid.org/jajakarta/tomcat/tomcat-4.0b5/src/catalina/docs/singlesignon.html

  • What's the difference between the multiple application folders?

    So its not really a huge issue, but I noticed the other day that there are two different Applications folders.  There's the one that is on the sidebar when you open finder, and then there is one when you are under your user.  What is the difference between the two?  I was under the impression that they were the same, but the Applications folder on the sidebar has all my applications in it while the one under my user has none.  Can someone explain this?

    The one under your home folder is for apps that installed only for your user.  Other users of the computer don't have those apps available.
    The other one is system wide.  All users have the app available.
    Regards,
    Captfred

  • How to sync files from two different subscriptions in two different CC desktop folders

    HI,
    I have two CC subscriptions, one for work and one personal. I ran the work subscription in two computers at work and at home (when I need to work from home.) The problem  I find is that there is not two different CC folders for each subscription. When I log out from my work subscription, all my files for that subscription go away. Then when I log in again, they whole syncing process starts all over again. I chose to have two different subscriptions so not to mix my personal work with my work's. Is there a way to have a CC folder on my desktop for each subscription? In this way, when I log out from one account and go to the other the files of the account I just logged out don't get replaced for the files of the account I  just logged in.  Any help with this will be greatly appreciated.

    Hi,
    I just want to let you know what you should be seeing when using 2 accounts.
    Account one:
    1. Log in with Adobe ID for account one
    2. Files sync to Creative Cloud files which is located in your home directory on Mac or Windows.
    3. Log out of account one, Creative Cloud now displays the log in panel.
    Account two:
    1. Log in with Adobe ID for account two
    2. Files sync to account 2's Creative Cloud files which is located in your home directory on Mac or Windows. (Account one's Creative Cloud Files folder is re named)
    Thing to check for are:
    After you logged in to account two, the Creative Cloud folder for account 1 should now be renamed, can you check this please to make sure it has.
    The same is true is you log back in to account one, account two's Creative Cloud folder will be renamed.
    The data should not have to fully re-sync ever time you log out of account 1 and then into account 2, however, can you be sure that the data is actually re downloading. ie; you had 5GB of data in account one and when you log into account 1 the whole 5GB of data is re downloading?, could you check this?
    The Creative Cloud files panel will display "Syncing" for a short while is you switch accounts, this is normal and means the application is reading data on disk and data on the server checking for changes/added files etc. This is not re-downloading all of your data, it is simply checking.
    You are able to move the Creative Cloud files folder to any location on your local hard drive via the Creative Cloud prefs.
    Thanks
    Warner

  • Can I run two applications at once from two different computers?

    Good Evening,
    I would like to use the cloud service. I have read over the FAQs and they were quite clear, however I did not seem to find something to the effect of what I need answered.
    If I were to download the apps on a backup computer and my personal computer, can I run for example a photoshop application on one computer, while running an encore application on the other computer at the same time?
    The FAQs state that I can pick and choose which apps I want on a computer. Will I be able to download a portion of the apps on my personal computer and the remaining on a backup computer, while being able to use a portion on computer and another portion on another computer at the same time?

    You could be working in two different applications on two different computers, going back and forth between them.
    You can install any of the applications that you wanted to use on either of the computers but still only on two computers overall.
    Hope that helps,
    -Dave

  • Different  timeout for two protected applications with same AM 7.1

    I have a AM 7.1 configuration planned.
    We need to protect two different application url's; And provide different session & idle timeout for each of these url's.
    Can we configure different timeout for two protected URL's / applications configured with same AM 7.1 ?
    /Kasi

    Hi,
    I have not actually configured this, but you can create a policy for that application with an "Active Session Time" condition.
    You also have an option there to destroy or not the session.
    But if the user is allowed to do SSO between the 2 applications then you should consider if you can destroy the session or not.
    Hope this helps.
    Andrei

  • ITunes is saving my Apps in two different places

    When I buy an App in iTunes it is downloaded to
    ~/Music/iTunes/Mobile Applications
    But when I by an app direct from my iPod and then sync with iTunes, it appears on my hard drive in:
    ~/Music/iTunes/iTunes Media/Mobile Applications
    This means I have two Mobile Application folders, both with unique content.
    I have consolidated the library and have updated to the new media organisation.
    Is this normal behaviour for iTunes and iPod to use different Mobile Application folders?
    Why isn't iTunes defaulting to the new media organisation and putting Mobile Apps inside the Media folder?
    Thanks for any help.

    Further Investigation:
    1. I thought that maybe ~/Music/iTunes/Mobile Applications was a legacy folder, so I deleted it and downloaded a free App from the app store (using iTunes)
    iTunes created the folder again and put the App inside it!
    2. Another strange discovery - If you consolidate the Library to an external Hard Drive, iTunes merges the contents of the two local Apps Folders and puts them in ExternalHD/iTunes/iTunes Media/Mobile Applications
    I wonder why it is keeping this legacy folder in the Home Directory, and why it is still putting new Apps there, but then putting new Apps from the iPod/iPhone into iTunes Media

  • Sessions in jspx between different Application Server

    Hello All,
    I have two applications running in two different Application servers.
    I call the jspx in one applications server from jspx of another applications server using the href.
    My requirement is, when I logout the first application it shud automatically inviladate session in the second jspx also.
    Is there any way of acheive this..
    Also please pass on any links to work on sessions in jspx.
    Thanks
    Krrish

    Hi frank,
    Thank you for the reply..
    Can you please provide any links to SSO enabling the custom application.
    Thanks
    Krrish

Maybe you are looking for