Deploying JDeveloper(10.1.3) App to Application server (10.1.2)

Hi there,
I am experiencing a problem trying to run an application that I deployed:
The application was developed in Jdeveloper and it includes the Struts framework.
The deployment goes through successfully. However, when I try to run the application I get the following error: Cannot find ActionMappings or ActionFormBeans collection.
In the Application server I see that there is a message stating:
Action:
Status: Not Loaded
Type: Servlet
Source: org.apache.struts.action.ActionServlet
Does anyone know what I need to do to rectify this problem?
Thanks
Dino

JDeveloper 10.1.3 does not support Oracle Application Server 9.04.
http://www.oracle.com/technology/products/jdev/collateral/papers/10g/as_supportmatrix.html

Similar Messages

  • Deploying a war file in Oracle Apps's application server

    Hi all, i have a war file which i want to deploy inside oracle apps's application server, i just want to know the location to put my war file in so that the application server will auto deploy it.And also provide port and url(Application server) where i can access that web app.

    Babu,
    There are a lot of dependencies involved. app severes before 10g are not generic j2ee server. what kind of files are you putting in ur war file?
    --Shiv                                                                                                                                                                                                                                                                                                                                       

  • How  to deploy on different OC4J than "home" on Application Server

    Hi
    I've a JSP/Struts Application which runs well in JDeveloper and runs well if deployed to the "home" instance of Oracle Application Server 10g Release 3. However, we want to deploy this Application to a separated OC4J (keeping different Applications separated). So I'm trying to create a second OC4J instance in Application Server in order to deploy my application. This seems to be quite complicated !
    Can anyone point me to some information on how to create a new OC4J Instance in Oracle AS 10g with all necessary BC4J- and ADF-Libraries in order to deploy an application?
    Thanks

    pls use the em website to create the new oc4j stance,you can access em by http://yourashost:1810
    then ,you may deploy the project to a ear file and deploy it on new oc4j stance in em website.
    maybe i do not make me understood,::)

  • Calling EJB deployed on Weblogic 10.3 from WebSphere Application Server 6

    Hi,
    We are trying to call an EJB(2.1) deployed in Weblogic 10.3 from WebSphere Application Server 6.
    The problem is that the jars containing Weblogic's initial context factory are compiled with JDK5. (Client jar was built as per [http://download.oracle.com/docs/cd/E15051_01/wls/docs103/client/jarbuilder.html] .)
    WebSphere is still running on JDK1.4.
    Therefore when trying to get the InitialContext to lookup up the bean we get major/minor version errors because of the compiler level mismatch.
    Has anyone faced a scenario like this and come up with a solution?
    Are there 1.4 jars for Weblogic 10.3 out there?
    Any help?
    Thanks

    Hi Dan,
    Yes I am using EJB 3. I saw this thread earlier also but :
    1. In my case I am not calling the EJB 3.0 methods directly. I am using a java client (Cataloged as a Java Class Library) which does the lookup and calls the EJB methods. (I am not cataloging and calling the EJB 3.0 methods directly).
    2. It is working perfectly fine when the EJB is deployed in Weblogic 10.0 or 10.2.
    I am very much new to this so please bear with my small and silly questions! Thanks a lot for you help !
    Cheers !
    Rajat

  • JDeveloper 10.1.3 and Oracle Application Server 9.0.5

    Hi everybody, I am developing an application using JDeveloper 10.1.3 (ADF + ADFFaces). The problem is that I have to deploy that application on an Oracle Application Server 10g 9.0.5
    Is this possible?
    Thanks in advance.

    JDeveloper 10.1.3 does not support Oracle Application Server 9.04.
    http://www.oracle.com/technology/products/jdev/collateral/papers/10g/as_supportmatrix.html

  • Deploying war file in to Sun Java Application Server

    HI
    I have a sample war file downloaded on to my desktop from a struts tutorial. Could some one tell me how do i deploy it on to Sun Java Application Server and test it..
    Thanks

    Babu,
    There are a lot of dependencies involved. app severes before 10g are not generic j2ee server. what kind of files are you putting in ur war file?
    --Shiv                                                                                                                                                                                                                                                                                                                                       

  • Error while deploying an ear file in the Oracle Application Server

    Hi,
    There was an existing ear deployed in the the oracle application server - 10g. We had to include some customizations so we rebuild the ear file with the new changes and tried redeploying the ear using the EM console. Getting the below error while deploying the same. Any pointers to the same would be helpful.
    Error
    An error occurred when processing the data submitted. Find the appropriate field and enter the correct information as noted next to each field.
    Archive Location - Failed in uploading archive. Invalid archive file: Jar file resourceadapter-rar.rar is missing a standard deployment located at META-INF/ra.xml
    We have not modified anything in the ra.xml nor have touched the resourceadapter-rar.rar

    Hello
    did you configure the startweblogic file as mentioned in the admin guide ?

  • Error while deploying .ear file on the oracle 10g Application server

    While deploying the ITS.ear or any other .ear file thru the application server console the screen shows the deploying screen continuously without any errors.The screen shows uploading the .ear file without any errors.Can somebody help me out it 's very urgent
    Thanks in advance.

    Hello,
    I asked you about the amount of AS instances because currntly I'm working on a clustering issue likewise. Nevertheless, your issue looks like a browser cache problem, have you tried different browsers to perform your deployment tasks? what about ant tasks?
    hope it helps,
    RB

  • Deployment of class file in oracle 10g Application Server

    Hi,
    I have a class file
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class HelloWorld extends HttpServlet {
    public void doGet(HttpServletRequest req, HttpServletResponse res)
    throws ServletException, IOException {
    res.setContentType ("text/html");
    PrintWriter out = res.getWriter();
    out.println("<HTML>");
    out.println("<HEAD><TITLE>Hello World</TITLE></HEAD>");
    out.println("<BODY>");
    out.println("<BIG>Hello World</BIG>");
    out.println("</BODY></HTML>");
    now I like to deploy(in oracle 10g Application Server) and run this file.
    please help me.

    Hi
    You have to deploy Servlet as a WAR File. I hope you already have web.xml file which u can get automatically in eclsipse during creation of servelet. I am not sure what ide u r using here. If u have created servlet in eclipse then I would suggest create a project dynamic webproject if u have not where IDE create all required files autmatiicaly and even you can deploy application from there itself.
    If you wanted to deploy manually then follow below steps (if u have war file)
    I am assuming you already created a Weblogic Domain and have admin username/password. Start your domain. Login into weblogic console like http://host:port/console and use admin username/password. Then from Deployments section, deploy the above WAR file. In Weblogic you can deploy JAR (EJBs, java files), WAR (web jsp, html, webservices, servlets) or EAR (JAR + WAR). In your case its just a WAR file.
    Thanks
    Sujit Singh

  • Deploying 10g 32bit forms on 64bit oracle application server

    Hi
    Can forms that are generated from forms developer on a 10g 32bit environment be deployed on a 64bit oracle application server?
    Anthony.

    Forms generated with Windows 32bit 10g run fine on Windows 64bit 10g because on Windows 64bit you have to run ApplicationServer 32 bit.
    Using Linux might be different, but I don't know.
    Using 11g You cannot run iAs 32 bit on Windows 64bit Platform and You cannot run 32bit generated Forms on iAs 64 bit.
    regards,
    mark

  • Not Loaded status after deploying a EAR file in Oracle 10g application serv

    Hi,
    I am deployed a simple ear file in Oracle App Server 10g. The deployment went on well. But when i use the enterprise manager to see the status , it shows 'Not Loaded'.
    Can any body kindly give me a suggestion on why this is happening.
    Any help is highly appreciated.
    Thanks
    SK

    Hi,
    You have to register your Portlet provider.
    How to register new portlet in Oracle Portal 10g ?
    Here are the steps -
    1- Go to your oracle portal home page e.g. http://oracleportal.com/pls/portal
    2- Login into the oracle portal by clicking on 'login' link
    3- Go to the Builder and then Administer
    4- Click on Portlets tab
    5- Click on 'Register a Provider' in 'Remote Providers' portlet.
    6- Enter the provider URL and other information and click finish. Normally the provider URL for portlets developed using JPDK is in the form of http://[your portal]/[context root]/providers/
    Please note that you must have deployed the portlet before trying to register the provider for the portlet.
    Best Regards,
    Kevin

  • Error Deploying Pet Store in Hewlett Packard's Application Server

    I tried deploying the Pet Store (the first version) in HPAS, but I got these deployment Error which I do not understand
    Note: "Jeffi Atmadja" is the name of the computer that I used.
    after the messange "Making Server JARS.."
    java.rmi.RemoteException:Error while loading JAR C:\j2sdkee1.2.1\repository\Jeffi Atmadja\applications\estore1030094962470Server.jar; nested exception is
    java.lang.ClassCastException
    I am using win98, I followed the UNIX steps in installing and have checked every .bat file for 96 *
    Can someone please help
    Thx
    Dewi

    hi J2ee application only support on win2000professional or winNt4

  • Deploying webdynPro DC on CE 7.2 Application Server

    Hi
    On Track A, i have developed a webdynPro DC by adding core GP APIs as dependencies.At Runtime, code implemented using GP functions in this DC are not getting executed. This DC is deployed in CE 7.1 AS which has GP patches in deployed state and already running. we are able to test our application succesfully.
    Now we have CE 7.2 AS which do not have GP core patches deployed during installation.
    1. Can we deploy this DC on CE 7.2 AS and test the applicaton succesfully?
    2. Do i have to ensure  that the GP dependies added to this DC have been removed before deployment?
    Kindly clairify these quetsion so as to contunue further.

    i think you have to remove the dependency before the deployment

  • How to deploy OHW Demo ear file in Jboss application Server.

    Hi All,
    I am quite new to the Oracle Help. I need to integrate Oracle Help in my j2ee application . I am using Jboss/tomcat aplication server for my development environment .
    Can any body guide me How I can go ahead ??
    and also pls tell me what is the difference between Java Help and Oracle Help

    I do not have any experience with Help or JBoss, but see if the links here can help - http://www.oracle.com/technetwork/topics/index-083946.html
    HTH
    Srini

  • Environment settings for a web-app in Application Server 6.0 SP3

    Hi all,
    I'm trying to pass java specific environment variables to a servlet in
    IAS, but I fail to acces them by a System.getProperty(..).
    I've seen that the Deployment Tool converts user-defined environment
    properties
    in <env-entry> tags (in web.xml) but <env-entry> puts stuff into the
    JNDI context, not System.getProperty().
    Is there a way to pass environment variables to servlet and acces them
    by System.getProperty() ?
    Thanks.
    Jean-Marie.

    Hi all,
    I'm trying to pass java specific environment variables to a servlet in
    IAS, but I fail to acces them by a System.getProperty(..).
    I've seen that the Deployment Tool converts user-defined environment
    properties
    in <env-entry> tags (in web.xml) but <env-entry> puts stuff into the
    JNDI context, not System.getProperty().
    Is there a way to pass environment variables to servlet and acces them
    by System.getProperty() ?
    Thanks.
    Jean-Marie.

Maybe you are looking for