Unable to view files inside SSL Folder

when i create a topic and generate as webhelp, i am able to view the topic, but when i open the SSL Folder and try to view the change is not getting displayed....

Check where you are generating to in your SSL properties. The chances are you are not generating to the SSL folder.

Similar Messages

  • How to Read all files inside resource Folder inside Jar?

    I have a Jar file,,,, The program reads for resource files in the resource folder inside the Jar. I want my program to read all files inside this folder without knowing the names or the number of files in the folder.
    I am using this to make an Applet easy to be updated with spicific files. I just want to add a file inside the resource folder and Jar the program and automatically the program reads what ever is in there!!
    I used the File class to get all file names inside the resource folder. it works fine before Jarring the program. After I jar I recieve a URI not Herarichy Exception!!
    File fold=new java.io.File(getClass().getResource(folder).toURI());
    String[] files=fold.list();
    I hope the question is clear!!

    How to get the directory and jar file that you class resides in:
    // returns path and jarfile (ex: /home/mydir/my.jar)
    public String getJarfileName()
            // Get the location of the jar file and the jar file name
            java.net.URL outputURL = YourClass.class.getProtectionDomain().getCodeSource().getLocation();
            String outputString = outputURL.toString();
            String[] parseString;
            int index1 = outputString.indexOf(":");
            int index2 = outputString.lastIndexOf(":");
            if (index1!=index2) // Windows/DOS uses C: naming convention
               parseString = outputString.split("file:/");
            else
               parseString = outputString.split("file:");
            String jarFilename = parseString[1];
           return jarFilename;
    }If your my.jar was in /home/mydir, it will store "/home/mydir/my.jar" in jarFilename.
    note: getLocation returns "file:/C:/home/mydir/my.jar" for Windows/DOS and "file:/home/mydir/my.jar" for windows, thus why I look for the first and last index of the colon so I can correctly split the string.
    If you want to grab a file in the jar file and get an InputStream, do the following:
    import java.io.*;
    import java.util.Enumeration;
    // jar stuff
    import java.util.jar.*;
    import java.util.zip.ZipEntry;
    public class Jaris
       private JarFile jf;
       public Jaris(String jarFilename) throws Exception
           try
                           jf = new JarFile(jarFilename);
           catch (Exception e)
                jf=null;
                throw(e);
       public InputStream getInputStream(String matchString) throws Exception
           ZipEntry ze=null;
           try
              Enumeration resources = jf.entries();
              while ( resources.hasMoreElements() )
                 JarEntry je = (JarEntry) resources.nextElement();
                 // find a file that matches this string from anywhere in my jar file
                 if ( je.getName().matches(".*\\"+matchString) )
                    String filename=je.getName();
                    ze=jf.getEntry(filename);
          catch (Exception e)
             throw(e);
          InputStream is = jf.getInputStream(ze);
          return is;
       // for testing the Jaris methods
       public static void main(String[] args)
          try
               String jarFilename=getJarfileName();
               Jaris jis = new Jaris(jarFilename); // this is the string we got from the other method listed above
               InputStream is=jis.getInputStream("myfile.txt"); // can be used for xml, xsl, etc
          catch (Exception e)
             // this is just a test, so we'll ignore the exception
    }Happy coding! :)
    Doc

  • How to import xsd file inside XSD folder in Oracle SOA 11g

    Hi,
    I need to import xsd file inside XSD folder provided by the deafult structure while creating SOA project. When I used to import the web resource it imports it inside public_html folder not inside XSD folder.
    How to do that ?
    Thanks

    Hi,
    Are you using Jdeveloper on a windows machine? If you are then this might be a useful tip.
    Click Tools -> External Tools. It will prompt you to setup common tools. Let it do this. Now when you right click on your project you will get an Explore Directory option. I use this a lot when copying XSD’s between projects.
    Once you have done this you need to click the refresh button in the Application Navigator to ensure the new files appear.
    Robert

  • Unable to view files on iPhone

    I am unable to view files that I have saved in my adobe cloud storage on my iPhone. I save a file in my cloud account at adobe and when i pull up the Adobe Reader app, I can see the file listings, but when I try to open a file, nothing comes up.

    "...when i pull up the Adobe Reader app, I can see the file listings, but when I try to open a file, nothing comes up."
    Do you see anything on the screen?
    Or is the screen completely blank (actually, white)?

  • Jars files inside atglib folder

    HI Guys
    I am creating ear file in atg by using ant script ,inside ear file i found atglib files with some jar files different files
    from where it is picking those jar files inside atglib folder
    please give me clear picture on this

    HI David,
    Will it follow config path layering while build the ear file ?
    or do we need to provide explicitly each module to build?
    in my application i didnot find some ootb modules in build script but inside ear file those modules jar files are i am able to see
    how  it is possible ? is it because of config path layering?

  • Unable to view files on my local site folder

    I've set a new Testing site in Dreamweaver CC and directed the local view to a current folder which has all my files on. However when in Dreamweaver I can't view the majority of the files and am therefore unable to load to my testing server or change the code within a file.
    I've tried reloading the local folder, moving it around but each time I go to Dreamweaver the files do not show in the files box.
    I have a couple of other sites directed to local folders and they seem to be ok although on checking there does seem to be a similar issue with one folder.
    How do I get Dreamweaver to recognise all the local folders and the files I specify and allow me to change them?
    I have looked at FAQ's and other questions but cannot find an answer although it may well be in there somewhere.
    Any help appreciated
    Thanks

    Here are two screen prints;
    first is what is seen in DW from the testing server, the second as seen in DW from local server.
    I have checked the directory of the testing server and all files are there, just not showing in DW.
    The local root folder path is C:\00-MAP Website-Local.
    I've checked the folder and hidden files is clear.

  • Unable to view files from windows share

    Hi guys,
    I am wondering if you can help me out. I have 10 mac ocnnected to a windows domain. Five machinies are OSX 10.5.8 and five are OSX 10.6.8. The problem I am having is I can connect to the windows share via smb but I am unable to view the files. I can connect the server and see the folder listings but I am unable to view the contents of each directory. The users permissions are fine as they can log into a windows PC an are able to access the files as needed. I have tried different user accounts and all are getting the same issue. Each account has admin rights as well. I was wondering if anyone else has seen this issue before?
    Thanks in advance!

    files like movies or pdf files. Under the apps section, I can't see any way to transfer files.
    Also do I need to completely sync my ipad, if i click sync then after a while it says can't sync all the apps present on the ipad

  • View files in a folder

    I wish to make a program that has the ability to view all text files within a folder.
    How easy/possible is this? I cant find any code on the internet and was wondering if any of you knew how?
    also I set the background colour of my frame to black (jf.setBackground(Color.black);) and it flickers black and returns to the default colour.
    why is this happening? I dont change the code after I change the colour.
    thanks in advance,

    This is what ive got now, but it doesnt work, dunno if im importing the right import.
       import java.io.FilenameFilter.*;
        public class FileChecker
          String fileNames[] = new String [10];
           FileChecker()
             System.out.println(listFiles(".txt"));
             System.out.println(fileNames());
           public String fileNames()
             fileNames[1] = listFiles(".txt");
             return fileNames[1];
           public static void main (String [] args)
             new FileChecker();
       }

  • Unable to view ComboBox inside AdvancedDataGridColumn

    Hello,
    First I ahve to say that I am a beginner in Flex domain.
    I am trying to show options in combobox inside an AdvancedDataGridColumn. In total I have two columns. One is a regular data column and the other is a ComboBox. I am able to see the first column but not the combobox one. Below is the code snippet.
    I am not sure whats missing. Any help is really appreciated. I tried to lookup other examples but could not figureout whats missing.
    <mx:AdvancedDataGrid 
    id="assignmentDataGrid" alternatingItemColors="[#EEEEFF,#EEEEFF]" dataProvider="
    {filteredAvailableReports}" width="100%" rowCount="10">
    <mx:columns>
    <mx:AdvancedDataGridColumn id="reportName" headerText="Report Name" dataField="
    name" labelFunction="reportsListLabelFunction"/>
    <mx:AdvancedDataGridColumn id="ftpConnCol" headerText="FTP Options" editable="true" editorDataField="value">
    <mx:itemEditor>
    <mx:Component>
    <mx:ComboBox editable="true">
    <mx:dataProvider>
    <mx:ArrayCollection>
    <mx:String>User1</mx:String>
    <mx:String>User2</mx:String>
    <mx:String>User3</mx:String>
    <mx:String>User4</mx:String>
    </mx:ArrayCollection>
    </mx:dataProvider>
    </mx:ComboBox>
    </mx:Component>  
    </mx:itemEditor>
    </mx:AdvancedDataGridColumn>
    </mx:columns>
    </mx:AdvancedDataGrid>

    Check where you are generating to in your SSL properties. The chances are you are not generating to the SSL folder.

  • How to view Files inside File manager in N73

    I wanted a video of .avi or any other format (For my computer) that N73 Doesnot support..& so i have got it in my inbox via bluetooth inside inbox.
    But how to SAVE it without opening it.
    Becoz on opening it says UNKNOWN FILE FORMAT.
    So any one can tell me how to view it and save inside Phone or directly to computer via USB cable.
    Shashank RockZzzzzz...With N73 (23)
    v4.0726.2.1.1
    27-07-2007
    RM132

    any help will be appriciated
    Shashank RockZzzzzz...With N73 (23)
    v4.0726.2.1.1
    27-07-2007
    RM132

  • Unable to view files after using "Migration Asst".

    I "migrated" my files from my old G4 to my new MacBookPro. Now I CANT VIEW my old files on my new Mac. I get a msg that says, "The folder “Pictures” can’t be opened because you don’t have permission to see its contents." The files all have a red-sign. This applies to all the files I had transferred.
    What I've done so far: I tried renaming my old G4 to match my new MacPro, but it did the same thing above. Migration Asst makes it sound so easy, (and basically it was) to transfer files, but it appears to me that a new "account name" is automatically set-up for the migration. I just want ONE ACCT, and to be able to read the files that have been transferred.
    What did I do wrong?
    THANKS!

    check this go to setting>>apps>>all>>camera>>clear data and restat your phone and watch
    Do not forget to give kudosand to select the correct answer 

  • Unable to view Andriod phone as folder in OS Mavericks

    I  have an Android phone. In OSX Mountain Lion, i would connect my phone via USB and browse the folders. Since the upgrade to Mavericks, i cannot find the phone when its connected via USB.
    I have MTP turned on in my phone settings. Im currently using Bluetooth to transfer file, but its an exteremly slow process.
    Any pointers is appreciated..

    Indeed, the issue does not come from the Wiki.
    After creating a new wiki exempt of calendar, the pages are displayed w/o problem in guest mode.
    Interestingly, I still get the same message in the Console, which is in fact a warning.
    So the error must be found elsewhere…
    24/11/14 09:44:50,778 collabd[198]: [CSContentService.m:4912 13425000 +3ms] Unauthorized user {
        activityTime = "<null>";
        avatarGUID = "<null>";
        blogGUID = "5a44b12c-4fe5-b260-e3e3-675ded59f709";
        containerGUID = "<null>";
        createTime = "<CSDateTime date=2014-06-19 16:04:28 +0000 epochValue=1403193868.759 isoValue=2014-06-19T18:04:28.759+0200>";
        createdByUserGUID = "742d3a53-c7b0-4911-9465-90a98fd3cf7c";
        description = "<null>";
        detailPageGUID = "19a307c1-82bc-45c7-845a-21839fb222c7";
        extendedAttributes =     {
        externalID = unauthenticated;
        guid = "742d3a53-c7b0-4911-9465-90a98fd3cf7c";
        isAuthenticated = 0;
        isBlogEnabled = 0;
        isDeleted = 0;
        isFavorite = "<null>";
        isHidden = 1;
        isMyPage = "<null>";
        isPermanentlyDeleted = 0;
        isWatched = "<null>";
        lastActivityTime = "<null>";
        lastActivityUserGUID = "<null>";
        login = unauthenticated;
        longName = "unauthenticated user";
        ownerGUID = "<null>";
        ownerType = "<null>";
        parentGUIDs =     (
            "742d3a53-c7b0-4911-9465-90a98fd3cf7c"
        preferredEmailHash = "<null>";
        revision = 1;
        shortName = unauthenticated;
        tags =     (
        themeInfo = "<null>";
        tinyID = unauth;
        type = "com.apple.entity.User";
        updateTime = "<CSDateTime date=2014-06-19 16:04:28 +0000 epochValue=1403193868.759 isoValue=2014-06-19T18:04:28.759+0200>";
        updatedByUserGUID = "742d3a53-c7b0-4911-9465-90a98fd3cf7c";
    } attempting to view unmoderated comments for GUID ac7c0448-ffb9-403a-a193-0dca95ec3ff3

  • Unable to view files or web pages

    Hello,
    Can anyone help me out? I am using OS X 10.4.11 and I cant open certain files such as .docx nor can I view certain web pages.
    Thank you...

    Hello FM750,
    The article linked below details a number of steps that can help restore your ability to share items from your Mac.
    If sharing options and Markup are missing after you install OS X Yosemite
    http://support.apple.com/en-us/HT6545
    Cheers,
    Allen

  • Unable to view files on PC laptop with XP

    I want to be able to view my laptop (XP SP3) files on my Mac (OS X 10.6.7), but it is not happening. I am trying to set up a wireless network. I've set everything up on the PC to enable sharing (created a workgroup, set sharing permissions, etc.) I know the 2 computers can see each other, since I have "ping'd" them successfully. But when I try to "connect to server" from the Mac I get a message indicating that "the server may not exist or it is unavailable at this time." I know I have the IP address correct (I've also tried using PC name, as well as the name and file. It seems like it should be so easy, and I must be missing something. But what is it?

    You can find some good guides on sharing with WIndows XP here:
    http://macs.about.com/od/macwindows/tp/filesharingmacwin.htm
    The guides refer mostly to Leopard, but it should work find with Snow Leopard.
    If you looking for Win 7 and Snow Leopard sharing, you can find that here:
    http://macs.about.com/od/networking/tp/Windows-7-And-Mac-Os-X-Getting-Windows-7- And-Mac-Os-X-To-Play-Together.htm
    Tom

  • Network Drive Mount Unable to View Files

    I recently purchased a Buffalo flexnet 1TB drive for my parents. Both of them use Windows, and mount works fine for the two of them. I, however, have two machines on which I use Arch. I'm having trouble mounting the drive on my own machines.
    One, I named the drive netdrive, but when I try to mount it using mount -t cifs //netdrive/share /path/to/mount, it says it can't resolve address for netdrive. It works, however, if I use //hd-celu2-ed4a/share which is the default drive name. //netdrive/share works on the Windows machines, and I don't understand what's going on.
    Two, if I do mount using the IP address of the default server name, it will successfully mount, but I can't see any of the files on the drive. If I do "touch test.txt", I can see the file on the windows side, but I can't see it form Arch. This is the same on both of my Arch machines.
    How do I go about mounting this thing successfully, so I can view and edit file and such? Less important: how do I get it so that it mounts with the proper name? I would be plenty satisfied to have the answer to issue two with or without issue one solved.

    Until someone knowledgeable about cifs and windows shares chimes in have a look at man mount.cifs.
    Perhaps trying different combinations of user, password, uid, gid, etc may get things working.
    There is a little info on the wiki: http://wiki.archlinux.org/index.php/Win … work_Share

Maybe you are looking for

  • Logic refresher course questions

    I haven't used Logic since 4.x, and am just now trying to setup a new Logic system..... basic questions: 1 - I would have thought that the audio format would be decided by now but it appears not..... what is the difference/benefit of SDII vs. AIFF? 2

  • INSO_FILTER and non-English characters

    Hello! CLOB colomn contains various formated documents (doc, pdf, plain text) mostly in win1251 charset. After succesfull indexing, I have "no result rows" when using CONTAINS with russian word query, but everething's fine with english words. Why did

  • How do I get this app to my ipod?

    I'm on a borrowed computer, so when I click Apps up top of itunes, it shows my sister's apps. But I got an app code too, and this redeemed fine. but it didnt go to my ipod even though it was plugged in....Its now on this computer's list of apps and w

  • Cannot load InDesign CC 2014 - DynamicDocuments Plugin Required

    I came into the office this morning and discovered my InDesign CC 2014 wouldn't open and I got this message: "Cannot load Adobe InDesign CC 2014 because it requires DynamicDocuments. Please install the DynamicDocuments plug-in and restart InDesign."

  • Im having trouble with setting up my imessage activation do I need credit

    im having trouble with setting up my imessage activation do I need credit