How to secure wwv_flow_files from URL reference

Was building a upload page from a canned apex.oracle.com package, and it worked flawlessly. But in the report part of it, the reference to the ID shows as the link to download to the PC. This also works, but then my DBA mind jumped and said what about:
http://machine_name:7781/pls/htmldb/p?n=9909512187901972 from a browser, since in reality that appears to be what the app is doing.
Oops! No prompt for login or password. Not good.
So - how do I secure and disable the reference to the URL outside of Apex? tried doing it at the report/upload/download page, but that had no effect. It does prompt me if I run the application from Application builder, but not from the link mentioned above.
Thanks in advance for your suggestions.
Dwight

Using the approach over an application process described here:
http://htmldb.oracle.com/pls/otn/f?p=31517:15
you can make it secure since there is no need to make the download procedure public.
Denes Kubicek
http://deneskubicek.blogspot.com/
http://www.opal-consulting.de/training
http://apex.oracle.com/pls/otn/f?p=31517:1
------------------------------------------------------------------------------

Similar Messages

  • How to retrieve data from URL or querystring in bsp pages

    hi
    how to retrieve data from URL or querystring in bsp pages.
    thanks
    Edited by: Vijay Babu Dudla on Mar 23, 2009 7:35 AM

    Hello Friend,
    Vijay is correct.
    REQUEST is a system object available in runtime of BSP application.
    It is the object of interface IF_HTTP_REQUEST.
    Use methof REQUEST -> GET_FORM_DATA( )
    Regards
    Krishnendu

  • How to get data from URL in a PL/SQL procedure

    Hi!<br>
    <br>
    I want to pass values in APEX from a report with a link to a PL/SQL procedure through URL.
    How can I make this?<br>
    <br>
    For example:<br>
    <br>
    I have a report:<br>
    <br>
    select<br>
       id,<br>
       name,<br>
       akt,<br>
       case<br>
          when akt is NULL then '< a href="f?p=&APP_ID.:27:&SESSION.:START_PROCESS" name="test_link" >set< /a >'<br>
       end choice<br>
    from<br>
       USERS;<br>
    <br>
    I want to pass the value "id" in the link ( named "test_link" ) . And want to use this value in a process like this:<br>
    <br>
    DECLARE<br>
       v_user_id NUMBER(10);<br>
    BEGIN<br>
       --I want to read this value from the url<br>
       if :REQUEST='START_PROCESS' then<br>
          v_user_id := ????;<br>
          <br>
          ...<br>
       end if;<br>
    END;<br>
    <br>
    <br>
    Thanks!<br>
    Marton

    Hi,
    1- Create a hidden item P27_USER_ID on page 27
    2- Change your code :
    SELECT ID, NAME, akt,
           CASE
              WHEN akt IS NULL
                 THEN    '< a href="f?p=&APP_ID.:27:&SESSION.:START_PROCESS:NO::P27_USER_ID:'
                      || ID
                      || '" name="test_link" >set< /a >'
           -- refer to f?p=App:Page:Session:Request:Debug:ClearCache:itemNames:itemValues:PrinterFriendly
           END choice
      FROM users;
       And then
    DECLARE
       v_user_id   NUMBER (10);
    BEGIN
       --I want to read this value from the url
       IF :request = 'START_PROCESS'
       THEN
          v_user_id := :p27_user_id;
           --your code
       END IF;
    END;Hope this helps,
    Grégory

  • How to remove faces from url

    Hi All,
    Following is my web.xml
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
        <description>Empty web.xml file for Web Application</description>
        <context-param>
            <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
            <param-value>client</param-value>
        </context-param>
        <context-param>
            <param-name>CpxFileName</param-name>
            <param-value>com.gemini.view.DataBindings</param-value>
        </context-param>
        <filter>
            <filter-name>adfBindings</filter-name>
            <filter-class>oracle.adf.model.servlet.ADFBindingFilter</filter-class>
        </filter>
        <filter>
            <filter-name>adfFaces</filter-name>
            <filter-class>oracle.adf.view.faces.webapp.AdfFacesFilter</filter-class>
        </filter>
        <filter-mapping>
            <filter-name>adfBindings</filter-name>
            <url-pattern>*.jsp</url-pattern>
        </filter-mapping>
        <filter-mapping>
            <filter-name>adfBindings</filter-name>
            <url-pattern>*.jspx</url-pattern>
        </filter-mapping>
        <filter-mapping>
            <filter-name>adfFaces</filter-name>
            <url-pattern>*.jsp</url-pattern>
        </filter-mapping>
        <filter-mapping>
            <filter-name>adfFaces</filter-name>
            <url-pattern>*.jspx</url-pattern>
        </filter-mapping>
        <servlet>
            <servlet-name>Faces Servlet</servlet-name>
            <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
            <load-on-startup>1</load-on-startup>
        </servlet>
        <servlet>
            <servlet-name>resources</servlet-name>
            <servlet-class>oracle.adf.view.faces.webapp.ResourceServlet</servlet-class>
        </servlet>
        <servlet>
            <servlet-name>geminiservlet</servlet-name>
            <servlet-class>com.gemini.view.managed.geminiservlet</servlet-class>
        </servlet>
        <servlet>
            <servlet-name>gemini</servlet-name>
            <servlet-class>com.gemini.view.managed.gemini</servlet-class>
        </servlet>
        <servlet-mapping>
            <servlet-name>Faces Servlet</servlet-name>
            <url-pattern>/faces/*</url-pattern>
        </servlet-mapping>
        <servlet-mapping>
            <servlet-name>resources</servlet-name>
            <url-pattern>/adf/*</url-pattern>
        </servlet-mapping>
        <servlet-mapping>
            <servlet-name>geminiservlet</servlet-name>
            <url-pattern>/faces/geminiservlet</url-pattern>
        </servlet-mapping>
        <servlet-mapping>
            <servlet-name>gemini</servlet-name>
            <url-pattern>/gemini</url-pattern>
        </servlet-mapping>
        <session-config>
            <session-timeout>35</session-timeout>
        </session-config>
        <mime-mapping>
            <extension>html</extension>
            <mime-type>text/html</mime-type>
        </mime-mapping>
        <mime-mapping>
            <extension>txt</extension>
            <mime-type>text/plain</mime-type>
        </mime-mapping>
        <welcome-file-list>
            <welcome-file>/login.jsp</welcome-file>
        </welcome-file-list>
    </web-app>I access the site using http://bri-dev2/Gemini/faces/login.jsp
    I want to remove faces from the URL. like http://bri-dev2/Gemini/login.jsp
    How can I achieve this ?
    I used /* in the Faces Servlet URL Pattern. and when I accessed the page using
    http://bri-dev2/Gemini/login.jsp it gave me FacesContext Exception. I am using FacesContext object in login.jsp and several other jsp pages. So /* did not work.
    Any idea ?
    thanks,
    pp

    Sorry, it took long time. bcoz after that, all the components of server were down. I had to restart the server.
    Well, Following is the log:
    07/08/09 18:12:35 Start process
    07/08/09 18:13:04 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
    not found
    07/08/09 18:13:05 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
    not found
    07/08/09 18:13:05 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
    not found
    07/08/09 18:13:05 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
    not found
    07/08/09 18:13:05 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
    not found
    07/08/09 18:13:06 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
    not found
    07/08/09 18:13:06 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
    not found
    07/08/09 18:13:06 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
    not found
    07/08/09 18:13:06 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
    not found
    07/08/09 18:13:06 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
    not found
    07/08/09 18:13:07 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
    not found
    07/08/09 18:13:07 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
    not found
    07/08/09 18:13:07 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
    not found
    07/08/09 18:13:07 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
    not found
    07/08/09 18:13:07 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
    not found
    07/08/09 18:13:07 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
    not found
    07/08/09 18:13:07 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
    not found
    07/08/09 18:13:07 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
    not found
    07/08/09 18:13:07 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
    not found
    07/08/09 18:13:07 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
    not found
    07/08/09 18:13:14 Error initializing site OracleAS Java Web Site: No application named 'BC4J' found in the server
    Aug 9, 2007 6:13:19 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Short,null)
    Aug 9, 2007 6:13:19 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Short)
    Aug 9, 2007 6:13:19 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Byte,null)
    Aug 9, 2007 6:13:19 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Byte)
    Aug 9, 2007 6:13:19 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Integer,null)
    Aug 9, 2007 6:13:19 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Integer)
    Aug 9, 2007 6:13:19 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Long,null)
    Aug 9, 2007 6:13:19 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Long)
    Aug 9, 2007 6:13:19 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Float,null)
    Aug 9, 2007 6:13:19 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Float)
    Aug 9, 2007 6:13:19 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Double,null)
    Aug 9, 2007 6:13:19 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Double)
    Aug 9, 2007 6:13:19 PM com.sun.faces.config.rules.ValidatorRule end
    WARNING: [ValidatorRule]{faces-config/validator} Merge(javax.faces.LongRange)
    Aug 9, 2007 6:13:19 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.DateTime,null)
    Aug 9, 2007 6:13:19 PM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Number,null)
    07/08/09 18:13:25 Tutalii: D:\Apps\OraHome_1\j2ee\home\applications\webappjdk14ver80\webappjdk14ver80\WEB-INF\lib\adf-faces-api.jar archive
    07/08/09 18:13:25 Oracle Application Server Containers for J2EE 10g (10.1.2.0.2) initialized
    07/08/10 08:21:29 Error initializing site OracleAS Java Web Site: No application named 'BC4J' found in the server
    07/08/10 08:22:30 Notification ==> Application Deployer for webappjdk14ver80 STARTS [ 2007-08-10T08:22:30.864PDT ]
    07/08/10 08:22:30 Notification ==> Do not undeploy previous deployment
    07/08/10 08:22:30 Notification ==> Copy the archive to D:\Apps\OraHome_1\j2ee\home\applications\webappjdk14ver80.ear
    07/08/10 08:22:30 Copy file C:\WINDOWS\TEMP\dir53654.tmp\webappjdk14ver80.ear to D:\Apps\OraHome_1\j2ee\home\applications\webappjdk14ver80.ear
    07/08/10 08:22:31 Notification ==> Unpack webappjdk14ver80.ear begins...
    07/08/10 08:22:31 Auto-unpacking D:\Apps\OraHome_1\j2ee\home\applications\webappjdk14ver80.ear... done.
    07/08/10 08:22:31 Notification ==> Unpack webappjdk14ver80.ear ends...
    07/08/10 08:22:31 Notification ==> Initialize webappjdk14ver80.ear begins...
    07/08/10 08:22:31 Auto-unpacking D:\Apps\OraHome_1\j2ee\home\applications\webappjdk14ver80\webappjdk14ver80.war... done.
    07/08/10 08:22:32 Copying default deployment descriptor from archive at D:\Apps\OraHome_1\j2ee\home\applications\webappjdk14ver80/META-INF/orion-application.xml
    to deployment directory D:\Apps\OraHome_1\j2ee\home\application-deployments\webappjdk14ver80...
    07/08/10 08:22:32 Notification ==> Initialize webappjdk14ver80.ear ends...
    07/08/10 08:22:32 Notification ==> Initialize webappjdk14ver80 begins...
    07/08/10 08:22:32 Notification ==> Initialize webappjdk14ver80 ends...
    07/08/10 08:22:32 Error initializing data-source 'jdbc/GeminiSQLConnection1CoreDS': DriverManagerDataSource driver 'com.mysql.jdbc.Driver'
    not found
    07/08/10 08:22:32 Notification ==> Application Deployer for webappjdk14ver80 COMPLETES [ 2007-08-10T08:22:32.695PDT ]
    07/08/10 08:22:32 Error initializing site OracleAS Java Web Site: No application named 'BC4J' found in the server
    Aug 10, 2007 8:22:36 AM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Short,null)
    Aug 10, 2007 8:22:36 AM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Short)
    Aug 10, 2007 8:22:36 AM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Byte,null)
    Aug 10, 2007 8:22:36 AM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Byte)
    Aug 10, 2007 8:22:36 AM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Integer,null)
    Aug 10, 2007 8:22:36 AM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Integer)
    Aug 10, 2007 8:22:36 AM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Long,null)
    Aug 10, 2007 8:22:36 AM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Long)
    Aug 10, 2007 8:22:36 AM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Float,null)
    Aug 10, 2007 8:22:36 AM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Float)
    Aug 10, 2007 8:22:36 AM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Double,null)
    Aug 10, 2007 8:22:36 AM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(null,java.lang.Double)
    Aug 10, 2007 8:22:36 AM com.sun.faces.config.rules.ValidatorRule end
    WARNING: [ValidatorRule]{faces-config/validator} Merge(javax.faces.LongRange)
    Aug 10, 2007 8:22:36 AM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.DateTime,null)
    Aug 10, 2007 8:22:36 AM com.sun.faces.config.rules.ConverterRule end
    WARNING: [ConverterRule]{faces-config/converter} Merge(javax.faces.Number,null)
    07/08/10 08:22:39 Tutalii: D:\Apps\OraHome_1\j2ee\home\applications\webappjdk14ver80\webappjdk14ver80\WEB-INF\lib\adf-faces-api.jar archive

  • How can we navigate from URL Name like (Youtube) to the actual website

    Hi,
    We have two columns in our report i.e URL NAME and Actual site.
    In URL NAME column, we have YOUTUBE,GOOGLE etc.
    In Actual site, we have www.youtube.com,www.google.com etc.
    How can we make user navigate by simply clicking the URL Name GOOGLE to the actual website www.google.com.
    Can it be possible?? Please help!
    Thanx.

    Hi,
    Thanks for the reply..
    The solution provided is not working. It is showing the error-
    [nQSError: 10058] A general error has occurred. [nQSError: 27002] Near <<>: Syntax error [nQSError: 26012] . (HY000)
    SQL Issued: SELECT Dashboard_Fact.SDBusiness_Area_Comment, Dashboard_Fact.SD_Status, SDBussiness_Area_Dim.SDBusiness_Area_Name, SDLink_Dim.SDLink_Url, VOCBusiness_Area_Dim.VOCBusiness_Area_Id, case when SDLink_Dim.SDLink_Url is not null then <a href = http:// SDLink_Dim.SDLink_Url /a> FROM service_delivery
    Actually its not even taking the case statement in the name column.There is some error in the syntax i suppose.

  • How to load document from url to blob

    How I can load html file from web to
    clob column in database table?

    Sorry, I forget write that I try use Oracle 8.1.7 and 9i
    Intranet server uses MS IIS and
    for external web adresses it use proxy server with NTLM authorisation
    I work in Windows 2000. Oracle server installed on machine with Windows 2000 and
    in network
    I used UTL_HTTP package (with specified proxy server name) for load document from www.oracle.com. It works perfect.
    But if I load document from intranet server then I get DNS server message
    "The requested URL could not be retrieved"
    "Unable to determine IP address from host name for <server>"

  • How to get parameter from URL - part II

    Is there a way to assign a value of JavaScript variable to JSF variable?, something like
    <h:commandButton value="Send" actionListener ="#{myBean.myAction}" 
    <f:attribute name="source" value="<some JavaScript variable>"/>
    </h:commandButton>Here is my problem
    Following the thread in http://forum.java.sun.com/thread.jspa?forumID=427&threadID=545973
    I have a facelets page that is used as a "contact us" from this page the information is send to the action bean for saving in the database. We want to know where the users come from to this page. This can be done either by using the "referring page" or adding parameters to the URL - http://mylink?param=myval
    In both cases the problem is that when transferring the information from the faclets page to the action bean the information is lost and instead of showing the "real" referring page or parameter it shows the information of the faclets page.
    One solution to the problem is to save the information in the faclets page in a javascript variable and then transfer it using the f:attribute to the action bean. By the way, the opposing is very easy, one can save easy the value of a JSF parameter in a javascript variable:
    <script type="text/javascript">
         // <![CDATA[
         var foo = "#{myBean.bar}"
    // ]]>
    </script>

    I can, but the EL doesn't contain the "right" value..
    But there is a general question
    Can one use javascript in expression like f:attribute ?
    BTW I solved the above problem by using AJAX like behavior, But I wanted to know if there is another way

  • Hi i have pop up ads everywhere in safari and I'm new to using a mac can someone help me with some info on how to secure myself from this occurring

    Hi I need some help with pop up ads there everywhere in safari is there a anti phishing product i should install or settings that need to be changed I'm new to using apple and would love some help here.

    There is no need to download anything to solve this problem.
    You may have installed one or more of the common types of ad-injection malware. Follow the instructions on this Apple Support page to remove it. It's been reported that some variants of the "VSearch" malware block access to the page. If that happens, start in safe mode by holding down the shift key at the startup chime, then try again.
    Back up all data before making any changes.
    One of the steps in the article is to remove malicious Safari extensions. Do the equivalent in the Chrome and Firefox browsers, if you use either of those. If Safari crashes on launch, skip that step and come back to it after you've done everything else.
    If you don't find any of the files or extensions listed, or if removing them doesn't stop the ad injection, ask for further instructions.
    Make sure you don't repeat the mistake that led you to install the malware. It may have come from an Internet cesspit such as "Softonic" or "CNET Download." Never visit either of those sites again. You might also have downloaded it from an ad in a page on some other site. The ad would probably have included a large green button labeled "Download" or "Download Now" in white letters. The button is designed to confuse people who intend to download something else on the same page. If you ever download a file that isn't obviously what you expected, delete it immediately.
    Malware is also found on websites that traffic in pirated content such as video. If you, or anyone else who uses the computer, visit such sites and follow prompts to install software, you can expect more of the same, and worse, to follow. Never install any software that you downloaded from a bittorrent, or that was downloaded by someone else from an unknown source.
    In the Security & Privacy pane of System Preferences, select the General tab. The radio button marked Anywhere  should not be selected. If it is, click the lock icon to unlock the settings, then select one of the other buttons. After that, don't ignore a warning that you are about to run or install an application from an unknown developer.
    Still in System Preferences, open the App Store or Software Update pane and check the box marked
              Install system data files and security updates (OS X 10.10 or later)
    or
              Download updates automatically (OS X 10.9 or earlier)
    if it's not already checked.

  • How to secure photos from unauthorised viewing

    How do I protect or prevent others from viewing my photos in iPad

    You can use Photo Manager Pro and put those photos in the Lock Folder.
    http://i1224.photobucket.com/albums/ee374/Diavonex/Album%201A/6fb1850f06d0820f61 b841f42ede1376_zpsc4ac3a6b.jpg

  • How to secure erase from command line

    what are the command(s) in terminal to use secure erase?

    Or in the srm manpage, if you're not aiming at a partition or at the whole disk...

  • Securing Database from Enterprise Manager

    Hi all
    How to secure Database from EM console?
    Thanks
    Edited by: user13332773 on Dec 1, 2010 4:00 AM

    user13332773 wrote:
    By saying secure a database I meant that we can have database in secure mode.Yes .. you can secure agent and dbconsole.
    Check :
    http://oracle-magician.blogspot.com/2008/05/how-to-secure-oracle-10g11g-enterprise.html
    http://download.oracle.com/docs/html/B12013_03/security2.htm#i1042301
    Regards
    Rajesh

  • Passing parameters from URL to multiple iViews on a page.

    Hi Everyone,
    Could you please point me to a guide or howto, which explains on passing parameters from URL to multiple iViews on a page. I already know how to pass parameters from URL to a single iView (wiki).
    Thanks!
    Indy

    Hi Indy,
    Currently, passing parameters to the page which contains VC iViews is not supported, only directly in the iView's URL.
    Regards,
    Natty

  • How to get security token from a URL in BPM

    Hi,
    I need to get a security token from a url in a business process.
    The URL is like:
    https://services.sapo.pt/STS/GetToken?ESBUsername=test&ESBPassword=test1
    If I paste it on the browser i get the token in the form:
    <ESBToken>
    a7d1cd4e20c9c1b437513d434abbfee83b1f8f32839b54e6632f2865631303b815547cf898...
    </ESBToken>
    What is the best way to get and map the token in an Integration Process in SAP XI? Is it possible by user defined function in mapping? How?
    Thanks in advance.

    I am not sure what you want to do!? Do you want to display the image file, save the image file? When you say you don't want it to exit, do you want it to be a persistant application?

  • How do I create a URL from ID to PDF to Entourage?

    G5 Mac. Tiger. ID CS 4.
    I'm 2/3 of the way there. The last 1/3 id the hassle.
    I type out a URL in ID 4 and follow this path: Type > Hyperlinks & Cross-References > New Hyperlink from URL. Do Save as... , and have a usable URL link that does not work in ID but does not need to.
    If I then save it as a PDF and open the PDF, the hyperlink to the URL works perfectly.
    If I then place that PDF into an Entourage email, the link does not work, and if I send it to someone, of course it still does not work.
    I want to place a PDF into an Entourage email with one or more URLs that do work within the PDF, not as separate email text.
    How can I do that part?
    Thank you.

    Thanks Bob. I think now I have to do it as you say.
    I also found I have to use Mail, not Entourage, if I want to place images,
    PDFs, whatevers, above and below text where I want them. In Ent, they all
    sink like oil to the bottom. Did one Mail test, I had text > PDF > text >
    PDF which looked fine, then I sent it to myself to receive in Entourage, the
    text and images were positioned as I wished, but, in the Entourage window,
    the two PDFs came out rather tiny.
    A step at a time I guess.

  • How do I create a ".URL" file from a webpage I'm viewing

    How do I create a ".URL" file from a webpage I'm viewing

    The simplest way is to drag the "site identity button" (the padlock, for secure pages, and the globe, for other pages) to the desktop and drop it there. You may need to resize various window in order to be able to see the desktop while also viewing the site.
    There is an add-on for sending a shortcut to Windows without having to use this method. I haven't tried it myself:
    * Page on Add-ons site: https://addons.mozilla.org/firefox/addon/deskcut/
    * Review describing an extra setup step if it's not working: https://addons.mozilla.org/firefox/addon/deskcut/reviews/490684/

Maybe you are looking for

  • March's TechNet Wiki T-SQL Guru Winners announced!!

    The results for March'sTechNet Guru competition have been posted! http://blogs.technet.com/b/wikininjas/archive/2014/04/17/the-microsoft-technet-guru-awards-march-2014.aspx <- results page! Congratulations to all our new Gurus for March! We will be i

  • Error when processing Network

    Dear all. I create a sales order in tcode va01 and input a wbs element E-000009.1 in the field of WBS Element at Account assignment tab of one item detail.When save the sales order,sap pop up a message box with text "Sales order has no CO object".The

  • Airport Express just stopped working

    I have been using the airport express fine just until few days ago. I've being it using it with an ethernet cable connecting it fron my linksys router. (had it in bridge mode) Everything was fine until few days ago, when the "airport express" just di

  • Dependency of characteristics value in CV04N

    Hi there, I have an issue when searching document using characteristics with dependencies. Let's say I have 2 characteristics (doc & doc_sub_type). characteristics : DOC has value A & B characteristics : DOC_SUB_TYPE has value A-1 & B1 When user sear

  • E-63 what type are Alarm Clock Tones for the clock

    when  try to set the alarm clock tone for the clock if I try to change Tone for alarm I only get optios for Download Default or off.   What type of tones do I need to download lor do they have to be in a special folder Thanks Message Edited by douggg