Deploy Business Component Project with 3.2

I use the JDeveloper 3.2 to create a simple Buciness Component Project, with an application module, which contains only a table object(entity & view object). I follow the step of deplyment in the
on-line help to deploy the project as an EJB session Bean for 8i, (set the application Module's remote mode to "EJB Session Bean", create the deployment profile, than deploy it.) However, I got a lot of error message with the following err-code. Where am I wrong? Please help me. Thank You...
ORA-29521 referenced name string could not be found
ORA-29534 referenced object string.string could not be resolved
(I have successfully deploy a Business Component Project with JDeveloper 3.1.2 in another environment with the same Database schema. I have no idea why can't I deploy the project with
3.2?)
ERic

fter granted Java2 permissions, the above problem was solved, however, I got the following error message
when I deploy the business project:
Loading EJB Jar file and Comm Stubs Jar file...
Cannot locate the LoadJava server: Unknown reasons
*** Errors occurred while deploying the EJB to 8i JVM ***
can anyone help me?
ERic

Similar Messages

  • JUnit with Business Component project

    I'm trying to test how JUnit works with a business component project. I installed JUnit extension for JDeveloper 9.0.3 with OA Exentions (for 11.5.10 CU2) and followed the associated help files to create a test suite for the Tutorial project and the CreateAM application module. When I run the test suite, all the tests error saying that it couldn't find the Configuration that I created for the application module. Has anyone run into this and know what the resolution is?

    Thanks for that link, it provides alot more detailed information on what is going on than the basic help pages provide.
    I still have the problem though. In step 3 of that guide it says to select a Configuration. You create that by right clicking on an AM and selecting Configurations and New. When you click OK with the 9.0.3.5 build 1437 (JDeveloper with OA Extension for 11.5.10 CU2), the bc4j.xcfg doesn't get updated and when the JUnit test is run, it errors saying it can't find the Configuration. I tried creating one manually from an example Configuration I created using JDeveloper 10.1.2 (it works in that version) but the tags must be different because then JUnit gives a parsing error.
    I opened a SR with Oracle to see if they can reproduce the test case.
    Thanks, Rob

  • Initialize Business Component Project

    I want to get the Initialize Business Component Project dialog box for a new project from Business Component from tables option but it doesn't appear.
    I need to change the connect string to XE insted of ORCL because I em using XE.
    Thank you

    Hi,
    this question is not clear. What do you mean with initialize Business Components Project ? Open the project properties and change the database connection under the Business Components node
    Frank

  • JDEV3.2.3;IDE;Business-Component-Project can't be openend

    Hi,
    My workspace consists of several projects and one is dedicated for business-components only.
    Any projects in my workspace can be opened by JDev3.1 and JDev3.2.2 individually.
    JDev3.2.3 is able to load the non-business-components projects, but hangs, if I try to open my bc-project or the workspace that contains any projects.
    "Hangs" means, JDeveloper shows the busy cursor for a long time and the Windows Task Manager shows that JDev does not respond at all.
    I would really like to benefit by the bugfixes in JDev3.2.3, but what must I do to become lucky?
    TIA
    @i
    null

    Hi Masazumi,
      Thanks for your reply..Did that OSS note resolved your issue completely?
    Incidently SAP also requested the same... which I have implemented.. It looked like after this I was able to go a little further .. but still not able to delete the extension. The new error, while trying to delete the extension,  is
    "Table CI_FEW_ORGMAN can’t be created with Package YDWE".
    The package YDWE was created by me during the project creation and linked to the project. I had also created another project at the same time when the first project couldn't be generated without the error.
    This time while deleting the extension, the system asked me for a transport and I prompty provided the custom package YDWE and from that point on wards I am getting this new error.
    Any help would be appreciated.
    Thanks

  • ADF business component wizard with tables referencing junction table

    I have a three tables, user, devices and a link/junction table to map the user's assigned devices.
    <<user>>
    user_id
    user_name
    <<device>>
    device_id
    device_name
    <<userdevice>>
    user_id
    device_id
    I wanted to create a view page where I can search a user then display the list of devices assigned to this user. The association between these two tables is the userdevice table.
    Using the wizard alone couldn't satisfy my objective. Have you encountered the same issue? Thanks.

    Hi Cyrus
    I'm not sure which Wizard are you referring to; can you clarify?
    Which area of WebCenter Portal are you using where you're seeing this issue?
    ~Sripathy

  • Next record Error in Tomcat deployment of business component

    I built a simple business component project for Dept in Scott table. I created a JSP client, mainly following the tutorial in Jdeveloper. Then I ran main.jsp in JDeveloper. This ran fine. I selected the deptview. I was able to scroll through department using next record arrow.
    I deployed this application in Tomcat using the deployment profile as webapplication to web sever. When I run this, the main.jsp runs fine. I am also able to go to the deptview. When I try to scroll through the records using the next record arrow the top portion says page can not be found. Insert record works fine.
    When I select insert record it seems to go to http://localhost:8080/sssdept1/jspsdept1_html/DeptView_Insert.jsp.
    When I try to use the next record arrow it seems to go to http://localhost:8080/jspsdept1_html/DeptView_Top.jsp?DeptView_NAVIGATE=NEXT.
    I think that this path is missing the sssdept1 folder. I am not sure how to add this to the usebean. Can anybody help?

    Can you be more specific?
    Which JSP page?
    Should I work in Jdeveloper or in the created files?
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by jdeveloper:
    Try setting the target URL in the NavigatorBar WebBean within the page. The problem here is that the URL information has been lost. Use the setTargetUrl(String sUrl) method in your JSP page.
    <HR></BLOCKQUOTE>
    null

  • Issue with "firstRecord" Business Component method of JAVA Data bean API.

    Hi,
    Following is my use-case scenario:
    I have to add or associate child MVG business component (CUT_Address)
    with the parent business component (Account) using JAVA Data bean API.
    My requirement is: first to check whether child business component(i.e. CUT_address) exists. If it exists then associate it with parent business component (Account)
    otherwise create new CUT_address and associate it with account.
    Code (using JAVA Data bean APIs) Goes as follows:
    SiebelBusObject sBusObj = connBean.getBusObject("Account");
    parentBusComp = sBusObj.getBusComp("Account");
    SiebelBusComp parentBusComp;
    SiebelBusComp childBusComp;
    // retrieve required account.. Please assume Account1 exists
    parentBusComp.activateField("Name");
    parentBusComp.clearToQuery();
    parentBusComp.setSearchSpec("Name", "Account1");
    sBusComp.executeQuery2(true, true);
    sBusComp.firstRecord();
    Counter = 0;
    while (counter < Number_Of_Child_Records_To_Insert)
    childBusComp = parentBusComp.getMVGBusComp("City");
    associatedChildBusComp = childBusComp.getAssocBusComp();
    childBusComp.activateField("City");
    childBusComp.clearToQuery();
    childBusComp.setSearchSpec("City", Vector_of_city[counter]);
    sBusComp.executeQuery2(true, true);
    if( sBusComp.firstRecord() )
    // Child already exist and do processing accordingly
    else
    // Child does not exist and do processing accordingly
    childBusComp.release();
    childBusComp = null;
    associatedChildBusComp.release();
    associatedChildBusComp=null;
    Now the issue with this code is: For the first iteration, SbusComp.firstRecord returns 0 if records does not exist. However from the second iteration, SbusComp.firstRecord returns 1 even if there is no record matching the search specification.
    Any input towards the issue is highly appreciable.
    Thanks,
    Rohit.

    Setting the view mode to "AllView" helped.
    Thanks for the lead!
    In the end, I also had to invoke the business component method SetAdminMode with "true" as the argument so that I could also modify the records from my script.

  • Jdev 10.1.2 Add Business Component Issue

    Error appearing is "Unable to load Business Components. The package xml file is not in the proper package".
    Under Jdev 9.0.5.2 you could create a business component then with that item highlighted select 'x' on the navigator toolbar to remove the Business Component from the project (Not erased). To add the same item back into the project you highlighted the package, selected '+' on the navigator toolbar highlighted the Business Component source files then click open then yes.
    Under JDev 10.1.2.0.0 doing the same does not work. The business component is correctly removed from the project but there seems to be no way to add it back to the project/package (error above always appears).
    Has anybody else seen this issue ?
    I am mid-way through a major schema refactor and this is causing a big problem.

    Based on the package (see FullName below), the metadata file would be called package.xml in this case.
    It is there the Containee entries would be added.
    For an Entity Object
    <Containee
    Name="YourEntityObject"
    FullName="com.site.package.YourEntityObject"
    ObjectType="Entity" >
    </Containee>
    For a View Object
    <Containee
    Name="YourViewObject"
    FullName="com.site.package.YourViewObject"
    ObjectType="ViewObject" >
    </Containee>
    where
    YourEntityObject
    - Name of the entity object business component to be added
    (This may be based on a number of seperate files such as YourEntityObject.xml, YourEntityObject.java, YourEntityObjectRow.java etc, depending on options taken at design time).
    YourViewObject
    - Name of the view object business component to be added
    (This may be based on a number of seperate files such as YourViewObject.xml, YourViewObject.java, YourViewObjectRow.java etc, depending on options taken at design time).

  • Cannot deploy ADF JSF project from JDeveloper 10.1.3.3.0 to AS 10.1.2.0.2

    Hi All,
    I've a small deployment issue which you guys might be able to help me with.
    I've developed an ADF BC JSF project using JHeadstart 10.1.3.2.50 and it was running fine on my self contained OC4J instance. But when I try to deploy it across to my Oracle 10G AS version 10.1.2.0.2., it had the following errors:
    ----- START OF LOG ------
    Initializing log
    Servlet interface for OC4J DCM commands
    Command timeout defined at 600 seconds
    Executing DCM command...
    Executing command redeploy D:\OraHome_3 D:\jdevstudio10133\jdev\mywork\PAM2070C\ViewController\deploy\webapp1.ear webapp1 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 = c0a8238746b50fc1d5b78e274fcfb38b81a490036726
    Please, wait for command to finish...
    Checking command status...
    Setting userName to ias_admin
    Setting Cookie to JSESSIONID=c0a8238746b50fc1d5b78e274fcfb38b81a490036726
    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 did not complete successfully (-8)
    #### HTTP return code was -8
    Exit status of DCM servlet client: -8
    Elapsed time for deployment: 18 seconds
    #### Deployment incomplete. #### 15/05/2008 17:00:33
    ---- END OF LOG ----
    Has anyone been able to deploy ADF JSF project with JHeadstart using JDeveloper 10.1.3.3.0 to Oracle 10G AS 10.1.2.0.2? I'm using window environment. Any feedback is much appreciated. Thank you for your assistance and have a nice day.
    Kind Regards,
    John

    Hi all,
    I had also tried out something else...
    I am now portalizing the ADF application using PortalFacesBridge and portlet.xml. Then I deploy it on the Local OC4J of my system and expose it as a WSRP Portlet using the url: 'http://hostname:portname/warFileName/info and generating a WSDL URL...
    I am then using this WSDL URL to regester this portalized application on the Oracle Portal10.1.4 which i am able to accomplish successfully...
    However after regestration, when I try to view this on the portal page, It is throwing the following error:-
    Error: Could not get markup. The cookie or session is invalid or there is a runtime exception.
    Also I would like to add that this method was working perfectly fine previously...
    What might be the clue for this sudden error...
    Any kind of help is greatly appriciated... Thanks...

  • OMB05603 while deploying a process flow with OMB

    Hi all,
    I am trying to deploy a process flow with OMB. I tried with the repository owner and with a non-admistrative user, but I am getting the following error.
    OMB05603: Deployment of Component 'PROCESS_FLOW_MODULE' with action 5 is not allowed.
    Any help is appreciated.
    Regards,
    Sebastian
    Code Extract
    catch {
         OMBCREATE TRANSIENT DEPLOYMENT_ACTION_PLAN '$plan_name'
         puts "deployment plan created"
         set objectList [OMBRETRIEVE COLLECTION '$col_name' GET ALL REFERENCES]
         foreach object $objectList {
              set objectType [lindex $object 0]
              set objectName [lindex $object 1]
              OMBALTER DEPLOYMENT_ACTION_PLAN '$plan_name' ADD ACTION '$objectName' \
              SET PROPERTIES (OPERATION) VALUES ('CREATE') SET REFERENCE $objectType '$objectName'
              puts "adding action for object $objectType $objectName"
    }

    Hi Sebastian
    I suspect this is because you are trying to deploy the process flow module.
    The process flow package should be deployed - not the module and not the flow itself.
    Cheers
    David

  • SCA project with webservices binding is failing in WLS 12.1.2.0

    While I am able to successfully  deploy a SCA project with an EJB binding in it, application is failing (deploying ok, but not recognized as an SCA app) if I include a webservices binding in it. Apparently SCAContainer is failing to locate a class file. I searched across entire weblogic installation for the missing class file, and could not locate the class in any of the jars under MW_HOME.
    And in the weblogic sca console extension, I see the following message:
    This is not a WebLogic SCA application or WebLogic SCA integration is not enabled.
    <Aug 25, 2013 8:40:00 AM EDT> <Warning> <HTTP> <BEA-101162> <User defined listener weblogic.sca.container.WlsScaContextListener failed: java.lang.NoClassDefFoundError: Lweblogic/wsee/databinding/WsRuntime;.java.lang.NoClassDefFoundError: Lweblogic/wsee/databinding/WsRuntime;
            at java.lang.Class.getDeclaredFields0(Native Method)
            at java.lang.Class.privateGetDeclaredFields(Class.java:2387)
            at java.lang.Class.getDeclaredFields(Class.java:1796)
            at org.eclipse.persistence.internal.security.PrivilegedAccessHelper.getDeclaredFields(PrivilegedAccessHelper.java:253)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
            Truncated. see log file for complete stacktrace

    Also, i just deployed the SCA shopping cart example included with WLS, and it also failed with the same weblogic.wsee.databinding.WsRuntime class not found error! Issues with my installation or problem with 12.1.2.0?

  • Unable to deploy BPM projects with human tasks from BPC

    I’m trying to edit and deploy a BPM process from Business Process Composer (web based tool). To do it, I followed the steps below:
    1.     I created I project in JDeveloper
    2.     I created the Human task from using the “Auto-generate task form” option
    3.     I converted it to a template
    4.     I published it to BPM MDS
    5.     On Business Process Composer I created I new project based on my published template
    6.     And I finally I deployed it with no errors.
    When I ran the BPM it creates I human task but I’m not able to access its form on Business Process Workspace.
    On Business Process Workspace I can see the task created by my BPM process, but when I click on it to access its form I get a 404 message (message below).
    Error 404--Not Found
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.4.5 404 Not Found
    The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent.
    If the server does not wish to make this information available to the client, the status code 403 (Forbidden) can be used instead. The 410 (Gone) status code SHOULD be used if the server knows, through some internally configurable mechanism, that an old resource is permanently unavailable and has no forwarding address.
    I think this error occur because my Task form project was not deployed. To fix it I undeployed all the applications and then I deployed the BPM application with all its tasks forms from JDeveloper. It worked fine (I can actually access the task form on Business Process Workspace), but now I’m not able to edit the BPM process on Business Process Composer anymore.
    Then I finally repeated the steps 3 to 6 on top of this post in order to make the BMP process editable on Business Process Workspace but this time I receive the error at the end of this post taken from server log.
    No matters if I publish the project on MDS BMP repository as a template project or as non template project. I always have the same problem.
    So, how can I use a BPM project that contains Human Tasks forms on Business Process Composer?
    I’m using:
    •     JDevelopper: 11.1.1.5
    •     Oracle Soa Suite 11.1.1.5
    Error:
    <Error> <ServletContext-/soa-infra> <AUSDCCMTPRF03> <soa_server1> <[ACTIVE] ExecuteThread: '10' for queue: 'weblogic.kernel.Default (self-tuning)'> <weblogic> <> <daba687c30fc2ae1:5f5821e2:131915bbc92:-8000-000000000001c442> <1312478914395> <BEA-000000> <Error during deployment
    oracle.fabric.common.FabricException: Deployment Failed: Error occurred during deployment of component: AssignVendorETATask to service engine: implementation.workflow, for composite: AlertBPMProject: ORABPEL-30123
    Error while deploying task metadata.
    The task namespace http://xmlns.oracle.com/AlertBPMApplication/AlertBPMProject/AssignVendorETATask is already used as a template namespace.
    Check if the project you are deploying now is a template project. Please avoid deploying template projects. Use a different namespace for the task definition to fix the problem or set the suffixNamespace flag to true.
    : Error while deploying task metadata.
    The task namespace http://xmlns.oracle.com/AlertBPMApplication/AlertBPMProject/AssignVendorETATask is already used as a template namespace.
    Check if the project you are deploying now is a template project. Please avoid deploying template projects. Use a different namespace for the task definition to fix the problem or set the suffixNamespace flag to true.
         at oracle.integration.platform.blocks.deploy.StandaloneCompositeDeploymentCoordinatorImpl.coordinateCompositeDeployment(StandaloneCompositeDeploymentCoordinatorImpl.java:62)
         at oracle.integration.platform.blocks.deploy.servlet.BaseDeployProcessor.deployNewComposite(BaseDeployProcessor.java:378)
         at oracle.integration.platform.blocks.deploy.servlet.BaseDeployProcessor.deploySARs(BaseDeployProcessor.java:226)
    Caused By: oracle.fabric.common.FabricException: Error occurred during deployment of component: AssignVendorETATask to service engine: implementation.workflow, for composite: AlertBPMProject: ORABPEL-30123
    Error while deploying task metadata.
    The task namespace http://xmlns.oracle.com/AlertBPMApplication/AlertBPMProject/AssignVendorETATask is already used as a template namespace.
    Check if the project you are deploying now is a template project. Please avoid deploying template projects. Use a different namespace for the task definition to fix the problem or set the suffixNamespace flag to true.
    : Error while deploying task metadata.
    The task namespace http://xmlns.oracle.com/AlertBPMApplication/AlertBPMProject/AssignVendorETATask is already used as a template namespace.
    Check if the project you are deploying now is a template project. Please avoid deploying template projects. Use a different namespace for the task definition to fix the problem or set the suffixNamespace flag to true.
         at oracle.integration.platform.blocks.deploy.CompositeDeploymentConnection.deployComponents(CompositeDeploymentConnection.java:244)
         at oracle.integration.platform.blocks.deploy.CompositeDeploymentConnection.deploy(CompositeDeploymentConnection.java:93)
    Caused By: oracle.fabric.common.FabricDeploymentException: ORABPEL-30123
    Error while deploying task metadata.
    The task namespace http://xmlns.oracle.com/AlertBPMApplication/AlertBPMProject/AssignVendorETATask is already used as a template namespace.
    Check if the project you are deploying now is a template project. Please avoid deploying template projects. Use a different namespace for the task definition to fix the problem or set the suffixNamespace flag to true.
    : Error while deploying task metadata.
    The task namespace http://xmlns.oracle.com/AlertBPMApplication/AlertBPMProject/AssignVendorETATask is already used as a template namespace.
    Check if the project you are deploying now is a template project. Please avoid deploying template projects. Use a different namespace for the task definition to fix the problem or set the suffixNamespace flag to true.
    {rootCauses=[]}
         at oracle.bpel.services.workflow.fabric.WorkflowServiceEngine.deploy(WorkflowServiceEngine.java:908)
         at oracle.bpel.services.workflow.fabric.WorkflowServiceEngine.deploy(WorkflowServiceEngine.java:368)
         at oracle.integration.platform.blocks.deploy.CompositeDeploymentConnection.deployComponents(CompositeDeploymentConnection.java:239)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Caused By: ORABPEL-30123
    Error while deploying task metadata.
    The task namespace http://xmlns.oracle.com/AlertBPMApplication/AlertBPMProject/AssignVendorETATask is already used as a template namespace.
    Check if the project you are deploying now is a template project. Please avoid deploying template projects. Use a different namespace for the task definition to fix the problem or set the suffixNamespace flag to true.

    I came across the same issue, and now resolved it like this.
    Firstly, you shouldn't deploy QuoteProcessLab with other UILabs like ApproveDealUILab and so on. So, if you already did it, then go to Weblogic EM and undeploy it.
    Secondly, you should deploy each of UILab separately as standalone application. So, deploy EnterQuiteUILab, BUsinessPracticesUILab, and so on each. These will run independently behind and when your project created based on template in the Composer runs, it will link each of these on human task.
    Thirdly, publish you QuoteProcessLab. And follow the book about how to create a project based on template in the Composer.
    Just one thing you should be careful with is, when you do auto-generation for human task, it sometimes doesn't work fully, unfinished halfway through. So, make sure that the icon 'go to existing business form taskflow' in .task file takes you to the human taskflow.
    If it fails, do another auto-generation. Sometimes DataBindings.cpx can get corrupted by JDev, but let's not go too far for now.
    Mostly, it will work.
    Sung

  • PortalRuntimeException in Business Object document iview No portal component associated with the following context

    Hi all,
    We are stumped with a problem in our QA Enterprise Portal (7.3.1 Sp7) that throws a portal runtime error when we preview a Business Objects document iview.  The Business Objects Server versions are 4.0 SP5 and/or 4.1 SP3.
    The error is caught in the the defaultTrace file, /usr/sap/QNW/J00/j2ee/cluster/server0/log
    [EXCEPTION]
    com.sapportals.portal.prt.runtime.PortalRuntimeException: There is no portal component associated with the following context:
    pcd:portal_content/com.summit.SES_BI/com.summit.iviews/Daily_Margin
    at com.sap.portal.prt.component.PortalComponentContext.<init>(PortalComponentContext.java:93)
    Here is what we have tried
    * Confirmed the iviews exist in the PCD, by browsing to the content folders and right lick, preview on the iview.
    * Our PRD and DEV systems work correctly and are on same versions of EP Runtime and java. 7.3.1.7.0.201..
    * Occurs with all Businessobjects iviews from the QA portal and all doc types, webis, dashboards. Tried creating new iview.
    * Reapplied the com.sap.businessobjects.iviews.templates.epa to the Portal from t he BI 4.1 SP3 distribution
    * Deleted and recreated the BI portal system connector using the SAP BOBJ system template set path to http://bi-qas:8080/BOE
    * Set the embed key value in the BI system connector property and in the custom global.properties file, restarted tomcat and SIA services
    * Set permissions for everyone end user on the content folders and the BI system connector
    * Confirmed Single sign on configured correctly between BI and Portal
    * Confirmed that the QA BI server is configured correctly by directing the working DEV Portal to the QA BI server.
    * Performed actions in note 1709737
    We are certainly stuck and the defaultTrace file is not very informative.  Any suggestions are greatly appreciated
    Lee Lewis

    This is resolve with note 1615838  - SAP Netweaver Enterprise Portal 7.3 iView creation with BI 4.0 results in exceptions.
    The note includes a file portalapp.xml that need to be inserted into com.sap.businessobjects.iviews.par that is included in the BI server distribution.
    Then deploy the ear file.....
    Odd thing is that the note mentions 4.0 and we are on 4.1 SP3...
    Environment
    SAP BusinessObjects BI Platform 4.0 SP02 Patch 4 or lower
    SAP Netweaver Enterprise Portal 7.3
    Lee Lewis

  • Deployment profile for a business component deployed to 9ias?

    I am trying to build a deployment profile so I can deploy my business component to an oc4j instance on my remote 9iAS machine.
    In jdeveloper version 9.0.3, the "Business Component Deployment Wizard for EJB session bean" prompts for a both a "Deploy to Connection" and a "Server Connection".
    I am specifying a connection to a "9i Application Server - Remote DCM" for the <deploy to connection> prompt. Per the documentation and the wizard .. you must then specify a server connection.
    I don't understand the server connection piece ... The <new button> for the "server connction" only lets me build a connection a standalone OC4J. I am trying to deploy to a 9ias oc4j instance on a remote machine. I am suppose to somehow specify a connection to the remote 9ias oc4j instance as if it were a standalone instance? How do I build and specify this connection?

    Thanks Frank.
    My jdevloper help system describes how to deploy to 9ias, and I have not yet spotted anything in the fine print that nullifies this.
    The release notes that came with Jdeveloper version 9.0.3.10.35 show a compatibility matrix for deployments to 9ias version 9.0.3 ... my scenario is listed as supported. They note that deployment to 9ias 9.0.2 of bc4j is not suported, and J2EE/WebServices deployment has DCM issues.
    FYI ... I have a TAR openned on this subject, and Metalink support personnel seems to be pretty close to declaring this a bug (internal bug#2597292 and internal bug#2495251). Specifically these bugs relate to JBO component versions 9.0.3.9.51 and 9.0.3.10.12 in reagrds to DCM connections to 9ias. If this is the case then it looks like 9iAS deployment is not supported.

  • Deployment on  9iAS of Business Component

    I have an Application server 9iAS version 1.0.2.0. I have
    installed oc4j vers. 1.0.2.2 on 9iAS. I have developed a
    Business Component to deploy to the Application server as
    session EJB. The application server was set successfully, and
    also the EJB server. I have set the datasource to connect to.
    But when I test the BComponent module (with its TEST tool) I
    receive this error message:
    java.lang.classException
    com.evermind.sql.FilterPreparedStatement
    What could be the problem?
    I have thought it could be due to a version problem. What about
    you?

    Hi Mr.Reddy,
    To migrate from weblogic to oracle, remove all
    *._stub,*._skel, *.ser files in fileEJB.jar file and rebundle it
    and keep in applications folder. According to my knoweldge,
    there is no way to specify jts connection pools in data-
    source.xml file. For more documentation just visit
    www.orionserver.com.

Maybe you are looking for