10g BPEL process upgrade to 11g hangs in Jdeveloper and Ant script

I have successfully upgraded several 10g (10.1.3.4) BPEL processes and ESB services using Jdeveloper 11g (11.1.1.6.0) migration wizard and deployed them to an 11g environment. Both 10g and 11g environments are up and running.
However, my 11g jdeveloper hangs when migrating the next BPEL process. It hangs at the message box with the title: "Migration Status". I tried the Ant script and it hangs too. It hangs after printing out:
"CompositeRefs
[upgrade] WARNING: UPGBPEL-02009: No Binding setup for : "soapCheckPrivileges"
. This will cause compilation of the upgraded project to fail. Check SOA Upgrade
documentation on manual steps necessary to bind this composite reference. If ne
cessary, upgrade and deploy any dependencies. If planning to retain 1013x nodes
in this projects dependency tree, check earlier part of this log for 1013x WSDL
URLs that can be used."
I guess it makes sense since Jdeveloper and Ant script use the same code base for migration.
One other observation is that if I kill the hanging jdeveloper process and reopen it and go through the migration wizard again, it will be successful without hanging. However, when I fix all the wsdl reference and do a build and deploy to sar. The resulting sar is defective and cannot be deployed to Weblogic even if both build and deploy to sar report success. The defective sar contains only scac.log and scac-log.xml, not even composite.xml.
One difference between this BPEL process and others I have successfully upgraded is that it depends on an ESB service (this esb service has been upgraded and deployed to 11g).
Any ideas?
Thanks,

I will answer my question. I killed the migrating Java process and the migrating wizard will report failure of migrating the .jpr file. Actually, the only thing missing in the migrated .jpr file is deployment profile which I can generate from deployment menu. And I can deploy the migrated process. This works as a workaround.

