Parent Directory

i need Help!
My parent directory displays in the web browser. How do i
get rid of this. i am pretty new to websites so any suggestions
would be greatly appreciated..
THANKS

PCL_Jennifer wrote:
> i need Help!
> My parent directory displays in the web browser. How do
i get rid of this. i am pretty new to websites so any suggestions
would be greatly appreciated..
> THANKS
Talk to your host, or place an "index.htm(l)" in your parent
folder,
or if you're hosted on UNIX, google ".htaccess"
Mick

Similar Messages

  • How to get immediate parent directory name of a file

    Hi,
    I have file Object that points to a file. I want to know how I can get just the name of the parent immediate to the file For example, if the path of this file is, c:\\ProgramFiles\first\second\third\myFile.txt
    In the above, how can I obtain the last directory in which myFile.txt resides ?
    Thanks
    Sangeetha

    File myFile = new File("c:\\ProgramFiles\\first\\second\\third\\myFile.txt");
    File parentFile = myFile.getParentFile();
    String parentDirectory = parentFile.getName();
    System.out.println("Parent directory is "+parentDirectory);Here's the explanation...
    1) New File is created
    2) File.getParentFile returns the immediate parent of the current File, which happens to be a directory.
    3) File.getName() returns the name of the File, without the entire directory structure.
    Hope this helps :)
    Simon

  • Reading files from the parent directory

    Hi all, I'm just wondering if files can be read from the parent directory.
    I've created a package and realise that for one function it needs to read from a file which was created in the parent directory. I've tried:
    BufferedReader inPut =
    new BufferedReader(new FileReader("../file.txt"))
    but it's still saying that it can't find the file.
    Any ideas if I can read that file?
    Thanks

    How about using the getParent() or getParentFile from the File class?

  • Save As in Parent Directory

    I am trying to create an process and action that does the following:
    Process outside of PS that stages files for edit
    PS Action to set selection(s) (each selection is on its own channel) on the original tif
    PS Action to open Background template file (.bmp file)
    PS Action to paste selection(s) in place (from channels) into .bmp file
    PS Action to flatten document
    PS Action to Save As a .bmp using the current file name one directory up
    Process outside of PS that cleans up and moves files
    I am good on steps 1 through 5 and 7, but cannot figure out step 6 in a Win7 environment.  Basically, I edit images in a staging folder before moving them to the parent.  Then the parent folder is cleaned up and pulled into a permanent storage location.  So the workspace looks like this:
    Starting file structure (three .bmp files and two subfolders in ...\parent)
    ...\parent\File1.bmp  {old}
    ...\parent\File2.bmp
    ...\parent\File3.bmp
    ...\parent\Delete\
    ...\parent\Working\
    Next step:  New File1.tif is sourced and placed in Working Folder, Current File1 is moved to Delete Folder
    ...\parent\File2.bmp
    ...\parent\File3.bmp
    ...\parent\Delete\File1.bmp  {old}
    ...\parent\Working\File1.tif
    Next step:  Edit File1.tif in Working Folder and run final action - Save As .bmp in one folder up (...\parent\)
    ...\parent\File1.bmp  {new}
    ...\parent\File2.bmp
    ...\parent\File3.bmp
    ...\parent\Delete\File1.bmp  {old}
    ...\parent\Working\File1.tif
    Last step, Cleanup:  Remove the Delete/Working subfolders, move files to new location
    ...\parent\File1.bmp  {new}
    ...\parent\File2.bmp
    ...\parent\File3.bmp
    How can I do the Save As step??

    I am just using parent to illustrate.  It actually looks like this, where parent and file names are variable and each edit work driver may require editing a different {old} bmp:
    ...\04969\1234_1.bmp  {old}
    ...\04969\1234_2.bmp
    ...\04969\1234_3.bmp
    ...\04969\Delete\
    ...\04969\Working\
    How would the coding change for the following:
    1) Working multiple edits and editing different files each time
    2) Working multiple edits and and the names of the parent directory changed for each edit? 
    3) Working multiple edits and and the names of the files changed for each edit? 
    So Edit 1:
    ...\04969\1234_1.bmp 
    ...\04969\1234_2.bmp  {old}
    ...\04969\1234_3.bmp
    ...\04969\Delete\
    ...\04969\Working\
    Edit 2:
    ...\04969\1236_1.bmp 
    ...\04969\1236_2.bmp
    ...\04969\1236_3.bmp  {old}
    ...\04969\Delete\
    ...\04969\Working\
    Edit 3:
    ...\89001\2255_1.bmp  {old}
    ...\89001\2255_2.bmp
    ...\89001\2255_3.bmp
    ...\89001\Delete\
    ...\89001\Working\

  • Obtain parent directory of WEB-INF from within a servlet

    hi to everyone!
    i have got a directory containing a WEB-INF directory (with web.xml and all the other stuff necessary). Hoy is it possible to obtain the parent directory of WEB-INF directory FROM WITHIN A SERVLET, put in lib directory?
    let's say:
    A----WEB-INF---classes
    ---lib----MyServlet.jar
    ---tlds
    ---dtds
    How can I get A from within MyServlet.jar? Please help. Thank's a lot...
    Wendigo

    getServletContext().getRealPath("WEB-INF")

  • Installing oracle 11.1.0.6.0 in the same parent directory on Linux server(OEL 5),

    Hi All, This was regarding installing Oracle 11gR1 on the same linux server machine, where oracle 10.2.0.1.0 resides, i tried to install 11g on the same parent directory /u01 where 10g directory present, i.e,
    for 10g - /u01/app/oracle/product/10.2.0/db_1/
    and
    for 11g - /u01/app/oracle/product/11.1.0/db_1/
    my doubt is whether /u01/app/oracle/oraInventory/  will be disturbed ? at the stage of executing configuration scripts, oracle prompted only for root.sh script and didn't ask for oraInstroot.sh?
    will the 10g features gets affected ?,
    I found 10g database opening successfully after running it's bash_profile, and also when 11g database needed, it also opened successfully (in another session) after its  seperate bash_profile being executed in another session,

    You may be confused between ORACLE_BASE, actually the common directory of both ORACLE_HOMEs (one for 10g, one for 11g).
    /u01/app/oracle is your ORACLE_BASE where sit the oraInventory and some other common folders.
    /u01/app/oracle/product/10.2.0/db_1 and /u01/app/oracle/product/11.1.0/db_1 are your two ORACLE_HOME to hosts dedicated binaries for each version.
    Set the ORACLE_HOME/PATH env. variables in the OS session level according to the version you want to work on in that said session.
    Nicolas.

  • After uploading, template is gone and only parent directory shows

    I'm using Dreamweaver CS4 and uploading to Yahoo for my website. When I try to use the preview in browser, the page shows as blank, and when I upload, only the parent directory shows. How can I fix this?
    The website is: http://www.optimumtx.com/
    Thank you for your time

    Uhmmm... It looks like you haven't named your default starting page correctly - Yahoo hosting is looking for "home.html" to start from and you currently don't have any document titled that. And seeing your list of files (based on your link you supplied) you also have index.dwt up on the server. The .dwt file extension means it's a template! That's only useful in Dreamweaver to create new pages from and has no business being up on your server. Fix that start page issue and you'll most likely resolve the majority of your issues.

  • Renamed parent directory doesn't stick

    I have a parent directory located on a remote volume on my server. Lightroom chose to name my directory,
    2006 at /Volumes/Photos/JimsPhotos/15D RAW
    This is because there's also another directory on the server named,
    2006 at /Volumes/Photos/JimsPhotos/1D60 RAW
    But I'd rather see the names as, 2006 5D RAW and 2006 D60 RAW. However, when I change the directory names, they stick until I exit and relaunch LR when they get changed back to their originals -- and of course the name is so long I can't read it in the Library.
    Bug or ??
    [MacBook Pro, 2gb ram, 200gb hd, OS X 10.4.8]

    I just did some experimenting and I've come to these conclusions.
    Shared Volumes (or the top level shares on a computer) will go into devices, and you have to set them as login items also to get them to mount at startup. Making an alias to them will also work if you don't want to have them connect at login.
    Folders within shares will only go into Places. You don't have to make an alias of the folder, though.
    I think it has to do with the Mount Point. As the Volumes are Devices in the unix world, they can only show up if mounted. However, the folders are just aliases to network locations so they stay put.
    So, if you have multiple volumes that you don't want to automount at login, mount them, put them in the Devices section, and make aliases to them in a folder that you place in the Dock. Then, you can mount them from the dock and they should then appear in the sidebar.
    Place any folders in the Places section, or do the same as you do with the Volumes.

  • Parent directory ./Users/Shared/SC Info does not exist

    When I repair my Permissions, I always get this message: parent directory ./Users/Shared/SC Info does not exist
    I think it had something to do with Safe Eyes, which I uninstalled.

    Actually, I'm not sure, but I think that message may be normal if you have deleted the folder. The terms "SC Info" folder and "SC Info.sidb" both appear in the '/usr/bin/strings' output for 'DiskManagementTool', which is involved (somehow) with permissions verification and repair. I get the impression from the web that the items have something to do with iTunes DRM...

  • Newly Created Sub-Directories Don't Have Parent Directory Permissions

    Hoping someone may be able to shed some light on this.
    Background:
    Running 10.4.11 as a file server on a PPC G5 in a small creative office. We have a handful of users accessing via AFP. No other services are running.
    I'm using Workgroup Manager as admin tool.
    Top level directory has permissions set to Read & Write for Owner, Group & Everyone.
    Issue:
    When an authenticated user creates a new directory on the server, the new directory does not honor the parent directory permissions for all three user tiers.
    Rather, in getting info, the owner is momentarily set to the user who created the directory with read & write, then switches to (unknown) with r&w. The group is momentarily correct and then switches to (unknown) despite the creating user being part of a specific group, and has Read only permissions.
    Everyone has Read only permissions.
    If a user attempts to fix permissions on a directory they just created, they are unable to do so.
    So, throughout the course of the day, I am bombarded with "I don't have permissions...", wherein, i use remote access to hit Workgroup Manager and do a global propagation down of the parent directories permissions to allow access. Until someone else makes a directory
    This can't possibly be right. Newly created directories should be set to the parent directory permissions, if i'm not mistaken.
    Anyone? Any insight?
    Michael B.

    oh yes.. you are right... its accessible in
    http:://rishtey.local/default_1.html
    successfully... thanks for that... first of all
    now issue is: when i access http://rishtey.local/test.php which contains just a tag to display php info only...
    instead of rendering this php file, it just save the file in the download folder.
    what could be the issue with it?

  • Parent directory paths missing after PDFMaker conversion

    I have hyperlinks in a Word document. Relative path links to documents in subfolders (e.g. "subfolder/subdoc.pdf") work fine after conversion to PDF using PDFMaker However, links to a parent directory (e.g. "../parent.pdf") are incorrect after conversion to PDF: the PDF file link is just "parent.pdf".
    This is in Acrobat 8 -- has this been fixed in a later version of Acrobat?
    Or, am I missing something? Wiring in absolute paths isn't acceptable.
    Thanks
    Brian

    Thanks for the reply! You're correct; this should be under 10.5 mail services. I'm not sure how the post ended up here, though I'm sure it's my fault.
    Thanks for the information on what this file does. Permissions are a possibility, but the underlying problem is that the system is looking for the file in the wrong location. The mail isn't at /var/imap/ anymore, and I've renamed /var/imap/ to /var/old_imap/ to spot just this sort of thing. What I'm trying to find is what in the system is still pointing to /var/imap/ and trying to find a file there. If I could find that, then I could repoint it to the correct path and resolve the issue. It looks like the call is coming from postfix (with the master process), but I see nothing in the postfix config files that would make it still look at /var/imap/. That's what puzzles/concerns me.
    Did I explain that well? Thanks again.

  • Parent directory for EM10g GRID

    Hi,
    i have a default database 10g in linux system under parent directory as
    /home/oracle/oracle/product/10.2.0...
    now when i am trying to install EM grid control wiht new database, i give parent directory as
    /home/oracle/oracle/OracleHomes/....
    is this correct? Can someone help me please.
    Thanks,
    Philip.

    It is correct. What ever you call or where ever you install your Oracle Home is up to you.

  • Parent directory on JFileChooser main panel

    Yes I did a search on the forum before posting.
    How could I display the parent directory '..' of the current directory on the file list panel of a JFileChooser? It should be selectable/clickable/openable, of course.

    Thanks camickr.
    It does barely works but problems are:
    1) A mouse selection on the parent directory [icon + text] item behaves weird at the initial launch time of the program and when we have returned back from a subsub-directory.
    2)The parent directory [icon + text] item doesn't come at the top of the file list. How to achieve this requirement?
    Here's a quick and dirty SSCCE:
    import javax.swing.*;
    import javax.swing.filechooser.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.beans.*;
    import java.io.*;
    import java.net.*;
    public class ParentFcTest{
      JFrame frame;
      JFileChooser jfc;
      JPanel contentPane, mainPanel;
      Box buttonPanel;
      JButton convButton, rescanButton;
      boolean inProgress;
      File cf; // file currently processed
      FsvWithParentDir fwp;
      FvForPd ffp;
      public ParentFcTest(){
        frame = new JFrame();
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        jfc = new JFileChooser(".", fwp = new FsvWithParentDir());
        jfc.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES);
        Component comp = jfc.getComponent(3);
        comp.setVisible(false); // hide labels, textfields, buttons etc.
        ffp = new FvForPd(fwp);
        jfc.setFileView(ffp);
        mainPanel = new JPanel(new BorderLayout());
        mainPanel.add(jfc, BorderLayout.CENTER);
        convButton = new JButton("...Select file or folder");
        buttonPanel = new Box(BoxLayout.Y_AXIS);
        JPanel p1 = new JPanel();
        p1.add(convButton);
        rescanButton = new JButton("Update file list");
        rescanButton.setBackground(new Color(200, 255, 50));
        JPanel p2 = new JPanel();
        p2.add(rescanButton);
        buttonPanel.add(p1);
        buttonPanel.add(p2);
        rescanButton.addActionListener(new ActionListener(){
          public void actionPerformed(ActionEvent e){
            jfc.rescanCurrentDirectory();
        contentPane = (JPanel)frame.getContentPane();
        contentPane.add(mainPanel, BorderLayout.CENTER);
        contentPane.add(buttonPanel, BorderLayout.SOUTH);
        frame.pack();
        frame.setVisible(true);
        jfc.addPropertyChangeListener(new PropertyChangeListener(){
          File f;
          public void propertyChange(PropertyChangeEvent pce){
            f = jfc.getSelectedFile();
            if (f == cf){ // we need this because of #$# below
              return;
            if (inProgress){ // vv restore old selection
              jfc.setSelectedFile(cf); // #$# generates another PCE !
              JOptionPane.showMessageDialog
           (frame, "Can't select a new file while processing current file");
              return;
            if (pce.getPropertyName().equals
             (JFileChooser.SELECTED_FILE_CHANGED_PROPERTY)){ // selected
              if (f.isFile()){
                convButton.setText("Process this file");
              else if (f.isDirectory()){
                convButton.setText("Open this folder");
            else if (pce.getPropertyName().equals
             (JFileChooser.DIRECTORY_CHANGED_PROPERTY)){ // physical dir change
              convButton.setText("...Select file or folder");
        convButton.addActionListener(new Converter(jfc));
      } // constructor
      class Converter implements ActionListener{
        JFileChooser fc;
        public Converter(JFileChooser jf){
          fc = jf;
        public void actionPerformed(ActionEvent e){
          JButton btn = (JButton)e.getSource();
          if (btn.getText().startsWith("...")){ // message only, no action
            return;
          File f = fc.getSelectedFile();
          if (f.isFile()){
            inProgress = true;
            rescanButton.setEnabled(false);
            cf = f;
            convButton.setText("...please wait");
            ConvWorker cw = new ConvWorker();
            cw.execute();
          else{
            jfc.setCurrentDirectory(f);
      class ConvWorker extends SwingWorker<Object,Object>{
        public Object doInBackground(){
          return null;
        protected void done(){
          inProgress = false;
          jfc.rescanCurrentDirectory();
          convButton.setText("...Select file or folder");
          rescanButton.setEnabled(true);
      class FvForPd extends FileView{
        FsvWithParentDir fsvp;
        ImageIcon ii;
        public FvForPd(FsvWithParentDir fsv){
          fsvp = fsv;
          try{
            ii = new ImageIcon
              (new URL("http://homepage1.nifty.com/algafield/pardir.gif"));
          catch (MalformedURLException e){
            e.printStackTrace();
        public Icon getIcon(File f){
          if (f.equals(fsvp.getParent())){
            return ii;
          else{
            return super.getIcon(f);
        public String getName(File f){ // it does work but...
          if (f.equals(fsvp.getParent())){
            return ("..");
          else{
            return super.getName(f);
      public static void main(String[] args){
        SwingUtilities.invokeLater(new Runnable(){
          public void run(){
            new ParentFcTest();
    import java.io.*;
    import javax.swing.*;
    import javax.swing.filechooser.*;
    public class FsvWithParentDir extends FileSystemView{
      File[] filelist;
      File parent;
      public File createNewFolder(File containingDir){
        File folder = new File(containingDir, "NEWFOLDER");
        folder.mkdir();
        return folder;
      public File[] getFiles(File dir, boolean useFileHiding){
        File[] files = super.getFiles(dir, useFileHiding);
        File[] nfiles = new File[files.length + 1];
        for (int i = 1; i < nfiles.length; ++i){
          nfiles[i] = files[i - 1];
        parent = dir.getParentFile();
        if (parent != null){
          nfiles[0] = parent;
          filelist = nfiles;
        else{
          filelist = files;
        return filelist;
      public File getParent(){
        return parent;
      // this doesn't work
      public Icon getSystemIcon(File f){
        if (parent != null && f.equals(parent)){
          ImageIcon ii = new ImageIcon(getClass().getResource("/pardir.gif"));
          return ii;
        else{
          return super.getSystemIcon(f);
    }

  • How to prevent JFileChooser automatically changing to parent directory?

    When you show only directories, and click on the dir icons to navigate, and then dont select anything and click OK, it automatically 'cd's to the parent folder.
    My application is using the JFileChooser to let the user navigate through folders and certain details of 'foo' files in that folder are displayed in another panel.
    So we dont want the chooser automatically changing dir to parent when OK is clicked. How to prevent this behavior?
    I considered extending the chooser and looked at the Swing source code but it is hard to tell where the change dir is happening.
    thanks,
    Anil
    To demonstrate this, I took the standard JFileChooserDemo from the Sun tutorial and modified it adding these lines
              // NEW line 45 in constructor
              fc.addPropertyChangeListener((PropertyChangeListener) this);
              fc.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
          * NEW -
          * @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent)
         public void propertyChange(PropertyChangeEvent e) {
              String prop = e.getPropertyName();
              if (JFileChooser.DIRECTORY_CHANGED_PROPERTY.equals(prop)) {
                   System.out.println("DIRECTORY_CHANGED_PROPERTY");
                   File file = (File) e.getNewValue();
                   System.out.println("DIRECTORY:" + file.getPath());
         }

    Here is the demo:
    package filechooser;
    import java.awt.BorderLayout;
    import java.awt.Insets;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.beans.PropertyChangeEvent;
    import java.beans.PropertyChangeListener;
    import java.io.File;
    import javax.swing.ImageIcon;
    import javax.swing.JButton;
    import javax.swing.JFileChooser;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JTextArea;
    import javax.swing.SwingUtilities;
    import javax.swing.UIManager;
    * FileChooserDemo.java uses these files:
    *   images/Open16.gif
    *   images/Save16.gif
    public class FileChooserDemo extends JPanel implements ActionListener,
              PropertyChangeListener {
         static private final String newline = "\n";
         JButton openButton, saveButton;
         JTextArea log;
         JFileChooser fc;
         public FileChooserDemo() {
              super(new BorderLayout());
              // Create the log first, because the action listeners
              // need to refer to it.
              log = new JTextArea(5, 20);
              log.setMargin(new Insets(5, 5, 5, 5));
              log.setEditable(false);
              JScrollPane logScrollPane = new JScrollPane(log);
              // Create a file chooser
              fc = new JFileChooser();
              // NEW
              fc.addPropertyChangeListener((PropertyChangeListener) this);
              fc.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
              // Create the open button. We use the image from the JLF
              // Graphics Repository (but we extracted it from the jar).
              openButton = new JButton("Open a File...",
                        createImageIcon("images/Open16.gif"));
              openButton.addActionListener(this);
              // Create the save button. We use the image from the JLF
              // Graphics Repository (but we extracted it from the jar).
              saveButton = new JButton("Save a File...",
                        createImageIcon("images/Save16.gif"));
              saveButton.addActionListener(this);
              // For layout purposes, put the buttons in a separate panel
              JPanel buttonPanel = new JPanel(); // use FlowLayout
              buttonPanel.add(openButton);
              buttonPanel.add(saveButton);
              // Add the buttons and the log to this panel.
              add(buttonPanel, BorderLayout.PAGE_START);
              add(logScrollPane, BorderLayout.CENTER);
          * NEW -
          * @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent)
         public void propertyChange(PropertyChangeEvent e) {
              String prop = e.getPropertyName();
              // If the directory changed, don't show an image.
              if (JFileChooser.DIRECTORY_CHANGED_PROPERTY.equals(prop)) {
                   System.out.println("DIRECTORY_CHANGED_PROPERTY");
                   File file = (File) e.getNewValue();
                   System.out.println("DIRECTORY:" + file.getPath());
         public void actionPerformed(ActionEvent e) {
              // Handle open button action.
              if (e.getSource() == openButton) {
                   int returnVal = fc.showOpenDialog(FileChooserDemo.this);
                   if (returnVal == JFileChooser.APPROVE_OPTION) {
                        File file = fc.getSelectedFile();
                        // This is where a real application would open the file.
                        log.append("Opening: " + file.getName() + "." + newline);
                   } else {
                        log.append("Open command cancelled by user." + newline);
                   log.setCaretPosition(log.getDocument().getLength());
                   // Handle save button action.
              } else if (e.getSource() == saveButton) {
                   int returnVal = fc.showSaveDialog(FileChooserDemo.this);
                   if (returnVal == JFileChooser.APPROVE_OPTION) {
                        File file = fc.getSelectedFile();
                        // This is where a real application would save the file.
                        log.append("Saving: " + file.getName() + "." + newline);
                   } else {
                        log.append("Save command cancelled by user." + newline);
                   log.setCaretPosition(log.getDocument().getLength());
         /** Returns an ImageIcon, or null if the path was invalid. */
         protected static ImageIcon createImageIcon(String path) {
              java.net.URL imgURL = FileChooserDemo.class.getResource(path);
              if (imgURL != null) {
                   return new ImageIcon(imgURL);
              } else {
                   System.err.println("Couldn't find file: " + path);
                   return null;
          * Create the GUI and show it. For thread safety, this method should be
          * invoked from the event dispatch thread.
         private static void createAndShowGUI() {
              // Create and set up the window.
              JFrame frame = new JFrame("FileChooserDemo");
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              // Add content to the window.
              frame.add(new FileChooserDemo());
              // Display the window.
              frame.pack();
              frame.setVisible(true);
         public static void main(String[] args) {
              // Schedule a job for the event dispatch thread:
              // creating and showing this application's GUI.
              SwingUtilities.invokeLater(new Runnable() {
                   public void run() {
                        // Turn off metal's use of bold fonts
                        UIManager.put("swing.boldMetal", Boolean.FALSE);
                        createAndShowGUI();
    }

  • Setting ACL based on ACL of parent directory.

    I would like to override the users default document and folder
    ACL definitions and instead assign anything placed into a
    particular folder the ACL of that parent folder.
    I would prefer this behavior to not be global, but conditional
    upon a particular directory (folder).
    Thoughts?

    one way would be to subclass Folder (and S_Folder) and override
    the appropriate methods (addItem for instance) to perform the
    security operation that you desire, such as setting the item's
    SecuringPublicObject to the parent folder. Then, you could
    create this special Folder (subclasses) where you wanted this
    behavior to occur.
    another way would be to write an agent that responded to addItem
    events on the Folder(s) where you want this behavior to occur,
    and the agent would perform the securing operation. this would
    not be synchronous with the addItem operation, however.

Maybe you are looking for

  • Problem in connecting to LDAP DS with iPlanet 4.1 Web server

    We have a web application deployed in iPlanet4.0 web server, we are using Sun One directory server for authentication.( Thru JNDI - Package javax.naming.ldap) The Problem : The problem is that, I am able to do the LDAP related operations anly a few t

  • New-CMSoftwareUpdateAutoDeploymentRule does not function

    Hello, I'm trying to create a new AutoDeploymentRule using a PowerShell command. I'm running Configuration Manager R2 with the Software Update Point enabled. Because of the sheer number of parameters of the New-CMSoftwareUpdateAutoDeploymentRule cmdl

  • Iphone photostream/camera roll

    Hi, just a noob question. If I take a photo, does my photo get saved both in my photostream and camera roll? If it does, the photo in my photostream will remain in there for 30 days while the one in the camera roll is permanent until I delete it corr

  • Can I put my iMac HD into my Mac Pro?

    I recently purchased a new 1 TB drive for my Late 2006 iMac, installed lion and transferred all my data from an older computer.  I just recently was given a Mac Pro Early 2009 unit with only 640 GB in there.  I'd like to use my new 1TB as it is compa

  • Unable to text my Mum but can receive texts from her.

    I can text everyone else without any issues. I've already tried removing her contact and have contacted my service provider who were less than helpful. Ahy suggestions?