Access is denied while accessing .js file through OHS URL

I have a strange issue, can somone share your thoughts Please,
We have deployed deployed the WebCenterPortal application into the server, and it is working fine if we access it through the deployed server url, but,
we have a http server(Oracle HTTP Server)to protect the deployed applications url, here when iam trying to access the same deployed url using http server url, it is working fine for all the pages but not for some pages , it showing the below error,
Message: Access is denied.
Line: 89
Char: 282
Code: 0
URI: http://xxxxx/portl/afr/partition/ie/n/default/opt/core-11.1.1.6.0-1318.js

Sure Yannick,
we have Webcenter Portal servers on Linux box, and OHS is on Windows box,
We are able to access all the pages but some pages its throwing the java script error mentioned above, we have not included any javascript code inside the pages, that core-11.1.1.6.0-1318.js could be a framework javascript file,
Here is the ohs entry,
</Location>
<Location /PortalOne>
SetHandler weblogic-handler
WeblogicHost exalogichostname
WeblogicPort xxxxx
</Location>
Please let me if i can give more information about the issue

Similar Messages

  • Installed PSE 8 and am now unable to access RAW files through Camera Raw.

    Help! I have installed PSE 8 and
    now cannot access Raw files through Camera Raw click
    on Editor and the photographs open in Editor.
    I have tried installing the upda
    te 8bi in the plug-in and there was already a plug-in there.
    PSE6 worked fine on this system. Any help appreciated.

    Firstly thanks to the people who
    offered help. This is what I did and somehow the problem is solved. I installed PSE 8 on my old machine with XP and an old Xerox monitor and it worked OK. I uninstalled PSE 8 from the newer machine on Vista. Made sure all the adobe files for pug-ins had gone then reinstalled. I then tested the screen resolution of my monitor a HP w1907v, smaller resolutions made no difference but opening it up to max did. When I wish to open a RAW file click open click the photograph and in the bottom file format box make sure you are asking for RAW files to be opened and 'bingo'. This upgrade for PSE 8 has the latest CameraRaw on it but the problem was there from the first installation so perhaps it is a combination of screen resolution and making sure the file format for opening is specified. So after hours of effort a satisfactory outcome. I probably confused the issue by installing the plug-in when there was no need. PSE 8 will last me a long time!!!

  • Accessing a Procedure through an URL - Urgent

    I am trying to access a procedure through an URL.
    I was trying to use the following address
    http://myserver.com/pls/portal30/OWNER.procedure_name
    which fails.
    Please help me
    Thanks in advance

    Hi,
    If your server is linked to the internet, public is not the best grant to use.
    Create a portal_user role or similar that you can grant to Oracle users that you want to be able to use the procedure.
    At least then you have some control over who gets to run the procedure and they can be forced to log on!
    Regards Michael

  • Access denied while loading jar files from client

    I am creating a platform
    that can be started by JWS
    and then load plug-ins from client drive.
    I've signed my platform (packaged as a jar file),
    and set up the security tag in my jnlp,
    so that it can access client files.
    The plug-ins are packaged as jar files.
    And in one of the plug-ins, there is a class that has a JFileChooser field.
    While initializing this field, the AccessControlException is thrown.
    I can't figure out what is wrong,
    So I tried to sign the plug-in, but the problem stands still.
    PS. I have made my own ClassLoader,
    and this platform works well without JWS.
    Please help me, thanks.
    Below is the error message:
    Java Web Start 1.4.2 &#20027;&#25511;&#21488;,&#24050;&#21855;&#21205; Fri Jul 02 01:31:17 CST 2004
    Java 2 Runtime Environment:&#29256;&#26412; 1.4.2,&#20316;&#32773;:Sun Microsystems Inc.
    /*my own log message*/
    2004/7/2 &#19978;&#21320; 01:31:23 pluginmanager.Activater activate /*this is my own classloader*/
    &#37197;&#32622;: activate jar=\Plugins\Common.jar /*load plug-in Common.jar*/
    2004/7/2 &#19978;&#21320; 01:31:23 pluginmanager.Activater activate
    &#32048;&#32251;: collect resources /*collect other jar files needed by Common.jar*/
    2004/7/2 &#19978;&#21320; 01:31:23 pluginmanager.Activater activate
    &#32048;&#32251;: load plugin=\Plugins\Common.jar
    2004/7/2 &#19978;&#21320; 01:31:23 pluginmanager.Activater activate
    &#32048;&#32251;: activating class name=filemanager.FileManager /*instantiate plug-in component*/
    java.security.AccessControlException: access denied (java.util.PropertyPermission user.dir read)
         at java.security.AccessControlContext.checkPermission(Unknown Source)
         at java.security.AccessController.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkPropertyAccess(Unknown Source)
         at java.lang.System.getProperty(Unknown Source)
         at java.io.Win32FileSystem.getUserPath(Unknown Source)
         ... /*cut*/
         at javax.swing.JFileChooser.<init>(Unknown Source)
         at filemanager.Open.<init>(Open.java:20)
         at filemanager.FileManager.<init>(FileManager.java:38)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         ... /*cut*/
         at java.lang.Class.newInstance(Unknown Source)
         at pluginmanager.Activater.activate(Activater.java:120)
         at pluginmanager.PluginManager$ActivateAction.actionPerformed(PluginManager.java:53)

    When running under Java Web Start, a security manager is installed.
    Since you have created your own classloader, you are responsible for assigning permissions to the classes you load.
    You can change you class loader to extend SecureClassLoader, then override getPermissions:
    protected PermissionCollection getPermissions(CodeSource codesource) {
    PermissionCollection perms = super.getPermissions(codesource);
    /* add whatever permissions you want your code to hance*/
    perms.add( ... );
    /* or just add all-permissions */
    perms.add(new AllPermission());
    or - you can just remove the Security Manager:
    System.setSecurityManager(null);
    /Dietz

  • Accessing a file through FileReader

    I've to give the full path while accessing the file using the following code. Is there any alternative where i can provide the relative path and still get the desired result?
    BufferedReader in = new BufferedReader (new FileReader ("/apps/secDBadmin/classes/database.cfg"));
    I'm accessing the file database.cfg from a class which is inside the same folder (/apps/secDBadmin/classes).

    Did you try ClassLoader.getResourceAsStream(String)
    For your case the code will look something like,
    Class c = Class.forName(YouClassName);
    or
    Class c = this.getClass();
    InputStream in = c.getClassLoader().getResourceAsStream("JustTheFileName");
    BufferedReader rd = new BufferedReader(new InputStreamReader(in));

  • Can't access jpeg files through finder after import to iPhoto '11

    Am I missing something here? I recently imported my entire library from a backup source to iPhoto '11 on a new computer. I used to be able to browse the folders in the iPhoto library in a finder window. Now when I try to open the iPhoto library, the application itself launches.

    Since iPhoto 7 (iLife 08) the old iPhoto Library Folder is now a Package File. This is simply a folder that looks like a file in the Finder. The change was made to the format of the iPhoto library because many users were inadvertently corrupting their library by browsing through it with other software or making changes in it themselves.
    Accessing files via the Finder has never been supported on any version of iPhoto.
    There are many, many ways to access your files in iPhoto:
    You can use any Open / Attach / Browse dialogue. On the left there's a Media heading, your pics can be accessed there. Command-Click for selecting multiple pics.
    Uploaded with plasq's Skitch!
    *_(Note the above illustration is not a Finder Window. It's the dialogue you get when you go File -> Open)_*
    You can access the Library from the New Message Window in Mail:
    Uploaded with plasq's Skitch!
    Many internet sites such as Flickr and SmugMug have plug-ins for accessing the iPhoto Library. If the site you want to use doesn’t then some, one or any of these will also work:
    If you're using Gmail you can use iPhoto2GMail
    If you use Apple's Mail, Entourage/Outlook, AOL or Eudora you can email from within iPhoto.
    If you use a Cocoa-based Browser such as Safari, you can drag the pics from the iPhoto Window to the Attach window in the browser.
    *If you want to access the files with iPhoto not running*:
    For users of 10.6 and later:
    You can download a free Services component from MacOSXAutomation which will give you access to the iPhoto Library from your Services Menu. Using the Services Preference Pane you can even create a keyboard shortcut for it.
    Other options include:
    1. *Drag and Drop*: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    2. *File -> Export*: Select the files in the iPhoto Window and go File -> Export. The dialogue will give you various options, including altering the format, naming the files and changing the size. Again, producing a copy.
    3. *Show File*: File -> Reveal In Finder on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.
    3. *Show File*: Right- (or Control-) Click on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.
    You can set Photoshop (or any image editor) as an external editor in iPhoto. (Preferences -> General -> Edit Photo: Choose from the Drop Down Menu.) This way, when you double click a pic to edit in iPhoto it will open automatically in Photoshop or your Image Editor, and when you save it it's sent back to iPhoto automatically. This is the only way that edits made in another application will be displayed in iPhoto.
    Note that iPhoto sends a copy+ of the file to Photoshop, so when you save be sure to use the Save command, not Save As... If you use Save As then you're creating a new file and iPhoto has no way of knowing about this new file. iPhoto is preserving your original anyway.
    All of the above are a: Faster and b: Safer than rooting around in the old Library folders.
    Regards
    TD

  • Again question about restricting access to files through URL?

    I found many topics about this, but every time it is some special case.
    I want to ask it simple. How can I restrict access to some files in my application through entering URL in Browser, no matter if I am logged or not.
    For example I have included JSP files with jspf extension. I don't want to access them through url. How can I do this?

    May be it will work, but it seems somehow workaround decision - one half of jsp files in one place and another part in other place.
    Message was edited by:
    cheltsov

  • Opening windows "Access" database files through network

    Is there any way to open windows "Access" database files on my mac through a network to a windows machine? I have the windows for mac software but it doesn't include access.

    Hi,
    As per the description, I understand that your Office 2013 cannot open files through a network share directly.
    I would like to know that how many clients/users are affected by this in your environment. It could be some specific user account settings, that the Office applications are being affected by.
    I'd first suggest you try with a new Windows user profile, then verify result.
    Regards,
    Ethan Hua
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • How to access remote file through PL/SQL

    I need to access remote operating system files through PL/SQL. I have tried accessing using utl_file package by setting UTL_FILE_DIR parameter to the mapped drive of the remote machine, but when tried to read the file it raises INVALID_OPEARTION exception.
    I have also tried accessing through the directory object also.
    Would appreciate if anyone can suggest for the same.
    Thanking you in anticipation
    Regards,
    Vipul

    Hi,
    A remote file means a file that is on a Shared server resource. This file cannot be accessed by Oracle Unless the that drive has been mapped on the Server and proper permissions are given.
    The file can be accessed by the client if he is using TEXT_IO and the shared drive is mapped to the client.
    Hope this helps ...
    Regards,
    Ganesh R

  • Accessing XML files through java

    Can any one explain me the easiest way of accessing XML files from Java.

    Hi,
    If you want to only access the XML file, use the SAX parser It will be very easy to handle and identify the element and value.
    else if u want to change the XML value also, then better go with DOM, Which has very good flexiblity.
    use according to the need, let me know if any help is required......
    With Cheers
    PrasannA

  • Error in loading data into essbase while using Rule file through ODI

    Hi Experts,
    Refering my previous post Error while using Rule file in loading data into Essbase through ODI
    I am facing problem while loading data into Essbase. I am able to load data into Essbase successfully. But when i used Rule file to add values to existing values I am getting error.
    test is my Rule file.
    com.hyperion.odi.essbase.ODIEssbaseException: com.hyperion.odi.essbase.ODIEssbaseException: Cannot put olap file object. Essbase Error(1053025): Object [test] already exists and is not locked by user [admin@Native Directory]
    at org.apache.bsf.engines.jython.JythonEngine.exec(JythonEngine.java:146)
    at com.sunopsis.dwg.codeinterpretor.SnpScriptingInterpretor.execInBSFEngine(SnpScriptingInterpretor.java:346)
    at com.sunopsis.dwg.codeinterpretor.SnpScriptingInterpretor.exec(SnpScriptingInterpretor.java:170)
    at com.sunopsis.dwg.dbobj.SnpSessTaskSql.scripting(SnpSessTaskSql.java:2458)
    at oracle.odi.runtime.agent.execution.cmd.ScriptingExecutor.execute(ScriptingExecutor.java:48)
    at oracle.odi.runtime.agent.execution.cmd.ScriptingExecutor.execute(ScriptingExecutor.java:1)
    at oracle.odi.runtime.agent.execution.TaskExecutionHandler.handleTask(TaskExecutionHandler.java:50)
    at com.sunopsis.dwg.dbobj.SnpSessTaskSql.processTask(SnpSessTaskSql.java:2906)
    at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java:2609)
    at com.sunopsis.dwg.dbobj.SnpSessStep.treatAttachedTasks(SnpSessStep.java:540)
    at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java:453)
    at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java:1740)
    at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$2.doAction(StartSessRequestProcessor.java:338)
    at oracle.odi.core.persistence.dwgobject.DwgObjectTemplate.execute(DwgObjectTemplate.java:214)
    at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.doProcessStartSessTask(StartSessRequestProcessor.java:272)
    at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.access$0(StartSessRequestProcessor.java:263)
    at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$StartSessTask.doExecute(StartSessRequestProcessor.java:822)
    at oracle.odi.runtime.agent.processor.task.AgentTask.execute(AgentTask.java:123)
    at oracle.odi.runtime.agent.support.DefaultAgentTaskExecutor$2.run(DefaultAgentTaskExecutor.java:83)
    at java.lang.Thread.run(Thread.java:662)
    from com.hyperion.odi.common import ODIConstants
    from com.hyperion.odi.connection import HypAppConnectionFactory
    from java.lang import Class
    from java.lang import Boolean
    from java.sql import *
    from java.util import HashMap
    # Get the select statement on the staging area:
    sql= """select C1_HSP_RATES "HSP_Rates",C2_ACCOUNT "Account",C3_PERIOD "Period",C4_YEAR "Year",C5_SCENARIO "Scenario",C6_VERSION "Version",C7_CURRENCY "Currency",C8_ENTITY "Entity",C9_VERTICAL "Vertical",C10_HORIZONTAL "Horizontal",C11_SALES_HIERARICHY "Sales Hierarchy",C12_DATA "Data" from PLANAPP."C$_0HexaApp_PLData" where (1=1) """
    srcCx = odiRef.getJDBCConnection("SRC")
    stmt = srcCx.createStatement()
    srcFetchSize=30
    #stmt.setFetchSize(srcFetchSize)
    stmt.setFetchSize(1)
    print "executing query"
    rs = stmt.executeQuery(sql)
    print "done executing query"
    #load the data
    print "loading data"
    stats = pWriter.loadData(rs)
    print "done loading data"
    #close the database result set, connection
    rs.close()
    stmt.close()
    Please help me on this...
    Thanks & Regards,
    Chinnu

    Hi Priya,
    Thanks for giving reply. I already checked that no lock are available for rule file. I don't know what's the problem. It is working fine without the Rule file, but throwing error only when using rule file.
    Please help on this.
    Thanks,
    Chinnu

  • Accessing OC4J application through OHS

    We developed a standalone web app on OC4J. Now we would like to deploy this application to a standalone OC4J running on the same machine as 9iAS. We would like to access our application through 9iAS OHS, possibly with as few changes to our application as possible.
    So instead of http://oc4jhost:8888/appname/whatever.jsp
    we want http://standardhost/appname should then redirect/rewrite to port 8888 and so on.
    Is there a document that describes which configuration files need to be manipulated and how?
    We assume mod_oc4j, httpd.conf, orion*.xml, and possibly others have to be edited.
    We do not want to run our application INSIDE of 9iAS, because it uses its own frameset and because we want a more up-to-date Java for this application.

    Note that
    The business client does not need a portal (it can but does not have to)
    but NWBC can connect as well (by using the sapgui in the background-
    hence sapgui needs then to be installed as well on the same client as
    the NWBC) directly against the backend.
    http://help.sap.com/saphelp_nw70ehp2ru/helpdata/en/31/8dd113b8ba4832aeaa
    fb4b756e1eed/frameset.htm
    http://help.sap.com/saphelp_nw70ehp2ru/helpdata/en/31/8dd113b8ba4832aeaafb4b756e1eed/frameset.htm
    As of SAP enhancement package 5 for SAP ERP 6.0 you can choose from the
    following deployment options for ESS:
    Deployment Option 1: WD ABAP-Based ESS on NWBC
    Deployment Option 2: WD ABAP-Based ESS on SAP NetWeaver Portal
    Deployment Option 3: WD Java-Based ESS on SAP NetWeaver Portal
    Activate the switch HCM_ESS_WDA_1 to use WD ABAP services
    ESS Refer Note 1450179
    EhP 5 ESS: The architect's view

  • Accessing OC4J application through OHS, how?

    We developed a standalone web app on OC4J. Now we would like to deploy this application to a standalone OC4J running on the same machine as 9iAS. We would like to access our application through 9iAS OHS, possibly with as few changes to our application as possible.
    So instead of http://oc4jhost:8888/appname/whatever.jsp
    we want http://standardhost/appname should then redirect/rewrite to port 8888 and so on.
    Is there a document that describes which configuration files need to be manipulated and how?
    We assume mod_oc4j, httpd.conf, orion*.xml, and possibly others have to be edited.
    We do not want to run our application INSIDE of 9iAS, because it uses its own frameset and because we want a more up-to-date Java for this application.

    Note that
    The business client does not need a portal (it can but does not have to)
    but NWBC can connect as well (by using the sapgui in the background-
    hence sapgui needs then to be installed as well on the same client as
    the NWBC) directly against the backend.
    http://help.sap.com/saphelp_nw70ehp2ru/helpdata/en/31/8dd113b8ba4832aeaa
    fb4b756e1eed/frameset.htm
    http://help.sap.com/saphelp_nw70ehp2ru/helpdata/en/31/8dd113b8ba4832aeaafb4b756e1eed/frameset.htm
    As of SAP enhancement package 5 for SAP ERP 6.0 you can choose from the
    following deployment options for ESS:
    Deployment Option 1: WD ABAP-Based ESS on NWBC
    Deployment Option 2: WD ABAP-Based ESS on SAP NetWeaver Portal
    Deployment Option 3: WD Java-Based ESS on SAP NetWeaver Portal
    Activate the switch HCM_ESS_WDA_1 to use WD ABAP services
    ESS Refer Note 1450179
    EhP 5 ESS: The architect's view

  • Error while deploying EAR file through SDM

    Hi All,
    I am deploying EAR file through SDM. Its taking too much time to deploy in the 3rd stage (its just a simple hello file for testing purpose and its still in that stage for 2 hours).
    When I see the log, I can see some fata error. Please suggest me what should I do. 
    ==
    Oct 15, 2008 4:31:44 PM  Info: SDM started successfully.
    Oct 15, 2008 4:33:21 PM  Info: Opened client connection to sapretail (IP address
    sapretail/172.20.177.203, remote port 58645)
    Oct 15, 2008 4:33:23 PM  Info: Request for Logon as admin accepted
    Oct 15, 2008 4:39:07 PM  Info: Loading archive '/usr/sap/trans/EPS/sap.comwdtu
    torial~ex1.ear'
    Oct 15, 2008 4:40:50 PM  Info: Actions per selected component:
    Oct 15, 2008 4:40:50 PM  Info: Initial deployment: Selected development componen
    t 'wd/tutorial/ex1'/'sap.com'/'LOKAL'/'0.2008.10.14.12.51.57' will be deployed.
    Oct 15, 2008 4:44:41 PM  Info: Saved current Engine state.
    Oct 15, 2008 4:44:48 PM  Fatal: State BeforeNextDeployment can't process event I
    nitiateDeployment
    The reason I am doing through SDM because while deploying through NWDS its throwing an error
    Oct 13, 2008 12:44:41 PM /userOut/deploy (com.sap.ide.eclipse.sdm.threading.DeployThreadManager) [Thread[Deploy Thread,5,main]] ERROR:
    [001]Deployment aborted
    Settings
    SDM host : sapretail
    SDM port : 50118
    URL to deploy : file:/C:/DOCUME1/231477/LOCALS1/Temp/temp41002sap.comwdtutorial~ex1.ear
    Deployment exception : Server sapretail did not accept login request as admin on port 50118. Details: ERROR: Could not establish connection to server sapretail at port 50118: sapretail
    Inner exception was :
    Server sapretail did not accept login request as admin on port 50118. Details: ERROR: Could not establish connection to server sapretail at port 50118: sapretail
    Please suggest a solution.
    Regards,
    Jitender

    Now, when I deploy through NWDS, I get the following error.
    Result
    => deployment aborted : file:/C:/DOCUME1/231477/LOCALS1/Temp/temp51346sap.comwdtutorial~ex1.ear
    Aborted: development component 'wd/tutorial/ex1'/'sap.com'/'LOKAL'/'0.2008.10.15.21.04.16':Caught exception while checking the login credentials for SAP J2EE Engine. Check whether the SAP J2EE Engine is up and running.com.sap.engine.deploy.manager.DeployManagerException: ERROR: Cannot connect to Host: [sapretail] with user name: [J2EE_ADMIN]                     Check your login information.                     Exception is: com.sap.engine.services.jndi.persistent.exceptions.NamingException: Exception while trying to get InitialContext. [Root exception is com.sap.engine.services.security.exceptions.BaseLoginException: Cannot authenticate the user.] (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.checkLoginCredentials.DMEXC)
    Deployment exception : The deployment of at least one item aborted

  • Issue while fetching the file through *.extension by FTP sender file adapte

    Hello Experts,
    I am facing a issue while fetching the data through sender File adapter with  ' *.file extension' .I am illustarting the scenario as below .
    It is a simple scenarion of File to File inboumd scenarion.Here file is getting picked up from a third party system
    through FTP sender chanel and stored in a temp folder of PI through NFS rceiver file adapter .
        The problem is however I am getting, while picking the file with file name as "*.exo"(where exo is the file extension).
    But while fetching the file with particular name like"abcd_10032011*.exo"(file naming has been done by combination of abcd(always same)_currentdate(change according to current date)),file picked successfully .
    So here ,in the prior case file not getting picked up,but in later case it dose .
    Can anyone please let me know what might be the issue?

    Hi Sunit,
    Connect from your PI System to 3rd Party System (where are placed the Source Files)
    FTP <PartySystemHostName>
    eg. FTP 10.2.3.456 (then insert Username & Password to Login)
    Go to source directory
    cd \<SourceDirectory>
    eg. cd \donaldduck\directory\
    Execute a File List command
    ls -la *.<extension>
    eg. ls -la *.exo
    In this way you should be able to view all files with this extension (*.exo), the same action that Sap XI perform to pickup the file.
    Then, try to copy that file to your Local PI System (to check if there're some permissions issue):
    mget <filename>.exo
    eg. mpget File1_01012011.exo

Maybe you are looking for