Data sources in deploying web app. to Oracle Application Server

I am using simple web application - JSP with BC4J (JDeveloper 9.0.5.1).
I want to configure my application to use Data Source instead of JDeveloper connection and deploy it to production database, so DB administrator will take care of username and password.
First, I create a new application module configuration that uses a data source instead of a JDeveloper connection with BC config. name TestAppModuleWithDS.
Then I modify my application client (DataBindings.cpx) to use the new configuration (TestAppModuleWithDS).
After that I create deployment profile and deploy to application server connection and try to test it on standalone server, and on production server together with my DBA.
But the application is not running, always displaying error messages...
Please what is the procedure and how to set Config of ApplModule.
It is working properly with embeded server, but on standalone server there is an error:
java.lang.UnsupportedClassVersionError: oracle/jdeveloper/cm/ConnectionDescriptor (Unsupported major.minor version 48.0)
     at java.lang.ClassLoader.defineClass0(Native Method)
     at java.lang.ClassLoader.defineClass(Unknown Source)
     at java.security.SecureClassLoader.defineClass(Unknown Source)
     at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].util.OC4JSecureClassLoader.defineClassEntry(OC4JSecureClassLoader.java:172)
     at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].naming.ContextClassLoader.defineClass(ContextClassLoader.java:1154)
     at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].naming.ContextClassLoader.findClass(ContextClassLoader.java:390)
     at java.lang.ClassLoader.loadClass(Unknown Source)
     at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].naming.ContextClassLoader.loadClass(ContextClassLoader.java:138)
     at java.lang.ClassLoader.loadClass(Unknown Source)
     at java.lang.ClassLoader.loadClassInternal(Unknown Source)
     at oracle.jbo.common.ampool.PoolMgr.createPool(PoolMgr.java:271)
     at oracle.jbo.common.ampool.PoolMgr.findPool(PoolMgr.java:473)
     at oracle.jbo.common.ampool.ContextPoolManager.findPool(ContextPoolManager.java:165)
     at oracle.jbo.http.HttpContainer.findSessionCookie(HttpContainer.java:817)
     at oracle.jbo.html.jsp.datatags.ApplicationModuleTag.doStartTag(ApplicationModuleTag.java:169)
     at lastcoil.jspService(_testjsp.java:52)
     [SRC:/testjsp.jsp:11]
     at com.orionserver[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
     at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:349)
     at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509)
     at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
     at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:765)
     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.HttpRequestHandler.run(HttpRequestHandler.java:270)
     at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
     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(Unknown Source)
Application module in testjsp.jsp (_testjsp.java) is:
oracle.jbo.html.jsp.datatags.ApplicationModuleTag __jsp_taghandler_1=(oracle.jbo.html.jsp.datatags.ApplicationModuleTag)OracleJspRuntime.getTagHandler(pageContext,oracle.jbo.html.jsp.datatags.ApplicationModuleTag.class,"oracle.jbo.html.jsp.datatags.ApplicationModuleTag id configname releasemode");
__jsp_taghandler_1.setParent(null);
__jsp_taghandler_1.setId("TestAppModule");
__jsp_taghandler_1.setConfigname("test.TestAppModule.TestAppModuleWithDS");
__jsp_taghandler_1.setReleasemode("Stateful");
__jsp_tag_starteval=__jsp_taghandler_1.doStartTag();
if (OracleJspRuntime.checkStartTagEval(__jsp_tag_starteval))
DataBindings.cpx is configured like this:
?xml version='1.0' encoding='windows-1252' ?>
<JboProject
id="DataBindings"
xmlns="http://xmlns.oracle.com/adfm/application"
version="9.0.5.15.88"
SeparateXMLFiles="false"
Package=""
ClientType="JClient" >
<Contents >
<DataControl
id="TestAppModule"
SubType="DCBC4J"
SupportsFindMode="true"
SupportsTransactions="true"
Package="test"
FactoryClass="oracle.adf.model.bc4j.DataControlFactoryImpl"
Configuration="TestAppModuleWithDS" >
<Parameters >
<Parameter
name="Sync"
value="Batch" >
</Parameter>
</Parameters>
</DataControl>
</Contents>
</JboProject>
D:\JDeveloper10\j2ee\home\config\data-sources.xml je:
<?xml version="1.0" standalone='yes'?>
<!DOCTYPE data-sources PUBLIC "Orion data-sources" "http://xmlns.oracle.com/ias/dtds/data-sources.dtd">
<data-sources>
     <!--
          An example/default DataSource that uses
          Oracle JDBC-driver to create the connections.
          This tag creates all the needed kinds
          of data-sources, transactional, pooled and EJB-aware sources.
          The source generally used in application code is the "EJB"
          one - it provides transactional safety and connection
          pooling. Oracle thin driver could be used as well,
          like below.
          url="jdbc:oracle:thin:@host:port:sid"
     -->
     <data-source
          class="com.evermind.sql.DriverManagerDataSource"
          name="OracleDS"
          location="jdbc/OracleCoreDS"
          xa-location="jdbc/xa/OracleXADS"
          ejb-location="jdbc/OracleDS"
          connection-driver="oracle.jdbc.driver.OracleDriver"
          username="scott"
          password="tiger"
          url="jdbc:oracle:thin:@localhost:5521:oracle"
          inactivity-timeout="30"
     />
     <data-source
          class="com.evermind.sql.DriverManagerDataSource"
          name="TestAppModuleWithDS"
          location="jdbc/hmlCoreDS"
          xa-location="jdbc/xa/hmlXADS"
          ejb-location="jdbc/hmlDS"
          connection-driver="oracle.jdbc.driver.OracleDriver"
          username="user1"
          password="psw1234"
          url="jdbc:oracle:thin:@server.com:1521:sidname"
          inactivity-timeout="30"
     />
