Opening a km folder using WebDav url

Hi all
I am trying to open a folder in km using the webdav url via explorer.
I get a message :
The folder you are looking for has no displayable content.
You can try one of the following:
Access the folder using the Navigation user interface.
Access the folder as a Web folder. Your operating system and browser dictate whether or not this will work.
I want to open the folder automatically as web folder.
Is there any way I can configure this ???
Thanks
Nitsan

Hi Nitsan,
It depends from where you want to open the webdav folder.
1. From explorer:
   Go to My network places, and add a new one with the URL you used before. Now it should open directly as a webdav folder. You can also map this to a network drive.
2 From a website:
   Insert a link in the website using the following format:
<a style="behavior: url(#default#AnchorClick)" title="Webmap" href="" folder="http://<hostname>:<port>/irj/go/km/docs/<km path>">Webfolder</a>
This should open directly from the website as a webdav folder.
Johan

Similar Messages

  • How can I open a local folder using flash builder or AS3?

    I need to open a local folder get the zip file and unzip it.
    I know that i cannot open a folder using flash builder, i did it using air app. now i do not know how do i integrate it with my flex program.
    Please help me with this issue.
    Thanks

    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
    <mx:Script source="Asset/folder.as" />
    <mx:Button x="10" y="10" label="My Button" width="122" height="31" id="myButton" click="folder()"/>
    <mx:ComboBox x="10" y="49" id="cbobx" dataProvider="{}"  ></mx:ComboBox>
    </mx:Application>
    and .as code is:
    // ActionScript file
    import flash.display.*;
    import flash.events.*;
    import flash.net.FileFilter;
    import flash.net.FileReference;
    import flash.net.FileReferenceList;
    import mx.controls.Alert;
    import mx.controls.ComboBox;
    private var fr:FileReferenceList;
    private var cmbobx:ComboBox = new ComboBox();
        private function folder():void
    fr = new FileReferenceList();
    fr.browse([new FileFilter("Zip Files", "*.zip")]);
    fr.addEventListener(Event.SELECT, listZipFiles);
    private function listZipFiles(e:Event):void
    Alert.show("selectHandler: " + fr.fileList.length + " files");
            var fls:Array = new Array();
            var file:FileReference;
            for (var i:uint = 0; i < fr.fileList.length; i++)
                file = FileReference(fr.fileList[i]);
                //Alert.show("File Name: " + fr.fileList[i]);
                Alert.show("File Name: " + file.name);
                fls.push(file);
                cmbobx.selectedItem = fls;
    private function getShpFiles(event:MouseEvent):void

  • Update Sharepoint 2013 document library folder columns using document url

    Hi All,
    I have a SharePoint document library. In that library I am having folder name called Folder1. In this folder Folder1 I have 4 files in it. Now. I need to update the status column of these 4 files in Folder1 folder using the url of these 4 files.
    So can anyone help me in to solve this problem. I am using SharePoint 2013 and Visual studio 2012. I want the code in C#.
    Thanks & Regards,
    Kishore
    Kishore

    Hi,
    According to your post, my understanding is that you want to update the field within the folder.
    I have made a simple code demo below to update the field within the folder, you can have a look at it.
    using (SPSite site = new SPSite("http://YourSiteURL"))
    using (SPWeb web = site.OpenWeb())
    SPList list = web.Lists.TryGetList("Lib1");
    if (list != null)
    foreach (SPListItem folderItem in list.Folders)
    if (folderItem.Title == "Folder1")
    SPListItem item = list.GetItemById(5);
    item["Status"] = "Updated";
    item.Update();
    Console.WriteLine("Field update successfully...");
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Creating an appointment in an exchange calendar using webdav (slide)

    Hello!
    I am new in webdav. I am trying for a long time to create an appointment in
    an exchange calendar (pubic folder) using webdav but without success.
    I am despairing.
    Here my programm:
    String strCalendarURI = "http://server/public/test1";
    HttpURL hrl = new HttpURL(strCalendarURI);
    hrl.setUserinfo("user", "pw");
    WebdavResource wdr = new WebdavResource(hrl);
    wdr.setDebug(1);
    Hashtable props = new Hashtable();
    props.put(new PropertyName("DAV:", "contentclass"), "urn:content-classes:appointment");
    props.put(new PropertyName("DAV:", "contentclass"), "urn:content-classes:appointment");
    props.put(new PropertyName("http//schemas.microsoft.com/exchange", "outlookmessageclass"), "IPM.Appointment");
    props.put(new PropertyName("urn:schemas:httpmail","subject"), "Changed Test Appointment Subject");
    props.put(new PropertyName("urn:schemas:httpmail","htmldescription"), "Let's meet                here");
    props.put(new PropertyName("urn:schemas:calendar","location"), "do");
    props.put(new PropertyName("urn:schemas:calendar","dtstart"), "2006-01-01T10:00:00.000Z");
    props.put(new PropertyName("urn:schemas:calendar", "dtend"), "2006-01-01T10:30:00.000Z");
    props.put(new PropertyName("urn:schemas:calendar","instancetype"), "0");
    props.put(new PropertyName("urn:schemas:calendar","alldayevent"), "0");
    props.put(new PropertyName("urn:schemas:calendar","responserequested"), "1");
    props.put(new PropertyName("urn:schemas:calendar","busystatus"), "BUSY");
    props.put(new PropertyName("urn:schemas:calendar","meetingstatus"), "CONFIRMED");
    props.put(new PropertyName("header", "to"), "user");
    props.put(new PropertyName("urn:schemas:mapi","finvited"), "1");
    out.print("returned value ...     " + wdr.proppatchMethod(props, true));
    The output:
    to server ---------------------------------------------------PROPPATCH /public/test1 HTTP/1.1
    Authorization: Basic Qi5XZWl0bGFuZXI6c3NvYg==
    Content-Type: text/xml; charset=utf-8
    User-Agent: Jakarta Commons-HttpClient/2.0final
    Host: server
    Content-Length: 1068
    <D:propertyupdate xmlns:D="DAV:">
    <D:set>
    <D:prop>
    <responserequested xmlns="urn:schemas:calendar">
    1
    </responserequested>
    <dtend xmlns="urn:schemas:calendar">
    2006-01-01T10:30:00.000Z
    </dtend>
    <meetingstatus xmlns="urn:schemas:calendar">
    CONFIRMED
    </meetingstatus>
    <to xmlns="header">
    user
    </to>
    <instancetype xmlns="urn:schemas:calendar">
    0
    </instancetype>
    <outlookmessageclass xmlns="http//schemas.microsoft.com/exchange">
    IPM.Appointment
    </outlookmessageclass>
    <location xmlns="urn:schemas:calendar">
    do
    </location>
    <alldayevent xmlns="urn:schemas:calendar">
    0
    </alldayevent>
    <dtstart xmlns="urn:schemas:calendar">
    2006-01-01T10:00:00.000Z
    </dtstart>
    <htmldescription xmlns="urn:schemas:httpmail">
    Let's meet here
    </htmldescription>
    <finvited xmlns="urn:schemas:mapi">
    1
    </finvited>
    <D:contentclass>
    urn:content-classes:appointment
    </D:contentclass>
    <v xmlns="urn:schemas:contacts">
    1
    </v>
    <subject xmlns="urn:schemas:httpmail">
    Changed Test Appointment Subject
    </subject>
    <busystatus xmlns="urn:schemas:calendar">
    BUSY
    </busystatus>
    </D:prop>
    </D:set>
    </D:propertyupdate>
    <<<<<<< from server ---------------------------------------------------
    HTTP/1.1 207 Multistatus
    Date: Wed, 25 Jan 2006 08:38:54 GMT
    Server: Microsoft-IIS/6.0
    MicrosoftOfficeWebServer: 5.0_Pub
    X-Powered-By: ASP.NET
    MS-Exchange-Permanent-URL: http://server/public/-FlatUrlSpace-/ddd97380fa9bf5429d9fdc31ddb24cd9-288e4
    Repl-UID: <rid:ddd97380fa9bf5429d9fdc31ddb24cd9000000000529>
    Content-Type: text/xml
    Content-Length: 617
    ResourceTag: <rt:ddd97380fa9bf5429d9fdc31ddb24cd9000000000529ddd97380fa9bf5429d9fdc31ddb24cd9000000000879>
    MS-WebStorage: 6.5.7638
    <a:multistatus
    xmlns:a="DAV:"
    xmlns:b="urn:schemas:calendar"
    xmlns:c="header"
    xmlns:d="http//schemas.microsoft.com/exchange"
    xmlns:e="urn:schemas:httpmail"
    xmlns:f="urn:schemas:mapi"
    xmlns:g="urn:schemas:contacts">
    <a:response>
    <a:href>
    http://server/public/test1
    </a:href>
    <a:propstat>
    <a:status>
    HTTP/1.1 200 OK
    </a:status>
    <a:prop>
    <b:responserequested>
    </b:responserequested>
    <b:dtend>
    </b:dtend>
    <b:meetingstatus>
    </b:meetingstatus>
    <c:to>
    </c:to>
    <b:instancetype>
    </b:instancetype>
    <d:outlookmessageclass>
    </d:outlookmessageclass>
    <b:location>
    </b:location>
    <b:alldayevent>
    </b:alldayevent>
    <b:dtstart>
    </b:dtstart>
    <e:htmldescription>
    </e:htmldescription>
    <f:finvited>
    </f:finvited>
    <a:contentclass>
    </a:contentclass>
    <g:v>
    </g:v>
    <e:subject>
    </e:subject>
    <b:busystatus>
    </b:busystatus>
    </a:prop>
    </a:propstat>
    </a:response>
    </a:multistatus>
    to server ---------------------------------------------------PROPFIND /public/test1 HTTP/1.1
    Authorization: Basic Qi5XZWl0bGFuZXI6c3NvYg==
    Content-Type: text/xml; charset=utf-8
    User-Agent: Jakarta Commons-HttpClient/2.0final
    Host: server
    Content-Length: 207
    Depth: 0
    <D:propfind xmlns:D="DAV:">
    <D:prop>
    <D:displayname>
    </D:displayname>
    <D:getcontentlength>
    </D:getcontentlength>
    <D:getcontenttype>
    </D:getcontenttype>
    <D:resourcetype>
    </D:resourcetype>
    <D:getlastmodified>
    </D:getlastmodified>
    <D:lockdiscovery>
    </D:lockdiscovery>
    </D:prop>
    </D:propfind>
    <<<<<<< from server ---------------------------------------------------
    HTTP/1.1 207 Multistatus
    Date: Wed, 25 Jan 2006 08:38:54 GMT
    Server: Microsoft-IIS/6.0
    MicrosoftOfficeWebServer: 5.0_Pub
    X-Powered-By: ASP.NET
    Content-Type: text/xml
    Accept-Ranges: rows
    MS-WebStorage: 6.5.7638
    Transfer-Encoding: chunked
    <a:multistatus
    xmlns:a="DAV:"
    xmlns:b="urn:uuid:c2f41010-65b3-11d1-a29f-00aa00c14882/"
    xmlns:c="xml:">
    <a:response>
    <a:href>
    http://server/public/test1/
    </a:href>
    <a:propstat>
    <a:status>
    HTTP/1.1 200 OK
    </a:status>
    <a:prop>
    <a:displayname>
    test1
    </a:displayname>
    <a:getcontentlength b:dt="int">
    0
    </a:getcontentlength>
    <a:resourcetype>
    <a:collection>
    </a:collection>
    </a:resourcetype>
    <a:getlastmodified b:dt="dateTime.tz">
    2006-01-25T08:38:54.755Z
    </a:getlastmodified>
    <lockdiscovery xmlns="DAV:">
    </lockdiscovery>
    </a:prop>
    </a:propstat>
    <a:propstat>
    <a:status>
    HTTP/1.1 404 Resource Not Found
    </a:status>
    <a:prop>
    <a:getcontenttype>
    </a:getcontenttype>
    </a:prop>
    </a:propstat>
    </a:response>
    </a:multistatus>
    It looks not so bad. But no appointment is created.
    Where is the problem?
    When i google for the problem i always find howtos for .NET but nearly nothing for java
    Thank you for your help.
    best regards
    Bernhard

    I am working in same topic so please if you have been sloved it send it to me.
    I will be very thankfull for you.
    Thanks

  • When i open shared Document folder getting "An unexpected error has occurred. " error

    Hi,
    I am getting "An unexpected error has occurred. " error when i open Shared Document folder in Internet URL. But if i open the foder in newtab i can view the documents with out error also intranet URL also doesnt have any problem. I am using SharePoint
    2007. Kindly help me resove this issue

    @Manikandan,
    Can you check the ULS logs to find what is the error. The default location of log files will be C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\12\LOGS for MOSS 2007.
    If is allowed for you to change the callstack and customerrors mode setting in the web.config then change those values to see the error.
    Find: <SafeMode CallStack="false" />
    Replace with: <SafeMode CallStack="true" />
    Find: <customErrors mode="On" />
    Replace with: <customErrors mode="Off" />
    http://social.msdn.microsoft.com/Forums/en-US/4ffee924-8878-4443-85a9-1ac89f7fbbfb/debugging-a-web-part-an-unexpected-error-has-occurred-trace-log?forum=sharepointdevelopmentlegacy
    My Blog- http://www.sharepoint-journey.com|
    If a post answers your question, please click Mark As Answer on that post and Vote as Helpful

  • Open KM folder via WebDav - Invalid Item ID

    Hi!
    In our KM SAP NetWeaver Portal 7.0 we have some folders where a ! is in the name. There was no problem accessing these folders via WebDav since we installed SP 18. If I will access this folder now via WebDav, paste WebDav Url from flder into IE7 and open the link 'Navigation user interface' afterwards I will get an message like this: Invalid Item ID - the item you are attempting to access does not exists. Check wether the name of the associated repository is correct. In the Portal Log i found the following information: Syntax error in URI placeholder: <path to folder>
    Any idea?
    Thanks, Daniel

    Hi Nitsan,
    It depends from where you want to open the webdav folder.
    1. From explorer:
       Go to My network places, and add a new one with the URL you used before. Now it should open directly as a webdav folder. You can also map this to a network drive.
    2 From a website:
       Insert a link in the website using the following format:
    <a style="behavior: url(#default#AnchorClick)" title="Webmap" href="" folder="http://<hostname>:<port>/irj/go/km/docs/<km path>">Webfolder</a>
    This should open directly from the website as a webdav folder.
    Johan

  • Can't open webdav URL in Windows Explorer

    I am working on a page that searches for collections (folders).
    From the results page I would like a link that opens the folder in Windows Explorer.
    But when I click on the webdav URL it opens UCM "browse folders" view.
    I have installed DIS, but it didn't help.
    I have a "network place" setup.
    I can create a shortcut to open webdav in Windows Explorer, just can't do the same with a URL.
    Thanks

    Our consultant found an easy way to open a webdav folder with the windows explorer from a form (IE only).
    <form method=GET name=webfolder action="http://myserver.na.d-rco.com:7797/dridctest/idcplg/webdav/Contribution%20Folders/" folder="http://myserver.na.d-rco.com:7797/dridctest/idcplg/webdav/Contribution%20Folders" style=behavior:url('#default#AnchorClick') target=WebFolder>
    <input name=sm type=submit value=Open>
    </form>

  • How to connect WebDav URL in Windows 7  to a Folder of KM.

    Hi,
    I have EP 7.0 SP 21.
    When I tried to map a network drive in Windows Explorer  to the WEBDAV URL of the Portal , don´t accept the URL. It said the folder is not valid. I know are problem with WebDAV in Windows 7. but not are a solution to this yet.
    Thanks in advance.

    Hi Luis,
    we have the same problem and it seems that there are generally problems with Win7 and WebDav and not with Portal in particular.
    Here are some links, hope that helps:
    general:
    [http://social.technet.microsoft.com/Forums/en-US/w7itpronetworking/thread/67c361c0-ed6a-4e82-81df-da149c96492b|http://social.technet.microsoft.com/Forums/en-US/w7itpronetworking/thread/67c361c0-ed6a-4e82-81df-da149c96492b]
    [http://www.techiechips.com/web-folders-web-disk-webdav-problems-on-windows-7/|http://www.techiechips.com/web-folders-web-disk-webdav-problems-on-windows-7/]
    performance:
    [http://oddballupdate.com/2009/12/18/fix-slow-webdav-performance-in-windows-7/|http://oddballupdate.com/2009/12/18/fix-slow-webdav-performance-in-windows-7/]
    Good luck
    Joerg

  • When using a template the 'Save As' opens the templates folder to save to, not the last used folder

    I used to open a file from the templates folder,
    add details then click 'Save As' to save it the folder I was using.
    Now I have downloaded Fireworks CS6 it always opens the 'Templates' folder when I click 'Save As'
    I don't want to make a new template each time,
    I want it to open the folder I was last using.
    I have tried uninstalling and reinstalling but I can't get it to open the folder I was last using whan I click 'Save As',
    which is what it did before when I was using Fireworks CS5.
    Are there any Settings to change this?
    Of course I can click 'Recent Places' but it was easier before when the right folder to save to just came up first time.

    Saved files seem to remember their last saved location. So if you create a new file based on a Template, the first time you choose Save As, the location of the source (template) file will appear. However, once you've saved the file to a new location, that new location should become the new default for any subsequent iterations of that file.
    New files (not created from a template) pick up the location of the last saved file.
    All this is to say, the file saving issue you're experiencing should only be a problem the first time you save a file based on a template. Every time you open that file afterward, it should default to its current folder location. But yes, every time you create a file based on a template, the default location will be the Templates folder. If this feels like a big problem, I believe you have the option of opening a template file from any location... so you could copy or move the template into a more desireable folder location, and create your new file(s) based on the template in that location.
    Hope this gives you some ideas!

  • How to display the image which in KM folder using url iview

    Hi Friends
    How to display the image, which is under KM folder structur using the url iview.
    i trying using url iview url as  \document\testfolder\abc.jpg as url for the iview.
    but its now working .. so please help me how to slove this problem
    If is not the correct way then please suggest me best way to achive this.
    Thanks
    Mukesh

    Hi Mukesh,
    I think this may work,
    1, Create a HTML Layout.
        You can put your image wherever  u want with HTML Codes.
        Check this, [Article|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/3915a890-0201-0010-4981-ad7b18146f81] & [Help|http://help.sap.com/saphelp_nw04/helpdata/en/cc/00c93e9b2c3d67e10000000a114084/frameset.htm]
        With this, u can use the standard KM commands also.
    2, U need to use KM Navigation iView for this rather than KM Doc iView.
    3, In the Nav iView, u can use &rndLayoutSet=nameOfUrHTMLLayout to force the view with this new layout.
    Regards
    BP

  • How to open a folder using Actionscript 3.0

    Hi,
    I have been trying for about a day to get this to work, but nothing seems to, so i'm finally going to ask.
    So far, code wise, i have this:
         open_btn.addEventListener(MouseEvent.CLICK, OpenButtonHandler);
         function OpenButtonHandler(event:MouseEvent):void
    From there, what code gets flash to literally open up a folder such as My Documents? The end use of this code will be for a CD, whereby the flash .exe file will call up folders from the disc through clicking buttons. Also, please make me awear of under what situations the code may not work. At the moment, i am writting the .exe file to the desktop, and trying to open a folder on my desktop through the application.
    Often times, everything i have tried so far, either causes Syntax Errors or no errors, but just doesn't work.
    Thanks,
    Ricky
    EDIT:
    Primarily in Windows, but if you know the Mac way too, that could be useful.

    Is there no way to get buttons to open up explorer folders specified? It seems people are managing it somehow, but i can't do it. Others aprantly can do it using this code:
         on(release){
          getURL("flash",_black);
    , but that's actionscript 2, not 3 which i am using. Surely actionscript 3 can do this and possibly even better seeing as it is a higher version?
    I also found another bit of code that was like this:
         fscommand("exec","explorer\dirname");
    ,but again that didnt work. However, in another way it did because flash reported no errors when it was run, but nothing happened when the button was clicked.
    The only other thing i tried was this:
         var request:URLRequest=new URLRequest("C:\\");
        navigateToURL(request);
    The problem with that was that it tried to open the internet as expected unfortinatly, not windows explorer to open the folder C:\\.
    Directing users to the appropiate locations on the disk wasn't really what i needed thanks for the suggestion though.
    EDIT:
    That last idea worked, sorry, but it opened in the default web-browser instead of using explorer, so i'm half way there. Is it possible to tell it what application to use to open the directory, so that way i can specify explorer?

  • Will Not Open To Most Recently Used Folder

    I figured out how to save in the same file, but PS still opens some default folder beginning with "THIS PC", instead of the most recently used folder. It should open to the most recently used folder. How do I set that?

    none than I know of.
    Of course, you could always make an Apple Script as an app (that you could place next to the finder icon on the dock for ex) that would do it, but that would require programming skills.

  • Unable to open a Zip directory using windows default uncomressed folder

    Hi
    I Created a zip directory in AIX using java.util.zipfile. now when I am trying to open it in windows using its defult uncompress method I am unable to do it.
    here is the sample code
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileNotFoundException;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.util.zip.ZipEntry;
    import java.util.zip.ZipOutputStream;
    public class Zipdita {
    public void zipFolder(String srcFolder, String destZipFile, String Z_PATH) throws Exception {
    ZipOutputStream zip = null;
    FileOutputStream fileWriter = null;
    fileWriter = new FileOutputStream(destZipFile);
    zip = new ZipOutputStream(fileWriter);
    addFolderToZip(Z_PATH, srcFolder, zip);
    zip.flush();
    zip.close();
    public void addFileToZip(String path, String srcFile, ZipOutputStream zip)
    System.out.println("file in addFileToZip " + srcFile);
    try {
              File folder = new File(srcFile);
              /*if (folder.isDirectory()) {
              addFolderToZip(path, srcFile, zip);
              } else {*/
              byte[] buf = new byte[1024];
              int len;
              FileInputStream in = new FileInputStream(srcFile);
              zip.putNextEntry(new ZipEntry(srcFile ));
              while ((len = in.read(buf)) > 0) {
              zip.write(buf, 0, len);
         } catch (FileNotFoundException e) {
              e.printStackTrace();
         } catch (IOException e) {
              e.printStackTrace();
         } catch (Exception e) {
              e.printStackTrace();
    public void addFolderToZip(String Z_PATH, String srcFolder, ZipOutputStream zip)
    throws Exception {
    File folder = new File(srcFolder);
    System.out.println("Folder Name::"+folder.getName());
    for (String fileName : folder.list()) {
    //if (path.equals("")) {
         System.out.println("Filename to be zipped" + fileName);
    addFileToZip(Z_PATH, srcFolder + fileName, zip);
    //} else {
    //addFileToZip(path + "/" + folder.getName(), srcFolder + "/" + fileName, zip);
    the srcFolder referes to /a/b/
    destZipfile refres to /a/b.zip
    srcfile refers to /a/b/c.txt
    now the zip gets created but it takes the path /a/b.Due to which I m unable to open it in windows.
    please help me in removing the / from the Zip file.

    Hello and welcome to the forum. Let me add code tags to your posted code
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileNotFoundException;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.util.zip.ZipEntry;
    import java.util.zip.ZipOutputStream;
    public class Zipdita {
    public void zipFolder(String srcFolder, String destZipFile, String Z_PATH) throws Exception {
        ZipOutputStream zip = null;
        FileOutputStream fileWriter = null;
        fileWriter = new FileOutputStream(destZipFile);
        zip = new ZipOutputStream(fileWriter);
        addFolderToZip(Z_PATH, srcFolder, zip);
        zip.flush();
        zip.close();
      public void addFileToZip(String path, String srcFile, ZipOutputStream zip)
    System.out.println("file in addFileToZip " + srcFile);
        try {
          File folder = new File(srcFile);
          /*if (folder.isDirectory()) {
            addFolderToZip(path, srcFile, zip);
          } else {*/
            byte[] buf = new byte[1024];
            int len;
            FileInputStream in = new FileInputStream(srcFile);
            zip.putNextEntry(new ZipEntry(srcFile ));
            while ((len = in.read(buf)) 0) {
              zip.write(buf, 0, len);
       } catch (FileNotFoundException e) {
          e.printStackTrace();
       } catch (IOException e) {
          e.printStackTrace();
       } catch (Exception e) {
          e.printStackTrace();
    public void addFolderToZip(String Z_PATH, String srcFolder, ZipOutputStream zip)
          throws Exception {
        File folder = new File(srcFolder);
        System.out.println("Folder Name::"+folder.getName());
        for (String fileName : folder.list()) {
          //if (path.equals("")) {
           System.out.println("Filename to be zipped" + fileName);
            addFileToZip(Z_PATH, srcFolder + fileName, zip);
          //} else {
            //addFileToZip(path + "/" + folder.getName(), srcFolder + "/" + fileName, zip);
    }

  • Suddenly I am not able to copy photographs from my apple 5c to laptop , earlier while connecting my phone to laptop through usb , auto run use to open my gallery folder by name DCIM , plz suggest

    Suddenly I am not able to copy photographs from my apple 5c to laptop , earlier while connecting my phone to laptop through usb , auto run use to open my gallery folder by name DCIM , plz suggest

    The following has some information about enabling AutoPlay and alternatives that may help: http://support.apple.com/kb/ht4083
    If that doesn't help, the following may: http://support.apple.com/kb/TS3195

  • Issue while opening webi reports using OpenDoc url in Chrome browser

    Hi
    We are in SAP BI4.0 SP7. We are facing weird issue while opening the webi report via OpenDoc url in chrome. we are facing the below issue only in chrome and it works perfectly in IE and Firefox.
    For the first time the report gets opened properly(when a session is created). If we try to open the same report from the same machine in a different browser tab, report gets opened up without any Tables\charts. We could see only a blank page with just the Report Tab name at the bottom. If we do refresh on the page, the report opens up correctly. We have checked for packet drops and there is no such thing. Is there any setting that we should make to resolve this. Your help is appreciated.
    thanks
    Gokul

    Hello Gokul,
    first thing is to check is if your chrome version is supported by your current BO version as specified in the PAM (is it?). If the chrome version is supported, and you still have an issue, then you can check with a sap support engineer.
    best regards,
    Victor

Maybe you are looking for