How to make folder readable/listable via http?

So I added new website in my server, loch point to a folder in which there is no webpage, but only files... What I want is access to files via browser, like this:
But right now I'm getting this:
Permissions on a folder are like this:
What do I need to do else?

Silly me.... Found it:

Similar Messages

  • How to make a transaction call via https protocol

    Hi,
    Recently we have got a new requirement that requires the protocol to be used for a particular transaction as https.
    Is there any way that we can use https for only few transactions instead of all the transactions on MII (12.x)?
    For Example :
    Instead of
    http://<servername>>/XMII/Runner?Transaction=<transactionpath>
    We want to make call as
    https://<servername>>/XMII/Runner?Transaction=<transactionpath>
    Thanks in Advance
    Amit

    Amit,
    Since this is a NetWeaver setting to use https, it is either all or nothing for MII.  So if you have https turned on all of your MII Runner calls will need to use https and vice versa.  You are not able to pick and choose.
    Also to note if you are on MII 12.1 a new Service Pack (SP8) for MII is coming out soon, most likely by the end of the year.  This service pack takes advantage of the new security features (including https) that have been added in NetWeaver EHP1 SP5 or greater.  I would highly recommend moving to this if you are using https.  I'm not sure of all the pros but a SAP Note will be delivered with this release explaining in more detail.
    Thanks,
    Erik

  • How to block youtube and facebook via HTTPs in CX on ASA-X ?

    How to block youtube and facebook via HTTPs in CX on ASA-X ?
    now i use decrypt feature on CX module but can not block https traffic. Could you help me.

    Hi,
    Double-check your CX configuration with this guide:
    http://tools.cisco.com/squish/fCA6D
    And make sure you are redirecting HTTPS traffic to the CX
    Luis Silva
    "If you need PDI (Planning, Design, Implement) assistance feel free to reach us"
    http://www.cisco.com/web/partners/tools/pdihd.html

  • How to send a pdf file via http call

    Hi Experts,
    Please try to think on how you would send a file like a pdf file via the http call. You might need to convert the pdf in a character string which can be sent via http. The character string then might need to  get converted back into a pdf and saved in a file. Read through the Archive Link API guide to see how they send the body of a file.
    Please it is urgent......
    Thanks
    Basu

    so you want to push the PDF file over http to external system.
    where is pdf file stored.
    for examle if its in the clients desktop, you can use gui_upload to upload to internal tabble (type BIN) then use FM SCMS_BINARY_TO_XSTRING to conver the binary table to type string.
    then use cl_http_client class to push the file to the destination.

  • How to make Folder Action work on file, subfolder content change?

    Hi!
    I looking for information in how to make a Folder Action, Work Flow or any action from Automator to work on file change and not only on deletion, moving or insertion. What I want to know is if it's possible to trigger some script or app while monitoring a folder and its contents, files and subfolders, changes. Meaning that when I have a file that has its contents updated the action will be triggered like an txt file that I only insert a new line in it, for example.
    Is there any solution that is not third party? Is there an internal Mac OS X solution that would work on Snow Leopard, Lion and Mountain Lion?

    i have same problem. i would like to move automatically saved Word backup copy to another folder, but the folder action doesn't recognize the save as a new file that needs to be acted upon.

  • How to send command to device via HTTP

    Hy everyone,
    i have installed olite on a number of wince device.
    If i try to send command to the device when connected with the desktop computer on wich the mobile server is installed everything goes well.
    My devices are connected by wifi to the lan of my company and i would like to send command via HTTP.
    I tried to change the settings on the mobile server setting the Network Protocol to HTTP and setting the ip of the device but it does not work.
    Does anyone know how to solve the problem?
    David.

    Hi Ravi,
    yes the command is queued but anything happens.
    I tried to wait for long time but the command never succeed to execute.
    If i try to send again the command from the Command History windows the command fails.
    David.

  • How to make folder unprotected!

    Hi All,
    This is prakhyath.
    I have a web-application running on Jboss.. Inside the context folder i have several directories having some pre-defined configuration files . I am using Josso for authentication purpose. currently my entire war file content is under Josso authentication. I just want to make one folder unprotected inside the war file.
    My web.xml looks like:-
    <security-constraint>
    <!-- Sample Security Constraint -->
    <web-resource-collection>
    <web-resource-name>protected-resources</web-resource-name>
    <url-pattern>/*</url-pattern>
    <http-method>HEAD</http-method>
    <http-method>GET</http-method>
    <http-method>POST</http-method>
    <http-method>PUT</http-method>
    <http-method>DELETE</http-method>
    </web-resource-collection>
    <auth-constraint>
    <role-name>Authenticate</role-name>
    </auth-constraint>
    <user-data-constraint>
    <transport-guarantee>NONE</transport-guarantee>
    </user-data-constraint>
    </security-constraint>
    How can i prevent authentication for specific folder inside war file....
    Thanks in advance.
    Regards
    Prakhyath

    i have same problem. i would like to move automatically saved Word backup copy to another folder, but the folder action doesn't recognize the save as a new file that needs to be acted upon.

  • How to make tomcat 5 support SSL (https)?

    Hi,
    is there a way to make tomcat support SSL (https)?
    i using: Apache 1.3.33
    with : Tomcat 5.0.28-1.00RC2
    and : jakarta-tomcat-connectors-jk-1.2.6
    JDK: j2sdk1.4.0_04
    Many thanks
    Anatolia

    Thanks very much Sherbir,
    But JSSE is integrated into the Java 2 SDK, Standard Edition, v 1.4 and above!
    here is what i'm facing:
    the documentation says:
    >
    It is important to note that configuring Tomcat to take advantage of secure sockets is usually only necessary when running it as a stand-alone web server. When running Tomcat primarily as a Servlet/JSP container behind another web server, such as Apache or Microsoft IIS, it is usually necessary to configure the primary web server to handle the SSL connections from users. Typically, this server will negotiate all SSL-related functionality, then pass on any requests destined for the Tomcat container only after decrypting those requests. Likewise, Tomcat will return cleartext responses, that will be encrypted before being returned to the user's browser. In this environment, Tomcat knows that communications between the primary web server and the client are taking place over a secure connection (because your application needs to be able to ask about this), but it does not participate in the encryption or decryption itself.
    I'm running running Tomcat as a Servlet/JSP container behind Apache 1.3.33 web server.
    So all SSL requests are handled by apache web server, but the problem I'm facing is that if i request any jsp page using https (ssl) i get plain text and it's not handled by tomcat!
    i have a test page called test.jsp:
    <html>
    <head>
    <title>JSP test page</title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    </head>
    <body>
    <p>2 x 2 = <%= 2 + 2 %>
    </p>
    </body>
    </html> If I request this page using normal http request I get my results fine:
    2 x 2 = 4
    but if i request the page using https (ssl) I get a clear plain text of my jsp file content like this:
    <html>
    <head>
    <title>JSP test page</title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    </head>
    <body>
    <p>2 x 2 = <%= 2 + 2 %>
    </p>
    </body>
    </html> Now how do I fix this problem and make apache passes the jsp file to tomcat if the request was https (ssl) and not send me cleartext of my file content!
    Many thanks
    Anatolia

  • How to make folder user specific..!!!

    hii guys..
    how can we implement permission rights to a existing or newly created folder in webcenter content, so that only a specific user can see that folder, and other users will not have access to that folder.
    Thanks

    Hi ,
    With PS5 , use Framework Folders component . In this every authenticated user can create their own personal folders which will be accessible for that user alone .
    http://docs.oracle.com/cd/E23943_01/doc.1111/e10978/c08_folders.htm#i1125681
    Section 6.1.6 Personal Folder
    Thanks
    Srinath

  • How to make Folder Explorer  like windows with ADF

    I want to make a folder explorer like windows like this image
    http://img837.imageshack.us/img837/4296/sshot7z.png
    I want to make a folder explorer like windows when click on a folder on the tree it expands and shows its sub-folders and its content or show the files inside the folder in another place in the page
    is this possible to be done with ADF .
    I need help in this.
    Thanks in advance.

    Hi,
    Your use case is extremely vague. However, assuming you simply meant the look using ADF Faces, you can simply use the tree component with correctly defined icons to get that. See http://jdevadf.oracle.com/adf-richclient-demo/faces/components/index.jspx?_afrLoop=30572603018616864#%2Fcomponents%2Ftree.jspx%40
    Regards,
    ~ Simon

  • How to setup a network printer via http

    I have a router with a USB printer attached to it. It looks like this:
    Printer status: Ready
    Printer location: http://192.168.2.1:1631/printers/My_Printer
    In Windows you setup a network printer and the printers address is the http address above. How do you add this type of printer in the printer setup utility on Mac OSX 10.4.11 and 10.5.x?

    For OS X 10.5, you use the following settings
    As mentioned by bdaqua, open Print & Fax and click the IP icon and then select IPP from the top drop menu. Then in the Address field just enter the IP address; don't enter the leading 'http://' and don't enter the :631 (the mere fact that you have selected the IPP protocol means that it will communicate on port 631)
    Then in the queue field you can enter printers/My_Printer, although some router perform a translation for the shared printer so you only need to enter the shared printer name in the queue field.
    As for the name and location fields, these are just free text for the local user and have no bearing on the queue details.
    And as for 10.4 I have no idea or way to test this at home. But if you use a mix of mine and bdaqua's information you should be okay.

  • How to make folder view static on shared volume

    I have an external drive connected to a Mac Mini (10.6.8).  We use that external drive as our shared network drive.  4 Macs and 2 PCs access the drive.  Please tell me how I can alter the ".DS_store" file on the SHARED VOLUME so that each user can expand disclosure triangles, etc. on the server volume, but each individual user isn't affected by how any particular user is viewing the folders.  Right now, if User #1 expands a bunch of folders, all of the other users see that, too.  I've done this before, using the Terminal.  Alas, I've lost the directions for that.  I believe it involved changing the permissions on the "DS_store" file on the server volume.  Thanks in advance.

    The following should work
    cd /path/to/the/folder
    chmod 444 .DS_Store
    Repeat for each folder of interest.
    If you have an entire directory tree, you could use something like
    cd /path/to/the/top/folder
    find . -iname .DS_Store -print0 | xargs -0 chmod 444
    The 444 is read for owner, group, everyone else, and no write, and no execute permissions for the .DS_Store file.  No write means no one should be able to change the contents of the .DS_Store file.
    The find command will start at the current folder, then walk down the directory tree looking for all the .DS_Store files and pipe those files to xargs which will execute the chmod 444 command for each .DS_Store found.
    Does this sound like what you did before?

  • How to make folder configured to get temp files

    Actually in our project we have some applications .in each application the "java.io.tmpdir" is pointing to /var/tmp folder to dump temp files as its running in solaris machine.now we want to reduce the burden on /var/tmp and dump the temp files into a directory created by us for each application which is specific so that it can take from that location and delete it once its processed.How to do this.i think we need to do that change in config file .
    i am expecting inputs on this.

    I think I must be missing something because I can't understand why it is not obvious to you that you just have to provide a system wide constant defining the directory you want to use.
    P.S. I thought that "java.io.tmpdir" pointed to /tmp on Unix type systems.

  • How to make accounts display only via authorizations?

    Has anyone setup CRM 2007 to get the account page to be display only? We don't want to allow certain users to manage accounts directly in CRM and would like to lock this down via authorization objects. We can't seem to figure out what authorization objects are needed to lock it down appropriately. Thanks in advance.

    Hi James,
    We've had a similar requirement. We used sap note 1260695.
    Using this BAdI you can customize that depending on the BP role, some areas (e.g. marketing attributes) are
    editable, and others (e.g. address data) are only displayed.
    As an alternative, you can use note:
    Note 1259940 - Authority check for accounts depending on roles
    Hope this helps.
    Regards,
    Wim Olieman

  • How to make your facebook status via ipad? (iPad 2)

    I used the facebook app and there is no sign of "via" and when im using my browser my status is via mobile.
    PLS HLEP ME!!

    As far as I know, that is just the way it works. Only on a pc does it show whether it is via mobile. That's just the way the app was made. If you want a more desktop version of Facebook, just go to Facebook.com in safari browser. It might show there. It will show to everyone else that looks at the status update, but not to you, if that is what you're asking.

Maybe you are looking for

  • Problems w/MS Office 2008 & Google Earth Ever Since Snow Leopard "Upgrade"

    I probably should have checked this forum before taking my son's advice to upgrade from 10.5 to 10.6. Ever since this upgrade, I've had repeated and frustrating problems with two applications: MS Office 2008 for the Mac and Google Earth for the Mac.

  • Force resolution for external monitor

    I have a NEC MultiSync LCD 2690WUXi which supports a resolution of 1920 x 1200 pixels. I have it connected to my MBP i7 (early 2010) via DVI -> Mini-DV. However, the monitor preference pane only shows a max. resolution of 720p or 1024 x 576 pixels: T

  • How to "use" a xml file with a script?

    Hey Guys! I use the normal Button with the send-option to send the xml file to an url. My question is how it's possible to work in a php-script with the xml data out of the formular? Thanks for help. LG Adrian

  • Preview Doesn't Load Preview Help

    Greetings: Since upgrading to 10.4.7, I'm unable to bring up Preview's "Help" feature. Other apps do show Help, and oddly enough, in other new user accounts, Preview's "Help" does pop up. Unsure whether this is indicative a subtler problem which is m

  • Where are Application Builder and SQL/Data Workshops?

    I have installed HTML DB (or Application Express) 10.1.0.2 (using the relevant DB server; but without companion tools - but - I hope that I am not loosing anything important from HTML DB, am I?) - installation and automatic configurationi was success