Unable to open jsp file with BI Beans tags.

Hi partners,
I have successfully deployed a BI Beans applications, but when I try to open it, I get next error messages at my OC4J logfile:
06/03/22 18:08:14 Notification ==> Initialize Dashboard.ear begins...
06/03/22 18:08:14 Auto-unpacking /ofappltst/OC4J/j2ee/home/applications/Dashboard/Dashboard.war... done.
06/03/22 18:08:16 Copying default deployment descriptor from archive at /ofappltst/OC4J/j2ee/home/applications/Dashboard/META-INF/orion-application.xml to deployment directory /ofappltst/OC4J/j2ee/home/application-deployments/Dashboard...
06/03/22 18:08:16 Notification ==> Initialize Dashboard.ear ends...
06/03/22 18:08:16 Notification ==> Initialize Dashboard begins...
06/03/22 18:08:20 Notification ==> Initialize Dashboard ends...
06/03/22 18:08:22 Notification ==> Application Deployer for Dashboard COMPLETES [ 2006-03-22T18:08:22.190CLT ]
06/03/22 18:08:27 Error: oracle.dss.addins.jspTags.BIThinSessionTagTEI
06/03/22 18:08:27 Errors parsing file:/ofappltst/OC4J/j2ee/home/applications/Dashboard/Dashboard/WEB-INF/BITags.tld
06/03/22 18:33:07 Error: oracle.dss.addins.jspTags.BIThinSessionTagTEI
06/03/22 18:33:07 Error: oracle.dss.addins.jspTags.BIThinSessionTagTEI
06/03/22 18:33:07 Error: loading Tld's into cachedConfigTable: null
We are using JDeveloper with 9.0.4 and BIBeans 9.0.4 too.
Any help or advice will be really appreciated.
Kind regards,
Francisco Mtz.

I have solved my issue after copying tnext jar files from my Database Server to my JDeveloper installation (PC):
$ORACLE_HOME9i/jdbc/lib/classes111.jar to C:\JDeveloper904\jdbc\lib\classes111.jar
$ORACLE_HOME9i/jdbc/lib/classes12.jar to C:\JDeveloper904\jdbc\lib\classes12.jar
$ORACLE_HOME9i/jdbc/lib/classes12dms.jar to C:\JDeveloper904\jdbc\lib\classes12dms.jar
$ORACLE_HOME9i/jdbc/lib/nls_charset11.jar to C:\JDeveloper904\jdbc\lib\nls_charset11.jar
$ORACLE_HOME9i/jdbc/lib/nls_charset12.jar to C:\JDeveloper904\jdbc\lib\nls_charset12.jar
Also I copied classes12dms.jar, classes12.jar and nls_charset12.jar files to my jdbc/lib/ directory of my OC4J Standalone installation server.
Don't forget to set the DISPLAY environment variable before starting OC4J again.
Best regards!!!!!
I really appreciate your help.
Frank Mtz.

