JDeveloper 10.1.3.2 deployment bug

Hello,
I am experimenting with JDeveloper 10.1.3.2. When I make any web application it runs fine in the embedded OC4J. When I try to deploy to standalone server however or to war or ear file it fails. I've noticed that the archive in fact contains only the necessary xml files, but no class and jsp files.
I have no such problem with JDeveloper 10..1.3.1. Does someone else have seen this bug?

Marco,
the bug is published and visible in Metalink.
- Select "Document Id" in "Quick find"
- enter the bug number: 4556035
- click "Go"
Bug 4556035 is fixed in JDeveloper 10.1.3.3
It's also included in http://www.oracle.com/technology/products/jdev/htdocs/10.1.3.3/fixlist.htm
Regards,
Didier.

Similar Messages

  • JDeveloper Extension for SINGLE CLICK deployment of OIM customizations

    I am not sure most of OIM Developers, System Integrators and Architects aware of this Oracle Asset, hence sharing information.
    In most of the questions posted on forum related to event handler usages Plugin Registration utility and weblogic scripts to import / export meta data files into MDS. There is easy way to deploy OIM 11g even handler plugins , Scheduled Tasks, Request Datasets and Notification Events using OIM Customization Installer JDeveloper Extension.
    Oracle has published Oracle Identity Manager 11g Sample Assets some time back. You can use OIM Customization Installer JDeveloper Extension for SINGLE CLICK deployment of OIM customizations like Event Handlers, Plugins, Scheduled Tasks, Request Datasets and Notification Events.
    You can access and download Oracle Asset using below link,
    http://www.oracle.com/technetwork/middleware/id-mgmt/overview/oim-11g-assets-504842.html
    Thanks,
    Pradeep.

    Pradeep,
    Thanks for sharing this. I have gone through this asset sometime back. This is quite helpful w.r.t deployment but does not have any other added advantage. For example, it does not create the xml's automatically or does not validate them etc. If I remember it right, this plugin was supported till 11.1.1.3 only.
    Appreciate you sharing this as it would surely help folks here.
    -Bikash

  • Project dependencies & WAR deployment bug

    According to the help/manual (Getting Started / About JDeveloper / About project dependencies):
    This project-to-project compile-time dependency also has an impact on deploy-time behavior. The project dependency guarantees that when you deploy Project A's profile, JDeveloper will deploy everything specified in the profile for Project A, as well as the complete contents of Project B.
    This seems to work fine when deploying to a jar. When deploying to a WAR however, things are different. All files from project B are included in the deployment, except the classes that are used in project A. I would rather prefer the opposite...(to put it mildly)
    Is this a known bug? Maybe there's a workaround?
    Cheers Hans

    bump

  • JDeveloper, do i have to deploy the app each time i make changes in jsp

    Hi, I am a newbie. I am using jDeveloper 11.1.1.3.
    Whenever i make any changes in the jspx, i have to redeploy the whole application to my WL instance to see the changes reflected. Is there a way that will deploy only the jsp's to the WL instance whenver i make changes to it and save.
    Please help on this.
    Zee

    Do you have this parameter org.apache.myfaces.trinidad.CHECK_FILE_MODIFICATION in your web.xml?
    It should look like this
      <context-param>
        <description>If this parameter is true, there will be an automatic check of the modification date of your JSPs, and saved state will be discarded when JSP's change. It will also automatically check if your skinning css files have changed without you having to restart the server. This makes development easier, but adds overhead. For this reason this parameter should be set to false when your application is deployed.</description>
        <param-name>org.apache.myfaces.trinidad.CHECK_FILE_MODIFICATION</param-name>
        <param-value>true</param-value>
      </context-param>Pedja

  • Crystal Report XI Release 2 - Deployment Bug on SQL Server

    Post Author: PeterLiebich
    CA Forum: General
    H
    We have a VS 2005 Crystal web app deployed onto a server - not using the RAS but using the Crsytal Report Viewer.
    Nearly Everything is working however we have one slight bug which is driving me mad.
    All of our reports are constructed against a development SQL Server, and then the Application resets the report location at run time to the Appropriate production server.
    Everything works fine when I run the appliction via VS 2005 on my XP machine, the reports repoint successfully etc.
    When I build the App and deploy it to a server, the CrystalReportViewer fails with a "Database logon failed" if (and only if) the name of the database that the report was developent against is the same as the name as the database is being repointed to (on a different server).  If the developement and production databases have different names then the resetting of the location works fine.
    As I said the repointing works fine when I run the App on my development machine which has Crystal Reports XI Release 2 installed.
    On the Server I have installED the Crystal dlls via CrystalReports11_5_NET_2005.msi dated 2007/03/01.
    I have also tried to deploy dlls via a GAC using CrystalReports11_5_NET_2005.msm dated 2006/02/24.
    All to no avail
    Here is the code I use to repoint the report
    Dim crConnectionInfo As New CrystalDecisions.Shared.ConnectionInfo
    crConnectionInfo.IntegratedSecurity = True
    crConnectionInfo.ServerName = v_ServerName
    crConnectionInfo.DatabaseName = v_DatabaseName
    'loop through all the tables and pass in the connection info
    Dim crTableLogOnInfo As CrystalDecisions.Shared.TableLogOnInfo
    For Each crTable As CrystalDecisions.CrystalReports.Engine.Table In  Me.m_ReportDocument.Database.Tables
      crTableLogOnInfo = crTable.LogOnInfo
      crTableLogOnInfo.ConnectionInfo = crConnectionInfo
      crTable.ApplyLogOnInfo(crTableLogOnInfo)
    Next
    'set the crSections object to the current report's sections
    'loop through all the sections to find all the report objects
    Dim crSubreportObject As CrystalDecisions.CrystalReports.Engine.SubreportObject
    Dim crSubreportDocument As CrystalDecisions.CrystalReports.Engine.ReportDocument
    For Each crSection As CrystalDecisions.CrystalReports.Engine.Section In Me.m_ReportDocument.ReportDefinition.Sections
      'loop through all the report objects to find all the subreports
      For Each crReportObject As CrystalDecisions.CrystalReports.Engine.ReportObject In crSection.ReportObjects
        If crReportObject.Kind = CrystalDecisions.Shared.ReportObjectKind.SubreportObject Then
        ' you will need to typecast the reportobject to a subreport object once you find it
         crSubreportObject = CType(crReportObject, CrystalDecisions.CrystalReports.Engine.SubreportObject)
         'open the subreport object
         crSubreportDocument = crSubreportObject.OpenSubreport(crSubreportObject.SubreportName)
        'loop through all the tables in the subreport and
        'apply the connection set up previously to the subreports
        For Each crTable As CrystalDecisions.CrystalReports.Engine.Table In crSubreportDocument.Database.Tables
          crTableLogOnInfo = crTable.LogOnInfo
          crTableLogOnInfo.ConnectionInfo = crConnectionInfo
          crTable.ApplyLogOnInfo(crTableLogOnInfo)
        Next
        End If
      Next
    Next

    Post Author: jjamcgu
    CA Forum: General
    Don't know if you ever found a solution, but here is how I got it to work.
    1) If it was created pointing to a localhost database, it may be using named pipes to connect, where as production / test uses TCP/IP.  Our CR9 system automatically switched from Named Pipes to TCP/IP but CR11 does not.  Repointing the report to a non local version of the database fixed one problem of runtime switching.  (This includes switching back to localhost).
    2) When you change the server name, CR11 does not update the table object, but clones it and applies the update to the clone.  I needed to update the location apply the update and then apply the login change (I am not using integrated security, so this may not apply to you.).  See the code below.  I call setServerInfo and then setLogonInfo. Sub setLogonInfo(ByRef myReport As ReportDocument)
            Dim logonInfo As New TableLogOnInfo
            Dim table As CrystalDecisions.CrystalReports.Engine.Table
            For Each table In myReport.Database.Tables
                logonInfo = table.LogOnInfo
                logonInfo.ConnectionInfo.UserID = loginName
                logonInfo.ConnectionInfo.Password = loginPassword
                table.ApplyLogOnInfo(logonInfo)
            Next table
        End Sub
        Sub setServerInfo(ByRef myReport As ReportDocument)
            Dim logonInfo As New TableLogOnInfo
            Dim table As CrystalDecisions.CrystalReports.Engine.Table
            For Each table In myReport.Database.Tables
                logonInfo = table.LogOnInfo
                Select Case AppSettings("DataEnvironment")
                     Case "PRODUCTION"
                          logonInfo.ConnectionInfo.ServerName = "productionServer.local"
                     Case "TEST"
                          logonInfo.ConnectionInfo.ServerName = "testServer.local"
                     Case "LOCAL"
                          logonInfo.ConnectionInfo.ServerName = "localhost"
                 End Select
                 table.ApplyLogOnInfo(logonInfo)
            Next table
        End Sub

  • JDeveloper 2.0 - problem with Deploying EJB

    Hi,
    I have a problem when trying to deply the ACME example EJB's to the Oracle 8i DB. While creating the deployment profile, I've given all the details and even tested the connection with success. When I press finish in the deployment wizard, I get a blank error message-box with just the OK button. Could you help me please.
    Thanks,
    Chandika

    I seem to have sorted this problem. Now I get the following error message when trying to deply to Oracle 8i.
    *** Invoking the Oracle8i deployment utility ***
    java.lang.NullPointerException java.lang.Object java.util.Hashtable.put(java.lang.Object, java.lang.Object)
    void oracle.aurora.server.tools.sess_iiop.WindowsFSContext.<init>(java.util.Hashtable)
    void oracle.aurora.server.tools.sess_iiop.LocalWorkingDirectory.<init>(java.util.Properties)
    void oracle.aurora.server.tools.sess_iiop.ToolImpl.initializeLocal()
    java.lang.String[] oracle.aurora.server.tools.sess_iiop.ToolImpl.parseStdArgs(java.lang.String[])
    void oracle.aurora.server.tools.sess_iiop.ToolImpl.invoke(java.lang.String[], java.io.InputStream, java.io.PrintStream, java.io.PrintStream)
    void oracle.jdeveloper.wizard.deployment.EJBDeployMonitor.run()
    void oracle.jdeveloper.wizard.common.ProgressDialog.run()
    void java.lang.Thread.run()
    null

  • Can Jdeveloper support Weblogic Application Server Deploy ??

    Can Jdeveloper support the Weblogic application server deploy in EJB part ?

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Michael Cheng ([email protected]):
    Can Jdeveloper support the Weblogic application server deploy in EJB part ?<HR></BLOCKQUOTE>
    Yes.
    null

  • WLST deploy bug

    There seems to be a bug in the deploy method in the WebLogic scripting tool (WLST) on WebLogic Server 9.2.
    When deploying to a remote server using an upload parameter of "false", the path parameter indicates a path on the remote server. The deploy method erroneously checks to see if the path is valid on the local system before proceeding.
    A workaround is to create a file having that path on the local system before calling the deploy method. It can be empty as it is not used for the deployment.
    Example:
    open(path, "w").close()
    deploy(appName=myApplication, path=path, upload="false")
    Edited by crogers at 04/24/2007 3:23 PM

    This does look like a bug, you need to file a support case.
    -satya
    BEA Blog:
    http://dev2dev.bea.com/blog/sghattu/
    Get Involved in CodeShare:
    https://wls-console-extensions.projects.dev2dev.bea.com/
    https://wlnav.projects.dev2dev.bea.com/
    https://eclipse-wlst.projects.dev2dev.bea.com/
    https://wlst.projects.dev2dev.bea.com/

  • ClassCastException after deploy - bug

    Greetings,
    After much discussion in the Jdev forum, some here, alot of past discussion
    on the hierarchial nature of J2EE container's classloaders,
    which all makes sense and is consistant with observed behavior for me
    and other posters:
    It still seems to me that there's a bug in OC4J 903 that allows for ClassCastExceptions after re-deployment in Apps
    that happen to have the same classes.
    All the experts weighed in with discussion of how the container class loaders disallow cross loading of classes
    from adjacent applications. Great, then
    the ClassCastExceptions shouldn't happen. No?
    Regardless, the simple issue is; there should be under no circumstances a need
    to bounce an appserver after every deployment, to flush out stale classes that otherwise would cause ClassCastExceptions.
    Can OC4J experts explain why I should have to bounce 903 OC4J after every
    deploy?
    Is this issue being worked on (fixed) in 904?
    Thanks, curt

    Are there any opinions or even similar experiences with
    ClassCastException's following hot deploys?
    Thanks, curt

  • JDeveloper hogs CPU for minutes. Bug?

    I stumbled on what looks like a bug in JDeveloper.
    Try this:
    - Make a new empty Java source file in JDeveloper
    - insert the following code:
    public class A extends B {
    public A( Component comp ) {
    super( G.u( ), new ActionListener( ) {
    public void actionPerformed( ActionEvent evt ) {
    stop( );
    for (Iterator i=s.iterator(); i.hasNext(); ) {
    C listener = (C)i.next();
    t.actionPerformed( evt );
    - Insert a new line below the one that starts with "C listener" and type a few characters
    - Watch JDeveloper slow to a halt. Windows Task Manager shows JDeveloper using 100% CPU. It took several minutes until JDeveloper became responsive again.
    I have a 2 GHz P4 with 1 GB of RAM, about 2/3 of which is unused; JDeveloper uses about 180 MB. My operating system is Win2K.
    I noticed that during the lock-up, Task Manager reports a high number of page faults per second, which seems to indicate that JDeveloper is creating lots of objects but has hit the Java memory limit, so stuff gets swapped out to disk.
    Thanks,
    Hariolf

    That's strange because on this machine I can reproduce it consistently. I also had my coworkers try it, with the same result.
    When I run it from the DOS box, it doesn't give me any output except for the copyright message the Jalopy plugin produces when JDeveloper starts. Maybe I should remove the plugin and see if that changes anything.
    I'm using JDeveloper 9.0.3.1035, btw.
    Thanks,
    Hariolf

  • JDeveloper 11.1.1.3 has Bug "adrci.exe" when I Run ADF Applications

    Hi all
    my Environment is
    1- Windows XP Service pack 3
    2- Database 10g r10.2.0.4.0
    2- Jdev 11.1.1.3
    when I Run any ADF Applications, I got this error "adrci.exe"
    any solution for this error or this bugs from JDev 11.1.1.3?
    mugmug

    Hi Shay ;
    I did not get this error "adrci.exe" inside the WLS log file and
    when I Run ADF Application for the first time only I get this error "adrci.exe" in popup window;
    like the figure in this link:
    http://adfbugs.blogspot.com/2009/11/issues-after-migrating-our-application.html
    but when I run it again (next time) I do not get the error (only for first time)
    thanks

  • CSM 3.3.1 - deployment bug? after installing SP1&SP2

    Hi all,
    I've recently installed CSM 3.3.1 with SP1 and SP2 and I've encountered quite serious (for me) problem. Has  anyone met strange situations after installing service packs?
    When I discover new device (i.e. router with 15.1 ios version) and make changes in ZBF policy, CSM deploys new configuration and everything seems to be fine. I must stress that only seems.
    When for example I want to make only small changes to that device (by adding new username ans password) I make "preview configuration" and I see that CSM deletes part of ZBF policy - 10 of 12 zone-pair. For example for some reasons manager makes "no service-policy ...." in zone-pair. When I do another "preview configuration" (after adding another username) it deletes those empty zone-pairs. I thoung maybe naming doesn't suit it and I need to recreate all policy through CSM - nooooo. It did not help. Still it tried to delete some of policy.
    Even when I created all ZBF policies from CSM Ive got situation when in one preview config it removes security-policy from zone-pair and after deployment in second preview it adds these security-policies to previous zone-pair. Its happaning in a  loop.
    Or another strange behaviour is when I add new username it does sth like this:
    In "preview configuration" there is
    policy-map type inspect CSM_ZBF_POLICY_MAP_1
    no class class-default
    class class-default
        drop
    while in GUI in CSM there is action inspect defined.
    I've looked through bugtool, but with no success, so need any help.
    regards

    hi,
    thx for interest,
    I didn't open the TAC case casue I didn't have much time for it, however the issue is resolved. It occured that SP2 to CSM was problematic. Right now I've got 3.3.1 version with SP1 and everything works just fine. To make sure that it was it, I installed then SP2 and the problem started again.
    I don't have configuration saved but actually there wasn't much of it. It was a fresh system and only 1 or 2 devices ware added so I suppose it should be easy to restore the situation.
    if you got any new info please let me know
    regards
    Przemek

  • BUG - Error when deploying to 10.1.3 AS Preview 4 on Linux

    I am using JDeveloper 10.1.3 EA on a Windows machine and am deploying to Oracle Application Server 10g 10.1.3 Preview 4 on a Linux box. I'm deploying an ADF Struts web project that is having troubles displaying my sceens. When I try to view any one of my JSPs, I get this error:
    java.lang.NoSuchMethodError: oracle.adf.share.http.ServletADFContext.setVariableResolver(Ljava/lang/Object;)V
    at oracle.adf.share.http.ServletADFContext.initialize(ServletADFContext.java:222)
    at oracle.adf.share.http.ServletADFContext.initThreadContext(ServletADFContext.java:211)
    at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:178)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) - Developer Preview 4].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:699)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) - Developer Preview 4].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:397)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) - Developer Preview 4].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:833)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) - Developer Preview 4].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:430)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) - Developer Preview 4].server.http.AJPRequestHandler.run(AJPRequestHandler.java:290)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) - Developer Preview 4].server.http.AJPRequestHandler.run(AJPRequestHandler.java:179)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:215)
    at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:232)
    at oracle.oc4j.network.ServerSocketAcceptHandler.access$1000(ServerSocketAcceptHandler.java:35)
    at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:819)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) - Developer Preview 4].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:534)
    Using a java decompiler, I've been able to locate the method setVariableResolver() in the ADFContext class which ServletADFContext.java extends. This can be found in the adfshare.jar. So I have no idea why the server can't find this method when I know it exists. I thought maybe I had an old adfshare.jar and so I replaced it everywhere I found it on the app server with the jar file that comes with JDev 10.1.3 EA. But this proved to be a dead end, as well as everything else I've tried. I've even tried reinstalling the app server. Has anyone else installed App Server 10.1.3 Preview 4 on a Linux box? Is there some qwerk that you found to get it working?
    Additionally I have created a very simple project with nothing but a JSP and it works. So I'm led to believe that there is some ADF JAR file that is not quite right. My ADF Struts web project worked using the same app server on Windows 2003. However I ran into a different problem with that: BUG - Connection pooling with 10g 10.1.3 Preview 4 App Server
    So we have decided to make the move to Linux but I can't get past this error. I have updated the ADF Runtime Libraries and I've swapped out the JDK and JRE with 1.5. Any help would be greatly appreciated.

    The adfshare.jar does not get included with my app. I've checked my WAR file and this JAR is not found there. I'm completely stumped at this point. Have you had success using Oracle App Server 10.1.3 Preview 4 on Linux?
    I have made some progress narrowing down where the error occurs. When I add data bindings to a JSP, the following code gets added to my web.xml:
       <filter>
         <filter-name>ADFBindingFilter</filter-name>
         <filter-class>oracle.adf.model.servlet.ADFBindingFilter</filter-class>
         <init-param>
           <param-name>encoding</param-name>
           <param-value>windows-1252</param-value>
         </init-param>
       </filter>
       <filter-mapping>
         <filter-name>ADFBindingFilter</filter-name>
         <url-pattern>*.jsp</url-pattern>
       </filter-mapping>
       <filter-mapping>
         <filter-name>ADFBindingFilter</filter-name>
         <url-pattern>*.jspx</url-pattern>
       </filter-mapping>
       <filter-mapping>
         <filter-name>ADFBindingFilter</filter-name>
         <servlet-name>action</servlet-name>
       </filter-mapping>
    If I delete this code out of my web.xml file, that error message goes away. The ADFBindingFilter class is also included in the error stacktrace. So I'm thinking that this class is the culprit. I'm convinced this is a BUG with Oracle ADF and Linux.
    Another idea perhaps is that the error occurs because I'm developing in JDeveloper on Windows and then deploying to an app server on Linux. My embedded server on Windows runs my app just fine. I have the same OS setup for JDev 10.1.2 and the app server 10.1.2 and I have no problems with that. But I really don't want to have to go back to 10.1.2.

  • BUG - ADF error when deploying to 10.1.3 AS Preview 4 on Linux

    I am using JDeveloper 10.1.3 EA on a Windows machine and am deploying to Oracle Application Server 10g 10.1.3 Preview 4 on a Linux box. I'm deploying an ADF Struts web project that is having troubles displaying my sceens. When I try to view any one of my JSPs, I get this error:
    java.lang.NoSuchMethodError: oracle.adf.share.http.ServletADFContext.setVariableResolver(Ljava/lang/Object;)V
         at oracle.adf.share.http.ServletADFContext.initialize(ServletADFContext.java:222)
         at oracle.adf.share.http.ServletADFContext.initThreadContext(ServletADFContext.java:211)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:178)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) - Developer Preview 4].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:699)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) - Developer Preview 4].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:397)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) - Developer Preview 4].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:833)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) - Developer Preview 4].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:430)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) - Developer Preview 4].server.http.AJPRequestHandler.run(AJPRequestHandler.java:290)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) - Developer Preview 4].server.http.AJPRequestHandler.run(AJPRequestHandler.java:179)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:215)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:232)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$1000(ServerSocketAcceptHandler.java:35)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:819)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) - Developer Preview 4].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:534)
    I have created a very simple project with nothing but a JSP and it works. So I'm led to believe that there is some ADF JAR file that is not quite right. My ADF Struts web project worked using the same app server on Windows 2003. However I ran into a different problem with that: BUG - Connection pooling with 10g 10.1.3 Preview 4 App Server
    So we have decided to make the move to Linux but I can't get past this error. I have updated the ADF Runtime Libraries and I've swapped out the JDK and JRE with 1.5. I just can't figure out what else I'm missing.

    The adfshare.jar does not get included with my app. I've checked my WAR file and this JAR is not found there. I'm completely stumped at this point. Have you had success using Oracle App Server 10.1.3 Preview 4 on Linux?
    I have made some progress narrowing down where the error occurs. When I add data bindings to a JSP, the following code gets added to my web.xml:
       <filter>
         <filter-name>ADFBindingFilter</filter-name>
         <filter-class>oracle.adf.model.servlet.ADFBindingFilter</filter-class>
         <init-param>
           <param-name>encoding</param-name>
           <param-value>windows-1252</param-value>
         </init-param>
       </filter>
       <filter-mapping>
         <filter-name>ADFBindingFilter</filter-name>
         <url-pattern>*.jsp</url-pattern>
       </filter-mapping>
       <filter-mapping>
         <filter-name>ADFBindingFilter</filter-name>
         <url-pattern>*.jspx</url-pattern>
       </filter-mapping>
       <filter-mapping>
         <filter-name>ADFBindingFilter</filter-name>
         <servlet-name>action</servlet-name>
       </filter-mapping>
    If I delete this code out of my web.xml file, that error message goes away. The ADFBindingFilter class is also included in the error stacktrace. So I'm thinking that this class is the culprit. I'm convinced this is a BUG with Oracle ADF and Linux.
    Another idea perhaps is that the error occurs because I'm developing in JDeveloper on Windows and then deploying to an app server on Linux. My embedded server on Windows runs my app just fine. I have the same OS setup for JDev 10.1.2 and the app server 10.1.2 and I have no problems with that. But I really don't want to have to go back to 10.1.2.

  • Entity EJB deployment on Oracle through JDeveloper 3.2

    I have a project which is using Oracle 9iAS as the for the web server. There were intial plans to use the 8i database within the 9iAS machine as the place where the EJBs would be stored. There was a comment from the Oracle support people that the EJBs would be better off stored on the backend. We are trying to do the same.
    We have experienced mainly two problems
    1) While trying to deploy the container managed beans through JDeveloper, just after creating the deployment profile, an error ORA - 00904 comes up. (no columns). Then there is a prompt to install BC4J. On doing that the error comes up again and while it goes further, it says 'Exhausted ResultSet'. But the BMP entity beans are working OK.
    2) We had a bug report from the Oracle people on entity bean support through JDeveloper on non-NT machines. But we have been trying to deploy beans on the Solaris DB using JDeveloper and we keep getting 'peer socket disconnected errors'. I'll try the workaround which was suggestesd by the Oracle people to solve the problem and get back on this.
    I don't know how Oracle will measure up to the performance when EJBs are running. But the problems mentioned above would have to be solved first.
    Can anyone help out?
    Thanks in advance.
    Aby Philip

    I can't resist a comment here. Oracle folks seem to always recommend putting the EJBs in back-end database. How many real-world enterprise-scale applications (i.e., one's that would need EJBs at all) have a non-shared back-end database? And in those cases, who in their right mind would accept running application code in the back-end database? I guess Oracle just hasn't really bought in to the concept of multi-tiered applications. The whole reason for separating the business logic tier from the EIS tier is to insulate the EIS services from the demands of the business logic code.
    So from that perspective, I would highly recommend running an 8.1.7 instance in your middle tier to house your EJBs. Then you can hook up to your EIS tier either with database links, or (for better performance) by caching data in the EJB database from the EIS tier.
    As for your specific issues, I can't help with the first. On issue 2, I am installing the 8.1.7.1 patch set today and I'll let you know if it fixes the JDeveloper --> Solaris deployment problem.
    John H.

