How to deploy process to Process Administrator

I install the BPM standalone because of the confinguration error (could not create the JVM) in BPM Enterprise.
How to deploy the process created in the BPM studio to the standalone?
Thanks.

After installing stand alone, run the 'Admin Center'.
From here, start the BPM Web Applications. Once that starts you should be able to click the 'Launch Process Admin'.
After signing in (user you created during installation), click the 'Projects' link on the left. This will display all current projects. From here you can 'Add' a project using the export created in studio (File -> Export).
*Note: This assumes that the installation completed, and both databases (Directory and Engine) were created.
For more information, the Administration Documentation (how to manage projects) is:http://download.oracle.com/docs/cd/E13154_01/bpm/docs65/admin_guide/modules/projects/enterprise/c_Head_Managing_Projects.html
And the Installation Documentation is: http://download.oracle.com/docs/cd/E13154_01/bpm/docs65/config_guide/modules/enterprise/standalone/t_SA_Config_Overview.html
Hope that helps!
-Kevin

Similar Messages

  • How to publish an own and deployed process? Via WSDL?

    Hi There,
    i'm kinda new to BPM and i got some questions. I've gone through some tutorials and created my own process. I build and deployed it, startet it through the NWA and tested it (mostly human activitys and mappings). Everything works fine but i'm facing some unsolved problems:
    1. Is it possible to get the sourcecode of the deployed process from the repository? I've already downloaded the WSDL-file from the "Single Service Administration" and want to get the process itself too.
    2. Within the "Services Registry" i published the deployed process. I imported this published WSDL within the process composer (import per Service Registry) and linked it in an automated activity, but it seems that the process can't invoke itself. Neither when i use the imported interface at the end-event it doesn't "restart". My question here is: can't a process invoke itself or does it just not work with the default wsdl? It would be intresting for me, if a process could invoke another process when it ends.
    3. Is there any good tutorial how to create an own WSDL-file with the process composer? I haven't seen any yet.
    Any information would be helpful!
    With kind regards,
    Markus
    Edited by: Markus Alfers on Jan 14, 2009 3:44 PM

    Hi Fazal,
    thanks for your answer. I had already found the process in the web service navigator. I tested it there and it was ok. But i wasnt able to find it in the UDDI-registry, so i downloaded the WSDL-File from the "single service administration" and registered it in the UDDI-registry. I imported this published WSDL-file from the UDDI-registry within the process composer to be able to test if a process can invoke itself, but it didnt work. Than i tried a new process which only has an automated activity which trys to invoke my first process, but this doesn't seem to work too. I need to know how i can invoke another process within an automated task or at the end-event of a process. I think this could be helpfull if i want to create Sub-Process and route input and output data through it.
    I also need to know how i can create my own WSDL-file for a process which i want to create with the process composer, because not every process i want to define has an empty start nor an empty end. Is there any good tutorial for this? Somebody also mentioned that he/she created an own WSDL-file with the PI server, but i dont know how to do that. It is also confusing when you got ~ten or more default services within the web service navigator.
    With kind regards
    Markus

  • How to deploy an app with servlet and background processing

    i have a servlet with background processing. it has to run 24 hours a day.
    but i have problem with shutdown (after 1-2 hours without user action). [9iAS 9.0.3.0, windows 2000]
    i created for application seperate OC4J (in the EM) and i deployed it there. first time as war file, later as ear file (because there is possible to re-deploy only ear file).
    but it seems that the servlets are not designated to run as a uninterruptible task.
    the question is: how to deploy such (servlet + uninterruptible background processing) application in the 9iAS?
    a) everything in the OC4J (then how to disable shutdown?)
    b) servlet in the OC4J. where (and how) to install the rest of application?
    b1) servlet in the OC4J + rmi/soap/... + standalone server?
    what is the standard in the oracle world :) ?
    thanks

    Better to post your topic in the iPad in the Enterprise community.
    This is the, "Using Mac App Store" forum and for the most part for troubleshooting the App Store.

  • How to improve the ODSI deployment process ?

    At at moment we are using the attached script to create new dataspaces and deploy new data services into our environment.
    Our environment is running 4 managed server cluster in the SUN Unix env.
    We have noticed the process takes a lot of time. For example the deployment of the new data service may take up to 20-30 minutes.
    The process is always putting the WebLogic servers into *"ADMIN"* mode that prevents access to other data spaces and applications.
    And on some occasions the deployment does not completes leaving the server in the ADMIN mode.
    Is there any way we can improve the process to avoid locking the server into the ADMIN mode and possibly speed up the deployment?
    Thanks in advance Peter L
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    Our script
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    import wlstModule as wlst
    from java.io import FileInputStream
    import sys, os
    def loadProps(configPropFile):
    propInputStream = FileInputStream(configPropFile)
    configProps = Properties()
    configProps.load(propInputStream)
    return configProps
    script_dir =os.getenv('SCRIPT_DIR')
    if script_dir == '':
    print "The environment variable SCRIPT_DIR is not set"
    print "Please go the the domain directory and run setControlEnv.sh"
    sys.exit()
    else:
    controlScriptFile=script_dir + '/controlscript.properties'
    if len(sys.argv) > 1:
    importConfigFile=sys.argv[1]
    else:
    print "Please enter the property file path"
    sys.exit()
    try:
    controlScriptProp = loadProps(controlScriptFile)
    except:
    print "Fail to load the property file: ", controlScriptFile
    sys.exit()
    try:
    exportConfigProp = loadProps(importConfigFile)
    except:
    print "Fail to load the property file: ", importConfigFile
    sys.exit()
    try:
    execfile(script_dir + '/ODSICommonCommands.py')
    except:
    print "Fail to execute file :" + script_dir + "/ODSICommonCommands.py"
    sys.exit()
    def createDataSpace2(dataspaceName, targetName, targetType):
    moveToDomainServiceMBean()
    targets = wlst.get('Targets')
    targets.clear()
    from com.bea.dsp.management.deployment.dataspace import DeploymentTarget
    cl_target=DeploymentTarget(targetName, DeploymentTarget.Kind.valueOf(targetType))
    targets.add(cl_target)
    wlst.invoke('createDataSpace',[dataspaceName,targets],['java.lang.String','java.util.Set'])
    def existDataSpace(dataspaceName):
    moveToDomainServiceMBean()
    names = wlst.invoke('listDataSpaceNames',[],[])
    return names.contains(dataspaceName)
    def activateDataSpace(dataspaceName):
    moveToDomainServiceMBean()
    from com.bea.dsp.management.deployment.dataspace import ActivationOptions
    activateOptions = ActivationOptions.valueOf('CLIENT')
    wlst.invoke('activateDataSpace',[dataspaceName, activateOptions],['java.lang.String', 'com.bea.dsp.management.deployment.dataspace.ActivationOptions'])
    adminUrl = controlScriptProp.get("ADMIN_URL")
    importUserConfigFile = script_dir + '/AdminConfigfile.secure'
    importUserKeyFile = script_dir + '/Adminkeyfile.secure'
    dataSpaceName=exportConfigProp.get("dataSpaceName")
    print 'Connecting to weblogic server instance...'
    connect(userConfigFile=importUserConfigFile, userKeyFile=importUserKeyFile, url=adminUrl)
    targetName = exportConfigProp.get("targetName")
    targetType = exportConfigProp.get("targetType")
    sessionName=exportConfigProp.get("sessionName")
    importJarFile=exportConfigProp.get("importJarFile")
    # Create a dataspace
    try:
    if existDataSpace(dataSpaceName):
    print 'Data Space ' + dataSpaceName + ' exists. It will be removed first.'
    deleteDataSpace(dataSpaceName)
    createDataSpace2(dataSpaceName, targetName, targetType)
    except:
    print 'Fail to create DataSpace ' + dataSpaceName + targetName + targetType +' disconnect...'
    disconnect()
    raise ValueError, 'Error Creating dataspace: ' + dataSpaceName
    # Creates a deployment session with name
    print 'Creating a deployment session...'
    createDeploymentSession(sessionName)
    #Imports a dataspace Jar into dataspace 'SampleDataspace'.
    try:
    importJarPath=os.getenv('PWD') + '/' + importJarFile
    print 'Importing ' + importJarPath +' into dataspace...'
    importDataSpace(dataSpaceName, sessionName, importJarPath)
    except Exception:
    print 'Exception, and release the session...'
    discardDeploymentSession(sessionName)
    disconnect()
    #Activates the config session
    print 'Activating the deployment session...'
    activateDeploymentSession(sessionName)
    activateDataSpace(dataSpaceName)
    # Disconnects from weblogic server.WLST will switch to offline mode
    print 'Full Deployment is Successful. Disconnecting from weblogic server...'
    disconnect()
    Edited by: user13795599 on Oct 25, 2011 12:05 PM

    Mike, I will try to do the incremental deployments but sometimes we need to delete the old dataspaces and do full deploy.
    So if run the above full deployment script all applications are suspended and the server is transition into Admin mode, and then server waits for a server lock , Seats like this forever and I have to kill the deployment process and Resume the servers:
    Don't know what causing it.Any ideas ?
    It looks like can not get a server lock ....
    Thanks Peter L
    here are the log entries:
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    +
    +
    +
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    ####<Oct 25, 2011 4:50:34 PM EDT> <Info> <Deployer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575834921> <BEA-149060> <Module NB21_NET_EnabledHTTPSBasicAuth of application NB21_NET_Enabled_request_handlers successfully transitioned from STATE_ACTIVE to STATE_ADMIN on server dataserver1.>
    ####<Oct 25, 2011 4:50:34 PM EDT> <Info> <Deployer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575834922> <BEA-149059> <Module NB21_NET_EnabledBasicAuth of application NB21_NET_Enabled_request_handlers is transitioning from STATE_ACTIVE to STATE_ADMIN on server dataserver1.>
    ####<Oct 25, 2011 4:50:34 PM EDT> <Info> <Deployer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575834922> <BEA-149060> <Module NB21_NET_EnabledBasicAuth of application NB21_NET_Enabled_request_handlers successfully transitioned from STATE_ACTIVE to STATE_ADMIN on server dataserver1.>
    ####<Oct 25, 2011 4:50:34 PM EDT> <Info> <Deployer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575834923> <BEA-149059> <Module NB21_NET_EnabledHTTPS of application NB21_NET_Enabled_request_handlers is transitioning from STATE_ACTIVE to STATE_ADMIN on server dataserver1.>
    ####<Oct 25, 2011 4:50:34 PM EDT> <Info> <Deployer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575834924> <BEA-149060> <Module NB21_NET_EnabledHTTPS of application NB21_NET_Enabled_request_handlers successfully transitioned from STATE_ACTIVE to STATE_ADMIN on server dataserver1.>
    ####<Oct 25, 2011 4:50:34 PM EDT> <Info> <Deployer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575834924> <BEA-149059> <Module NB21_NET_Enabled of application NB21_NET_Enabled_request_handlers is transitioning from STATE_ACTIVE to STATE_ADMIN on server dataserver1.>
    ####<Oct 25, 2011 4:50:34 PM EDT> <Info> <Deployer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575834925> <BEA-149060> <Module NB21_NET_Enabled of application NB21_NET_Enabled_request_handlers successfully transitioned from STATE_ACTIVE to STATE_ADMIN on server dataserver1.>
    ####<Oct 25, 2011 4:50:34 PM EDT> <Info> <Deployer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575834926> <BEA-149059> <Module NB21_NET_Enabled_dspejb.jar of application NB21_NET_Enabled_request_handlers is transitioning from STATE_ACTIVE to STATE_ADMIN on server dataserver1.>
    ####<Oct 25, 2011 4:50:34 PM EDT> <Info> <Deployer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575834927> <BEA-149060> <Module NB21_NET_Enabled_dspejb.jar of application NB21_NET_Enabled_request_handlers successfully transitioned from STATE_ACTIVE to STATE_ADMIN on server dataserver1.>
    ####<Oct 25, 2011 4:50:34 PM EDT> <Info> <Deployer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575834931> <BEA-149059> <Module Dummy of application dsp_config is transitioning from STATE_ACTIVE to STATE_ADMIN on server dataserver1.>
    ####<Oct 25, 2011 4:50:34 PM EDT> <Info> <Deployer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575834932> <BEA-149060> <Module Dummy of application dsp_config successfully transitioned from STATE_ACTIVE to STATE_ADMIN on server dataserver1.>
    ####<Oct 25, 2011 4:50:34 PM EDT> <Notice> <WebLogicServer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575834961> <BEA-000365> <Server state changed to ADMIN>
    ####<Oct 25, 2011 4:51:00 PM EDT> <Info> <ODSI> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1319575860089> <BEA-000000> <financialcontractinquiryv1> <DSPAuditEvent timestamp: Tue Oct 25 16:51:00 EDT 2011 severity: INFORMATION id: financialcontractinquiryv1:91:Tue Oct 25 16:51:00 EDT 2011 {
    common/application {
    user: <anonymous>
    eventkind: dataspace
    server: dataserver1
    admin/dataspace {
    operation: delete
    admin/dataspace {
    name: financialcontractinquiryv1
    common/time {
    timestamp: Tue Oct 25 16:51:00 EDT 2011
    duration: 0
    }>
    ####<Oct 25, 2011 4:51:00 PM EDT> <Notice> <ODSI> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1319575860188> <BEA-000000> <financialcontractinquiryv1> <Audit stopped.>
    ####<Oct 25, 2011 4:51:01 PM EDT> <Info> <WorkManager> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575861001> <BEA-002903> <Creating WorkManager from "weblogic.wsee.mdb.DispatchPolicy" WorkManagerMBean for application "financialcontractinquiryv1_request_handlers">
    ####<Oct 25, 2011 4:51:01 PM EDT> <Info> <WorkManager> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575861003> <BEA-002903> <Creating WorkManager from "lowPriority" WorkManagerMBean for application "financialcontractinquiryv1_request_handlers">
    ####<Oct 25, 2011 4:51:01 PM EDT> <Info> <Deployer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575861063> <BEA-149059> <Module financialcontractinquiryv1_dspejb.jar of application financialcontractinquiryv1_request_handlers is transitioning from STATE_NEW to STATE_PREPARED on server dataserver1.>
    ####<Oct 25, 2011 4:51:01 PM EDT> <Info> <EJB> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575861198> <BEA-010008> <EJB Deploying file: financialcontractinquiryv1_dspejb.jar>
    ####<Oct 25, 2011 4:51:01 PM EDT> <Info> <Deployer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575861748> <BEA-149060> <Module financialcontractinquiryv1_dspejb.jar of application financialcontractinquiryv1_request_handlers successfully transitioned from STATE_NEW to STATE_PREPARED on server dataserver1.>
    ####<Oct 25, 2011 4:51:01 PM EDT> <Info> <Deployer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575861748> <BEA-149059> <Module financialcontractinquiryv1 of application financialcontractinquiryv1_request_handlers is transitioning from STATE_NEW to STATE_PREPARED on server dataserver1.>
    ####<Oct 25, 2011 4:51:01 PM EDT> <Info> <HTTP> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575861761> <BEA-101363> <Application: financialcontractinquiryv1_request_handlers, WebApp: financialcontractinquiryv1 has context-root specified in application.xml: "financialcontractinquiryv1". The context-root specified in weblogic.xml: "financialcontractinquiryv1" will be ignored.>
    ####<Oct 25, 2011 4:51:02 PM EDT> <Info> <Deployer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575862525> <BEA-149060> <Module financialcontractinquiryv1 of application financialcontractinquiryv1_request_handlers successfully transitioned from STATE_NEW to STATE_PREPARED on server dataserver1.>
    ####<Oct 25, 2011 4:51:02 PM EDT> <Info> <Deployer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575862526> <BEA-149059> <Module financialcontractinquiryv1HTTPS of application financialcontractinquiryv1_request_handlers is transitioning from STATE_NEW to STATE_PREPARED on server dataserver1.>
    ####<Oct 25, 2011 4:51:02 PM EDT> <Info> <HTTP> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575862538> <BEA-101363> <Application: financialcontractinquiryv1_request_handlers, WebApp: financialcontractinquiryv1HTTPS has context-root specified in application.xml: "financialcontractinquiryv1HTTPS". The context-root specified in weblogic.xml: "financialcontractinquiryv1HTTPS" will be ignored.>
    ####<Oct 25, 2011 4:51:03 PM EDT> <Info> <Deployer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575863185> <BEA-149060> <Module financialcontractinquiryv1HTTPS of application financialcontractinquiryv1_request_handlers successfully transitioned from STATE_NEW to STATE_PREPARED on server dataserver1.>
    ####<Oct 25, 2011 4:51:03 PM EDT> <Info> <Deployer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575863186> <BEA-149059> <Module financialcontractinquiryv1BasicAuth of application financialcontractinquiryv1_request_handlers is transitioning from STATE_NEW to STATE_PREPARED on server dataserver1.>
    ####<Oct 25, 2011 4:51:03 PM EDT> <Info> <HTTP> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575863200> <BEA-101363> <Application: financialcontractinquiryv1_request_handlers, WebApp: financialcontractinquiryv1BasicAuth has context-root specified in application.xml: "financialcontractinquiryv1BasicAuth". The context-root specified in weblogic.xml: "financialcontractinquiryv1BasicAuth" will be ignored.>
    ####<Oct 25, 2011 4:51:03 PM EDT> <Info> <Deployer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575863851> <BEA-149060> <Module financialcontractinquiryv1BasicAuth of application financialcontractinquiryv1_request_handlers successfully transitioned from STATE_NEW to STATE_PREPARED on server dataserver1.>
    ####<Oct 25, 2011 4:51:03 PM EDT> <Info> <Deployer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575863852> <BEA-149059> <Module financialcontractinquiryv1HTTPSBasicAuth of application financialcontractinquiryv1_request_handlers is transitioning from STATE_NEW to STATE_PREPARED on server dataserver1.>
    ####<Oct 25, 2011 4:51:03 PM EDT> <Info> <HTTP> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575863867> <BEA-101363> <Application: financialcontractinquiryv1_request_handlers, WebApp: financialcontractinquiryv1HTTPSBasicAuth has context-root specified in application.xml: "financialcontractinquiryv1HTTPSBasicAuth". The context-root specified in weblogic.xml: "financialcontractinquiryv1HTTPSBasicAuth" will be ignored.>
    ####<Oct 25, 2011 4:51:04 PM EDT> <Info> <Deployer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575864662> <BEA-149060> <Module financialcontractinquiryv1HTTPSBasicAuth of application financialcontractinquiryv1_request_handlers successfully transitioned from STATE_NEW to STATE_PREPARED on server dataserver1.>
    ####<Oct 25, 2011 4:51:04 PM EDT> <Info> <DeploymentService> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319575864828> <BEA-290063> <commit for request '1,319,575,828,129' will not proceed further since its requires restart flag is set.>
    ####<Oct 25, 2011 4:55:40 PM EDT> <Alert> <WebLogicServer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319576140100> <BEA-000396> <Server lock has been requested by <WLS Kernel>>
    ####<Oct 25, 2011 4:55:40 PM EDT> <Alert> <WebLogicServer> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319576140106> <BEA-000396> <Server lock has been requested by <WLS Kernel>>
    ####<Oct 25, 2011 5:00:43 PM EDT> <Info> <Diagnostics> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319576443275> <BEA-320143> <Scheduled 1 data retirement tasks as per configuration.>
    ####<Oct 25, 2011 5:00:43 PM EDT> <Info> <Diagnostics> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319576443303> <BEA-320144> <Size based data retirement operation started on archive HarvestedDataArchive>
    ####<Oct 25, 2011 5:00:43 PM EDT> <Info> <Diagnostics> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319576443304> <BEA-320145> <Size based data retirement operation completed on archive HarvestedDataArchive. Retired 0 records in 1 ms.>
    ####<Oct 25, 2011 5:00:43 PM EDT> <Info> <Diagnostics> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319576443305> <BEA-320144> <Size based data retirement operation started on archive EventsDataArchive>
    ####<Oct 25, 2011 5:00:43 PM EDT> <Info> <Diagnostics> <ei00d71> <dataserver1> <[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1319576443306> <BEA-320145> <Size based data retirement operation completed on archive EventsDataArchive. Retired 0 records in 1 ms.>
    ####<Oct 25, 2011 5:00:50 PM EDT> <Info> <Health> <ei00d71> <dataserver1> <weblogic.GCMonitor> <<anonymous>> <> <> <1319576450148> <BEA-310002> <27% of the total memory in the server is free>
    ####<Oct 25, 2011 5:01:50 PM EDT> <Info> <Health> <ei00d71> <dataserver1> <weblogic.GCMonitor> <<anonymous>> <> <> <1319576510160> <BEA-310002> <48% of the total memory in the server is free>

  • How to deploy and start PHP web services required for a process

    hello everyone!
    i ve implemented some php web services. One of them is ManagePatientsImpl.php class
    and the corresponding ManagePatients.wsdl.
    How can deploy it? What are the files required apart from them?
    In addition there are some GUI-files. Should these files be deployed together?
    Thank you in advance!
    Edited by: user643354 on 14-Jul-2010 09:40

    i'm sorry, i assumed you were running weblogic server.
    in case of oc4j you could try this :
    http://tugdualgrall.blogspot.com/2005/03/php-on-oc4j-yes-with-jsr-223-ri.html
    OC4J communication with PHP

  • Error while deploying process flow

    hi All,
    i am getting below error while deploying 1 process flow.
    Description : Runtime User : OWBPC Started : 2011-06-02 19:18:06.0
    Name Action Status Log
    None Error ORA-00942: table or view does not exist
    None Error RPE-02053: The Oracle Workflow version cannot be retrieved. This may have been caused by an incomplete or incorrect installation of Oracle Workflow or the schema may not contain an Oracle Workflow repository. Please check the location details, reinstall Oracle Workflow, if necessary and try again
    i added only 1 mapping in process flow and mapping containing both tables in taret schema.
    kindly tell me how to fix it.?
    rgds,
    Pc

    hi..thnx for replying..
    i have already installed owf manager from below location in my pc..
    D:\app\pc\product\11.1.0\db_1\owb\wf\install
    and installation was successful..then too I am getting same error while deploying process flow.. im using oracle 11g.. direct me now plz..
    Edited by: PC on Jun 3, 2011 3:48 PM

  • Notification: "The report deployment process in in progress"

    Hi All,
    We're implementing Service manager and we have an issue with the reporting management packs.
    Upon opening the Service manager console we're getting the error:
    "The report deployment process in in progress. To determine when management pack deployment is complete, see the procedure in the service manager deployment guide. You can view reports after management packs have been deployed."
    I've consulted the guide and the MPsyncjobs tasks runs and completes in under 1 minute, the Get-SCDWJob command returns the following:
    BatchId Name                 Status       CategoryName     StartTime
    6490    MPSyncJob            Not Started  Synchronization
    6482    DWMaintenance        Not Started  Maintenance
    6488    Load.Common          Not Started  Load
    6484    Load.OMDWDataMart    Not Started  Load
    6485    Load.CMDWDataMart    Not Started  Load
    6492    Extract_DW_SBCSMDW   Not Started  Extract
    6486    Transform.Common     Not Started  Transform
    In the GUI under "data warehouse jobs" the job MPSyncJob is Not started but in the details section under Job Progress it's stuck at 48/48 and looks like it's running.
    I'm new to System Center so if anyone could point me into the right direction to work out how to get reporting working that would be great.
    Thanks.

    Modified the required files as per the specifiacation in both xml and properties files .
    Deployed the service successfully.
    But problem is it's not picking the file from the source server.
    Please guide me how to test the service...in the bpel after deploying the service...
    how the check the service log ?

  • The deployment process seems to die or get stuck, iAS 6 SP3 for Solaris 8?

    When I deploy my application in iAS 6 SP3 for Solaris 8 the deployment process seems to die or get stuck. In the shell window i get the messages
    iasdeploy for iPlanet Application Server 6.0 SP3
    Connected to LDAP server on sstu15.auto.com port 389
    iPlanet Application Server is running in international mode
    sstu15:null
    sstu15:10 kas> deployment action ''J2EEInstallEar'' (/u02/home/iplanet/JAR/SSS.ear) running.
    sstu15:10 kas> deployment action ''J2EEInstallEar'' (/u02/home/iplanet/JAR/SSS.ear) running.
    After this nothing happens for a really long time.
    When starting the deployment I get in the beginning of kas.log two entries
    ADMIN-168: kas> deployment get log ''J2EEInstallEar''
    GDS-007: finished a registry load
    but suddenly the second line disappears and the only message I get is the first entry. I need to break the deployment process and kill the processes manually.
    When starting the application server I get two error messages:
    Connected to LDAP server on sstu15.auto.com port 389
    iPlanet Application Server is running in international mode
    Connected to LDAP server on sstu15.auto.com port 389
    iPlanet Application Server is running in international mode
    iPlanet Administrative Server
    Version 6.0 SP3, Build 20010704
    Copyright (c) 1996-1997 KIVA Software Corporation.
    Copyright (c) 1998-1999 Netscape Communications Corporation.
    Copyright (c) 2000-2001 Sun Microsystems, Inc. Some preexisting portions Copyright (c) 2000 Netscape Communications Corp
    . All rights reserved.
    Use of this software is governed by the terms of the executed license agreement between you and iPlanet E-Commerce Solutions.
    [14/Feb/2002 11:02:12:7] error: ADMIN-071: kas> error: failed to either start up or connect to engine ''0'' (CCS0)
    [14/Feb/2002 11:03:08:8] error: ADMIN-071: kas> error: failed to either start up or connect to engine ''1'' (CCS0)
    I think all processes starts OK, I get one for .kas and one for kas, one for .kxs and one for kxs and finally one for .kjs and one for kjs.
    Is someone familiar with this/these problem(s)?

    It seems you are deploying a very big application. Try to deploy this application with following command
    j2eeappreg <filename>
    It should work fine. It was a bug with iasdeploy command in iAS SP3 which had been fixed in iAS SP4.

  • BPM 11g Process Administrator functions: Where are they now??

    Good morning,
    I've got some decent ALBPM6.0.5 experience, and now I've just started in a new project that uses BPM 11g. I've attended to an Oracle "Hands On" so I know 11g is VERY different from 10g/ALBPM.
    My main problem is that I cannot find anywhere where are Roles and Users managed in the server. From where do I administer Roles, Users, Groups, Organizational Units. All that used to be in the Process Administrator. How is that done now? I swear I've gone through all the documentation at http://download.oracle.com/docs/cd/E14571_01/soa.htm and still found nothing :(
    Also, is now using an LDAP mandatory? Or can something like ALBPM Directory still be used??
    Thanks in advance.

    User/Role management is now done through the workspace itself. You must login as an administrative user (like weblogic) and you will see an Admin link in the upper right of the workspace.
    Authentication and user lookup is now handled directly by Weblogic - so you setup authentication Providers in the WLS security realm through the admin console.
    By default Weblogic is configured to use an internal LDAP that stores local users (this is where the "weblogic" user itself is defined).
    General steps are provided here:
    http://download.oracle.com/docs/cd/E14571_01/integration.1111/e10226/hwf_config.htm#BHCJGBFJ
    http://download.oracle.com/docs/cd/E12840_01/wls/docs103/secmanage/atn.html#wp1198953
    Edited by: Mike Rokitka on Jul 2, 2010 11:17 AM

  • Error Emails from BPM Process Administration Console

    I am able to send error email to a single e-mail Id after configuring it in BPM Process Administrator(Engine-Networking tab).
    How do I sent e-mail to multiple user?
    I tried comma separated. It didnt work.
    Anyone can help on this?
    I get error something like below.....
    will be notified. Original exception is: Illegal address Caused by: Illegal address java.io.IOException: Illegal address at fuego.io.SMTPClient.sendMail(SMTPClient.java:323) at fuego.io.SMTPClient.sendMail(SMTPClient.java:341) at fuego.server.service.MailNotificationDispatcher.sendNow(MailNotificationDispatcher.java:157) at fuego.ejbengine.service.EJBMailNotificationDispatcher.send(EJBMailNotificationDispatcher.java:55) at fuego.server.service.ServerMailLogOutput.doOutput(ServerMailLogOutput.java:116) at fuego.log.LogOutput.output(LogOutput.java:187) at fuego.log.LogSystem$LogItemDispatcher.logItems(LogSystem.java:980) at fuego.log.LogSystem$LogItemDispatcher.run(LogSystem.java:863) Caused by: javax.mail.internet.AddressException: Illegal address in string
    Edited by: sideeque on Feb 16, 2011 7:56 AM

    Not the answer you wanted and sure you already thought of this, but try using a group email address inside the Process Admin email field.
    Dan

  • Using Admin Center/Process Administrator inside BPM Studio

    Hi,
    I have a process where we have included many jars and external resources as well as we are using the External Task - Portal for our JSP's? Also the users are such that they cannot be included inside of Studio Users. We therefore cannot test the process within the Studio itself.
    We therefore have to make an EXP file each time we make a change to our process and then deploy it to the ALBPM Server using the Process Administrator to test even a small change made to the process. The deployment takes a long time, sometimes even more than 10 mins.
    We loose a lot of time doing this.
    Is there an easy way to test the changes using the Studio itself without making an EXP file?
    Please remember we need the EXP file and the Server because the JARS and the External Resources , especially the Portal JSP's do not work from within the studio itself..

    I solved the problem and I posted the solution into my blog, visit http://rodrigozuchetto.blogspot.com/

  • Deployed processes not showing in BPEL Console

    I am working on a processes that uses AQ to interface with a Oracle back end application.
    It seemed to work fine, but from a certain moment on it didn't pick up any messages that were qeueued. Except for the first instance of the process. Though the monitor showed it waiting for the response, the process had actually received the response and had proceeded with the next step (in which a file was written to a directory, as I could see). Then it stopped. All subsequent processes stopped after queueing an input message.
    After stopping and starting the BPEL Process Manager and OC4J container things went from bad to worse. Now none of the deployed processes are visible in the monitor. However, if I look at a previous instance of a process, it does show up on the dashboard.
    I've had a look at the application log of the orabpel OC4J application and it shows a lot of errors (of the same sort) since BEPL Process Manager was stopped. Restarting the Application Server didn't help.
    This is the error I'm getting:
    05/12/19 14:55:19 MessageDrivenHome::run: dequeue FAILED; attempting to re-acquire JMS session for blocking receive
    05/12/19 14:55:19 MessageDrivenHome::run: retry_cnt=0 this.dequeue_retry_cnt=0 this.dequeue_retry_interval=60
    Does anybody have a clue about what is wrong?

    Some more info on the problem:
    I took one of the application servers out of the cluster and began working on it in a standalone state.
    The Setup, OracleAS Middle Tier with BPEL:
    1. The Application server sits on an internal network that has access to the outside world but restricted incoming access.
    2. There is an Apache server running mod_proxy that acts as a reverse proxy for all requests to http://workflow/. http://workflow/ connects the requests to http://servername:7797/, where BPEL is running.
    This works to get connectivity to the Application Server. We want the WSDL Location to start with http://workflow/ insead of http://servername:7797/ so we can eventually use a clustered load balancing environment.
    I found out that the processes are not showing up in the BPEL Dashboard when I change, soapCallbackUrl and soapServerUrl to http://workflow/. They will not show up until I actually navigate to the WSDL file using teh http://workflow beginning. After which they show up in the BPEL Dashboard. However, on a OC4J_BPEL restart they all disappear again.
    Everything works if I use the http://servername:7797/ beginning for WSDLs, but this will not work for the overall implementation.
    How can I change soapCallbackUrl and soapServerUrl to http://workflow and still use the BPEL Dashboard?

  • Can deploy process but not workflow (10.1.3.10 beta)

    I tried to deploy several of the demo BPEL processes, but each time the process is deployed successfully, but the workflow is not. Fro example OrderApproval.
    I tried setting properties in the build.properties file, but apparently to no avail. Also changing them via the project ant properties did not help.
    It looks like the payload JSP did not get deployed -- most of the process works, including the workflow bit, as long as one does not try to look into the worklist entry contents (which gives the 404 Not Found error, same as in the 10.1.2 version when the JSP page is not in the proper directory of hw/worklistexpress).
    I noticed some strange behavior in the build properties as stored in the project file (OrderApproval.jpr). There are a lot of equivalent ("fromjdev") entries in the oracle.jdeveloper.ant.AntRunConfiguration hash table. Also, each time after I run a deploy, the value for oc4jinstancename is removed and a corresponding <null/> entry shows up in the file. I tried cleaning up redundant fromjdev entries, but it did not help.
    Also hard coding the oc4jinstancename attribute to soademo did not help.
    Any suggestions on how to fix the build? See below for a log; I added printing of the deploy attributes to the build.xml file.
    Apache Ant version 1.6.5 compiled on June 2 2005
    Buildfile: C:\JDevSOA10.1.3.10beta\jdev\mywork\demos\OrderApproval\build.xml
    Detected Java version: 1.5 in: C:\JDevSOA10.1.3.10beta\jdk\jre
    Detected OS: Windows XP
    parsing buildfile C:\JDevSOA10.1.3.10beta\jdev\mywork\demos\OrderApproval\build.xml with URI = file:///C:/JDevSOA10.1.3.10beta/jdev/mywork/demos/OrderApproval/build.xml
    Project base dir set to: C:\JDevSOA10.1.3.10beta\jdev\mywork\demos\OrderApproval\bpel
    Property ${home} has not been set
    [property] Loading C:\JDevSOA10.1.3.10beta\jdev\mywork\demos\OrderApproval\bpel\${home}\samples\common.properties
    [property] Unable to find property file: C:\JDevSOA10.1.3.10beta\jdev\mywork\demos\OrderApproval\bpel\${home}\samples\common.properties
    Build sequence for target(s) `validateTask' is [validateTask]
    Complete build sequence is [validateTask, deployTaskForm, loadproperty, compile, deployProcess, all, ]
    validateTask:
    [echo] --------------------------------------------------------------
    [echo] // Validating workflow
    [echo] --------------------------------------------------------------
    [validateTask] url is file:/C:/JDevSOA10.1.3.10beta/integration/bpm/support/files/WorkflowTaskDefinition.xsd
    [validateTask] Validation of workflow task definitions is completed without errors
    Build sequence for target(s) `deployProcess' is [deployProcess]
    Complete build sequence is [deployProcess, validateTask, deployTaskForm, loadproperty, compile, all, ]
    deployProcess:
    [echo] --------------------------------------------------------------
    [echo] // Deploying bpel process OrderApproval on localhost and port 8888
    [echo] --------------------------------------------------------------
    [deployProcess] Deploying process C:\JDevSOA10.1.3.10beta\jdev\mywork\demos\OrderApproval\bpel\..\output\bpel_OrderApproval_1.0.jar
    [deployProcess] Successfully deployed the process "OrderApproval" on server "localhost" and port "8888"
    Build sequence for target(s) `deployTaskForm' is [deployTaskForm]
    Complete build sequence is [deployTaskForm, validateTask, loadproperty, compile, deployProcess, all, ]
    deployTaskForm:
    [echo] --------------------------------------------------------------
    [echo] // Deploying workflow form on localhost and port 8888
    [echo] --------------------------------------------------------------
    [echo] hostname=localhost httpport=8888 rmiport=23791
    [echo] platform=oc4j opmnrequestport=23791
    [echo] oc4jinstancename= asinstancename=soademo domain=default rev=1.0
    BUILD FAILED
    C:\JDevSOA10.1.3.10beta\jdev\mywork\demos\OrderApproval\build.xml:52: Error while deploying the form on server "{0}" Error message :
    com.evermind.client.orion.AdminCommandException: Could not connect to the remote server. Please check if the server is down or the client is using invalid host, ORMI port or password to connect: Connection refused: connect
    at com.evermind.client.orion.Oc4jAdminConsole.createCannotConnectException(Oc4jAdminConsole.java:175)
    at com.evermind.client.orion.Oc4jAdminConsole.executeCommand(Oc4jAdminConsole.java:128)
    at com.collaxa.cube.ant.taskdefs.DeployForm.deployOC4J(DeployForm.java:612)
    at com.collaxa.cube.ant.taskdefs.DeployForm.deployForm(DeployForm.java:521)
    at com.collaxa.cube.ant.taskdefs.DeployForm.deployForms(DeployForm.java:780)
    at com.collaxa.cube.ant.taskdefs.DeployForm.execute(DeployForm.java:806)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
    at org.apache.tools.ant.Task.perform(Task.java:364)
    at org.apache.tools.ant.Target.execute(Target.java:341)
    at org.apache.tools.ant.Target.performTasks(Target.java:369)
    at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1216)
    at org.apache.tools.ant.Project.executeTarget(Project.java:1185)
    at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:40)
    at org.apache.tools.ant.Project.executeTargets(Project.java:1068)
    at oracle.jdevimpl.ant.runner.AntLauncher.launch(AntLauncher.java:321)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at oracle.jdevimpl.ant.runner.InProcessAntStarter.runAnt(InProcessAntStarter.java:295)
    at oracle.jdevimpl.ant.runner.InProcessAntStarter.mav$runAnt(InProcessAntStarter.java)
    at oracle.jdevimpl.ant.runner.InProcessAntStarter$1.run(InProcessAntStarter.java:71)
    Caused by: javax.naming.CommunicationException: Connection refused: connect [Root exception is java.net.ConnectException: Connection refused: connect]
    at com.evermind.server.rmi.RMIClient.lookup(RMIClient.java:258)
    at com.evermind.server.rmi.RMIClientContext.lookup(RMIClientContext.java:51)
    at com.evermind.client.orion.Oc4jAdminConsole.executeCommand(Oc4jAdminConsole.java:126)
    ... 20 more
    Caused by: java.net.ConnectException: Connection refused: connect
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
    at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
    at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
    at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:366)
    at java.net.Socket.connect(Socket.java:507)
    at java.net.Socket.connect(Socket.java:457)
    at java.net.Socket.<init>(Socket.java:365)
    at java.net.Socket.<init>(Socket.java:207)
    at com.evermind.server.rmi.RMIClientConnection.createSocket(RMIClientConnection.java:645)
    at oracle.oc4j.rmi.ClientSocketRmiTransport.createNetworkConnection(ClientSocketRmiTransport.java:58)
    at oracle.oc4j.rmi.ClientRmiTransport.connectToServer(ClientRmiTransport.java:78)
    at oracle.oc4j.rmi.ClientSocketRmiTransport.connectToServer(ClientSocketRmiTransport.java:68)
    at com.evermind.server.rmi.RMIClientConnection.connect(RMIClientConnection.java:609)
    at com.evermind.server.rmi.RMIClientConnection.sendLookupRequest(RMIClientConnection.java:153)
    at com.evermind.server.rmi.RMIClientConnection.lookup(RMIClientConnection.java:137)
    at com.evermind.server.rmi.RMIClient.lookup(RMIClient.java:249)
    ... 22 more
    at com.collaxa.cube.ant.taskdefs.DeployForm.execute(DeployForm.java:818)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
    at org.apache.tools.ant.Task.perform(Task.java:364)
    at org.apache.tools.ant.Target.execute(Target.java:341)
    at org.apache.tools.ant.Target.performTasks(Target.java:369)
    at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1216)
    at org.apache.tools.ant.Project.executeTarget(Project.java:1185)
    at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:40)
    at org.apache.tools.ant.Project.executeTargets(Project.java:1068)
    at oracle.jdevimpl.ant.runner.AntLauncher.launch(AntLauncher.java:321)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at oracle.jdevimpl.ant.runner.InProcessAntStarter.runAnt(InProcessAntStarter.java:295)
    at oracle.jdevimpl.ant.runner.InProcessAntStarter.mav$runAnt(InProcessAntStarter.java)
    at oracle.jdevimpl.ant.runner.InProcessAntStarter$1.run(InProcessAntStarter.java:71)
    Total time: 2 seconds
    Snippet from project file:
    <hash n="oracle.jdeveloper.ant.AntRunConfiguration">
    <url n="buildfileURL" path="build.xml"/>
    <value n="outputLevel" v="3"/>
    <list n="propertyNames">
    <string v="fromjdev"/>
    <string v="fromjdev"/>
    <string v="fromjdev"/>
    <string v="fromjdev"/>
    <string v="user"/>
    <string v="password"/>
    <string v="type"/>
    <string v="host"/>
    <string v="port"/>
    <string v="fromjdev"/>
    <string v="fromjdev"/>
    <string v="fromjdev"/>
    <string v="fromjdev"/>
    <string v="asinstancename"/>
    <string v="fromjdev"/>
    <string v="fromjdev"/>
    <string v="fromjdev"/>
    <string v="fromjdev"/>
    <string v="fromjdev"/>
    <string v="opmn.requestport"/>
    <string v="admin.user"/>
    <string v="platform"/>
    <string v="domain"/>
    <string v="oc4jinstancename"/>
    <string v="hostname"/>
    <string v="http.port"/>
    <string v="admin.password"/>
    <string v="rmi.port"/>
    <string v="rev"/>
    </list>
    <list n="propertyValues">
    <string v="true"/>
    <string v="true"/>
    <string v="true"/>
    <string v="true"/>
    <string v="oc4jadmin"/>
    <string v="welcome1"/>
    <string v="oc4j"/>
    <string v="localhost"/>
    <string v="8888"/>
    <string v="true"/>
    <string v="true"/>
    <string v="true"/>
    <string v="23791"/>
    <string v="soademo"/>
    <string v="true"/>
    <string v="true"/>
    <string v="true"/>
    <string v="true"/>
    <string v="true"/>
    <string v="23791"/>
    <string v="oc4jadmin"/>
    <string v="oc4j"/>
    <string v="default"/>
    <null/>
    <string v="localhost"/>
    <string v="8888"/>
    <string v="welcome1"/>
    <string v="23791"/>
    <string v="1.0"/>
    </list>
    <list n="targetList">
    <string v="validateTask"/>
    <string v="deployProcess"/>
    <string v="deployTaskForm"/>
    <string v="deployDecisionServices"/>
    </list>
    </hash>

    When I change the rmi ports to 23793 via the project properties and save, they get updated correctly in the .jpr file. However, the deploy still fails, because somehow JDeveloper resets the values back to 23791 (just as it routinely wipes out the oc4jinstancename) and writes them to the .jpr file.
    How can I make the new value 'stick'?
    I tried changing the port of the LocalBPELApplicationServer from 23791 to 23793 but got:
    Error while getting remote MBeanServer for url: ormi://localhost:23793/default:
    Error reading application-client descriptor: Error communicating with server: Connection refused: connect; nested exception is:
         javax.naming.CommunicationException: Connection refused: connect [Root exception is java.net.ConnectException: Connection refused: connect]
    When I click on the [+] next to the connection I get this:
    oracle.oc4j.admin.jmx.shared.exceptions.JMXRuntimeException: Error while getting remote MBeanServer for url: ormi://localhost:23793/default
         at oracle.oc4j.admin.jmx.client.CoreRemoteMBeanServer.fetchMBeanServerEjbRemote(CoreRemoteMBeanServer.java:499)
         at oracle.oc4j.admin.jmx.client.CoreRemoteMBeanServer.<init>(CoreRemoteMBeanServer.java:160)
         at oracle.oc4j.admin.jmx.client.RemoteMBeanServer.<init>(RemoteMBeanServer.java:128)
         at oracle.oc4j.admin.jmx.client.RemoteMBeanServer.getMBeanServer(RemoteMBeanServer.java:158)
         at oracle.oc4j.admin.jmx.client.ClientMBeanServerProxyFactory.getMBeanServer(ClientMBeanServerProxyFactory.java:68)
    <snip>
    And even then, the deploy process still forces the port to 23791.
    I restarted the server and JDeveloper, but the problem persists.

  • Business Rules are not imported in deployment process

    Dear friends:
    I am deploying a project. The project has 23 business rules.
    In the Oracle BPM Process Administrator,--> Projects --> In the column Business Rules --> Details , There are not one business rule imported which was created in Oracle BPM Studio.
    What is happening? Something is wrong in the deployment process?
    Or what is the correct way to write business rule for a project?
    I hope your answers.
    Best Regards,
    Danny

    Hi Danny,
    If you're using Oracle BPM Enterprise running on WebLogic you're ok. I know it's disconcerting, but your business rules were really created and deployed. It's a cosmetic bug that prevents them from being able to be viewed in the Process Administrator tool.
    Hope this helps,
    Dan

  • Deployment process for Large ALSB/OSB project

    Hi,
    I am searching for some details or article about deployment of alsb/osb projects (number of projects) as part of build process.
    How projects manages when number of different alsb projects need to be build, customized and imported into different environments.
    We are starting new release where developers would be working on different projects. i have a some ANT scripts which use WLST script to export single project, created jar file and place them into a specific location.
    For import, the script looks at a specific location, reads config.jar from that location, and imports that config into target environment. Now with multiple projects and each developer will deliver their own config.jar. How to handle that in WLST. I am not sure if the current approach i am using that any good to handle multiple projects deployment.
    Anyone could give some pointers or helpful hints?
    we are on version 10.0 and wont be moving to 10gR3 where we could use ANt to build config.jar from .metadata so not sure.
    I want to know what other projects are doing etc!
    many thanks in advance!
    sal

    It seems you already have certain level of insight into deployment process, but maybe you will find this document interesting:
    http://download.oracle.com/docs/cd/E13159_01/osb/docs10gr3/pdf/deploybestprac.pdf

Maybe you are looking for

  • Create PDF's in an older Version

    Dear Sir or Madam, our company works with an interface for PDF forms. The fields of a form are automatically recognized. For option fields are the possible element values selectable. That works fine with forms made with the Distiller 7.0. Newly we bo

  • KNOWN ISSUE: HTML Messages with plain-text signatures

    To get around the EAS security policy issue, I'm having non-sensitive emails from work forwarded to a GMail account from a redirect set up in our corporate OWA. The redirect seems to send the messages to GMail without any issues; formatting is 100% i

  • Sources of supply giving wrong results.

    Dear experts, We are using SRM 4.0 ,server 500. When creating a shopping cart, and checking the proposed sources of supply for a particular product, we get a list of more than 20 contracts. (correct) When we directly want to create a PO we only get 6

  • What is Time Machine on my Imac cleaning up?

    Did a full back on 1 TB Imac Hard drive.  Now Time Machine is "cleaning up"? what is it cleaning - old backups?  If so, what happens if I cancell it prematurely? Thank you.

  • Using imac speakers on a G5

    Hi there I was going to use the speakers that came with my wife's imac (G4) with my Mac G5. I realised, however, that the speakers have a 2.5" jack whereas the only audio output socket on the G5 is 3.5". Has anyone else tried to use these speakers wi