Similar Messages

  • Unable to open jsp file in Design mode

    Hi,
    I am unable to open jsp files in design mode, I am using eclipse Version: 3.6.1.
    Please help.
    Regards,
    Ale Hasan

    Hi Ale,
    Thank you for the additional information. Unfortunately, there does not seem to be anything unusual about your project based on your description. I'm surprised you don't see any processes listed in the process view while waiting for the page to open. I thought you might see something related to a queue manager job to "Manage Resource Event Jobs".
    Are there any messages in the error.log? You can open a view to the error log from the menu option, "Window -> Show View -> Error Log". I'm curious if there are any messages about a process timing out, unable to reset some object within a certain time, or any exceptions logged.
    If you change to another workspace with just a single JSF web project containing a smaller number of JSP, do you experience the same behavior?
    Can you also try using a more recent release of OEPE to see if that helps? The 11.1.1.6.1 release is about a year old.
    http://www.oracle.com/technetwork/developer-tools/eclipse/downloads/index.html
    Kind regards,
    Carlin

  • Unable to open PDF files with Adobe Reader, Mac trying to open files with Quicktime instead, but not succeeding. HELP!

    Unable to open PDF files with Adobe Reader, Mac trying to open files with QuickTime instead, but not succeeding. HELP!

    Hi BDAqua,
    Thanks for the info, I dragged a PDF to desktop ctrl-, get info. change all to open with adobe.
    Problem solved, many thanks for a quick response.
    Barry69

  • Unable to open d800 files with cs6 and camera raw 8.3

    unable to open d800 files with cs6 and camera raw 8.3

    Have you used Nikon Transfer on those files? Early versions are known to corrupt files so that ACR can't read them. Nikon has since fixed the bug so new versions are safe.
    Here's a thread (with a fix) in the Lightroom forum: https://forums.adobe.com/message/6253962

  • UNABLE TO OPEN WMV FILES WITH FLIP 4 MACan

    I am unable to open wmv files even after having downloaded flip 4 mac. I know the files are are not damaged because they open and play on my other mac (off of external drive). Are there any other settings adjustments in preferences or anywhere else that I need to make to open these files? Any advice would be much appreciated.

    Did you repair permissions & restart after installing Flip4Mac?

  • How to configure multiple jsp files with diff beans in faces-config.xml??

    Hi All,
    I have 2 seperate jsp pages one is a login page and the other is the main application page.Now i am handling both the pages with seperate Bean class with respective setter and getter methods.How can i state the same in faces-config.xml file???..
    Is the below way correct???
    <?xml version='1.0' encoding='UTF-8'?>
    <!-- =========== FULL CONFIGURATION FILE ================================== -->
    <faces-config version="1.2"
        xmlns="http://java.sun.com/xml/ns/javaee"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
                       http://java.sun.com/xml/ns/javaee/web-facesconfig_1_2.xsd">
        <managed-bean>
                <managed-bean-name>LoginForm</managed-bean-name>
                <managed-bean-class>useraccess.LoginForm</managed-bean-class>
                <managed-bean-scope>request</managed-bean-scope>
        </managed-bean>
        <navigation-rule>
                <from-view-id>/login.jsp</from-view-id>
            <navigation-case>
                <from-action>#{LoginForm.CheckValidUser}</from-action>
                <from-outcome>success</from-outcome>
                <to-view-id>/success.jsp</to-view-id>
            </navigation-case>
            <navigation-case>
                <from-action>#{LoginForm.CheckValidUser}</from-action>
                <from-outcome>fail</from-outcome>
                <to-view-id>/fail.jsp</to-view-id>
            </navigation-case>
        </navigation-rule>
        <managed-bean>
                <managed-bean-name>DSRApplication</managed-bean-name>
                <managed-bean-class>DSRApplication.LoginForm</managed-bean-class>
                <managed-bean-scope>request</managed-bean-scope>
        </managed-bean>
        <navigation-rule>
                <from-view-id>/DSR.jsp</from-view-id>
            <navigation-case>
                <from-action>#{DSRApplication.checkValidDateInAllFields}</from-action>
                <from-outcome>alldatasuccess</from-outcome>
                <to-view-id>/success.jsp</to-view-id>
            </navigation-case>
            <navigation-case>
                <from-action>#{DSRApplication.checkValidDateInAllFields}</from-action>
                <from-outcome>datafail</from-outcome>
                <to-view-id>/fail.jsp</to-view-id>
            </navigation-case>
        </navigation-rule>
    </faces-config>Thanks in advance to all.
    regards,
    Viswanadh.

    Thanks ejp for the reply.
    Since i am a beginner even i dont know the exact reason to answer you for why am i using JSP with Facelets.Kindly provide me the suggestion and valuable information you have so that i can learn.
    Apart from this i want to know whether the way provided in that faces-config.xml is possible or do we have a way to make that possible???
    regards,
    Viswanadh.

  • Unable to open PDF files with acroread

    Hi,
    We have a solaris 9 server with acroread installed on the server. When I log in to the server with any local user (root or any other user) I'm able to open the PDF files which are locally on the server as well the PDF files which are on NFS Share with acroread but when a user whose home directory is NFS mounted log in to the server, he is neither able to open PDF files which are local on that server nor the PDF files which are on NFS share with acroread.
    I have tried by restarting the NFS services and also by rebooting the server but the same problem persists.
    Please suggest.
    Thanks!!!!

    Hello Harpreet,
    As I understand,default Gtk+ version on Solaris 9 is 2.1.0. You must have a higher version of Gtk+ installed on this machine since you are able to launch Adobe Reader. Could you let us know if the version of this Gtk+ installation is 2.4.9. Also, does your NFS share contains home directories of a large number of users? Does "unable to open" means that Adobe Reader becomes unresponsive?
    If this is the case, you need to upgrade the Gtk+ installation to the recommended version i.e 2.6 or higher.
    Regards
    Sanika

  • Unable to open JSP files using Workshop JSP Editor 3.0

    Every time I try to open a JSP file in Workshop JSP Editor 3.0, I get the following error:
    Unable to create this part due to an internal error. Reason for the failure: Cannot open the specified document:
    null
    org.eclipse.ui.PartInitException: Cannot open the specified document:
    null
         at com.m7.wide.eclipse.jstudio.DynamicMultiPageEditor.A(Unknown Source)
         at com.m7.wide.eclipse.jstudio.DynamicMultiPageEditor.init(Unknown Source)
         at org.eclipse.ui.internal.EditorManager.createSite(EditorManager.java:778)
         at org.eclipse.ui.internal.EditorReference.createPartHelper(EditorReference.java:596)
         at org.eclipse.ui.internal.EditorReference.createPart(EditorReference.java:384)
         at org.eclipse.ui.internal.WorkbenchPartReference.getPart(WorkbenchPartReference.java:552)
         at org.eclipse.ui.internal.EditorReference.getEditor(EditorReference.java:223)
         at org.eclipse.ui.internal.WorkbenchPage.busyOpenEditorBatched(WorkbenchPage.java:2362)
         at org.eclipse.ui.internal.WorkbenchPage.busyOpenEditor(WorkbenchPage.java:2295)
         at org.eclipse.ui.internal.WorkbenchPage.access$9(WorkbenchPage.java:2287)
         at org.eclipse.ui.internal.WorkbenchPage$9.run(WorkbenchPage.java:2273)
         at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69)
         at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2268)
         at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2249)
         at org.eclipse.ui.ide.IDE.openEditor(IDE.java:371)
         at org.eclipse.ui.ide.IDE.openEditor(IDE.java:334)
         at org.eclipse.ui.actions.OpenFileAction.openFile(OpenFileAction.java:98)
         at org.eclipse.ui.actions.OpenSystemEditorAction.run(OpenSystemEditorAction.java:98)
         at org.eclipse.wst.common.navigator.internal.actions.ResourceOpenListener.open(ResourceOpenListener.java:58)
         at org.eclipse.wst.common.navigator.internal.views.extensions.CommonOpenService.open(CommonOpenService.java:63)
         at org.eclipse.jface.viewers.StructuredViewer$2.run(StructuredViewer.java:741)
         at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:1044)
         at org.eclipse.core.runtime.Platform.run(Platform.java:783)
         at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:44)
         at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:148)
         at org.eclipse.jface.viewers.StructuredViewer.fireOpen(StructuredViewer.java:739)
         at org.eclipse.jface.viewers.StructuredViewer.handleOpen(StructuredViewer.java:968)
         at org.eclipse.jface.viewers.StructuredViewer$6.handleOpen(StructuredViewer.java:1067)
         at org.eclipse.jface.util.OpenStrategy.fireOpenEvent(OpenStrategy.java:243)
         at org.eclipse.jface.util.OpenStrategy.access$2(OpenStrategy.java:238)
         at org.eclipse.jface.util.OpenStrategy$1.handleEvent(OpenStrategy.java:277)
         at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66)
         at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:843)
         at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3080)
         at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2713)
         at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1699)
         at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1663)
         at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:367)
         at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143)
         at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:103)
         at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:226)
         at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:376)
         at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:163)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at org.eclipse.core.launcher.Main.invokeFramework(Main.java:334)
         at org.eclipse.core.launcher.Main.basicRun(Main.java:278)
         at org.eclipse.core.launcher.Main.run(Main.java:973)
         at org.eclipse.core.launcher.Main.eclipse_main(Main.java:948)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at com.m7.installer.util.NitroxMain$1.run(NitroxMain.java:29)
         at java.awt.event.InvocationEvent.dispatch(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    The jsp file is present in its directory, and the directory is not linked. Reinstalling BEA Workshop doesn't help. Any suggestions?

    Please post this question to the bea.workshop.developer.general newsgroup at http://newsgroups.bea.com/bea/forum.jspa?forumID=600000007
    Thanks
    Raj

  • Unable to open PDF files with Adobe Reader v11.0, in Windows 8, using C# Process.Start()

    I have been able to open PDF docs using C# API Process.Start("Full_path_To_the_PDF_File")
     in windows 7 or windows 8 with all previous versions of Acrobat32 reader.
    However, with v11.0, the same command, in Windows 8,
     does not open the PDF document. I can see the Acrobat(32) started in the task manager,
    but the document does open. Not sure how I can troble shoot
    this problem.
    As a test, I created ta batch file, with a simple command that calls AcroRD32.exe with a PDF file as a parameter. When I executed the batch file in cmd window, it opens the PDF document. If I execute the batch file using Process.Start(), again it does not
    work. The CMD window opens but, the document does not open. The cmd window just stays open.
    So, there must be something with opening the PDF using the Process.start() command.
    Any help would be appreciated.
    Thank you,
    - Kam
    Intel Engineer

    This is something Adobe has to troubleshoot. Probably the pdf file association is broken. I suggest you to visit forums.adobe.com to ask Adobe about your problem.
    Visual C++ MVP

  • Unable to open RAW files with Photoshop CS6 - Camera Raw

    Hi all,
    I'm trying to open .CR2 files from a Canon 450D on Photoshop CS6 as well as with Lightroom 4 but it doesn't work.
    I've updated the Adobe Camera Raw to its latest edition (8.8), but anyway, when I try to open them it appears the message below: It basically says that photoshop is not able to open the file, make sure that you have installed the latest edition of Camera Raw and to visit the link for further info...
    After looking for solutions on Internet, I've also tried to convert the RAW files into DNG, but Adobe DNG converter says that the folder does not contain any RAW file, though they are all .CR2 files...
    I've tried several times in many ways... Any help would be much appreciated. Many thanks in advance.

    Hi Benjamin,
    You were right. It was the camera's provided software transfer system. I've copied them directly from the (same) card to the desktop and works.
    Many many thanks! Cheers

  • Unable to open PDF Files with adobe reader VI

    I have downloaded the latest version of Adobe Reader VI I am still not able to open PDF Files. When I click on the file I get a blank window with a  little black box inside a White X!    This black box appears  in the upper left hand corner of the blank window! Please any help to overcome this issue is welcomed...Rick

    You are not addressing Adobe here, just fellow users, and you are not providing enough information about your problem. Based on the little you say, I would sauy that you can try using this tool to first remove all traces of Reader from your computer:
    http://labs.adobe.com/downloads/acrobatcleaner.html
    Then, you can download the full offline Reader installer from
    http://get.adobe.com/reader/enterprise/

  • Unable to compile .jsp files with Jakarta Tomcat 5.5.3

    Hello,
    I am unable to reflect the changes that I am making in my .jsp files on my server. I am using Fedora core 4. It's like the .jsp files are not being compiled anymore. Please help! I would greatly appreciate any feedback. Thanks for your time.

    Thanks for your reply. My .jsp files where working just fine before I changed the layout of the output. Even making changes to a simple file that contains: <% out.println("Welcome to the jsp page!"); %> to the following: <% out.println("Welcome to the jsp page! Today is the day!"); %> does not work. I have cleared the browser by deleting all cookies, temp files, history, etc. The changes to my file are not being compiled. I thought that in JSP 2.0 changes to your files where compiled automatically. Am I missing something? Please help!

  • Unable to open zip files with Archive Utility or StuffIt

    Hello,
    I am running Mac OS X 10.7.3.  I have been attempting to download and install the Eclipse Java IDE from both www.eclipse.org and from a Stanford course website.  In the first case the file is offered as a tar.gz and in the second case it is a .zip.  When I attempt to open either file using Archive Utility or StuffIt Expander I get a never ending pinwheel.  I am forced to restart to get Finder working porperly again and quiet the fan down.  My wife's computer, also running Mac OS X 10.7.3, can extract the files without a problem.

    Jsanders is basiclly a BlackBerry Superhero, stick around for awhile, Don't be a stranger AntMcl, you can learn a lot around here I promise.
    If someone helped you give them kudos. Research all info!

  • Why am I unable to open this file with Adobe Reader?

    I am trying to open the following file,
    http://www.profitableglass.com/profiles/hotglass/files/profitableglassquarterlyspring%
    and an error message says:
    The Adobe Acrobat/Reader that is running cannot be used to
    view PDF files in a web browser. Adobe Acrobat/Reader version
    8 or 9 is neccesary.
    I am running Adobe Reader 9.3 on Windows XP/service pack 3 and
    what does Acrobat have to do with this, if I only want to view file?
    Chris

    This is cbuzz1, with a possible answer to my own question. From some web research and a few phone calls it appears that Adobe Reader 9.3 does not support I.E.8... I uninstalled Adobe Reader 9.3 and installed Adobe Reader 8.2, and no problems whatsoever. It does bother me though that when you go to Adobe Downloads and select Windows XP-sp3 operating system, the first option is to download Adobe Reader 9.3. It doesn't ask which browser you are using...So basically I spent three hours finding out something that I couldn't learn from Adobe Tech Support...

  • Indesign unable to open a file with name that contains letters "ä" and "ö"

    Hi, I just updated indesign and it seems it lost the ability to open files that have letters "ä" and "ö" in the file name.
    After I renamed the files, they were opened fine.
    Error I get is: "Either the file does not exist, you do not have permission, or the file may be in use by another application"
    Hope this will be fixed, many languages contain those letters.
    Edit: Indesign CS5.5 Version: 7.5.3

    Sorry for the lack of details
    OS: Windows 7 64-bit
    OS Language: Finnish
    Indesign language: English
    Procedure where this problem appears:
    - Drag and drop a file (no matter what extension).
    - Place a file.
    File name in question: EtsiväNuorisotyö_juliste_A3_PRINT.pdf
    Also tried with different file formats: EPS and JPG.
    File works when renamed "ä" to "a" and "ö" to "o".
    Also tried placing and drag and drop after I copied the files from network drive to desktop, same result.

Maybe you are looking for

  • Class field initialization outside class constructor

    Hi, what are the benefits of initializing a class field outside the class constructor? I use this for fields, that i do not need to pass parameter to via the constructor. The code seems more clear/easy to read.

  • I Photo 11, 9.2.1

    I have had more than 3 thousand pics in iPhoto, but recently half of my events now have the same date on them and are now only showing one picture of that event. What happened and why???? What do i do?

  • P.O. smartforms

    I am getting the following error while taking  P.O print/print preview as described below : Sytem message 046 from work area SSFCOMPOSER does not exist Message no. C!002 Diagnosis Message 046 from work area SSFCOMPOSER was not defined. Procedure You

  • The margins of section # are set outside the printable area of the page. Do you want to continue?

    Hi i have a Hp 7410 all in one officejet. I have just gone from Xp Pro to Windows 7 64 bit. I have installed correct drivers and Hp's own tool tells me i have the current drivers. But i just went to print in Microsoft Word 2007 and am getting the err

  • Udgrade from 4.7 to ecc 6.0

    hi , during Upgrade from sap 4.7 to sap ecc 6.0 what are the problems that we face? also what is unicode conversion? can somebody throw some light on it? thanks hr-user