D:\HotStripMill Projects\bc4j\src\lastcoil\common\bc4j.xcfg
<?xml version = '1.0' encoding = 'UTF-8'?>
<BC4JConfig>
<AppModuleConfigBag>
<AppModuleConfig name="TestAppModuleWithDS">
<DeployPlatform>LOCAL</DeployPlatform>
<JDBCDataSource>jdbc/hmlCoreDS</JDBCDataSource>
<jbo.project>bc4j</jbo.project>
<AppModuleJndiName>test.TestAppModule</AppModuleJndiName>
<java.naming.factory.initial>oracle.jbo.common.JboInitialContextFactory</java.naming.factory.initial>
<ApplicationName>test.TestAppModule</ApplicationName>
</AppModuleConfig>
</AppModuleConfigBag>
<ConnectionDefinition name="hml">
<ENTRY name="JDBC_PORT" value="1521"/>
<ENTRY name="ConnectionType" value="JDBC"/>
<ENTRY name="HOSTNAME" value="server.com"/>
<ENTRY name="user" value="user1"/>
<ENTRY name="ConnectionName" value="hml"/>
<ENTRY name="SID" value="sidname"/>
<ENTRY name="JdbcDriver" value="oracle.jdbc.driver.OracleDriver"/>
<ENTRY name="password">{904}05437B2C11AE10318B521E7C6EE279666E</ENTRY>
<ENTRY name="ORACLE_JDBC_TYPE" value="thin"/>
<ENTRY name="DeployPassword" value="true"/>
</ConnectionDefinition>
</BC4JConfig>
</data-sources>
Thanks!

iAS 1.0.x is StoneAge Technology (TM).
Using the E-Business Suite you should look into the newer versions of the Application Server. I believe that 10.1.2.x supports the EBS, otherwise 9.04 should do the trick. Webservice support is much better in the newer versions. 1.0.x is from around 2000/2001 so the Webservice technology back than was "different" :-)
cu
Andreas

