How to Deploy application in CE 7.1 Nwds

Dear Friends i managed to install CE7.1 recently,
now i selected a webdynpro perspective and created a simple application
configured the portal appilcation server with nwds using
Window > Preferences > SAP AS Java (gave server name and last digit of the port, in my case it is 3905 so i entered 5 in Host)
just created a simple label"Hello World" my aim is to just deploy this apllication to the portal server just like any other simple application i was doing in nwds 7.0.9
Now when i want to deploy this application i am not able to find
1. Under Show View i am not able to find J2EE Engine just like previous old versions.
2. In the Deploy View Console i can see the following things .
Start Deployement
Checking for SDM Host.
Found SDM Host: srepldev
Created Temprory copy:nwds71prj.ear................. nothing happens after this...
the error occuring here is
"Your system has no program registered for file
http://srepldev:-1/webdynpro/dispatcher/sap.com/tcwdtools~admin/Explorer.
Change the file association or choose a different help web browser in the preferences"
srepldev is my dev. server and HOST what i gave was 5.
Any Hints? points assured.
Edited by: Jack on Aug 30, 2008 11:33 AM
Edited by: Jack on Sep 2, 2008 10:17 AM

Still i am facing this issue:
the deployment error of the NWDS is as follows
Deployment finished with warning
Settings
SDM host : epldev.house.com
SDM port : 50418
URL to deploy : file:/C:/DOCUME1/jsoeh/LOCALS1/Temp/temp34353company.com~helloworld.ear
Result
=> deployment not executed : file:/C:/DOCUME1/jsoeh/LOCALS1/Temp/temp34353company.com~helloworld.ear
Unresolved dependencies found for the following SDAs:1.: development component 'helloworld'/'company.com'/'localDevelopment'/'20091201131334'/'0'dependency: name: 'tc/aii/base/offline/facade' vendor: 'sap.com'
There is no component either in SDM repository or in Deployment batch that resolves the dependency.dependency: name: 'tc/bl/logging/api' vendor: 'sap.com'
There is no component either in SDM repository or in Deployment batch that resolves the dependency.dependency: name: 'tc/bl/exception/lib' vendor: 'sap.com'
There is no component either in SDM repository or in Deployment batch that resolves the dependency.dependency: name: 'tc/wd/api' vendor: 'sap.com'
There is no component either in SDM repository or in Deployment batch that resolves the dependency.dependency: name: 'tc/bl/jrfc/api' vendor: 'sap.com'
There is no component either in SDM repository or in Deployment batch that resolves the dependency.dependency: name: 'tc/ddic/runtime/facade' vendor: 'sap.com'
There is no component either in SDM repository or in Deployment batch that resolves the dependency.Deployment will be aborted.
Deployment exception : Got problems during deployment [WARNING: Dec 1, 2009 1:20:18 PM /userOut/daView_category (eclipse.UserOutLocation) [ThreadDeploy Thread,5,main]]
Can anyone help please i am looking for this answer from a very very long time??