Maybe you are looking for

  • I can't connect to the itunes store! Please help!

    I have been unable to connect to the itunes store for nearly 2 weeks now (since updating to itunes8). I have tried everything that itunes recommends, as well as the firewall stuff. I do not have norton (it has expired - I still have files on the comp

  • RH8 "Kindly generate WebHelp SSL layout" Eclipse script error message

    I give. It seemed to offer help, of the kindly sort, but in fact it ends the process without doing its job of producing Eclipse help. Searching the Help for this error message gives no clue. "WebHelp SSL layout" returns no help results. Here was my p

  • Windows xp professional pre installed through down grade rights in windows 7

    wondering if anyone else is in my shoes and what to do about it. I recently bought a T500 that had XP installed on it as part of the downgrade rights of Win7 pro. The problem is I dont know exactly how i am supposed to install windows 7 when I am rea

  • Want to learn SD after ABAP

    Hi Experts!!!! I'm SAP ABAPer with over 3+ years of experience.I want to learn SD plz suggest whether i'll get job openings for techno functional consultant like me if i choose functional as career option...i'm worried like companies always look into

  • Browser defaults to Explorer always and only I click on hypertext!! Why?

    Firefox is, without doubt, my default browser. Whenever, and without fail, I click an URL (hypertext) that I have received via e-mail, it opens in Windows Explorer! In order to have it open in FF I have to paste it in. Can you tell me how to fix this