Similar Messages

  • Deploying Web services on Oracle Application Server

    Hi,
    I am not sure whether this is the forum where I should post this question.
    I am trying to deploy a webservice on Oracle iAS version1.0.0. But when I navigate to Oracle CRM Administrator(responsibility)-->Integration-->services I get a message telling that the server needs to be upgraded to version 1.0.2.2
    I would like to know, from which version of Oracle Application server is the web services supported.
    Thanks in advance
    Pratheusha

    Web Services are supported on IAS (OC4J) 9.0.4, 10.1.2 and 10.1.3. The 10.1.3 web services stack supports the JAX-RPC standard while prior versions supported a proprietary programming model.
    What type of webservice are you trying to deploy?

  • How to deploy a web service on Oracle Application Server 10.1.2.0.2?

    Hi everyone,
    I followed the instructions of the following link to create a web service using jDeveloper 10.1.3.1.0 on Oracle Application Server 10.1.2.0.2. [http://st-curriculum.oracle.com/obe/jdev/obe1013jdev/10131/devdepandmanagingws/devdepandmanagingws.htm#t1]
    The web service created was deployed & used with no errors on the standalone OC4J instance.
    But my goal is to deploy my web service on Oracle Application Server 10.1.2.0.2.
    So after several attempts, I was able to deploy it on the Oracle Application Server 10.1.2.0.2 but unfortunately I didn't know the URL needed to use the web service.
    I tried the following link (http://192.168.0.91:18100/JavaWebService-GetDates-context-root/GetDatesWSSoapHttpPort) but also didn't work :(
    I also tried converting to J2EE 1.3 and still not knowing how to access the web service.
    Please advice with a solution.
    Thanks in advance.
    Lana

    Thanks everyone for your help :)
    The problem turned out to be that Oracle application server 10.1.2 is unlike the others servers, it uses 2 ports:
    - port (19100) is dedicated for the console.
    - port (7779) is to view your applications.
    So the URL needed turned out to be "http://acteos-109.beirut.acteos:7779/beanTest" instead of "http://acteos-109.beirut.acteos:18100/beanTest"
    Hope this info is useful
    Lana

  • Deploying a web service on Oracle application server

    Hi;
    I was able to create the .wsdl file from Elipse using Java 1.3.
    I was not able to connect to the oracle Application server from eclipse is there any other way to deploy the web server.
    Can anyone advise with the steps to deploy a web service on Oracle Application server 10.1.3. differently
    Regards,

    using Ant.
    check apache.org project there they have the ant section.
    Regards

  • Run Oracle Web Logic and Oracle Application Server 10g on same server

    Since oracle has chosen to release adf faces 11g, before the SOA suite 11g is released, we are facing the challenge to run both Oracle Web logic and Oracle Application Server 10g on the same server.
    If anyone have any experience in this setup or has knowledge of other feasable setups please let me know.
    Regards.
    Jan

    What version of Oracle Application Server 10g are you installing?
    If you are installing 10gR2 (v10.1.2.x) have you taken a look at point #70 in "Table 2 Additional Information for Certified Platforms" section here?
    http://www.oracle.com/technology/software/products/ias/files/as_certification_r2_101202.html
    Thanks
    Shail

  • Difference between Oracle 11i Apps DBA & Oracle Application server 10g DBA

    Hi All....
    can anyone explain me the *"Difference between Oracle 11i Apps DBA & Oracle Application server 10g DBA"*
    Can Oracle 11i Apps DBA work in a Oracle Application server 10g DBA environment.
    Regards,

    Oracle Apps is a suite of financial applications.
    Oracle Application server is Oracle's scaled up implementation of Apache or Weblogic or similar products.
    While Oracle Apps might use Oracle Application Server as middleware, Oracle Apps is much, much more than Oracle Application Server.
    An Oracle Apps DBA is primarily busy on the functional side, and with implementing an ongoing stream of patches ;)
    The two functions have almost nothing in common.
    Sybrand Bakker
    Senior Oracle DBA

  • Deploying a web services on Oracle Application Server

    Hi,
    it is possible to deploy a web services generated by axis on Oracle Application server ? and if it is how ?
    Thanks,

    Hello again.
    Thx for the reply.
    I have all specfic Libraries in my ear file, but i don't get the problem solved.
    I can see the example Web Services from axis but not my own (which should be generated from my class files)
    Here is the build file I use, perhaps someone find what I do wrong or what I forgett:
    Regards
    <project name="readySAPOC4J" default="" basedir=".">
    <!-- ********** PROJEKT VARIABLEN ********** -->
    <!-- set global properties for this build -->
    <property file="build.properties"/>
    <!-- ********** CLASSPATH ********** -->
         <path id="project.classpath">
              <pathelement location="${build}"/>
                   <fileset dir="${lib}">
                        <include name="activation.jar"/>
                        <include name="ant.jar"/>
              <include name="axis-ant.jar"/>
                   <include name="axis.jar"/>
                   <include name="commons-discovery.jar"/>
                   <include name="commons-logging.jar"/>
                   <include name="jaxrpc.jar"/>
                   <include name="log4j.jar"/>
                   <include name="mail.jar"/>
                   <include name="saaj.jar"/>
                   <include name="sapjco.jar"/>
                   <include name="tools.jar"/>
                        <include name="wsdl4j.jar"/>
                   <include name="ant.jar"/>
                   </fileset>
         </path>
    <!-- ********** TASKDEFINITION ********** -->
         <taskdef name="axis-admin" classname="org.apache.axis.tools.ant.axis.AdminClientTask">
              <classpath refid="project.classpath"/>
         </taskdef>
    <!-- ********** INITIALIZATION TARGETS ********** -->
              <!-- ERSTTELLEN DER ORDNER IN DIE DIE DATEIEN KOMPILIERT WERDEN -->
                   <target name="init">
                   <mkdir dir="${deploy}"/>
              <mkdir dir="${build}"/>
              </target>
              <!-- LÖSCHEN DER DATEIEN VOM VORHERIGEN BUILD -->
              <target name="clean">
                   <delete dir="${deploy}"/>
              <delete dir="${build}"/>
              </target>
    <!-- ********** KOMPILIERE ALLER JAVA DATEIEN ********** -->
         <target name="compile" depends="init">
              <delete dir="${build}/SAP.class"/>
              <javac srcdir="${src}"
                   destdir="${build}"
                   classpathref="project.classpath"
                   debug="on" />
         </target>
    <!-- ********** ERSTELLE DIE WAR DATEI ********** -->     
         <target name="createWar" depends="">
              <delete file="${deploy}/axis.war"/>
                   <war warfile="${deploy}/axis.war" webxml="WEB-INF/web.xml" compress="true">
                        <classes dir="${build}">
                        </classes>
                        <webinf dir="WEB-INF">
                        <exclude name="web.xml"/>
                             <exclude name="users.lst"/>
                             <exclude name="**/WEB-INF/classes/*"/>
                             <exclude name="**/lib/*"/>
                        </webinf>
                        <!--fileset dir="${}">
              <exclude name="**/WEB-INF/**"/>
                        </fileset-->
                        <lib dir="${lib}">
                        <include name="activation.jar"/>
                             <include name="axis-ant.jar"/>
                             <include name="axis.jar"/>
                             <include name="commons-discovery.jar"/>
                             <include name="commons-logging.jar"/>
                             <include name="jaxrpc.jar"/>
                             <include name="log4j.jar"/>
                             <include name="mail.jar"/>
                             <include name="saaj.jar"/>
                             <include name="sapjco.jar"/>
                             <include name="wsdl4j.jar"/>
                             <include name="tools.jar"/>
                             <include name="ant.jar"/>
                   </lib>
                   </war>
         </target>
    <!-- ********** ERSTELLE DIE EAR DATEI ********** -->     
         <target name="createEar" depends="createWar">
              <delete file="${deploy}/axis.ear"/>
                   <ear destfile="${deploy}/axis.ear" appxml="${config}/application.xml">
                        <fileset dir="${deploy}">
                             <include name="axis.war"/>
                        </fileset>
              </ear>
         </target>
    <!-- ********** DEPLOYE DIE EAR DATEI ********** -->     
         <target name="deployEar" depends="">
         <java jar="C:\Programme\orabpel\integration\orabpel\system\appserver\oc4j\j2ee\home\admin.jar" fork="yes">
         <arg value="ormi://localhost:23791"/>
         <arg value="admin"/>
         <arg value="welcome"/>
         <arg value="-deploy"/>
         <arg value="-file"/>
         <arg value="C:\Programme\eclipse\workspace\readySAPOC4J\deploy\axis.ear"/>
         <arg value="-deploymentName"/>
         <arg value="axis"/>
         </java>
         </target>
    <!-- ********** WEB APPLICATION BINDING ********** -->     
         <target name="bind-web-app" depends="">
         <java jar="C:\Programme\orabpel\integration\orabpel\system\appserver\oc4j\j2ee\home\admin.jar" fork="yes">
         <arg value="ormi://localhost:23791"/>
         <arg value="admin"/>
         <arg value="welcome"/>
         <arg value="-bindWebApp"/>
         <arg value="axis"/>
         <arg value="axis"/>
         <arg value="http-web-site"/>
         <arg value="/axis"/>
         </java>
         </target>

  • Deployed web app can't be server default?

    hey folks.
    i've deployed a web app (i can see it in the console under "web
    apps").
    i want to make this web app the default for my server. i went
    to the "target" tab for the web app and made my server the target.
    however, when i go to my server's HTTP page, there's nothing but
    "none" in the "default web application" pulldown.
    anyone have a clue? if you have this working, can you show me
    the xml from config.xml? i will just enter it manually if all
    else fails.
    thanks in advance,
    -bml

    Hi, Gene.
    Check with support. Switching the default webapp by modifying config.xml is
    more compilicated than I descripted in my post. I wish support could address
    this regression ASAP.
    Cheers - Wei
    "Gene Chuang" <[email protected]> wrote in message
    news:[email protected]...
    This seems like a pretty serious regression!
    I created a new war directory (testwar), and tried manually modifyingconfig.xml to switch to a new
    DefaultWebApp, called "testwar". Unfortunately, I get the followingcomplaint of mbean unable to
    find "testwar" component when I restart the server. I looked inconfig.xml and sure enough,
    "testwar" component isn't registered there; seems like the admin serverwas able to detect my
    creation of a new war directory, gives me the message that testwar isdeployed, but did not write
    this info into config.xml!
    This is another reason why manual editting of config.xml is unadvisable,and that this regression
    further exacerbates the problem! Is there a quick patch fix to this???
    Gene
    <Mar 19, 2001 6:52:29 PM PST> <Notice> <Management> <Loading configurationfile
    ./config/mydomain/config.xml ...>
    The WebLogic Server did not start up properly.
    Exception raised:weblogic.management.configuration.ConfigurationException: undefined mbean
    reference: mydomain:Name=testwar,Type=WebAppComponent,Server=myserver
    weblogic.management.configuration.ConfigurationException: undefined mbeanreference:
    mydomain:Name=testwar,Type=WebAppComponent,Server=myserver
    "Wei Guan" <[email protected]> wrote in message
    news:[email protected]...
    It is a bug in SP1. We just create a case. At the same time, you can use
    your editor to open config.xml, search the following section:
    <WebServer
    ClusteringEnabled="true"
    Targets="mycluster"
    />
    Add or modify following line:
    <WebServer
    ClusteringEnabled="true"
    DefaultWebApp="myWebApp"
    Targets="mycluster"
    />
    Cheers - Wei
    "brian long" <[email protected]> wrote in message
    news:[email protected]...
    hey folks.
    i've deployed a web app (i can see it in the console under "web
    apps").
    i want to make this web app the default for my server. i went
    to the "target" tab for the web app and made my server the target.
    however, when i go to my server's HTTP page, there's nothing but
    "none" in the "default web application" pulldown.
    anyone have a clue? if you have this working, can you show me
    the xml from config.xml? i will just enter it manually if all
    else fails.
    thanks in advance,
    -bml

  • Implementing client-cert auth in web.xml in Oracle Application Server

    Hi,
    I am new to implementing security features on the web applications.. I have developed a new web service using jdev1012 and deployed in OAS 10.1.2. Its working fine according to the business requirements, but I am in need of implementing client-cert authentication to enable the web service available to only those who have client certificate.
    My server details are:
    Oracle Application Server 10g Release 2 (10.1.2)
    Server certificate is in place and SSL mode have been already enabled.. able to access my web service through https://<mydomain.com>/myws/TreqWS as well able to see the WSDL file through https://<mydomain.com>/myws/TreqWS?WSDL.
    I tried to include the following in my web.xml file as part of implementing CLIENT-CERT authentication.
    <security-constraint>
    <display-name>SecurityConstraint</display-name>
    <web-resource-collection>
    <web-resource-name>WSCollection</web-resource-name>
    <url-pattern>/*</url-pattern>
    </web-resource-collection>
    <user-data-constraint>
    <transport-guarantee>CONFIDENTIAL</transport-guarantee>
    </user-data-constraint>
    </security-constraint>
    <login-config>
    <auth-method>CLIENT-CERT</auth-method>
    <realm-name>WSCollection</realm-name> <!-- am not sure about this realm-name and its purpose -->
    </login-config>
    It is not woking as expected, though I have restarted my oc4j container after including this content to the web.xml file. i.e, I am able to invoke the web service though my sample java client program, though I donot have client certificate/keystore.
    I believe I am missing something..Can anyone help me in this regard to implement CLIENT-CERT authentication successfully?
    Thanks,
    Ms

    Hello,
    You have different level of integration of SSO services in OC4J 10g (10.1.3).
    If you are using an LDAP server you can integrate that using the LDAP security provider and support SSO between applications. This is documented as part of the Identity Management Integration.
    Also in 10.1.3.0.0 you need to have at least an LDAP server (or bigger identity management solution) to do SSO.
    In 10.1.3.1.0, that should be available this summer, OC4J will have a new security service that will allow applications to be authenticated in a single sing-on fashion. (Stay tuned to the OTN forum we will publish a beta version very soon)
    Regards
    Tugdual Grall

  • Deploying  Jave portlet on Oracle Application Server 10g

    I have installed Oracle 10g Application server, donwloaded and installed JDevleoper 9.0.5.1 and the latest Java Portal Development and as well as the JDeveloper portlet-addin. Now, I followed the instructions from the http://portalstudio.oracle.com/pls/ops/docs/FOLDER/COMMUNITY/PDK/ARTICLES/BUILD.JSR168.PORTLETS.USING.JAVA.PORTLET.WIZARD.9IJDEVELOPER.HTML
    On using JDeveloper addin wizrd to create a java portlet and so far so good. However, I am stuff on the last bit on deployment. It document says "# Now use the URL provided in the log page at the bottom of JDeveloper to get part of your URL (e.g. http://myserver.uk.oracle.com:8888/my-portlet) and complete the URL.
    http://myserver.uk.oracle.com:8888/my-portlet/portlets?WSDL
    Now use this URL to register your portlet with OracleAS Portal.
    But when i deploy my application (just a test thing), from the deployment tab I get:
    ---- Deployment started. ---- 22-Mar-2005 14:11:27
    Target platform is Oracle Application Server 10g (hotseatConnection).
    Wrote WAR file to C:\work\oracle\MyProject\MyPortlet\deploy\hotseat.war
    Wrote EAR file to C:\work\oracle\MyProject\MyPortlet\deploy\hotseat.ear
    Invoking DCM servlet client...
    C:\Java\j2sdk1.4.2_03\jre\bin\javaw.exe -Djava.protocol.handler.pkgs=HTTPClient -jar C:\Java\JDeveloper9.0.5.1\jdev\lib\oc4j_remote_deploy.jar http://194.83.41.114:1811/Oc4jDcmServletAPI/ ias_admin **** redeploy /u01/app/oracle/product/10.1.0/oraMid_904 C:\work\oracle\MyProject\MyPortlet\deploy\hotseat.ear hotseat
    Initializing log
    Servlet interface for OC4J DCM commands
    Command timeout defined at 600 seconds
    Executing DCM command...
    Executing command redeploy /u01/app/oracle/product/10.1.0/oraMid_904 C:\work\oracle\MyProject\MyPortlet\deploy\hotseat.ear hotseat UNDEFINED
    Command = REDEPLOY
    Reading application's ear file
    Ear file was successfully read
    Opening connection to Oc4jDcmServlet
    Setting userName to ias_admin
    Sending command to DCM servlet
    HTTP response code = 200, HTTP response msg = OK
    Command was successfully sent to Oc4jDcmServlet
    Receiving session id from servlet to check command status
    Session id = c253297271317c3f930003c405ea91ff598582f0be0
    Please, wait for command to finish...
    Checking command status...
    Setting userName to ias_admin
    Setting Cookie to JSESSIONID=c253297271317c3f930003c405ea91ff598582f0be0
    Checking command status
    HTTP response code = 200, HTTP response msg = OK
    Command has not finished yet
    Checking command status...
    Setting userName to ias_admin
    Setting Cookie to JSESSIONID=c253297271317c3f930003c405ea91ff598582f0be0
    Checking command status
    HTTP response code = 200, HTTP response msg = OK
    Command has not finished yet
    Checking command status...
    Setting userName to ias_admin
    Setting Cookie to JSESSIONID=c253297271317c3f930003c405ea91ff598582f0be0
    Checking command status
    HTTP response code = 200, HTTP response msg = OK
    Command has not finished yet
    Checking command status...
    Setting userName to ias_admin
    Setting Cookie to JSESSIONID=c253297271317c3f930003c405ea91ff598582f0be0
    Checking command status
    HTTP response code = 200, HTTP response msg = OK
    Command has not finished yet
    Checking command status...
    Setting userName to ias_admin
    Setting Cookie to JSESSIONID=c253297271317c3f930003c405ea91ff598582f0be0
    Checking command status
    HTTP response code = 200, HTTP response msg = OK
    Command has not finished yet
    Checking command status...
    Setting userName to ias_admin
    Setting Cookie to JSESSIONID=c253297271317c3f930003c405ea91ff598582f0be0
    Checking command status
    HTTP response code = 200, HTTP response msg = OK
    Command has not finished yet
    Checking command status...
    Setting userName to ias_admin
    Setting Cookie to JSESSIONID=c253297271317c3f930003c405ea91ff598582f0be0
    Checking command status
    HTTP response code = 200, HTTP response msg = OK
    Command has not finished yet
    Checking command status...
    Setting userName to ias_admin
    Setting Cookie to JSESSIONID=c253297271317c3f930003c405ea91ff598582f0be0
    Checking command status
    HTTP response code = 200, HTTP response msg = OK
    Command has not finished yet
    Checking command status...
    Setting userName to ias_admin
    Setting Cookie to JSESSIONID=c253297271317c3f930003c405ea91ff598582f0be0
    Checking command status
    HTTP response code = 200, HTTP response msg = OK
    Command has not finished yet
    Checking command status...
    Setting userName to ias_admin
    Setting Cookie to JSESSIONID=c253297271317c3f930003c405ea91ff598582f0be0
    Checking command status
    HTTP response code = 200, HTTP response msg = OK
    Command has finished
    Receiving command exit value
    Receiving command output
    **** No output was received from command
    Closing connection to Oc4jDcmServlet
    DCM command completed successfully.
    Output:
    Exit status of DCM servlet client: 0
    Elapsed time for deployment: 1 minute, 45 seconds
    ---- Deployment finished. ---- 22-Mar-2005 14:13:12
    My question is, HOW DO I ACCESS the deployed application, since it didn't specify the URL where it's deployed????
    Many thanks
    P/S
    I have tried:
    http://{myserver}:8888/{my-portlet}/portlets?WSDL but that doesn't work

    Hi FormsEleven,
    When you say you can do this or you have done for demo then considering following directory structure if I have two forms having common form names how it will be resolved?
    Or how the url to access these forms will be?
    As shown in the following structure consider we have Form1 in sub directory1 as well as in sub-directory2 then how the link to access these forms will be?
    - Hosting Directory (formsweb.cfg entry)
      - Sub Directory1
          - Form1
          - Form2 
      - Sub Directory2
          - Form1
          - Form4
      - Sub Directory3
          - Form5
          - Form6

  • Geting error when deploy ear file on Oracle Application Server

    Hi,
    i m trying to deploy EAR on Oracle Application Server but i m getting ther Error
    Operation failed with error: Missing class: oracle.adf.controller.v2.lifecycle.PagePhaseListener Dependent class:
    any body know that what is this error
    plz help me
    Harish

    What version of JDeveloper are you using? And what version is your app server?

  • Urgent :- Unable to deploy EAR file in Oracle application server

    Hello folks,
    I am trying to deploy an application containing jsps and servlets
    packaged into EAR using ant. However when am trying to do so by using
    the Deploy EAR option in the Enterprise manager, it throws the
    following error -
    "Invalid J2EE application file specified - Jar file:
    /var/tmp/jar47241.tmp is missing its standard xml descriptor located at
    META-INF/ejb-jar.xml"
    I suspect that something could be wrong with regards to the way the ear
    file has been created.
    Please if someone could pin point the problem and help me understand
    the the above error message , it will be of great help to me and I d
    really appreciate this.
    Many Thanks,
    Ramn.

    Hello,
    I try to deploy an ear file (contains jar and war files) in Oracle Application server in linux, but the time is so long. The same file I deploy in a OAS in windows and the deploy time was 2 minutes, but in linux I leave the hole night and the session close and the deploy in unable.
    I don't know if I need configure an especial option in the OAS in Linux, how I can load my ear file.
    The OAS in windows was installed with oc4j options only, but the OAS in linux was full installation
    Please help me....
    Thanks.

  • Deploy IBM EAR on Oracle Application Server 10G

    Hi,
    I need to deploy an IBM EAR to Oracle Application Server 10G. When i'm trying to deploy I get this message.
    Deployment failed: The evaluate phase failed. The Adapter used in the evaluate may have thrown an exception.
    Resolution:
    Please call Oracle support.
    Base Exception:
    java.lang.NoClassDefFoundError
    org/apache/commons/logging/LogFactory. org/apache/commons/logging/LogFactory
    Thanks
    Edited by: 919027 on Mar 6, 2012 2:39 AM

    Giuseppe,
    It appears that this EAR utilizes Apache Common Logging and the following import might have been uses in some of the java classes.
    import org.apache.commons.logging.LogFactory;
    I don't think these can be deployed in Oracle 10gAS as is.
    Thanks,
    Raj Mareddi
    http://www.freeoraclehelp.com

  • Deploy a war in Oracle application server

    hi,
    We have some Oracle discoverer running in the oracle application server and I would like to deploy one war file to the service.
    Can anyone tell me if its possible to do so?
    Should I just drop the war to the deploy folder of the server?
    Thanks,
    KK

    Wrong forum.
    Move (close and re-post) thread to either Discoverer
    or somewhere in http://forums.oracle.com/forums/category.jspa?categoryID=193 (probably the Oracle AS - general forum).

  • Deploying Shared Services in Oracle Application Server

    Has anyone deployed Shared Services (9.3.1) in Oracle Application Server? We are trying to deploy SS in Oracle Application Server and are not able to do it. Any suggestions?

    I think SS work's only under Apache Tomcat
    I was try deploy SS 9.2.1 and 9.3.1 on Oracle iAS and Weblogic 9.2.MP1
    and have similar error.(- can't register planning application)
    But Planning and EAS on Oralce and Weblogic works fine .
    p.s. OiAS - it's closed product - use Weblogic for new ENV.
    If you need detaled instruction for setup - please read documentation
    http://www.oracle.com/technology/documentation/epm.html
    http://hack4essbase.wordpress.com/2008/08/07/weblogic-classpath-and-env-for-hyperion-planning/

Maybe you are looking for

  • GarageBand for iPad crashes when I try to load certain songs

    I use the GarageBand app (version 1.4 (180.6)) on my iPad 2 (iOS 6.1.3). I was working on a song; it was about as large/long as the app allows. The iPad didn't have too much free data storage space left anyway, and I could feel that, as I approached

  • My webpage created with php prints code instead of the created webpage

    My webpage is created using dynamic field therefore it had to be save as .php. The problem now is when i want to print the page it prints code instead of the actual page. Is the a solution for this problem? Here is the site http://www.pianoandkeyboar

  • ITunes and QuickTime Installation on Dell Inspiron 6000

    I've done the 5 R's suggested by apple, with no luck. After installing itunes, and precceding to the quicktime installation, my laptop crashes to a blue screen of death. After my laptop reboots, itunes refuses to open. I've removed every entry from t

  • Workflow table grayed out in Data Manager

    Hey Guys I am trying to add a workflow in Data Manager(Record mode) but the table is grayed out. Do i need to do any setting in Console to make it visible? or any other settings? Thanx Saif

  • Done a Security Wipe and now can't set up my email & BBM

    Hi I did a security wipe on my Blackberry. I cannot open my BBM, I cannot setup my Gmail. When i try to setup my email and BBM the "Blackberry ID Sign in" pops up on my phone. I enter my username and password, and it still appears to be incorrect. Wh