Similar Messages

  • BPEL Process Manager 10.1.2.0.2 and JBoss 4.0.0  interoperability

    I have installed BPEL Process Manager 10.1.2.0.2 and JBoss 4.0.0..
    I start BPEL Process Manager 10.1.2.0.2 and it is working perfectly. Then i start JBoss 4.0.0 and it does not work.
    When i start firstly the JBoss 4.0.0 then it works, but when i am going to start BPEL Process Manager 10.1.2.0.2 then the last one is not working.
    I wonder if there are any introperability problems. Please can anybody help me?

    did you install the bpel-jboss bundle? if so the start script will start a jboss instance .. and therefor the second one might not come up (port conflicts?)

  • Modifying Memory Optimization parameter for BPEL process in SOA 11g

    Hello
    I have turned on memory optimization parameter for my BPEL process in the composite.xml (11g)
    this is what I have in composite.xml:
    <property name="bpel.config.inMemoryOptimization">false</property>
    How do we modify this parameter in the EM console at runtime? I changed this property to "true" using the System MBean browser, but it wasn't taking effect. I thought the SOA server must be restarted (similar to what we used to do in 10g). But when I restart the SOA server, the parameter goes back to whatever the value was in the composite.xml ignoring the change I made in the System MBean browser
    Please share your thoughts.
    Thanks in advance.
    Raja

    Deploying a newer version is not an option, as the endpoints could change (not sure if it would in 11g, but in 10g it does) and also, our service consumers will be pointing to the older version.As mentioned above, if clients are using URL without version then call will be forwarded to default version of composite internally. No manual tweaking required for this. Just make sure that while deploying the new version you are marking it as default.
    Besides, we report on service metrics and having multiple versions just complicates things.Not at all. If you are not using versioning feature, you are really under utilizing the Oracle SOA 11g. Remember that metrics can be collected for a single composite with same effort, irrespective of the number of composite versions deployed. Only few product tables refer the version while storing composite name and rest all use only the composite name without version. I do not know how you are collecting service metrics but we use DB jobs for same it works perfectly with any number of composites having multiple versions deployed.
    The idea is to do some debugging and collect audit trail in case there is a production issue by disabling inMemoryOptimization parameter. This is a live production environment and deploying whenever we want is not even an option for us, unfortunately. Why not debug by increasing log level. Diagnostic logs are the best option to debug an issue even in production. For getting audit trail you may re-produce the issue in lower environments. I think no organization will allow re-deployments just for debugging some issue in production until and unless it is too critical issue to handle.
    Does this not supported in 11g? if it isn't, it does seem like a bug to me. You may always go ahead and raise a case with support.
    Regards,
    Anuj

  • InvocationException while invoking a BPEL process in SOA 11g .

    Hi,
    We are calling our BPEL process under weblogic server 11g SOA from standalone Java client .
    we were using the SOA management Java reference 11.1.1.5.0 APIs in our code as shown below:
    we are using the jars:
    ejb30.jar,
    ejb.jar
    fabric-common.jar,
    optic.jar,
    oracle-soa-client-api.jar,
    soa-infra-mgmt.jar,
    wlfullclient.jar,
    wsclient_extended.jar,
    xmlparserv2.jar..
    CompositeDN compositeDN = new CompositeDN("default","MasterBPELProcess", "1.0");
    DirectConnection dic = locator.createDirectConnection(compositeDN, "MasterBPELProcess");
    DocumentBuilderFactory docBuilderFactory = DocumentBuilderFactory.newInstance();
    DocumentBuilder builder = docBuilderFactory.newDocumentBuilder();
    Document doc = builder.parse(new InputSource(new StringReader(inputPayload)));
    Element root = doc.getDocumentElement();
    Map<String,Element> mpayload = new HashMap<String,Element>();
    mpayload.put("payload", root);
    Payload<Element> payload = PayloadFactory.createXMLPayload(mpayload);
    Message<Element> request = XMLMessageFactory.getInstance().createMessage();
    request.setPayload(payload);
    try {
    Message<Element> response =
    dic.request(operationName, request);}catch(InvocationException e){}
    **we are getting the Below Exception, while sending the request :**
    **try {**
    **Message<Element> response =**
    **dic.request(operationName, request);}catch(InvocationException e){}**
    oracle.soa.api.invocation.InvocationException: ; nested exception is:
    java.io.EOFException; nested exception is: java.io.EOFException
    at oracle.soa.api.DirectConnectionImpl.request(DirectConnectionImpl.java:126)
    at oracle.soa.api.CachedConnectionProxy.request(CachedConnectionProxy.java:57)
    at com.verizon.vsii.initiate.InitializeBPELProcess.initBPEL(InitializeBPELProcess.java:266)
    at com.verizon.vsii.initiate.InitializeBPELProcessBatch.initBPEL(InitializeBPELProcessBatch.java:66)
    at com.verizon.vsii.initiate.InitializeBPELProcessBatch.main(InitializeBPELProcessBatch.java:75)
    Caused by: javax.ejb.EJBException: ; nested exception is:
    java.io.EOFException; nested exception is: java.io.EOFException
    at weblogic.ejb.container.internal.RemoteBusinessIntfProxy.unwrapRemoteException(RemoteBusinessIntfProxy.java:121)
    at weblogic.ejb.container.internal.RemoteBusinessIntfProxy.invoke(RemoteBusinessIntfProxy.java:96)
    at $Proxy4.request(Unknown Source)
    at oracle.soa.api.DirectConnectionImpl.request(DirectConnectionImpl.java:114)
    ... 4 more
    Caused by: java.io.EOFException
    at weblogic.rjvm.t3.MuxableSocketT3.endOfStream(MuxableSocketT3.java:345)
    at weblogic.socket.SocketMuxer.deliverExceptionAndCleanup(SocketMuxer.java:826)
    at weblogic.socket.SocketMuxer.deliverEndOfStream(SocketMuxer.java:760)
    BPEL Response:
    Error in executing BPEL process Syncronously
    args.length 0
    at weblogic.socket.SocketMuxer.readReadySocketOnce(SocketMuxer.java:941)
    at weblogic.socket.SocketMuxer.readReadySocket(SocketMuxer.java:888)
    at weblogic.socket.JavaSocketMuxer.processSockets(JavaSocketMuxer.java:339)
    at weblogic.socket.SocketReaderRequest.run(SocketReaderRequest.java:29)
    at weblogic.work.ExecuteRequestAdapter.execute(ExecuteRequestAdapter.java:21)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:145)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
    Note:
    I have given the code.Pls let's know what is the reason for this exception( asap ), also let us know is there any solution to solve this problem & reference for using that API.
    Edited by: sundar on Nov 11, 2011 6:52 AM

    hi..
    did u solve this problem ??
    i too got the same problem , help me if u have already solved this .
    thanks in advance

  • Oracle BPEL Process Manager 10.1.3.x sensors and Oracle BAM Server 11g TP4

    In Oracle Fusion Middleware Developers Guide for Oracle SOA Suite in section 42.5 there is the next:
    "You can also use Oracle BPEL Process Manager 10.1.3.1 sensor actions to publish sensor data as data objects on Oracle BAM Server 11g"
    Is it really possible?

    Hi, Please post this in BPEL forum, not here.
    Regards,
    Priyanka GES

  • Error when deploying BPEL Process to Weblogic 11g

    Hi,
    I have just started to use JDev and SOA, so I am new to this.
    I have created numerous BPEL processes in JDev 11.1.1.5.0 which im trying to deploy to the SOA domain on Weblogic 10.3.4.0 however each time the same error appears:
    [09:24:35 AM] ---- Deployment started. ----
    [09:24:35 AM] Target platform is (Weblogic 10.3).
    [09:24:35 AM] Running dependency analysis...
    [09:24:36 AM] Building...
    [09:24:53 AM] Deploying profile...
    [09:24:53 AM] Updating revision id for the SOA Project 'Project1.jpr' to '1.0'..
    [09:24:54 AM] Wrote Archive Module to C:\JDeveloper\mywork\JETEST\Project1\deploy\sca_Project1_rev1.0.jar
    [09:24:54 AM] Deploying sca_Project1_rev1.0.jar to partition "default" on server soa_server1 [http://hostname:8001]
    [09:24:54 AM] Processing sar=/C:/JDeveloper/mywork/JETEST/Project1/deploy/sca_Project1_rev1.0.jar
    [09:24:54 AM] Adding sar file - C:\JDeveloper\mywork\JETEST\Project1\deploy\sca_Project1_rev1.0.jar
    [09:24:54 AM] Preparing to send HTTP request for deployment
    [09:24:54 AM] Creating HTTP connection to host:[http://hostname:8001]
    [09:24:54 AM] Sending internal deployment descriptor
    [09:24:54 AM] Sending archive - sca_Project1_rev1.0.jar
    [09:24:59 AM] Received HTTP response from the server, response code=500
    [09:24:59 AM] Error deploying archive sca_Project1_rev1.0.jar to partition "default" on server soa_server1 [http://hostname:8001]
    [09:24:59 AM] HTTP error code returned [500]
    [09:24:59 AM] Error message from server:
    There was an error deploying the composite on soa_server1: Deployment Failed: Error occurred during deployment of component: BPELProcess1 to service engine: implementation.bpel, for composite: Project1: ORABPEL-05250
    Error deploying BPEL suitcase.
    error while attempting to deploy the BPEL component file "/u01/app/oracle/product/Middleware/user_projects/domains/soa_domain/servers/soa_server1/dc/soa_65920eec-7e29-45fd-a66f-53dc157b8618"; the exception reported is: java.lang.NoClassDefFoundError: Could not initialize class com.collaxa.cube.util.JavaHelper
    This error contained an exception thrown by the underlying deployment module.
    Verify the exception trace in the log (with logging level set to debug mode).
    [09:24:59 AM] Check server log for more details.
    [09:24:59 AM] Error deploying archive sca_Project1_rev1.0.jar to partition "default" on server soa_server1 [http://hostname:8001]
    [09:24:59 AM] #### Deployment incomplete. ####
    [09:24:59 AM] Error deploying archive file:/C:/JDeveloper/mywork/JETEST/Project1/deploy/sca_Project1_rev1.0.jar
    (oracle.tip.tools.ide.fabric.deploy.common.SOARemoteDeployer)
    Can anyone help?
    Cheers

    I have created numerous BPEL processes in JDev 11.1.1.5.0 which im trying to deploy to the SOA domain on Weblogic 10.3.4.0 however each time the same error appears:Did you check server log? Exactly which class it is not able to find?
    Regards,
    Anuj

  • Instances is not creating for 10g BPEL process but Polling is happening

    Hi All ,
    I am using Jdev 10.1.1.3 .
    I created a process to poll data from DB adapter. Polling is happening (i mean in the DB, status is moving from unread value to read value), but after deployment, no instance is creating for my bpel process. Please help me out for my issue. Thank you in advance
    Regards,
    Kotresh

    Please post BPEL related queries in BPEL forum -
    BPEL
    Regards,
    Anuj

  • Empty BPEL Process in SOA 11g.

    HI,
    We created all bpel processes using Empty BPEL Process template Available in the jdeveloper. Then we add AQ adapter to read the data and calling some third party webservices.
    Is empty Bpel Processes option act as synchronous or asynchronous?
    as for my understanding its always act as a asynchronous.
    Please clear my doubt.

    Hi Pablo,
    Thanks For the reply.
    we are using DB adapter which will poll on table,that means this is the service which creates the bpel instance.
    the only prob we are facing is sometimes BPEL instances are never comeout from the RUNNING state and error its showing error as"The transaction was rolled back. The work performed for bpel instance "290086" was rolled back to the previous dehydration point, but the audit trail has been saved.You can recover the instance from the recovery console by resubmitting the callback message or activity for execution"
    Oracle suggested this problem occurs when you are using Synchronous processes. increase the timeout settings.
    DB adapter Polling is always Asynchronous?
    can you just share your thoughts on this..
    Regards,
    Sudha

  • Can we design the BPEL process using API's instead of JDeveloper

    hi' All,
    I might be sounding funnny, however I would like to know "Can we design the BPEL process in 11G from scratch using API's instead of JDeveloper"
    and is there some tutorial which talks about how to do this.
    thanks
    Yatan

    Hi,
    Designing a BPEL process without JDev will not be a good way to go, but you can deploy the process without JDev and also can change the dynamic parameters while deployment. For that you, need a separate ANT script. For Prod Env this is a very common thing.
    ~
    Joy

  • Invoking a BPEL process when file comes to a dir and write to DB - BPEL10g

    Hi,
    I am trying to create a BPEL process where it reads a file from a directory (this directory will receive a file with any name by a different process every 30 mnts or so). and this file may have multiple records, and I need to add these records to the Database.
    I really appreciate your help on this.
    Thank you

    Have a file adapter on the inbound to poll the files from inbound directory and DB Adapter to put this data into the DB Tables. Refer OTN for lots of samples and documentation available.

  • BPEL process blue print not importable by JDeveloper

    Hi
    I have a troublesome BPEL process that is not being imported into JDeveloper. Others work fine and the closed loop process change management works great.
    However, this particular one is annoying.
    On selecting the process, JDeveloper downloads the required information. I click 'Next' and/or 'Finish' and it starts 'Creating Project'. That's all it does. Eventually it finishes and nothing has been added to the project.
    Has anyone seen this before, or know where a log may be of the process to debug it?
    Any help most appreciated.
    I am using 10.1.3.4 BPA Suite and 10.1.3.3 JDev
    Cheers
    Chris

    Aha
    I get the following exception occuring.
    ## download =C:\DOCUME~1\cbell\LOCALS~1\Temp\bpaserver_download20348.zip
    ## download =C:\DOCUME~1\cbell\LOCALS~1\Temp\bpaserver_download20349.zip
    java.io.IOException
    at oracle.ide.net.URLFileSystem.copy(URLFileSystem.java:297)
    at oracle.tip.tools.ide.common.bpeldesigner.util.Helper.copyFiles(Helper.java:130)
    at oracle.tip.tools.ide.pm.projectwizard.JDevProjectBuilder.createExistingBluePrintProject(JDevProjectBuilder.java:144)
    at oracle.tip.tools.ide.pm.projectwizard.JDevProjectBuilder.createIDEProject(JDevProjectBuilder.java:71)
    at oracle.tip.tools.ide.pm.projectwizard.BPELProjectWizard.handleFinish(BPELProjectWizard.java:57)
    at oracle.tip.tools.ide.common.graph.wizard.JWizard$1.run(JWizard.java:400)
    at java.lang.Thread.run(Thread.java:595)
    Think I may raise an SR.
    Cheers
    Chris

  • Error while 10g to 11g Migration of BPEL process [Urgent]

    Hi
    We are facing huge error while trying to migrate one of our 10g BPEL Process to 11g. This is holding up our full migration process.
    SEVERE: Upgrade failed. Check the logs for any exceptions. Ensure that the WSDL URLs specified in the project are reachable and a valid 10.1.3.x project is used for upgrade. Before re-attempting upgrade, restore the original project code source from the backup directory.
    java.io.IOException: Document found at 'http://myserver.net:7777/AIAComponents/EnterpriseBusinessServiceLibrary/Core/EBO/SupplierParty/V1/SupplierPartyEBS.wsdl' is not a schema document.
         at oracle.viewgen.plugin.bpel.BPELPlugin.createComponentType(BPELPlugin.java:172)
         at oracle.viewgen.ViewGenerator.main(ViewGenerator.java:223)
    Caused by: javax.wsdl.WSDLException: WSDLException: faultCode=OTHER_ERROR: Error importing schemas: java.io.IOException: Document found at 'http://myserver.net:7777/AIAComponents/EnterpriseBusinessServiceLibrary/Core/EBO/SupplierParty/V1/SupplierPartyEBS.wsdl' is not a schema document.
         at oracle.j2ee.ws.wsdl.extensions.schema.SchemaSerializer.unmarshall(SchemaSerializer.java:76)
         at oracle.j2ee.ws.wsdl.extensions.ParseUtils.createExtensibilityElement(ParseUtils.java:106)
         at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.parseTypes(WSDLReaderImpl.java:1472)
         at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.parseDefinition(WSDLReaderImpl.java:779)
         at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:706)
         at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:655)
         at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:368)
         at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:622)
         at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:258)
         at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:229)
         at oracle.viewgen.wsdl.WSDLUtil.getWSDL(WSDLUtil.java:60)
         at oracle.viewgen.wsdl.WSDLUtil.getWSDL(WSDLUtil.java:71)
         at oracle.viewgen.plugin.bpel.BPELPlugin.createComponentType(BPELPlugin.java:154)
         ... 1 more
    Caused by: java.io.IOException: Document found at 'http://myserver.net:7777/AIAComponents/EnterpriseBusinessServiceLibrary/Core/EBO/SupplierParty/V1/SupplierPartyEBS.wsdl' is not a schema document.
         at oracle.j2ee.ws.wsdl.extensions.schema.SchemaSerializer.readSchemaFile(SchemaSerializer.java:179)
         at oracle.j2ee.ws.wsdl.extensions.schema.SchemaSerializer.loadReference(SchemaSerializer.java:138)
         at oracle.j2ee.ws.wsdl.extensions.schema.SchemaSerializer.processImportIncludeRedefine(SchemaSerializer.java:108)
         at oracle.j2ee.ws.wsdl.extensions.schema.SchemaSerializer.unmarshall(SchemaSerializer.java:73)
         ... 13 more
    Process: RequestorABCS bpel which invokes the SupplierPartyEBS
    --EBS has already been deployed successfully to 11g environment
    -- EBS WSDL is a AIA EBM and already in SOA MDS
    -- The URL "http://myserver.net:7777/AIAComponents/EnterpriseBusinessServiceLibrary/Core/EBO/SupplierParty/V1/SupplierPartyEBS.wsdl" can be accessed on my browser and the Proxy settings are off for JDev11113.
    Any suggestions are welcome.
    Thanks
    -debashis

    The reference was being made in another WSDL which failed to read the schema at design time.
    This can be solved by

  • ODI 10g (10.1.3.4) upgrade to 11g (11.1.1.6) issue

    Hi folks,
    While running the Upgrade Assistance on my cloned repositories I've got the following error in the log:
    oracle.odi.setup.RepositorySetupException: java.lang.RuntimeException: Error while executing drop table SNP_KEY     
         at oracle.odi.setup.support.WorkRepositorySetupImpl$3.doAction(WorkRepositorySetupImpl.java:481)
         at oracle.odi.core.persistence.dwgobject.DwgObjectTemplate.execute(DwgObjectTemplate.java:186)
         at oracle.odi.core.persistence.dwgobject.TransactionalDwgObjectTemplate.execute(TransactionalDwgObjectTemplate.java:39)
         at oracle.odi.setup.support.WorkRepositorySetupImpl.upgradeWorkRepository(WorkRepositorySetupImpl.java:382)
         at oracle.odi.setup.support.WorkRepositorySetupImpl.upgradeWorkRepository(WorkRepositorySetupImpl.java:153)
         at oracle.odi.setup.RepositoryUpgradeServiceImpl.upgradeWork(RepositoryUpgradeServiceImpl.java:57)
         at oracle.odi.setup.RepositoryUpgradeServiceImpl.upgradeRepositories(RepositoryUpgradeServiceImpl.java:136)
         at oracle.ias.mrua.plugin.odi.ODIPlugin.doUpgrade(ODIPlugin.java:462)
         at oracle.ias.mrua.MRUA.executePlugins(MRUA.java:3576)
         at oracle.ias.mrua.MRUA.internal_driver(MRUA.java:2357)
         at oracle.ias.mrua.MRUA.driver(MRUA.java:1621)
         at oracle.ias.upgrade.gui.UAUpgradeThread.run(UAUpgradeThread.java:390)
    Caused by: java.lang.RuntimeException: Error while executing drop table SNP_KEY     
         at com.sunopsis.dwg.xml.DwgXmlSession.execute(DwgXmlSession.java:92)
         at com.sunopsis.repository.manager.DDLSessionExecutor.executeDDL(DDLSessionExecutor.java:97)
         at com.sunopsis.repository.manager.oldupgrade.Pre04_03_03_02Upgrader.executeXmlAbsoluteFile(Pre04_03_03_02Upgrader.java:232)
         at com.sunopsis.repository.manager.oldupgrade.Pre04_03_03_02Upgrader.workUpgradePre04_03_03_02(Pre04_03_03_02Upgrader.java:333)
         at com.sunopsis.repository.manager.RepositoryManager.workRepositoryPatch(RepositoryManager.java:4743)
         at oracle.odi.setup.support.WorkRepositorySetupImpl$3.doAction(WorkRepositorySetupImpl.java:466)
         ... 11 more
    The error occures while upgrading the Work repository. Mster Repository upgrade passed without issues.
    Can this be related to the fact that I skipped some ODI releases - 10.1.3.5 or 11.1.1.5 ???
    Please advise ...

    Thanks for the confirmation.
    We also have lot of business rules on 10.1.3.4.
    In 10g we have a separate application called rules author to create/manage rules and which in tern save them to rules repository.These rules are not part of BPEL processes
    but in 11g we have rules dictionary which will take all defined rules and is part of composite.
    During upgrade process,How can 10g rules from rules repo come to dictionary in 11g?
    Is this step automated or we need to manually export them from 10g rules rep and import them into 11g ?
    Waht is the process
    Thanks,
    Praveen

  • Problem executing migrated BPEL process in Oracle SOA 11g

    Hi,
    I have migrated a 10g BPEL process to 11g successfully and deployed it. But while trying to invoke the BPEL, I am getting this error while invoking the bpel:
    Non Recoverable System Fault :
    Error committing transaction:; nested exception is: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.0.2.v20100323-r6872): org.eclipse.persistence.exceptions.DatabaseException Internal Exception: java.sql.SQLException: ORA-12899: value too large for column "DEV1_SOAINFRA"."CUBE_INSTANCE"."TITLE" (actual: 1718, maximum: 100) Error Code: 12899 Call: INSERT INTO CUBE_INSTANCE (CIKEY, PARENT_REF_ID, AG_ROOT_ID, TEST_RUN_ID, COMPOSITE_LABEL, STATE, CONVERSATION_ID, EXT_STRING1, SCOPE_USIZE, MODIFY_DATE, STAGE, AT_COUNT_ID, CREATOR, ECID, PARENT_ID, TITLE, PRIORITY, TEST_SUITE, TEST_CASE, METADATA, SCOPE_CSIZE, COMPOSITE_NAME, STATUS, ROOT_ID, DOMAIN_NAME, CMPST_ID, OUTCOME, EXT_INT1, AG_MILESTONE_PATH, COMPONENTTYPE, PROCESS_TYPE, MODIFIER, CREATION_DATE, AT_DETAIL_ID, COMPONENT_NAME, SCOPE_REVISION, EXT_STRING2, AT_EVENT_ID, COMPOSITE_REVISION, TEST_RUN_NAME, CACHE_VERSION) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) bind => [10092, null, null, null, soa_f21825b0-dcd6-47c2-8bf0-da63e26a53ea, 5, urn:uuid:b194c638-d9b3-4680-a10f-068c9a1eaa01, null, 415, 2010-06-23 12:38:26.406, null, 0, null, 0000I_ZcdIR95il_Kt9Die1C8BKX00009a, null, Instance #10092 of ProcessOrder GIFBDC IG-GetOrder Order 98347594357 Always 100shij 2009-08-03T16:16:17.390Z 321354564 processCancelBRMOrder Commit 1 2010061001 2010-05-01 VIN2010061001 Address1 CityName CountrySub 456123 US 101 true 12345 0 0 wang chen 1 1 1 1 1 1 Sales_Channel 123 PricePlan 156 2010-05-01 true 101 , 0, null, null, null, 256, ProcessOrder, Log_Fault, null, default, 10006, null, 0, null, bpel, 0, null, 2010-06-23 12:38:06.812, 0, ProcessOrder, 1, null, 0, 1.0, null, null] Query: InsertObjectQuery(com.collaxa.cube.persistence.dto.CubeInstance@1830602)
    IS there any problem with the configuration of database? I am using XE for storing the metadata.
    Please provide the solution for the issue.
    Thanks in advance.

    Yes it is having a receive activity , it receives the cXML from Ariba Adaapter. I checked the adapter it is up.
    I generated the jar and deployed through BPEL console still i get the same error.
    I got the below error
    Internal Server Error
    The server encountered an internal error or misconfiguration and was unable to complete your request.
    Please contact the server administrator, [email protected] and inform them of the time the error occurred, and anything you might have done that may have caused the error.
    More information about this error may be available in the server error log.

  • Performance tuning of BPEL processes in SOA Suite 11g

    Hi,
      We are working with a customer for performance tuning of SOA Suite 11g, one of the areas is to tune the BPEL processes. I am new to this and started out with stress testing Hello World process using SOAPUI tool. I would like help with the below topics -
    1. How do I interpret the statistics collected during stress testing? Do we have any benchmark set that can indicate that the performance is ok.
    2. Do we need to run stress tests for every BPEL process deployed?
    2. Is there any performance tuning strategy documentation available? Or can anybody share his/her experiences to guide me?
    Thanks in advance!
    Sritama

    1. How do I interpret the statistics collected during stress testing? Do we have any benchmark set that can indicate that the performance is ok.
    You need
    pay attention to:
    java heap usage vs java heap capacity
    java eden usage vs java eden capacity
    JDBC pool initial connections vs JDBC pool capacity connections
    if you are using linux: top
    if you are using aix: topas
    2. Do we need to run stress tests for every BPEL process deployed?
    yes, you need test each BPEL. You can use "Jmeter" tool.
    Download Jmeter from here: Apache JMeter - Apache JMeter&amp;trade;
    Other tools:
    jstat
    jstack
    jps -v
    Enterprise Manager
    WebLogic Console
    VisualVM
    JRockit Mission Control
    3. Is there any performance tuning strategy documentation available? Or can anybody share his/her experiences to guide me?
    I recommend "Oracle SOA Suite 11g Performance Tuning Cookbook" http://www.amazon.com/Oracle-Suite-Performance-Tuning-Cookbook/dp/1849688842/ref=sr_1_1?ie=UTF8&qid=1378482031&sr=8-1&keywords=oracle+soa+suite+11g+performance+tuning+cookbook

Maybe you are looking for

  • Windows vista do not start

    Windows vista do not start.   I have tried starting in the different safe mode, none works (after the loading bar it all just becomes black), also tried start repair it just says that start repair can not fix the error.  I have check if I could resto

  • Object Expected Errors in IE 6/ 7

    www.crystalhoyt.com Error messages on every page relative to the navigation bar. Says that an object is expected, char 1. I can't figure out what is "missing" because I made the navigation bar with the Dreamweaver Menu Tool. Please advise.

  • How to call/Execute a dos batch file via LAN

    Hello, Can i execute remotely dos batch files? I have to execute bat file via LAN ex IP\dir\batfile.bat from abap code, is that possible? thanks in advance, Michal

  • WLC and syslog broadcast from AP

    Hello, my wlc analyzer keep on informing me about syslog messages sent in broadcast from my APs. how can I solve this problem? thanks Johnny

  • Consuming SOAP Web Services

    Ok I have a web service that I'm trying to consume in CF9. I'm able to hit the wsdl with SOAPUI and see the results. The results come back in XML format. It basically shows a list of rooms we use as meetings and show the times they are reserved. Here