Deploy to Weblogic 10.3.3 Jdeveloper 11.1.2.0.0

Hi all

Currently I deploy my project of JDev11G version 11.1.1.0.2 to Oracle Weblogic 10.3.3.

During the deployment, I create JAR, WAR and EAR file and deploy on weblogic.

But now when I use version 11.1.2.0.0 of the JDev11G and deploy to Weblogic Orracle 10.3.3, it's impossible!

Something wrong?

And what is MAR file in JDev11G 11.1.2.0.0?

TQ for your help

Kind regards
Kjetil andre

Hello

But now when I use version 11.1.2.0.0 of the JDev11G and deploy to Weblogic Orracle 10.3.3, it's impossible!
Something wrong?

Yes, you need a WLS 10.1.3.5 patched version

http://www.Oracle.com/technetwork/developer-tools/jdev/shermanrelnotes-405777.html#deploy

"Upgrade to a 11.1.1.5 Server Application with JSF 2.0 Shared Libraries to run 11.1.2.0.0 Applications.

The duration of the ADF will move into a stand-alone application server by applying an Opatch bundle on top a PS4 11.1.1.5 shiphome of application developer version. In case additional fixes are necessary or desired in addition Sherman 11.1.2 patch (for example, if an additional patch is needed for another component in the execution of the Application Development shiphome), these patches must be installed separately.

...

"

And what is MAR file in JDev11G 11.1.2.0.0?

Its a file from archive MDS you use to deploy metadata customizations

Frank

Tags: Java

