Ajax URL access

I have a web page , on click of a button , i am making a ajax call which gets me some text data ,
i parse it in the java script and populate the page.
The application does not require login to access , not necessary to maintainany session as well.
now any body can access my ajax URL and get the text information ,
i want to prevent this ..
How to achieve .. (no login, no session required) this ?
I found that people use some kind of random number logic to resolve this .. if
any one knows where we can get info / solve this problem.

Before you start to spend a large amount of time trying to hack something together and make your code really ugly: You know what the good news is? They most likely don't want to do what you are fearing. Most of the times a problem is not a problem if you just do not make a problem out of it.
Fact is that Ajax = javascript and javascript is as unsafe as you can get, since anybody can get to the source code. Whatever you invent to fix your problem, the solution will be available to whomever takes the time to view the source of the page. If you fetch volatile data through Ajax then that is the bigger problem, not the fact that people would be able to get to the data.

Similar Messages

  • WebGate Error Report - The URL /access/sso is reserved for use by Oracle...

    We are getting a 500 error on the web gates when logging in.
    They have been working before, but are now reporting the error below.
    2010/01/27@07:09:25.632239 18521 33 WEB ERROR 0x0000151F /export/build40/Oblix/coreid1014/palantir/commonlib/src/apache2_req_info.cpp:170 "WebGate Error Report" Message^The URL /access/sso is reserved for use by Oracle Access Manager and has been used with incorrect parameters. ReqReq^POST /access/sso HTTP/1.1 ReqProto^HTTP/1.1 ReqHost^p1uawbsv1.portal.internal ReqStatLine^ ReqStatus^200 ReqRawUri^/access/sso ReqUri^/access/sso ReqFilename^/u01/app/oracle/product/11.1.1/ohs1/instances/instance1/config/OHS/ohs1/htdocs/access ReqPath^/sso ReqArgs^
    The configuration uses form based login
    Details for Authentication Scheme
    Level           1
    Challenge Method           Form
    Challenge Parameter           
    creds:userid password
    form:/oamsso/login.html
    action:/access/sso
    passthrough:no
    SSL Required           No
    Challenge Redirect           
    Enabled           Yes

    thanks,
    the login post goes to /access/sso, but now i am getting 404 error /access/sso
    Below is what I currently have the following in httpd.conf, which is the same as in a working environment.
    The web gate policy resources include /portal and /public, but no mention of /access. How does web gate know how to intercept /access/sso?
    [2010-01-28T10:50:42.9609+11:00] [OHS] [ERROR:32] [OHS-9999] [core.c] [host_id: p1uawbs02] [host_addr: 10.252.16.223] [tid: 18] [user: oracle] [ecid: 0000Pa_5qz3BP9s5Gj0Fyf0001rV00009_] [rid: 0] [VirtualHost: main] File does not exist: /u01/app/oracle/product/11.1.1/ohs1/instances/instance2/config/OHS/ohs1/htdocs/access
    #*** BEGIN WebGate Specific ****
    LoadFile "/u01/app/oracle/product/11.1.1/ohs1/oam/webgate/access/oblix/lib/libgcc_s.so.1"
    LoadFile "/u01/app/oracle/product/11.1.1/ohs1/oam/webgate/access/oblix/lib/libstdc++.so.5"
    LoadModule obWebgateModule "/u01/app/oracle/product/11.1.1/ohs1/oam/webgate/access/oblix/apps/webgate/bin/webgate.so"
    WebGateInstalldir "/u01/app/oracle/product/11.1.1/ohs1/oam/webgate/access"
    WebGateMode PEER
    <Location /access/oblix/apps/webgate/bin/webgate.cgi>
    SetHandler obwebgateerr
    </Location>
    <Location "/oberr.cgi">
    SetHandler obwebgateerr
    </Location>
    <LocationMatch "/*">
    AuthType Oblix
    require valid-user
    </LocationMatch>
    #*******Default Login page alias***
    Alias /oamsso "/u01/app/oracle/product/11.1.1/ohs1/oam/webgate/access/oamsso"
    <LocationMatch "/oamsso/*">
    Satisfy any
    </LocationMatch>
    #*** END WebGate Specific ****

  • I accessed the page protected by ADF security using direct url access attac

    hi,
    I played with my application which is based on SRDemo code (with added ADF security handling protection of resources) using direct url access scenarios. I was able to access a protected page as authenticated but not authorized user. I'll try to explain what I did.
    There are two folders/web resources in my application, faces/folderA/* and faces/folderB/*.
    roleA only is configured to access first web resource and the roleB is configured to access the second resource.
    I used ADF security to authorize only roleA for page in folderA and to authorize only roleB for page in folderB.
    I configured error pages in web.xml:
    <error-page>
    <error-code>400</error-code>
    <location>faces/error/error400.jspx</location>
    </error-page>
    <error-page>
    <error-code>401</error-code>
    <location>faces/error/error401.jspx</location>
    </error-page>
    <error-page>
    <error-code>403</error-code>
    <location>faces/error/error403.jspx</location>
    </error-page>
    <error-page>
    <error-code>404</error-code>
    <location>faces/error/error404.jspx</location>
    </error-page>
    <error-page>
    <exception-type>java.lang.Throwable</exception-type>
    <location>faces/error/error500.jspx</location>
    </error-page>
    Other config params are:
    <login-config>
    <auth-method>FORM</auth-method>
    <form-login-config>
    <form-login-page>infrastructure/ABLogin.jspx</form-login-page>
    <form-error-page>faces/error/error401.jspx</form-error-page>
    </form-login-config>
    </login-config>
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>AB Prototype</web-resource-name>
    <url-pattern>faces/ABAbout.jspx</url-pattern>
    <url-pattern>faces/ABHelp.jspx</url-pattern>
    <url-pattern>faces/ABLogout.jspx</url-pattern>
    <url-pattern>faces/ABWelcome.jspx</url-pattern>
    </web-resource-collection>
    <auth-constraint>
    <role-name>A</role-name>
    <role-name>B</role-name>
    </auth-constraint>
    </security-constraint>
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>AZone</web-resource-name>
    <url-pattern>faces/folderA/*</url-pattern>
    </web-resource-collection>
    <auth-constraint>
    <role-name>A</role-name>
    </auth-constraint>
    </security-constraint>
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>BZone</web-resource-name>
    <url-pattern>faces/folderB/*</url-pattern>
    </web-resource-collection>
    <auth-constraint>
    <role-name>B</role-name>
    </auth-constraint>
    </security-constraint>
    <filter>
    <filter-name>adfBindings</filter-name>
    <filter-class>oracle.adf.model.servlet.ADFBindingFilter</filter-class>
    <init-param>
    <param-name>unauthorizedErrorPage</param-name>
    <param-value>faces/error/error401.jspx</param-value>
    </init-param>
    </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>
    <dispatcher>FORWARD</dispatcher>
    <dispatcher>REQUEST</dispatcher>
    <dispatcher>ERROR</dispatcher>
    </filter-mapping>
    <filter-mapping>
    <filter-name>adfFaces</filter-name>
    <url-pattern>*.jspx</url-pattern>
    <dispatcher>FORWARD</dispatcher>
    <dispatcher>REQUEST</dispatcher>
    <dispatcher>ERROR</dispatcher>
    </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>adfAuthentication</servlet-name>
    <servlet-class>oracle.adf.share.security.authentication.AuthenticationServlet</servlet-class>
    <load-on-startup>2</load-on-startup>
    </servlet>
    <servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>/faces/*</url-pattern>
    </servlet-mapping>
    Once I authenticated as user in roleA I was trying to directly access URLs accessible only by users in roleB. In the beginning everything worked OK: I was dispatched to error401.jspx page with message Not authorized... etc.
    But I kept trying to access different URLs, like http://localhost:8988/AB/faces, http://localhost:8988/AB/faces/folderB, http://localhost:8988/AB/faces/folderB/pageB.jspx, http://localhost:8988/AB
    (not necessarily in that order, I played for a couple of minutes and the system would always dispatch to error401.jspx page if unauthorized attempt. But all of sudden, to my surprise, I got the pageB.jspx page while logged in as user belonging to roleA!)
    Not sure how that happened but the connectedUser on pageB (#{userInfo.authenticated}) shows that I am logged in as user whose role is A.
    I checked Authorization in ADF security and it is still correct: pageB is only accessible to roleB and pageA is only accessible to roleA.
    I hope I made some stupid mistake in my configuration?

    Hi,
    ADF Security is JAAS permission based and not container managed. Note that unless you explicitly configured ADF Security you don't use ADF Security but container managed security, which is all that I can see in your configurations.
    Not sure which version fo JDeveloper you use, but if you could change the following setting
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>AZone</web-resource-name>
    <url-pattern>faces/folderA/*</url-pattern>
    </web-resource-collection>
    <auth-constraint>
    <role-name>A</role-name>
    </auth-constraint>
    </security-constraint>
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>BZone</web-resource-name>
    <url-pattern>faces/folderB/*</url-pattern>
    </web-resource-collection>
    <auth-constraint>
    <role-name>B</role-name>
    </auth-constraint>
    </security-constraint>
    to contain jspx file references instead of wildcards like in faces/folderB/* then what you see should no longer be possible. There was a known issue with the security settings in SRDemo that was caused by a defect in OC4J container managed security. I would expect this issue to be fixed in a more recent version of OC4J.
    However, the work around until then is to protect all JSPX files in a directory instead of using wild card matches
    Frank

  • Connect Java with SSRS URL Access method

    I am trying to connect SSRS with Java to display the reports in a browser.
    My application is java 1.6 Swing application and use Applet.I read the article
    http://www.javaworld.com/javaworld/jw-01-2005/jw-0110-sqlrs.html?page=4
    But I am not able to understand why do we need the servlets the authors has mentioned.
    I am able to connect and get back the report in pdf format without these servlets .Also what sort of access will be required for this.
    Will all external users need access to the report server.
    Some one please help
    Any other suggestion for connection SSRS with JAVA .I have tried webservice method and it dint work either now I am planning for url access
    but need help with this
    Thanks

    Can anyone please help.I can provide any more info if needed.I tried the URL method but I get no response in my stream.
    I can post the code i am using in the servlet.

  • Remote connection via http connection-URL access

    Hello all,
    I would like to connect to the customer Business object system from our solution manager. The customer has configured http connection and has opened the connection in marketplace and has maintained http connection-URL access. The URL has also been maintained.
    I have added the corresponding entry also in my hosts file. But i am not able to access the customer URL.
    Anyone please tell me how to do remote connection for the connection type "http connection - URL access".
    Thanks,
    Aishwarya.

    Hi Tim,
    I am getting "The page cant be displayed" error while trying the BO system's URL in my browser.
    Please tell me which of the below methods i can use:
    1. By directly connecting to the BO system URL from the browser (is it possible?)
    2. By using VPN connection
    3. By installing diagnostic agent in solution manager
    4. By following the steps in this link:
    Establishing a Connection Using a Destination (SM59) - Components of SAP Communication Technology - SAP Library
    Regards,
    Aishwarya.

  • URL Access Parameter GetComponentDefinition

    Using URL access myself and my colleagues are unable to view the XML definition of any published report item  when using GetComponentDefinition, like so:
    http://<servername>/ReportServer?/<report path>&rs:Command=GetComponentDefinition
    It returns the following:
    The operation you are attempting on item '<report path>' is not allowed for this item type. (rsWrongItemType) 
    We are successfully using just about every other URL access parameter specified by msdn.
    Has anyone ever successfully been able to use this URL access parameter? Any help would be immensely appreciated.

    Hi morchis,
    Based on my further research, I find that the GetComponentDefinition command is used to display the XML definition associated with a published report part. These are the report items we can publish as report parts: Charts, Gauges, Images and embedded images,
    Maps, Parameters, Rectangles, Tables, Matrices and Lists.
    To public a report part in Report Designer, please refer to the following steps:
    Flag the report items that you want to publish in the Publish Report Parts dialog box.
    Deploy the report.
    Then we can use the URL below to display the XML definition of report item tablix1:
    http://<servername>/ReportServer/?/report parts/tablix1&rs:Command=GetComponentDefinition
    Reference:
    Report Parts in Report Designer (SSRS)
    If there are any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    If you have any feedback on our support, please click
    here.
    Katherine Xiong
    TechNet Community Support

  • The URL /access/oblix/apps/webgate/bin/webgate.so is reserved for use by Or

    Hi,
    I am integrating OAM10g with Oracle E-Business Suite 11i(11.5.10.2). I have the following components/versions installed.
    OID 10.1.4.3
    Oracle Access Manager 10g (10.1.4.3)
    Oracle HTTP Server 11g
    Weblogic 10.1.4.3
    OAM WebGate 10g(10.1.4.3)
    Everything looks fine and I am getting the login page when I hit 'http://hostname:port/fndauth/OAMLogin.jsp" but it gives http 500 error when I give username/password and click on the login button. I see the following error in ohs.log.
    [2012-12-26T12:07:36.3007-05:00] [OHS] [ERROR:32] [OHS-9999] [apache2entry_web_gate.cpp] [host_id: dm1dszap02] [host_addr: 172.18.68.198] [tid: 2918448032] [user: appoimd] [ecid: 004oSHrYwUXEOPKMyUnZ6G0006mB0001eo] [rid: 0] [VirtualHost: main] The URL /access/oblix/apps/webgate/bin/webgate.so is reserved for use by Oracle Access Manager and has been used with incorrect parameters., referer: http://dm1dszap02.corp.nyx.com:7778/ebsauth_nfind4/OAMLogin.jsp
    [2012-12-26T12:07:36.3009-05:00] [OHS] [ERROR:32] [OHS-9999] [odl_log.c] [host_id: dm1dszap02] [host_addr: 172.18.68.198] [tid: 2918448032] [user: appoimd] [ecid: 004oSHrYwUXEOPKMyUnZ6G0006mB0001eo] [rid: 0] [VirtualHost: main] Request Failed for : /access/oblix/apps/webgate/bin/webgate.so, Resp Code : [500], referer: http://dm1dszap02.corp.nyx.com:7778/ebsauth_nfind4/OAMLogin.jsp
    Any help on this would be highly appreciated.
    Thanks,
    Imtiaz

    thanks,
    the login post goes to /access/sso, but now i am getting 404 error /access/sso
    Below is what I currently have the following in httpd.conf, which is the same as in a working environment.
    The web gate policy resources include /portal and /public, but no mention of /access. How does web gate know how to intercept /access/sso?
    [2010-01-28T10:50:42.9609+11:00] [OHS] [ERROR:32] [OHS-9999] [core.c] [host_id: p1uawbs02] [host_addr: 10.252.16.223] [tid: 18] [user: oracle] [ecid: 0000Pa_5qz3BP9s5Gj0Fyf0001rV00009_] [rid: 0] [VirtualHost: main] File does not exist: /u01/app/oracle/product/11.1.1/ohs1/instances/instance2/config/OHS/ohs1/htdocs/access
    #*** BEGIN WebGate Specific ****
    LoadFile "/u01/app/oracle/product/11.1.1/ohs1/oam/webgate/access/oblix/lib/libgcc_s.so.1"
    LoadFile "/u01/app/oracle/product/11.1.1/ohs1/oam/webgate/access/oblix/lib/libstdc++.so.5"
    LoadModule obWebgateModule "/u01/app/oracle/product/11.1.1/ohs1/oam/webgate/access/oblix/apps/webgate/bin/webgate.so"
    WebGateInstalldir "/u01/app/oracle/product/11.1.1/ohs1/oam/webgate/access"
    WebGateMode PEER
    <Location /access/oblix/apps/webgate/bin/webgate.cgi>
    SetHandler obwebgateerr
    </Location>
    <Location "/oberr.cgi">
    SetHandler obwebgateerr
    </Location>
    <LocationMatch "/*">
    AuthType Oblix
    require valid-user
    </LocationMatch>
    #*******Default Login page alias***
    Alias /oamsso "/u01/app/oracle/product/11.1.1/ohs1/oam/webgate/access/oamsso"
    <LocationMatch "/oamsso/*">
    Satisfy any
    </LocationMatch>
    #*** END WebGate Specific ****

  • URL Access Scripting & accented characters

    I'm trying to write a small iTunes script that checks whether track titles of an album match those in the MusicBrainz database. But I'm running into a small problem when I try to retrieve the album information when it's title has accented characters.
    Here's a snippet of code:
    property baseURL : "http://musicbrainz.org/ws/1/release/"
    property tempFile : "Data:temp:tempAlbumInfo.xml"
    property albumTitle : "með suð í eyrum við spilum endalaust"
    set queryURL to "?type=xml&releasetypes=Official&limit=10&title=" & albumTitle
    set the clipboard to (baseURL & queryURL)
    -- Fetch the releases info from musicbrainz
    tell application "URL Access Scripting"
    download (baseURL & queryURL) to tempFile replacing yes
    end tell
    This gives me a 503 error from URL Access Scripting, but when I paste the variable just copied to the clipboard into Firefox, the page loads perfectly. Pasting it into Safari, it doesn't work.
    I'm guessing it has something to do with either the way URL Access Scripting and Safari rawurlencode their URLs, or some Unicode / Latin-1 problems.
    Oh, and for album titles without accented characters it all works perfectly. Any idea why this is happening? Thanks!

    Hello
    I think you need to escape URI string properly.
    Try replacing the line:
    set queryURL to "?type=xml&releasetypes=Official&limit=10&title=" & albumTitle
    with these two lines:
    set escapedTitle to do shell script "echo " & quoted form of albumTitle & " | perl -Mutf8 -MURI::Escape -lne 'print uri_escape($_);'"
    set queryURL to "?type=xml&releasetypes=Official&limit=10&title=" & escapedTitle
    Hope this may help,
    H
    Message was edited by: Hiroto (fixed typo: URI::Escape is the correct module.)

  • URL Access Policy - Administration Guide

    Hi,
    I'm working my way thru the Administration Guide and I'm looking at the URL
    Access Policy. I added a URL to allow (http://www.yahoo.com) and a URL to
    deny (http://www.sportsline.com) for my user fooUser in MyDomain_1. I then
    login the IP Portal as fooUser.
    What form of the URL is the Bookmarks URL entry box expecting? I have tried
    the following and gotten the corresponding results:
    http://www.sportsline.com access allowed
    http://www.yahoo.com access allowed
    http://myServer:myPort/http://www.sportsline.com page cannot be found
    http://myServer:myPort/http://www.yahoo.com page cannot be found
    http://myServer:myPort/www.sportsline.com page cannot be found
    http://myServer:myPort/www.yahoo.com page cannot be found
    I also tried http://myServer:myPort/MyDomain_1/www.sportsline.com and got
    page cannot be found
    Can someone shed some light on this for me?
    Mike

    You should be able to just put in the URL as you normally would.
    Now, if you are running through the SRAP gateway (versus "open mode")
    the url that should be launched in your browser should automatically append
    the url to your gateway, with some characters escaped, so it would be (I hope
    this doesn't get converted to a link!)
    http://myServer:myPort/http%3A//www.sportsline.com
    But! (I'm not 100% on this). If the website is not in your domain, the gateway
    does not care. It will let you access it, as it is implicit that you could open
    a separate browser window and access the site directly.
    In open mode (without the gateway), basically, everything is open, so
    it doesn't make much sense to be able to block it. If you don't put it
    in the URL Bookmarks box, then you could just open a new browser
    window and access it directly!
    ws
    Mike Wallach wrote:
    Hi,
    I'm working my way thru the Administration Guide and I'm looking at the URL
    Access Policy. I added a URL to allow (http://www.yahoo.com) and a URL to
    deny (http://www.sportsline.com) for my user fooUser in MyDomain_1. I then
    login the IP Portal as fooUser.
    What form of the URL is the Bookmarks URL entry box expecting? I have tried
    the following and gotten the corresponding results:
    http://www.sportsline.com access allowed
    http://www.yahoo.com access allowed
    http://myServer:myPort/http://www.sportsline.com page cannot be found
    http://myServer:myPort/http://www.yahoo.com page cannot be found
    http://myServer:myPort/www.sportsline.com page cannot be found
    http://myServer:myPort/www.yahoo.com page cannot be found
    I also tried http://myServer:myPort/MyDomain_1/www.sportsline.com and got
    page cannot be found
    Can someone shed some light on this for me?
    Mike

  • Url access scripting and os X 10.6

    I just upgraded to 10.6 and discovered that my scripts that use "url access scripting" calls no longer work. any ideas?
    Thanks

    I am using AppleScript Editor and so far all attempts to use URL Access Scripting have failed, I checked the dictionary and the syntax for the command has not changed from
    "download " url " to file "((path to file) as text) " replacing (yes or no)"
    but access scripting does not respond at all. It acts as if it is not there.
    Perhaps there is a preference I need to change to activate script editor or something like that. Everything worked before I installed 10.6
    it is 10.6.5 intel
    Message was edited by: Carl Anderson

  • URL Access Scripting???

    Hi does anyone know why "The application "URL Access Scripting" wants to connect to perso139-g5.free.fr on TCP port 80 (http)" its something I see when running Little Snitch. What is causing it? I have searched for this here and on google but have not seen any answers. Thanks in advance.
    gusg

    That Application is in...
    /system/library/scriptingAdditions/URL Access Scripting
    Somehow? You have a Script trying to download or upload something methinks...
    http://db.tidbits.com/article/05396
    http://www.foodoo.sunreal.com.au/info/dictionaries/URLAccess110asDict.html
    http://www.tidbits.com/resources/481/UASYahoo.html
    Looked in all your startup/login items? Does Activity Monitor, or the Logs give any clues?

  • URL Access

    I have a script that uses URL Access to upload a file. The script works fine except lately the AppleEvent has been timing out. At first I thought this was from the server being down but, I could always access the server through FTP. Now I am wondering if this could be a port problem. Has anyone else ran into this problem? Does anyone know what ports URL Access uses?
    PowerBook G4 1Ghz   Mac OS X (10.2.x)  

    Without knowing more about your script it's very hard to tell, but the fact you say it times out might be relevant.
    Are you uploading large files? What's your bandwidth limit?
    Is it possible that the file is so large and/or your bandwidth limited so it's taking too long for URL Access Scripting to complete the upload, so AppleScript times out thinking it's hung?
    One thing to try would be wrapping the commands in a 'with timeout' block, like:
    with timeout of 600 seconds
    tell application "URL Access Scripting"
    -- your commands here
    end tell
    end timeout
    Now AppleScript will wait up to 10 minutes for URL Access Scripting to do its thing before timing out.

  • "URL Access Scripting.app"

    In Lion (10.7) "URL Access Scripting.app" seems to be missing from /System/Library/ScriptingAdditions I tried to copy it from an older OSX and the apple script errors.
    Any idea?

    one I adopted/use for home automation to speak the weather forcast
    -- myCode is Weather.com code for your location.
    -- define the URL for the weather report
    set myURL to "http://www.weather.com/outlook/travel/businesstraveler/narrative/" & myCode
    -- get the report
    tell application "URL Access Scripting"
              set my_output_file to "private:var:tmp:" & "SpokenWeather.out"
      download myURL to my_output_file replacing yes
    end tell

  • Restrict URL Access when linking from report

    I have an application that will be a little like a wizard in that I need to control how users get to a form, so I would like to prevent them from being able to just going straight to that page and entering data into the form. I tried using various session state security options, including No URL Access, but that blows up when I try to link from a report to that form for editing purposes.
    Is there some way I can link from the report if the target page restricts URL access, and can get a get a brief overview (or point me to some documentation) on the various branch types? I can't find a good explanation anywhere and I'm hoping that solves my problem.
    thanks.

    Hi,
    1.
    What about using an Authorization Scheme and then using Security of Page Attributes.
    In fact it is schema of users, roles, and passwords.
    2.
    f?p=App:Page:Session:Request:Debug:ClearCache:itemNames:itemValues:PrinterFriendly
    f?p=6000:6004:&SESSION.::NO:6003:MY_ITEM1,MY_ITEM2,MY_ITEM3:1234,,5678
    This example:
    * Runs page 6004 of application 6000 and use the current session ID
    * Clears the current session's cache for items on page 6003
    * Indicates debug information should be hidden (NO)
    * Sets the value of MY_ITEM1 to 1234, sets the value of MY_ITEM2 to null
    (indicated by the comma used as placeholder), and sets the value of MY_ITEM3 to 5678
    - Into Column Attributes/Column Link/Link Text pick an icon.
    - Select for Attributes/Column Link/Target “URL” for table Emp_Address and into URL field type:
    javascript: popupURL('f?p=&APP_ID.: 6004:&SESSION…………');
    You can use the value of any Item. Then in the URL link page check that item.
    Moreover, you can use f?p=&APP_ID.: 6004:&SESSION…..My_Item:#ReportColumnName#.......
    I hope this would help.
    Konstantin

  • What does "URL Access Scripting" do?

    I tried the demo of the Little Snitch application to see what kind of network stuff is initiated from my account. On login I get:
    The application "URL Access Scripting" wants to connect to perso139-g5.free.fr on TCP port 80 (http)
    That seems suspect to me. What kind of script wants to go there and how do I find out what kind of script is being run here?
    G

    This was helpful (sorry, clicking the helpful button did not work). I found out it was CoreDuoTemp.app which is in my startup. This is a script. I looked for strings in the script and found
    0http://macbricol.free.fr/coreduotemp/version.txt
    %http://macbricol.free.fr/coreduotemp/
    %http://macbricol.free.fr/coreduotemp/
    and it turns out macbriol is an alias for the site I found in Little Snitch
    $ nslookup macbricol.free.fr
    Server: 192.168.2.99
    Address: 192.168.2.99#53
    Non-authoritative answer:
    macbricol.free.fr canonical name = perso139-g5.free.fr.
    Name: perso139-g5.free.fr
    Address: 212.27.63.139

Maybe you are looking for

  • Mail Freezes (Spinning Cursor) - Assistance Appreciated

    Greetings, thank you for reading and responding to my post. I have a remote client (she's offline) with a macbook. She uses Mail. I haven't checked her OS version, but presume 10.4. She was sending an email, and went to attach a PDF. At this point sh

  • Where can I find a basic tutorial for the EOS rebel T4i?

    I just recievecd my first DSLR and I'm looking for a video tutorial that will take me through the basics of how to use the camera. I feel like this is something that should have come with the camera, (Nikon includes 3 how-to discs) but it didn't and

  • Use of text elements in wirte_form function module.

    Hi guru's, Could any one tell me  what is the use of text elements in write_form functional module SAP SCRIPTS. As per my knowledge text elements are used for multi language purpose is there any other advantage other than that. Thanks in advance. Var

  • How to scale animation? (or apply scale transforms?)

    Hi, I made a flash game in 640x480 pixels resolution with lots of skeletal animation and bitmap-graphics. Now I want to recreate the very same game for 1024x768. Graphicwise this is no problem, since I've drawn the graphics in a much higher resolutio

  • Why don't images show on the faces corkboard?

    When I open FACES none of the images show.  I have LOTS of pics and people assigned here.  When I open any single person, the images show up.  When I go to "Confirm Additional Faces" the vast majority of the images dont show there.  HELP.