Similar Messages

  • [Forum FAQ] How to deploy applications remotely

    In some situations, we may need some ways to install applications remotely, here we summarize four general ways to deploy applications.
    1. Using PowerShell to install
    We can use the Win32_Product class to install Windows Installer packages, remotely or locally, so in this way, we can use powerShell command to invoke this function. For example, to install the NewPackage.msi package located in the network
    share \\AppServ\remote on the remote computer PC01, type the following command at the Windows PowerShell prompt:
    (Get-WMIObject -ComputerName PC01 -List | Where-Object -FilterScript {$_.Name -eq "Win32_Product"}).Install(\\AppSrv\remote\NewPackage.msi)
    In same method, we can use the following command to deploy .exe application:
    (Get-WMIObject -ComputerName PC01 -List | Where-Object -FilterScript {$_.Name -eq "Win32_Process"}).Create(\\AppSrv\remote\NewPackage.exe)
    Note: The applications should use Windows Installer technology.
    2. PsExec tool: one of sysinternals utilities
    PsExec's most powerful uses include launching interactive command-prompts on remote systems and remote-enabling tools like IpConfig that otherwise do not have the ability to show information about remote systems. So, we can use this feature to install our
    applications, in fact this is similar with PowerShell methods, the only difference is that PsExec is a comprehensive tool. Similarly, we can use the following command to achieve our goal:
    psexec \\PC01  cmd /c  "\\AppSrv\remote\NewPackage.msi" /quiet /norestart
    Note: we can also use PsExec tool to install Microsoft Update file (.msu)
    psexec \\PC01  -s -h -d wusa.exe  "\\AppSrv\remote\NewPackage.msu" /quiet /norestart
    3. Group Policy Software Installation
    In domain environment, this method is very useful to deploy our software. It only supports MSI package for deployment.
    We can choose assign a program to user or computer. If you assign the program to a user, it is installed when the user logs on to the computer. When the user first runs the program, the installation is completed. If you assign the program to a computer,
    it is installed when the computer starts, and it is available to all users who log on to the computer. When a user first runs the program, the installation is completed.
    You can get the installation information of group policy software installation in event viewer, including success or failure.
    4. System Center Configuration Manger
    The Microsoft System Center Configuration Manager software distribution feature provides a set of tools and resources that help you create and manage packages and advertisements used to distribute software to client resources within your enterprise. This
    is a comprehensive suit for deployment.
    How to Deploy Applications in Configuration Manager
    http://technet.microsoft.com/en-us/library/gg682082.aspx
    Summary:
    There are a lot of methods for software deployment, here just introduce some generic ways.
    Here is another important point of software deployment: Some applications do not use windows installer technology. 
    Applications that do not use Windows Installer technology may have application-specific methods for automated deployment. For example, a .exe file may be just a wrapper, it can be anything. To determine whether there is a method for deployment automation,
    check the documentation for the application or consult the application vendor's support system. In some cases, even if the application vendor did not specifically design the application for installation automation, the installer software manufacturer may have
    some techniques for automation.
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    In some situations, we may need some ways to install applications remotely, here we summarize four general ways to deploy applications.
    1. Using PowerShell to install
    We can use the Win32_Product class to install Windows Installer packages, remotely or locally, so in this way, we can use powerShell command to invoke this function. For example, to install the NewPackage.msi package located in the network
    share \\AppServ\remote on the remote computer PC01, type the following command at the Windows PowerShell prompt:
    (Get-WMIObject -ComputerName PC01 -List | Where-Object -FilterScript {$_.Name -eq "Win32_Product"}).Install(\\AppSrv\remote\NewPackage.msi)
    In same method, we can use the following command to deploy .exe application:
    (Get-WMIObject -ComputerName PC01 -List | Where-Object -FilterScript {$_.Name -eq "Win32_Process"}).Create(\\AppSrv\remote\NewPackage.exe)
    Note: The applications should use Windows Installer technology.
    2. PsExec tool: one of sysinternals utilities
    PsExec's most powerful uses include launching interactive command-prompts on remote systems and remote-enabling tools like IpConfig that otherwise do not have the ability to show information about remote systems. So, we can use this feature to install our
    applications, in fact this is similar with PowerShell methods, the only difference is that PsExec is a comprehensive tool. Similarly, we can use the following command to achieve our goal:
    psexec \\PC01  cmd /c  "\\AppSrv\remote\NewPackage.msi" /quiet /norestart
    Note: we can also use PsExec tool to install Microsoft Update file (.msu)
    psexec \\PC01  -s -h -d wusa.exe  "\\AppSrv\remote\NewPackage.msu" /quiet /norestart
    3. Group Policy Software Installation
    In domain environment, this method is very useful to deploy our software. It only supports MSI package for deployment.
    We can choose assign a program to user or computer. If you assign the program to a user, it is installed when the user logs on to the computer. When the user first runs the program, the installation is completed. If you assign the program to a computer,
    it is installed when the computer starts, and it is available to all users who log on to the computer. When a user first runs the program, the installation is completed.
    You can get the installation information of group policy software installation in event viewer, including success or failure.
    4. System Center Configuration Manger
    The Microsoft System Center Configuration Manager software distribution feature provides a set of tools and resources that help you create and manage packages and advertisements used to distribute software to client resources within your enterprise. This
    is a comprehensive suit for deployment.
    How to Deploy Applications in Configuration Manager
    http://technet.microsoft.com/en-us/library/gg682082.aspx
    Summary:
    There are a lot of methods for software deployment, here just introduce some generic ways.
    Here is another important point of software deployment: Some applications do not use windows installer technology. 
    Applications that do not use Windows Installer technology may have application-specific methods for automated deployment. For example, a .exe file may be just a wrapper, it can be anything. To determine whether there is a method for deployment automation,
    check the documentation for the application or consult the application vendor's support system. In some cases, even if the application vendor did not specifically design the application for installation automation, the installer software manufacturer may have
    some techniques for automation.
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

  • ADF Mobile Client: How to deploy application data to blackberry simulator

    Hiiiii
    If anybody knows how to deploy application data to blackberry simulator then let me know.
    I have developed one small application then i have published data and deployed appliction but when i run it on simulator it gives me following exception
    Exception in Application.InitializePackages : oracle.adfnmc.AdfNmcException
    [oracle.adfnmc.bindings.dbf.InitializeBindingContextVisitor.visit(BC4JDataControl)]null
    One more question when we publish the data that time only it is copyed to MOBILEADMIN (Oracle Mobile Server Repository) schema or we need to do it manually.
    Thanks in advance.

    Try searching following file
    BB_ADFNMC_Bindings
    and all files with BB_ADFNMC_*
    these are approx 10 files , copy all of them into simulator folder inside RESERCH IN MOTION folder
    or load these through simultor->File->Load Blackberry Application .
    I hope it should help :)

  • How to deploy application created in SAP MI 7.1 on Mobile Device.

    Hi Friends,
    I have developed a m employee application in SAP MI 7.1 through Netweaver Developer Studio running succesfully on mobile simulater.
    I have also successfuly Installed SAP MI Client 7.1 on my mobile device.
    Now I am struggling with how to deploy my application on mobile device.
    Is there any way that I can simply copy the working project files from developer studio and paste them in Mobile Device to make the application work on mobile device as well.
    or is there any other method to do this .
    Please Suggest.
    Regards
    Nitesh.

    <pre>
    Hi Amit
    Firstly I created the
    1. Employee_sc Service in the Service Explorer
    2. Employee_UI in the handheld UI explorer.<
    3. Emplyee_app in the 'Applicaton Explorer' where I included both the service and the UI together.
    Then I deployed all three in the default Mi location and tested in the simulater . It works fine in simulater.
    In the First View of my application I am not displaying any data from the DOE.
    In the first View I just have the butons to create, search and delete employee details.
    In my whole application I am not using any data objects from the backend. The dataobjects are creted in the frontend (NWDS) only.
    Now Instead of AWT I Installed JSP Container. It is now Showing The employee application.
    But as soon as I click the application it gives the execption.
    Error: 500
    Location: /me/startInternal Servlet Error:<br>
    java.lang.NullPointerException at com.sap.tc.mobile.wdlite.framework.Start.isResponsible() at <br>com.sap.tc.mobile.wdlite.framework.Start.isResponsible() at <br>com.sap.tc.mobile.cfs.framework.spi.FrameworkManager.findFramework() at <br>com.sap.tc.mobile.cfs.framework.spi.FrameworkManager.startApplication() at <br>com.sap.tc.mobile.cfs.jspui.MainServlet.LaunchApplication() at com.sap.tc.mobile.cfs.jspui.MainServlet.doHandleEvent() at <br>com.sap.ip.me.api.runtime.jsp.AbstractMEHttpServlet.doGetThreadSafe() at <br>com.sap.ip.me.api.runtime.jsp.AbstractMEHttpServlet.doGet() at com.sap.tc.mobile.cfs.jspui.MainServlet.doGet() at <br>com.sap.ip.me.api.runtime.jsp.AbstractMEHttpServlet.doPost() at com.sap.tc.mobile.cfs.jspui.MainServlet.doPost() at <br>com.sap.ip.me.api.runtime.jsp.AbstractMEHttpServlet.service() at javax.servlet.http.HttpServlet.service() at <br>org.apache.tomcat.core.ServletWrapper.doService() at org.apache.tomcat.core.Handler.service() at <br>org.apache.tomcat.core.ServletWrapper.service() at org.apache.tomcat.core.ContextManager.internalService() at <br>org.apache.tomcat.core.ContextManager.service() at <br>org.apache.tomcat.service.http.HttpConnectionHandler.processConnection() at <br>org.apache.tomcat.service.TcpWorkerThread.runIt() at org.apache.tomcat.util.ThreadPool$ControlRunnable.run() at <br>java.lang.Thread.run()
    <br>The contents of Jscout File are :-
    NSIcom Ltd., CrEme(tm)
    CrE-ME J2ME(tm)
    CrE-ME V4.12h B162.221008 22-Oct-2008
      MemoryLimit=64000Kb
    EBCI(TM) Interpreter V1.00,
    Copyright 1998-2002 by Bytecodes, Inc.
    java.io.IOException: SysCall : bind() failed
         at java.net.PlainSocketImpl.bind()
         at java.net.ServerSocket.<init>()
         at com.sap.tc.mobile.cfs.console.MgmtConsole.initialize()
         at com.sap.tc.mobile.cfs.init.FrameworkInitializer.startManagementConsole()
         at com.sap.tc.mobile.cfs.init.FrameworkInitializer.init()
         at com.sap.tc.mobile.cfs.startup.pda.Startup.main()
    java.lang.IllegalArgumentException: SysCall : bind() failed
         at com.sap.tc.mobile.cfs.console.MgmtConsole.initialize()
         at com.sap.tc.mobile.cfs.init.FrameworkInitializer.startManagementConsole()
         at com.sap.tc.mobile.cfs.init.FrameworkInitializer.init()
         at com.sap.tc.mobile.cfs.startup.pda.Startup.main()
    Error starting the framework
    java.lang.reflect.InvocationTargetException: java.lang.IllegalStateException: Cannot initialize framework
         at com.sap.tc.mobile.cfs.init.FrameworkInitializer.init()
         at com.sap.tc.mobile.cfs.startup.pda.Startup.main()
    CrEme jsPexit() called with status=1
    Please Suggest.
    Regards,
    Nitesh
    </pre>
    Edited by: Nitesh Harit on Nov 24, 2009 1:30 PM

  • How to Deploying Application Which consists .jpr project file in JDeveloper

    Hi,
    I Successfully compiled my application in JDeveloper 11g, My Project consists of .jpr file which loads all the source files. I added this .jpr file to New Application by creating a .jws in JDeveloper.
    When I run my application, I am getting the Deployment Error, How to deploy a project which consists of .jpr as project file in JDeveloper 11g.
    The Same was running in Oracle JDeveloper 10.3.3 version perfectly there the Server was OC4J but Here the Server is WebLogic.
    can anyone help me out in solving this,
    Thanks
    Srinivas Reddy P.
    Edited by: user10952409 on Mar 31, 2009 7:17 AM

    If the exampleClass1 does have a public method which is called from the main method, when you run it from the command line
    should work like this
    // sample class
    public class ExampleClass1
        // C'tor
        public ExampleClass1 ()
        public void testmethodWith3Params(String aS1, String aS2, String aS3)
            // do the work here
        public static void main(String[] args)
            String p1;
            String p3;
            String p3;
            ExampleClass1 xyz = new ExampleClass1();
            // read the params into p1,p2 and p3
            // omited the code
           // call the worker method
           xyz.testmethodWith3Params(p1,p2,p3);
    // now instead to call the main method you call the workter methos from your web app like
    ExampleClass1 aaa = new ExampleClass1 ();
    aaa.testmethodWith3Params(param1, param2,param3);
    ...If you don't have a method (or don't know it) you can call it via the main method like
    String [] param= {p1,p2,p3};
    ExampleClass1.main(param);Timo

  • How to deploy Application in JDeveloper?

    hai
    i am using JDeveloper 10g version 10.1.3. i am working on Web Application[JSF,ADF BC].i create 2 JSPpages link with one another and do some operations on it. how can i deploy this application in another system.(for example the another person in another system is able to see my application)
    how to do this
    thanks in advance
    C.R

    You mean another network? If you are on the same network you can just use the URL of the embedded OC4J or App. Server.
    Ronald

  • How to deploy application as a single unit

    Hi
    I have an application in jdeveloper that contains several bpel projects , some esb projects and some pure java based web service projects. Now i want a mechanism to deploy this whole application as a single unit on a production environment server. I know obant tool but problem is that it can deploy a single project and not a whole application. Any pointers on that how i can achieve this task?
    Thanks.

    Thanks ashish, with your help i am able to deploy several bpel projects at one go.
    But i am facing problem with auto esb deployments using ant build. As suggested by you i downloaded documentation.zip and executed steps given in it.
    When i run ant , it shows build successful but when i goto esb console nothing comes up(ie esb projects is not getting deployed).
    Here is my ESBMetadataMigrationTaskdefs.xml::
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - The import of this ant build file, by another ant build file, enables the
    - use of the custom ant tasks present in ESBMetadataMigration.jar
    - Doug Gschwind
    - 12 Dec 2006
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
    <project name="ESBMetadataMigrationTaskdefs">
    <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - PROPERTIES, Subject to the installation environment
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
    <property name="commons.httpclient.home" value="C:/ForEsbAutoDeploy/commons-httpclient-3.1"/>
    <property name="jaxb.v2.0.2.home" value="C:/ForEsbAutoDeploy/jaxb-ri-20060801"/>
    <property name="soa.suite.home" value="C:/product/10.1.3.1/BSNLEAIAS"/>
    <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - Custom ant task definitions, to enable import.
    - This section should be treated as immutable upon installation.
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
    <dirname property="imported.basedir" file="${ant.file.ESBMetadataMigrationTaskdefs}"/>
    <echo>
    imported basedir is:: ${imported.basedir}
    </echo>
    <taskdef resource="oracle/tip/esb/client/anttasks/antlib.xml">
    <classpath>
    <pathelement location="${imported.basedir}/ESBMetadataMigration.jar"/>
    <pathelement location="${commons.httpclient.home}/commons-httpclient-3.1.jar"/>
    <pathelement location="${soa.suite.home}/lib/xmlparserv2.jar"/>
    <pathelement location="${soa.suite.home}/integration/esb/lib/commons-logging.jar"/>
    <pathelement location="${soa.suite.home}/integration/esb/lib/commons-codec-1.3.jar"/>
    <pathelement location="${soa.suite.home}/integration/esb/lib/oraesb.jar"/>
    <pathelement location="${jaxb.v2.0.2.home}/lib/activation.jar"/>
    <pathelement location="${jaxb.v2.0.2.home}/lib/jaxb-api.jar"/>
    <pathelement location="${jaxb.v2.0.2.home}/lib/jsr173_1.0_api.jar"/>
    <pathelement location="${jaxb.v2.0.2.home}/lib/jaxb-impl.jar"/>
    </classpath>
    </taskdef>
    </project>
    =======================================================
    Here is my build.xml::
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    <project name="ESBMetadataDeploymentTestProject" default="usage">
    <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - PROPERTIES
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
    <!--
    <property name="esbProjectToDeploy" value="C:\Oracle\product\JDeveloper\v10.1.3.1\jdev\mywork\ESBSamples\DGTest"/>
    <property name="deploymentPlanFilename" value="C:\Oracle\product\JDeveloper\v10.1.3.1\jdev\mywork\ESBSamples\DGTest\testDeploymentPlan.xml"/>
    -->
    <echo>Import ESBMetadataMigrationTaskdefs</echo>
    <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - Import, to enable the custom ESB Metadata Deployment ant tasks ...
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
    <import file="C:/ForEsbAutoDeploy/ESBMetadataMigrationTaskdefs.xml"/>
    <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - TEST Deployment Automation
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
    <target name="test.DeployESBProjects">
         <deployESBProjects esbMetadataServerHostname="localhost"
              esbMetadataServerPort="8888"
    userName="oc4jadmin"
    password="welcome1">
         <esbProject directory="C:/jdevstudio10133/jdev/mywork/AppAutoAnt/ESBProject1"/>
         </deployESBProjects>
    </target>
    <!--
    <target name="test.UndeployESBEntities">
         <undeployESBEntities esbMetadataServerHostname="localhost"
              esbMetadataServerPort="8889"
    userName="oc4jadmin"
    password="oc4jadmin">
         <system guid="8D61C3F0871111DB8F2675C60E6C31C6"/>
         <serviceGroup guid="0EB5F380896111DBBFBC9530C01627AC"/>
         <service guid="0547F370841611DBBFCF2D9BF80323FA"/>
         <service guid="05458270841611DBBFCF2D9BF80323FA"/>
         <system guid="86443990871611DB8F2675C60E6C31C6"/>
         <serviceGroup guid="B90E6B70895F11DBAF1483EEF470B835"/>
         <system guid="A62C91C1841511DBBFCF2D9BF80323FA"/>
         <system guid="D9F290E1896011DBBFBC9530C01627AC"/>
         <system guid="A9B213C1895F11DBAF1483EEF470B835"/>
         </undeployESBEntities>
    </target>
    -->
    <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - TEST Metadata Promotion to different ESB Metadata Servers (environments).
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
    <!--
    <target name="test.ExtractESBDeploymentPlan">
    <extractESBDeploymentPlan sourceDir="${esbProjectToDeploy}" deploymentPlanFile="${deploymentPlanFilename}"/>
    </target>
    <target name="test.DeployESBSuitcase">
         <deployESBSuitcase esbMetadataServerHostname="localhost"
    esbMetadataServerPort="8889" sourceDirectory="${esbProjectToDeploy}"
    deploymentPlanFilename="${deploymentPlanFilename}"
    forcedDeployment="false"/>
    </target>
    -->
    <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - USAGE
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
    <target name="usage">
         <exec executable="ant" dir="${basedir}" vmlauncher="false">
         <arg value="-projecthelp"/>
         </exec>
    </target>
    </project>
    I guess i dont need those UndeployESBEntities target and ExtractESBDeploymentPlan target , so i have commented it. Also all the jars mentioned are correct(with versions >= mentioned in the document.).
    Thanks.
    Message was edited by:
    sameer h

  • How To Deploy Application In Oracle Application Server

    Hi All,
    We have devloped an application in whic we have used tomcat server .
    Now we want to deploy that application in Oracle application server.
    technolgy used: J2ee
    : Shark work flowserver
    database:Oracle(XE)
    Platform: windows XP
    IDE:Eclipse (ganymede)
    Web server:tomcat(6.0)
    Thnaks and regards,
    DK.

    I think you put the questionin the wrong forum, this is all about Oracle SOA Technology, and deployment is a task within SOA.
    I have created a deployment guide/tool for Oracle SOA products (see my blog, includes java deployment).
    Put your question in :
    Oracle Application Server - General (AS General Forum)
    Marc
    http://orasoa.blogspot.com

  • How to deploy application to 9ias or 10g as

    I tried to deploy an application (EJB,strut,jsp) to oracle 9ias or 10g AS have when following error, but i can run on embed OC4J. anyone would you help me.
    500 Internal Server Error
    java.lang.NoSuchMethodError: oracle.jbo.uicli.mom.JUMetaObjectManager.loadCpx(Ljava/lang/String;Ljava/util/Map;)V     at oracle.adf.model.servlet.ADFBindingFilter.initializeBindingContext(ADFBindingFilter.java:328)     at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:173)     at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:604)     at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:317)     at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790)     at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.AJPRequestHandler.run(AJPRequestHandler.java:208)     at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.AJPRequestHandler.run(AJPRequestHandler.java:125)     at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)     at java.lang.Thread.run(Thread.java:534)

    Hi,
    if using Oracle Jdeveloper 10g (9.0.5), did you install teh ADF runtime libraries ? Go tools --> Runtime Installer and deploy teh required libraries to Oracle Application Server.
    Frank

  • How to Deploy UIX pages in AS

    Well iam working on an application made i ADF UIX. The JDeveloper version used is 10.1.2 and I want to deploy this application in Oracle 10G 10.1.2.
    Could some one tell me how do i go about it?

    Dear Sir...
    1- in the application navigator right click the view-controller project
    2- select New
    3- select Deployment profile then select WAR file
    4- click OK and select a name for the WAR file and click ok
    5- a window appears asking for settings of the WAR file.
    6- click on the Specify J2EE web context. and enter a name like /abc. select OK
    7- The deployment WAR file appear, select it and select create EAR file.
    what you have done so far is that you defined a packaging file that will contains all of your web pages and call the code. you also specifies how the context path of the application would be. i.e. you access you web application using the link http://servername/context-root/page1.do and in our case it would be http://servername/abc/page1.do.
    Now copy this EAR file and take it to the application server in order to install it there.
    1- The first step is to create an OC4J. The OC4J is a java virtual machine or a server that your application will be executed inside it. So create a new OC4J and give it a name.
    2- Open this OC4J and select the applications Tab. Here you should install your application.
    3- Select deploy EAR file.
    4- Give the path of your EAR file, and select a name for the application and finish the deployment operation.
    5- Now open the first tab of the OC4J and select start to start the java virtual machine and let your application start.
    6- Now you should be able to access your application using the link : http://servername/context-root/page1.do. In this example the link will be http://SV/abc/dataPage1.do where SV is the server name, abc is the context-root you specified already and dataPage1 is the name of the uix page you want to access.
    you might need some other settings such as specifying the data sources and the connection to the database. For any other details try to read about how to deploy applications to the application server in the otn.
    best regards

  • How to deploy Photoshop/Premiere Elements 13 with SCCM 2012 r2?

    Hi there
    I want to create a .msi package of Photoshop/Premiere Elements 13 for SCCM 2012 r2. Can me anyone give a tutorial or a tip?
    thx

    If you want to deploy lync by SCCM, you may utilize config.xml to do that. All the things you want to configure, you may find it can be achieved in config.xml
     Run the install by using the following command line:
    <path>\setup.exe /config <path>\config.xml
    http://technet.microsoft.com/en-us/library/jj204651.aspx
    How to deploy application by SCCM.
    http://technet.microsoft.com/en-us/library/gg682082.aspx
    Juke Chou
    TechNet Community Support

  • Hi team, please help me how to deploy creative cloud desktop application through SCCM for an enterprise

    Hi team, please help me how to deploy creative cloud desktop application through SCCM for an enterprise

    Moving this discussion to the Enterprise Deployment for Creative Cloud, Creative Suite forum.

  • How to deploy a secured ADF 11g application to WebLogic 10.3 server?

    Hi,
    I have just enabled security in our ADF 11g application, as descripbed in [chapter 29|http://download.oracle.com/docs/cd/E12839_01/web.1111/b31974/adding_security.htm#insertedID0] of the Fusion Developer's Guide. It works fine in the embedded WebLogic server of JDeveloper.
    Now I'm trying to deploy to our WebLogic 10.3 server, which runs in production mode. I'm running into all sorts of problems. The WebLogic console seems to have hundreds of security related pages, I don't know which one I should use, let alone how to use it. The Fusion Developer's Guide doesn't cover deployment to a production server:
    >
    When the target server is configured for production mode, you typically handle the migration task outside of JDeveloper using tools like Oracle Enterprise Manager. For details about using tools outside of JDeveloper to migrate the policy store to the domain-level in a production environment, see the [Oracle Fusion Middleware Security Guide|http://download.oracle.com/docs/cd/E12839_01/core.1111/e10043/toc.htm].
    >
    However, this guide is of very little help to me. I found [chapter 7|http://download.oracle.com/docs/cd/E12839_01/core.1111/e10043/addlsecfea.htm#insertedID0], which says "The recommended tool is Fusion Middleware Control." I have no idea what "Fusion Middleware Control" is, where to get it and how to use it.
    Long story short: I'm totally lost. I'm looking for a step by step guide on how to deploy a secured ADF 11g application to a WegLogic 10.3 server that is running in production mode. Any help is highly appreciated.

    Ok, I found a [very helpful blog post |http://andrejusb.blogspot.com/2009/01/practical-adf-security-deployment-on.html] by [Andrejus Baranovski|http://www.blogger.com/profile/04468230464412457426]. I wish Oracle's documentation was as clear as this...
    The blog post refers to an article by Steve Muench, called [Simplified ADF 11g Application Credential and Policy Migration to Standalone WebLogic Servers|http://www.oracle.com/technology/products/jdev/tips/muench/credmig111100/index.html]. This article presents an Ant script that migrates policies from JDeveloper to WebLogic, using some PFM. (See the last definition here.)
    The problem is that Steve Muench's script assumes that JDeveloper and the standalone WebLogic are on the same machine. However, in a typical environment, such as the one I'm working in currently, this is not the case. In our case the developer stations are Windows machines, while our WebLogic server runs on a HP-UX machine. So the question is: how to perform this migration between two machines with different operating systems?
    Regards,
    Bart Kummel

  • How to deploy Servlet Application in Weblogic 8.1

    Hi,
    I am new to BEA Weblogic 8.1 .
    I was trying to create a sample application using InelliJ IDea 5.1 , and IntelliJIdea 10.5 . i configured weblogic with IDE , but now i do not know how to deploy my application in weblogic .
    I am new in IntelliJ also .
    So Can anyone tell me how can i deploy a servlet application in any IDE like i also have eclipse indigo.
    Thanks & Regards
    Komi

    Hi Komi
    Basically you deploy your Servlet as a WAR File. I am not familiar with IntellJ IDE. But it should have a provision to export/create a WAR file that has your Servlet. Also I hope you already have web.xml file with 2 sections like this: First you mention full package of your servlet and give it a name. Then enter a mapping url. You will use this url to run your servlet like http://weblogichost:weblogicport/yourWebappcontextroot/myservlet
    <servlet>
         <servlet-name>MyServlet</servlet-name>
         <servlet-class>com.abd.def.MyServlet</servlet-class>
    </servlet>
    <servlet-mapping>
         <servlet-name>MyServlet</servlet-name>
         <url-pattern>/myservlet</url-pattern>
    </servlet-mapping>
    Coming to deployment, I hope 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.
    Refer the online docs for more details on Deployments in Weblogic.
    http://docs.oracle.com/cd/E13196_01/platform/docs81/deploy/deploy.html
    Thanks
    Ravi Jegga

  • How to deploy hibernate application in Oracle Content Management  SDK?

    Hi All,
    I have a hibernate application which is perfectly working in Tomcat Server. I need to deploy the application under an OC4J Instance of Oracle Content Management SDK.
    I have deployed the application under one OC4J Instance, but when I submitting the login page of the application, some errors are coming. The error is given below.
    06/03/16 16:16:43 Started
    06/03/16 16:17:04 vidushiapp: jsp: init
    06/03/16 16:17:04 vidushiapp: LOGGING: init
    06/03/16 16:17:04 vidushiapp: LOGGING: [WebStarterAppServlet 1] init() called.
    06/03/16 16:17:04 vidushiapp: Started
    06/03/16 16:17:06 vidushiapp: NodeGuardian:
    06/03/16 16:17:06 vidushiapp: NodeGuardian: Oracle Content Management SDK
    06/03/16 16:17:06 vidushiapp: NodeGuardian: Node Guardian 9.0.4.2.2
    06/03/16 16:17:06 vidushiapp: NodeGuardian: Copyright (c) 2000, 2004 Oracle. All rights reserved.
    06/03/16 16:17:06 vidushiapp: NodeGuardian:
    06/03/16 16:17:06 vidushiapp: NodeGuardian: Domain = ifs://ritesh:1521:CMSDK.daffodildb.com:CM_SCHEMA
    06/03/16 16:17:06 vidushiapp: NodeGuardian: Node = Sample2HttpNode
    06/03/16 16:17:06 vidushiapp: NodeGuardian: ProcessId = 1456
    06/03/16 16:17:06 vidushiapp: NodeGuardian: Guarded = false
    06/03/16 16:17:06 vidushiapp: NodeGuardian: JavaCommand = java
    06/03/16 16:17:06 vidushiapp: NodeGuardian: LogLevel = 4
    06/03/16 16:17:06 vidushiapp: NodeGuardian: RemoterLogLevel = 2
    06/03/16 16:17:06 vidushiapp: NodeGuardian: LogRotationPeriod = 0
    06/03/16 16:17:06 vidushiapp: NodeGuardian:
    06/03/16 16:17:06 vidushiapp: NodeGuardian: Creating E:/OraHome/ifs/cmsdk\log\ritesh_1521_CMSDK_daffodildb_com_CM_SCHEMA\Sample2HttpNode_HTTPNodeGuardian.pid file
    06/03/16 16:17:06 vidushiapp: NodeGuardian: RemoterType = SocketRemoter
    06/03/16 16:17:06 vidushiapp: NodeGuardian: GuardianLocator = ifs_socket://admin:53153
    06/03/16 16:17:06 vidushiapp: SocketRemoter: Listening on 192.168.0.241:53153
    06/03/16 16:17:06 vidushiapp: SocketRemoter: Initialized
    06/03/16 16:17:06 vidushiapp: NodeGuardian: Ready
    06/03/16 16:17:13 vidushiapp: NodeGuardian: Unguarded node manager started as Sample2HttpNode
    06/03/16 16:17:13 vidushiapp: NodeManager:
    06/03/16 16:17:13 vidushiapp: NodeManager: Oracle Content Management SDK
    06/03/16 16:17:13 vidushiapp: NodeManager: Node Manager 9.0.4.2.2
    06/03/16 16:17:13 vidushiapp: NodeManager: Copyright (c) 2000, 2004 Oracle. All rights reserved.
    06/03/16 16:17:13 vidushiapp: NodeManager:
    06/03/16 16:17:13 vidushiapp: NodeManager: Domain = ifs://ritesh:1521:CMSDK.daffodildb.com:CM_SCHEMA
    06/03/16 16:17:13 vidushiapp: NodeManager: Node = Sample2HttpNode
    06/03/16 16:17:13 vidushiapp: NodeManager: ProcessId = 1456
    06/03/16 16:17:13 vidushiapp: NodeManager: DomainController Locator = ifs_socket://admin:53140
    06/03/16 16:17:13 vidushiapp: NodeManager: Oracle Home = E:/OraHome
    06/03/16 16:17:13 vidushiapp: NodeManager: CM SDK Home = E:/OraHome/ifs/cmsdk
    06/03/16 16:17:13 vidushiapp: NodeManager: LogLevel = 4
    06/03/16 16:17:13 vidushiapp: NodeManager: RemoterLogLevel = 2
    06/03/16 16:17:13 vidushiapp: NodeManager:
    06/03/16 16:17:13 vidushiapp: NodeManager: RemoterType = SocketRemoter
    06/03/16 16:17:13 vidushiapp: NodeManager: ManagerLocator = ifs_socket://admin:53154
    06/03/16 16:17:13 vidushiapp: SocketRemoter: Listening on 192.168.0.241:53154
    06/03/16 16:17:13 vidushiapp: SocketRemoter: Initialized
    06/03/16 16:17:14 vidushiapp: NodeGuardian: Log level set to 4
    06/03/16 16:17:14 vidushiapp: NodeManager: Log level set to 4
    06/03/16 16:17:14 vidushiapp: NodeGuardian: Remoter log level set to 2
    06/03/16 16:17:14 vidushiapp: NodeManager: Remoter log level set to 2
    06/03/16 16:17:14 vidushiapp: NodeGuardian: Node manager registered
    06/03/16 16:17:14 vidushiapp: NodeManager: Ready
    06/03/16 16:17:14 vidushiapp: NodeManager: Initialize: determining default services and servers
    06/03/16 16:17:14 vidushiapp: NodeManager: Initialize: starting service IfsDefaultService
    06/03/16 16:17:53 vidushiapp: NodeManager: Service IfsDefaultService started
    06/03/16 16:17:53 vidushiapp: NodeManager: Initialize: loading server WebStarterAppServer
    06/03/16 16:17:54 vidushiapp: NodeManager: Server WebStarterAppServer loaded
    06/03/16 16:17:54 vidushiapp: NodeManager: Initialize: setting priority of server WebStarterAppServer to 5
    06/03/16 16:17:54 vidushiapp: WebStarterAppServer: Priority change requested (old priority 5, new priority 5)
    06/03/16 16:17:54 vidushiapp: NodeManager: Initialize: starting server WebStarterAppServer
    06/03/16 16:17:54 vidushiapp: WebStarterAppServer: Requested to start
    06/03/16 16:17:54 vidushiapp: NodeManager: Initialize: loading server DavServer
    06/03/16 16:17:54 vidushiapp: WebStarterAppServer: Starting
    06/03/16 16:17:55 vidushiapp: WebStarterAppServer: WebStarterAppServer registered under WebStarterAppServer
    06/03/16 16:17:55 vidushiapp: WebStarterAppServer: Started
    06/03/16 16:17:55 vidushiapp: WebStarterAppServer: WebStarterAppServer: run called
    06/03/16 16:18:13 vidushiapp: NodeManager: Server DavServer loaded
    06/03/16 16:18:13 vidushiapp: NodeManager: Initialize: setting priority of server DavServer to 5
    06/03/16 16:18:13 vidushiapp: DavServer: Priority change requested (old priority 5, new priority 5)
    06/03/16 16:18:13 vidushiapp: NodeManager: Initialize: starting server DavServer
    06/03/16 16:18:13 vidushiapp: DavServer: Requested to start
    06/03/16 16:18:14 vidushiapp: NodeManager: Initialize: loading server ServiceWarmupAgent
    06/03/16 16:18:14 vidushiapp: DavServer: Starting
    06/03/16 16:18:14 vidushiapp: DavServer: Started
    06/03/16 16:18:14 vidushiapp: NodeManager: Server ServiceWarmupAgent loaded
    06/03/16 16:18:14 vidushiapp: NodeManager: Initialize: setting priority of server ServiceWarmupAgent to 5
    06/03/16 16:18:14 vidushiapp: ServiceWarmupAgent: Priority change requested (old priority 5, new priority 5)
    06/03/16 16:18:14 vidushiapp: NodeManager: Initialize: starting server ServiceWarmupAgent
    06/03/16 16:18:14 vidushiapp: ServiceWarmupAgent: Requested to start
    06/03/16 16:18:14 vidushiapp: NodeManager: Initialize: complete
    06/03/16 16:18:14 vidushiapp: ServiceWarmupAgent: Starting
    06/03/16 16:18:14 vidushiapp: ServiceWarmupAgent: Started
    06/03/16 16:18:14 vidushiapp: ServiceWarmupAgent: Starting
    06/03/16 16:18:14 vidushiapp: ServiceWarmupAgent: Service warmup starting
    06/03/16 16:18:14 vidushiapp: ServiceWarmupAgent: set administration mode
    06/03/16 16:18:14 vidushiapp: ServiceWarmupAgent: warming up Format cache
    06/03/16 16:18:14 vidushiapp: ServiceWarmupAgent: warming up Media cache
    06/03/16 16:18:14 vidushiapp: ServiceWarmupAgent: Service warmup complete
    06/03/16 16:18:14 vidushiapp: ServiceWarmupAgent: Stopping Service Warmup Agent
    06/03/16 16:18:14 vidushiapp: ServiceWarmupAgent: Requested to stop
    06/03/16 16:18:14 vidushiapp: ServiceWarmupAgent: Stopping
    06/03/16 16:18:14 vidushiapp: ServiceWarmupAgent: Timer stopped
    06/03/16 16:18:14 vidushiapp: ServiceWarmupAgent: postRun
    06/03/16 16:18:14 vidushiapp: ServiceWarmupAgent: Stopped
    06/03/16 16:18:50 vidushiapp: Servlet error
    javax.faces.FacesException: Error calling action method of component with id id32:id45
         at org.apache.myfaces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:74)
         at javax.faces.component.UICommand.broadcast(UICommand.java:106)
         at javax.faces.component.UIViewRoot._broadcastForPhase(UIViewRoot.java:90)
         at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:164)
         at org.apache.myfaces.lifecycle.LifecycleImpl.invokeApplication(LifecycleImpl.java:271)
         at org.apache.myfaces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:86)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:94)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
         at org.apache.myfaces.component.html.util.ExtensionsFilter.doFilter(ExtensionsFilter.java:122)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:663)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:830)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.AJPRequestHandler.run(AJPRequestHandler.java:224)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.AJPRequestHandler.run(AJPRequestHandler.java:133)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
         at java.lang.Thread.run(Thread.java:534)
    Caused by: javax.faces.el.EvaluationException: Exception while invoking expression #{UserValidation.validateUser}
         at org.apache.myfaces.el.MethodBindingImpl.invoke(MethodBindingImpl.java:153)
         at org.apache.myfaces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:63)
         ... 15 more
    Caused by: java.lang.ExceptionInInitializerError
         at com.daffodilwoods.framework.queryexecuter.HibernateUtil.<clinit>(HibernateUtil.java:66)
         at com.daffodilwoods.framework.validation.UserValidation.validateUser(UserValidation.java:23)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.apache.myfaces.el.MethodBindingImpl.invoke(MethodBindingImpl.java:129)
         ... 16 more
    Caused by: java.lang.ExceptionInInitializerError
         at com.mchange.v2.c3p0.PoolConfig.<clinit>(PoolConfig.java:93)
         at org.hibernate.connection.C3P0ConnectionProvider.configure(C3P0ConnectionProvider.java:84)
         at org.hibernate.connection.ConnectionProviderFactory.newConnectionProvider(ConnectionProviderFactory.java:80)
         at org.hibernate.cfg.SettingsFactory.createConnectionProvider(SettingsFactory.java:362)
         at org.hibernate.cfg.SettingsFactory.buildSettings(SettingsFactory.java:60)
         at org.hibernate.cfg.Configuration.buildSettings(Configuration.java:1463)
         at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1004)
         at com.daffodilwoods.framework.queryexecuter.HibernateUtil.<clinit>(HibernateUtil.java:62)
         ... 22 more
    Caused by: java.lang.ClassCastException
         at com.mchange.v2.cfg.BasicMultiPropertiesConfig.extractPropsByKey(BasicMultiPropertiesConfig.java:150)
         at com.mchange.v2.cfg.BasicMultiPropertiesConfig.<init>(BasicMultiPropertiesConfig.java:101)
         at com.mchange.v2.cfg.BasicMultiPropertiesConfig.<init>(BasicMultiPropertiesConfig.java:39)
         at com.mchange.v2.cfg.MultiPropertiesConfig.read(MultiPropertiesConfig.java:64)
         at com.mchange.v2.cfg.MultiPropertiesConfig.readVmConfig(MultiPropertiesConfig.java:73)
         at com.mchange.v2.log.MLog.<clinit>(MLog.java:48)
         ... 30 more
    I think there is some thing missing in my configurations. Can you please tell how to deploy and run a hibernate application. Is there any problem occurs while accessing another DataBase from Oracle Content Management? What are the setting I have to do for running a hibernate application from Oracle CMSDK?
    Thanks in advance
    Basil

    Hi,
    I got the solution for my problem. The error came because of the hibernate pooling. I removed the hibernate pooling lines from my hibernate configuration file and it is working fine.lines
    Thanks
    Basil

Maybe you are looking for