Similar Questions

  • File. WAR deployment error: weblogic. failed to preload at startup in a Web application:

    Hello

    I'm dealing with deployment error while installing the file. War on weblogic server. When I run my application of webservices plsql in integrated weblogic server, it works fine... When I tried to package it and deploy on weblogic, it gives following error, pls could anyone help on this topic.

    Pls. note I've created connections to database through the wizard for the creation of webservices plsql, data source name is created under weblogic domain-> services-> jdbc-> data source in the application server. Even then, I'm not able to succeed with the deployment. Appreciate your help, thank you.

    I used jdeveloper 11.1.1 g for the construction of pl/sql based Web application services.

    Message icon - Error An error occurred during activation of the changes, please see the log for more details.

    Message icon - Error [HTTP:101216] Servlet: 'FinanceCreateInvoicePort' failed by preloading at startup in a Web application: "PLSQLWebServices-Project1-context - root.war. java.sql.SQLException: error looking up < java: comp/env/jdbc/CreateInvDBconnDS >: to createinvdbconn. FinanceCreateInvoiceBase. < init > (FinanceCreateInvoiceBase.java:33) to createinvdbconn. FinanceCreateInvoiceUser. < init > (FinanceCreateInvoiceUser.java:11) at sun.reflect.NativeConstructorAccessorImpl.newInstance0 (Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27) at java.lang.reflect.Constructor.newInstance(Constructor.java:513) at java.lang.Class.newInstance0(Class.java:355) at java.lang.Class.newInstance(Class.java:308) at weblogic.wsee.component.pojo.JavaClassComponent.createTarget(JavaClassComponent.java:49) at weblogic.wsee.component.pojo.JavaClassComponent. < init > (JavaClassComponent.java:40) at weblogic.wsee.ws.WsBuilder.setComponent(WsBuilder.java:1907) at weblogic.wsee.ws.WsBuilder.buildService(WsBuilder.java:215) at weblogic.wsee.ws.WsFactory.createServerService(WsFactory.java:54) at weblogic.wsee.deploy.ServletDeployInfo.createWsService(ServletDeployInfo.java:91) at weblogic.wsee.deploy.DeployInfo.createWsPort(DeployInfo.java:368) at weblogic.wsee.server.servlet.BaseWSServlet.init(BaseWSServlet.java:83) at javax.servlet.GenericServlet.init(GenericServlet.java:241) at weblogic.servlet.internal.StubSecurityHelper$ ServletInitAction.run (StubSecurityHelper.java:283) to



    Thank you

    Devendra




    Define the JNDI name as jdbc /CreateInvDBconnDS instead of CreateInvDBconn

    What makes research JNDI as java: comp/env/jdbc/CreateInvDBconnDS with java: comp/env/added by default.

    ADF expects this JNDI name to start with jdbc / and end with the DS.

  • Application of the ADF does not work after deployment to weblogic Server (quartz Scheduler is used)

    I created a Web merger Application using Jdeveloper 11.1.1.7. I use quartz Scheduler that will run the application automatically according to a predefined interval.

    The application works perfectly in Jdeveloper and no problem at all. The problem is when the application is deployed on weblogic server.

    Simply, the Scheduler is not rely on weblogic server and the application is not running.

    Any idea what can cause this problem? any idea would be appreciated, thanks in advance

    You should check the server logs in order to understand what happens when you call the Scheduler. There, you will come to know if there is an error message.

    Actually, it's the only way that outside help me to solved the problem. It has nothing to do with the quartz Scheduler , it was question of jdbc where the connection to the application module was not set correctly. Problem solved with application module configuration changed to use instead of the URL JDBC data source

  • How to add jsession ID to an ADF web application deployed in weblogic server?

    Hello

    I use jdeveloper 11.1.2.4 version. Can anyone tell please how to add custom JSESSIONID (BLTSESSIONID) to the URL of the web application ADF that must be deployed in weblogic server. I tried the following approach. but it did not work for me.

    in webogic.xml, I added

    < session descriptor - >

    < name > BLTSESSIONID < / cookie-name >

    < / session descriptor >

    However, I've added the weblogic.xml manually from the gallery.

    Could someone help me on this please?

    Thank you

    You don't have to add the session ID to the URL. The Web application automatically manages session IDS. By default, it uses an HTTP cookie (a cookie with name JSESSIONID) therefor. The Web application will automatically add it to the URL only if it detects that the client browser does not support cookies (for example, if the user has disabled cookies in the browser). By adding the lines above to weblogic.xml you just changed the name of cookie JSESSIONID to BLTSESSIONID default session. This is useful only if you have access to a couple of different Web applications from one and the same server and you want every application to maintain a clean session (for example, each application having a different session cookie name). If all applications on the server use one and same name cookie (JSESSIONID for example) and you have access to more than one application at the same time in one and the same browser (and even multiple instances of the browser, with the exception of some special cases), you will not be able to work with these applications correctly because the next access to another application will replace the cookie and you will lose the session to the requests earlier. Because HTTP cookies are maintained at the level of server name, it's not at the level of application root. In this case, you must specify the application names specific cookie (what you did above).

    Dimitar

  • Aplications of security deployed on weblogic

    Hi all I have a very interesting question...

    I have a 220 applications deployed in weblogic (10.3) with EJB & JSPX (model, view, controller) structure in jdeveloper (10.1.3.3)
    Well well all applications have a diferent HttpSession (Adf)
    How can I pass a parameter or variable to 220 aplications of the session or a branding throughout the app

    Thax for all help

    Hello

    (a) use query parameters
    (b) as far as I understand WLS has an exclusive session sharing feature that you can activate
    (c) use the uniwue users and use the database as a shared memory scope
    (d) cookies temporary client-side

    Frank

    Published by: Frank Nimphius, 15 March 2010 08:40

  • Composite SOA deployed in weblogic service is automatically triggered

    Hi all

    Face a strange behavior in weblogic server.

    Some SOA compounds deployed in weblogic server (10.3.5.0) automatically fires at midnight at 13:00 and they are working for more than 4 hours, and then the process gets failing.

    can you please let me know, is there a set timer in weblogic server.

    I'm waiting :)

  • Security of ADF 11g to deploy to weblogic

    Hello

    I put in place in Jdev which works well since jdev ADF security.
    Now, I need to deploy in weblogic.
    What is the deployment process and other configurations in Weblogic?
    I created many users and roles in jdev and did the def permission with these roles page.
    It is automatically created in weblogic when I deploy?

    Kind regards
    Sam

    Sam,

    Fortunately, [url http://download.oracle.com/docs/cd/E16162_01/web.1112/e16182/adding_security.htm#CDDGFDFH] documentation has the answers.

    John

  • OBIEE on RHEL5.5 using clusters of 4 nodes deployed on weblogic

    This is my first experience of installation production enviornament OBI. I have to install OBIEE 10.1.3.4.1 on four servers IBM HS22 blade, under RHEL 5.5, deployed on Weblogic active/active. WebLogic will be clustered. I am confused of installation steps, please correct me if the following steps are false:
    Step 1: install Weblogic on Node1 and configure Weblogic clustering on other 3 nodes.
    SETP 2: install OBIEE on all 4 nodes. Complete installation, non-specific product, by using the Advanced installation type. so that all the components are installed on all nodes
    Step 3: Configure the clustering in OBIEE keeping Node1 as master BI Server, main Cluster controller, Senior Planner.

    This does not mean that you must share the folders. This means that you need folders for all of these files. If you need get a SAN or NAS storage and mount it on all servers in the cluster. Then reposition the folder locations in the configuration files to the shared location of netwrok.

  • Hyperion deploy to Weblogic error?

    I want to configure Hyperion Foundation service and deployed on weblogic.
    1. I first install the Weblogic 10.3.2.0, it is installed on c:/Oracle/Middleware/default folder
    2. when I configure Hyperion Foundation, I select Weblogic, but it appears until the weblogic server location: c:/bea/weblogic92 by default.
    3. If I use c:/bea/weblogic92 as default folder, it displays error message
    4. If I use change c:/Oracle/Middleware/in the folder of the weblogic server, yet the pop-up error message

    What wrong with my setup?

    Thank you!

    In the doc of the matrix management, it's always down like weblogic 9.2.x as the last to be supported.

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • Deployment on Weblogic with Jdeveloper 11.1.1.3.

    Hello


    I use Jdeveloper 11.1.1.3. I made a request of the ADF to use it. Now, I did a new domain using the WLS installed with Jdeveloper weblogic. When I deploy the application on the new field of Jdeveloper it now gives the following error message:

    [10: 37:28] the target platform's (Weblogic 10.3).
    [10: 37:28] recovery of the existing application information
    [10: 37:28] analysis of the dependence running...
    [10: 37:28] building...
    [10: 37:33] deployment 2 profiles...
    [10: 37:34] wrote on the Web for C:\JDeveloper\mywork\DemoApplication\ViewController\deploy\DemoApplication_ViewController_webapp1.war application Module
    [10: 37:34] wrote the Module Enterprise Application to C:\JDeveloper\mywork\DemoApplication\deploy\DemoApplication_application1.ear
    [10: 37:34] Application deployment...
    [10: 37:37] [Deployer: 149191] Operation "deploy" on demand "DemoApplication_application1" boot on 'adf_server '.
    [10: 37:38] [Deployer: 149193] Operation "deploy" on demand "DemoApplication_application1" failed on "adf_server".
    [10: 37:38] [Deployer: 149034] an exception has occurred for task [Deployer: 149026] deploy DemoApplication_application1 on adf_server. : [J2EE:160149] error in the processing of library reference. References application library, defined in weblogic pending - application.xml: [Extension name: adf.oracle.domain, exact match: false], [name of the Extension: oracle.jsp.next, exact match: fake]...
    [10: 37:38] WebLogic Server Exception: weblogic.management.DeploymentException: [J2EE:160149] error in the processing of library reference. References application library, defined in weblogic pending - application.xml: [Extension name: adf.oracle.domain, exact match: false], [name of the Extension: oracle.jsp.next, exact match: false].
    [10: 37:38] check the server logs or the console of the server for more details.
    [10: 37:38] weblogic.management.DeploymentException: [J2EE:160149] error in the processing of library reference. References application library, defined in weblogic pending - application.xml: [Extension name: adf.oracle.domain, exact match: false], [name of the Extension: oracle.jsp.next, exact match: false].
    [10: 37:38] # incomplete deployment. ####
    [10: 37:38] remote deployment failed (oracle.jdevimpl.deploy.common.Jsr88RemoteDeployer)



    Please Guide.


    Thank you and best regards,
    NL

    Hello

    It seems that your domain is not extended models JRF (which contains the runtime libraries).

    Check this.

    http://download.Oracle.com/docs/CD/E12839_01/Web.1111/b31974/deployment_topics.htm#ADFFD19837

    Arun-

  • listener class not invoked after deployment to weblogic Server

    I have a third party class (Quartz Scheduler) that implements ServletContextListener I added in my weblogic-application.xml and web.xml files as a listener. This class should support certain data in the server starts. But is not to be called.

    Technology used:

    Jdeveloper 11.1.2.3

    Weblogic 10.3.5

    Third party library:Quartz 1.6

    Everything works very well for Jdeveloper and the listener class get invoked when the application is deployed in the weblogic with the local computer. But the listener class is not called when the application deployment as .ear file in weblogic on external server server.

    Extract of weblogic-application.xml and web.xml files:

     <listener> <listener-class>scheduler.WebListener</listener-class> </listener>

    where scheduler is the name of packge and WebListener is the class of earphone

    -Important updates-

    Two projects consist of the application that I am trying to deploy the view and the model projects. For testing, I remove the model project of the application and deploy the application to a new. Quartz scheduler of work and in the listener class called WORK without model project and without interaction of the DB.

    I'll double check the data source with the web-logic Nothing seem wrong to me. I use the same source of data name in the application and as said before the application runs from JDeveloper

    I also checked the server logs. No exception or an error. demonstrate that the application is running in Active mode. But the listener class is not called weblogic when the model project is existing in the application where the DB interaction occurred.

    Any idea because of this as possible of this problem

    -------------------------------Update 2---------------------------------

    I think that this update will give any idea of the question. After clouse look in the server log after deployment, I found this line.

    NewSchedulerApplication-ViewController-context-root has context-root specified in application.xml: "NewSchedulerApplication-ViewController-context-root". The context-root specified in weblogic.xml: "NewSchedulerApplication-ViewController-context-root" will be ignored

    where NewSchedulerApplication is the name of the application.

    Finally, the issue is resolved.

    The problem is resolved after you delete the following jar files in my view-controller project: Api .jar-Trinity and the Trinity - impl.jar

  • weblogic Server integrated into jdeveloper

    WLS starting with line:
    C:\oracle\MIDDLE~1\JDK160~1\bin\java-client-Xms256m-Xmx512m - XX : CompileThreshold = 8000 - XX : PermSize = 128m - XX : MaxPermSize = 512m-Dweblogic.Name=DefaultServer-Djava.security.policy=C:\oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic.policy-Djavax.net.ssl.trustStore=C:\oracle\Middleware\wlserver_10.3\server\lib\DemoTrust.jks-Dweblogic.nodemanager.ServiceEnabled=true - Xverify : aucun-da-Dplatform.home=C:\oracle\MIDDLE~1\WLSERV~1.3-Dwls.home=C:\oracle\MIDDLE~1\WLSERV~1.3\server-Dweblogic.home=C:\oracle\MIDDLE~1\WLSERV~1.3\server-Djps.app.credential.overwrite.allowed=true-Dcommon.components.home=C:\oracle\MIDDLE~1\ORACLE~1 - Djrf.version=11.1.1 - Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.Jdk14Logger-Ddomain.home=C:\JDEVEL~1\SYSTEM~1.23\DEFAUL~1-Djrockit.optfile=C:\oracle\ MIDDLE~1\ORACLE~1\modules\oracle.jrf_11.1.1\jrocket_optfile.txt-Doracle.server.config.dir=C:\JDEVEL~1\SYSTEM~1.23\DEFAUL~1\config\FMWCON~1\servers\DefaultServer-Doracle.domain.config.dir=C:\JDEVEL~1\SYSTEM~1.23\DEFAUL~1\config\FMWCON~1-Digf.arisidbeans.carmlloc=C:\JDEVEL~1\SYSTEM~1.23\DEFAUL~1\config\FMWCON~1\carml-Digf.arisidstack.home=C:\JDEVEL~1\SYSTEM~1.23\DEFAUL~1\config\FMWCON~1\arisidprovider-Doracle.security.jps.config=C:\JDEVEL~1\SYSTEM~1.23\DEFAUL~1\config\fmwconfig\ JPS-config.xml-Doracle.deployed.app.dir=C:\JDEVEL~1\SYSTEM~1.23\DEFAUL~1\servers\DefaultServer\tmp\_WL_user-Doracle.deployed.app.ext=\--Dweblogic.alternateTypesDirectory=C:\oracle\MIDDLE~ 1\ORACLE~1\modules\oracle.ossoiap_11.1.1,C:\oracle\MIDDLE~1\ORACLE~1\modules\oracle.oamprovider_11.1.1-Djava.protocol.handler.pkgs=oracle.mds.net.protocol-Dweblogic.jdbc.remoteEnabled=false-Dwsm.repository.path=C:\JDEVEL~1\SYSTEM~1.23\DEFAUL~1\oracle\store\gmds-Xmx1024m Xms512m-Dweblogic.management.discover=true-Dwlw.iterativeDev=-Dwlw.testConsole=-Dwlw.logErrorsToConsole=-Dweblogic.ext.dirs=C:\oracle\MIDDLE~1\patch_wls1034\profiles\default\sysext_manifest_classpath ; C:\oracle\MIDDLE~1\patch_jdev1111\profiles\default\sysext_manifest_classpath weblogic. Server
    java.lang.NoClassDefFoundError: Xmx1024m
    Caused by: java.lang.ClassNotFoundException: Xmx1024m
    in java.net.URLClassLoader$ 1.run(URLClassLoader.java:202)


    I am trying to install Integratedweblogicserver in jdeveloper. When I try to start the server, it gives me the error above. What I am doing wrong?

    It seems that you increase the jvm arguments of memory and young: the '-' before Xmx1024m...

    The correct would be - Xmx1024m-Xms512m.

    Kind regards

  • Integrated WebLogic does not request Jdeveloper

    Hi all

    I am a newbie in Oracle ADF and Jdeveloper. I use JDeveloper 11.1.1.5.0.

    I'm following a practice in Oracle 11 g manual. When I run the templateTest.jspx, it gives the following error from tonight. I don't know what goes wrong.

    The message is as below:

    [23:29:13] Application deployment...
    < 5 July 2011 23:29:14 PKT > < error > < hats > < BEA-149082 > < you cannot deploy the application 'tuhra2' without version. The application has been deployed previously versioned "V2.0." >
    < 5 July 2011 23:29:14 PKT > < WARNING > < hats > < BEA-149124 > < failures have been detected all introducing deploy task for application 'tuhra2 '. Error: ' [Deployer: 149082] you cannot deploy the application 'tuhra2' without version. The application has been deployed previously versioned "V2.0." ">
    # Failed executing tuhra2 request because of the deployment on IntegratedWebLogicServer error.
    [23: 29:14] # incomplete deployment. ####
    [23: 29:14] remote deployment failed (oracle.jdevimpl.deploy.common.Jsr88RemoteDeployer)
    [Tuhra2 application stopped and cancelled Server Instance IntegratedWebLogicServer]


    Any help will be much appreciated.
    Thank you
    Bilal

    Connect to the weblogic console: http://localhost:7101 / console
    Cancel the deployment of the application tuhra2 .

    Try to rerun the page now.

    Thank you
    Nini

  • Is not able to deploy to Weblogic Server @ remote machine

    Hello

    I'm not able to deploy any application using jdeveloper 11.1.1.4.0 to the weblogic 10.3.4 server located on a remote machine.
    When connecting to the server application through jdeveloper, out of 8 tests show that as success 2...

    While I am able to deploy the same application on Weblogic server through jdeveloper located on this machine.

    Through jdeveloper, application (authentication and configuration) server connection must be successful to deploy an application in a local machine or remote computer. Check remote configuration for the application server connection and test it.

    1 WLS server administrator must be running
    2 weblogic domain should be if you have a domain in WLS in the configuration.

  • How to create a Web services to an external service and deploy to weblogic

    Hello

    I am trying to create a Web service for the wsdl
    http://ABR.business.gov.au/abrxmlsearch/ABRXMLSearch.asmx?WSDL
    who will help me to validate the number of the NBA.

    And I would like to create a war file and deploy it to a weblogic server,
    But the server is running behind the firewall,
    I could run the webservice of jdeveloper, but when deploy us in weblogic server
    the Web service does not work,

    We need to give the parameter in the Web service itself or the proxy details must exist in the weblogic proxy server?

    Thank you.

    With respect,
    Kali.
    OSSI.

    Kali,

    IMO, it would be preferable to apply the proxy settings on a global scale.

    I can't see a specific proxy settings page on my weblogic instance. Perhaps, you must add the properties of the JAVA virtual machine directly in the weblogic startup script.

    Edit: For a server JVM Arguments can be configured in the WLS console-> choose the server and go to Configuration-> start server.

    Published by: BijeshKrishnadas on October 18, 2010 21:01

Maybe you are looking for

  • Address-home page/search bar will not save

    Hi people! I tried to change my homepage and my search from the address bar of the SmartPage, but whenever I restart Firefox, won't save the settings and I'm back to my old home page. I have tried several strategies: (1) I first tried to set the home

  • &lt; double &gt; call recording does not work after 5.0.2

    Since I've updated my 2nd generation of bike g lolipop 5.0.2 I can't record my calls, the app only record my voice, but does not record the voice of the one person talk to. have you tried the other app, please can someone recommend a call recorder th

  • analog frequency scan problem

    I tried to run the example page: http://zone.ni.com/devzone/cda/epd/p/id/16 with NI 9263. However, production stopped at 1.2 KHz (I has not changed the settings in VI).  I need to go up to 30 ~ 50 KHz, is there a way to fix this? Thank you

  • Download problem with windows live essentials

    whenever I try to download windows live essentials, he is unable to finish it... indicates another program may be blocking it.  I try to get from Director of windows on my computer... help!

  • Problem syncing blackBerry Smartphone Outlook

    After working perfectly last week, my curve fails to sync with Outlook Calendar - I get a notice of 'Unknown error' and close Blackberry Desktop Manager. A software change, it's that I have newly installed Outlook Small Business Contact Manager. Can