Oracle bpm and jboss

hello!
i followed the instructions at http://download.oracle.com/docs/cd/E10291_01/doc.1013/e10538/jboss.htm#BABHIHJD to setup the oracle bpel process manager for jboss. but when i start jboss, i get the following error several times:
2007-10-01 09:05:29,218 INFO  [STDOUT] JmsConnectionFactory: Unable to set connectionparameters for OracleConnectionManager
2007-10-01 09:05:29,218 ERROR [STDERR] java.lang.NullPointerException
2007-10-01 09:05:29,234 ERROR [STDERR]      at oracle.tip.adapter.jms.JmsConnectionFactory.<init>(JmsConnectionFactory.java:91)
2007-10-01 09:05:29,234 ERROR [STDERR]      at oracle.tip.adapter.jms.JmsManagedConnectionFactory.createConnectionFactory(JmsManagedConnectionFactory.java:81)
2007-10-01 09:05:29,234 ERROR [STDERR]      at org.jboss.resource.connectionmanager.ConnectionFactoryBindingService.createConnectionFactory(ConnectionFactoryBindingService.java:128)
2007-10-01 09:05:29,234 ERROR [STDERR]      at org.jboss.resource.connectionmanager.ConnectionFactoryBindingService.startService(ConnectionFactoryBindingService.java:65)
2007-10-01 09:05:29,234 ERROR [STDERR]      at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
2007-10-01 09:05:29,234 ERROR [STDERR]      at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
2007-10-01 09:05:29,234 ERROR [STDERR]      at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
2007-10-01 09:05:29,234 ERROR [STDERR]      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
2007-10-01 09:05:29,234 ERROR [STDERR]      at java.lang.reflect.Method.invoke(Method.java:585)
2007-10-01 09:05:29,234 ERROR [STDERR]      at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
2007-10-01 09:05:29,234 ERROR [STDERR]      at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
2007-10-01 09:05:29,234 ERROR [STDERR]      at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
2007-10-01 09:05:29,234 ERROR [STDERR]      at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
2007-10-01 09:05:29,234 ERROR [STDERR]      at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
2007-10-01 09:05:29,234 ERROR [STDERR]      at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
2007-10-01 09:05:29,234 ERROR [STDERR]      at $Proxy0.start(Unknown Source)at the end of the startup occurs an error concerning the database connection (which is, in my opinion, setup correctly), but the server is down right now, i will post it later...

database is up again, so here comes my second problem:
Laden von OraBPEL-Prozess "default" Domäne nicht erfolgreich. Grund:
Lookup bei JDBC-Datenquelle nicht möglich.
Die Prozessdomäne konnte kein Lookup bei der TX-Datenquelle "jdbc/BPELServerDataSourceWorkflow" ausführen.
Stellen Sie sicher, dass der Rechner mit der Datenquelle physisch mit dem Netzwerk verbunden ist. Außerdem müssen die Connection Pool-Eigenschaften entsprechend der Definition in den Startup-Eigenschaften für den Application Server gültig sein.
ORABPEL-04076
Lookup bei JDBC-Datenquelle nicht möglich.
Die Prozessdomäne konnte kein Lookup bei der TX-Datenquelle "jdbc/BPELServerDataSourceWorkflow" ausführen.
Stellen Sie sicher, dass der Rechner mit der Datenquelle physisch mit dem Netzwerk verbunden ist. Außerdem müssen die Connection Pool-Eigenschaften entsprechend der Definition in den Startup-Eigenschaften für den Application Server gültig sein.
     at com.collaxa.cube.engine.data.ConnectionFactory$ConnectionFactoryImpl.init(ConnectionFactory.java:271)
     at com.collaxa.cube.engine.data.ConnectionFactory.update(ConnectionFactory.java:55)
     at com.collaxa.cube.engine.data.ConnectionFactory.init(ConnectionFactory.java:43)
     at com.collaxa.cube.engine.data.DomainConnectionFactory.init(DomainConnectionFactory.java:33)
     at com.collaxa.cube.engine.adaptors.AdaptorManager.load(AdaptorManager.java:72)
     at com.collaxa.cube.engine.CubeEngine.__load(CubeEngine.java:652)
     at com.collaxa.cube.engine.CubeEngine.load(CubeEngine.java:506)
     at com.collaxa.cube.admin.ServerManager.loadDomain(ServerManager.java:1111)sorry for the german message... basically it says that the tx datasource "jdbc/BPELServerDataSourceWorkflow" cannot be looked up.
that looks strange to me, because a few lines above is the following message:
2007-10-02 09:18:42,093 INFO  [STDOUT] <2007-10-02 09:18:42,093> <INFO> <collaxa> <ConnectionFactoryImpl::init> Initialized connection factory java:jdbc/BPELServerDataSourceWorkflowthe contents of my oracle-ds.xml:
<datasources>
  <local-tx-datasource>
    <jndi-name>jdbc/BPELServerDataSourceWorkflow</jndi-name>
    <connection-url>jdbc:oracle:thin:@10.141.86.6:1521:ORCL</connection-url>
    <driver-class>oracle.jdbc.OracleDriver</driver-class>
    <user-name>orabpel</user-name>
    <password>orabpel</password>
    <max-pool-size>50</max-pool-size>
    <min-pool-size>20</min-pool-size>
    <idle-timeout-minutes>0</idle-timeout-minutes>
    <track-statements>true</track-statements>
         <exception-sorter-class-name>org.jboss.resource.adapter.jdbc.vendor.OracleExceptionSorter</exception-sorter-class-name>
     <metadata>
          <type-mapping>Oracle9i</type-mapping>
     </metadata>
  </local-tx-datasource>
  <xa-datasource>
     <jndi-name>jdbc/BPELServerDataSource</jndi-name>
     <track-connection-by-tx>true</track-connection-by-tx>
     <isSameRM-override-value>false</isSameRM-override-value>
     <xa-datasource-class>oracle.jdbc.xa.client.OracleXADataSource</xa-datasource-class>
     <xa-datasource-property name="URL">jdbc:oracle:thin:@10.141.86.6:1521:ORCL</xa-datasource-property>
     <xa-datasource-property name="User">orabpel</xa-datasource-property>
     <xa-datasource-property name="Password">orabpel</xa-datasource-property>
     <exception-sorter-class-name>
     org.jboss.resource.adapter.jdbc.vendor.OracleExceptionSorter
     </exception-sorter-class-name>
     <no-tx-separate-pools/>
  </xa-datasource>
</datasources>

Similar Messages

  • Integration between Oracle BPM and Oracle UCM

    Hi
    I have a requirement how to integarte between Oracle BPM and Oracle UCM.
    Detailsabout the problem:
    Once user start the process and want to upload the document in the same process, the document should be uploaded into UCM and similarly user wants to update some document in the middle of the process , user can check-out the document and check-in the document (Docuemnt present on Oracle UCM).
    Please guide me what is the approach for that ?
    Thanks for your help in advance.

    Check this, u can get some info
    Re: What is a recommended approach to integrate Oracle BPM 10R3 and  Oracle UCM

  • Differences between Oracle BPM and Aqualogic BPM 6.0

    Hello,
    Does anyone know where I can find information that spells out the differences between Aqualogic 6.0 and Oracle BPM (if there are any)? I've searched the Oracle sites, documentation sections, etc. and I cannot find a datasheet that spells out anything related to the differences between the two aside from the name change.
    Thank you.

    I thought that there no major differences between the versions, only changes in the skin, logo and an improvement in the engine, but I was wrong.
    My production enviroment runs BPM Enterprise in version 6, in other words runs Aqualogic BPM Enterprise, not Oracle BPM Enterprise, but in the development enviroment I made the decision to use the version 10 (Oracle BPM Studio 10g), because I thought there were no considerable changes between versions.
    So I could not make the deployment of the project in the enterprise version, the log reported that many processes and screenflows of the project were not found, then I tried to open the project that was done in version 10 in version 6 of the BPM Studio and then try to export the ".exp" to try to do the deployment again. When I opened the project in BPM Studio 6 some errors occurred, but no significant errors. I fixed the errors, export the project again and try to do the deployment in the enterprise version and the same problems as before still occurring.
    The only solution I found was to make the project in BPM Studio 6.04 (Aqualogic). Now I can make the deployment of the project in the production environment.
    Conclusion: always use the same version in BPM studio/enterprise. If you use Oracle BPM Studio in development enviroment, use Oracle BPM Enterprise for production enviroment. The same way if you use Aqualogic BPM Studio in development enviroment, use Aqualogic BPM Enterprise in the production enviroment.

  • Oracle BPM and Oracle SOA Suite

    Hi,
    Can anyone point me to a reference which details the differences between the BPM and SOA Suites and how they are different.
    As well as why BPM is needed while most of the features are available with SOA Suite itself.
    Is the runtime env for BPM and SOA suite same?I mean does BPM run over the SOA Suite installation.
    Thanks.

    Hi,
    My view is SOA Suite is a middleware software that you can use for several purposes...
    http://docs.oracle.com/cd/E23943_01/doc.1111/e10223/index.htm
    BPM is a product tailored to run business applications centered around business processes... And yes, IMHO you could do that with SOA Suite itself, but BPM has the facilities out-of-the-box for business process centric applications...
    http://docs.oracle.com/cd/E23943_01/doc.1111/e10223/505_bpm.htm
    Is the runtime env for BPM and SOA suite same?I mean does BPM run over the SOA Suite installation.Both run on weblogic and use a soa server... Configuration wizard won't allow to create a domain with BPM Suite if you don't select SOA Suite as well...
    Cheers,
    Vlad

  • Differnece between Oracle BPM and Aqua Logic BPM

    Hi,
    Iam just started readign about Oracle BPM , could anyone answer is there nay difference beteen Orcale BPM and Aqualogic BPM. I am working on other BPM technology ,I am analyzing other BPM tools to get the key differentiators among them. Please brief me the features that are unique to Oracle BPM.It would be helpful if good KB link is provided.
    Thanks
    Sayiri
    Edited by: user9277432 on Mar 10, 2010 5:55 AM

    Good question. I'll try to recap a little history of Fuego, AquaLogic and Oracle BPM for you. I worked for Fuego just before it was acquired and rebranded as part of the BEA AquaLogic Suite. I'd like to see what other have to say on this topic as well.
    From what I recall, BEA bought Fuego and released version 6.0. This was the first version branded as AquaLogic. The major change it contained was the integration of studio into the Eclipse IDE. It was somewhat integrated with ALUI, which used to be Plumtree before it was bought out by BEA and re-branded AquaLogic. I say somewhat since it wasn't integrated as well as it could. One major issue was the way the directory was integrated. They used a synchronization utility called ITPS (I think) to sync the ALUI directory with BPMs directory. This was very problematic.
    Version 6.3 came out that improved the way the workspace integrated with portals and ALUI and integrated the directory more efficiently with ALUI. Mostly it contained many improvements in the workspace functionality. The workspace had configurable panels which made it easier to integrate with dashboard components and widgets.
    Version 6.5 was coming out around the same time that Oracle took control of BEA. Version 6.5 is very much the same as OBPM 10g. For more information about OBPM 10g refer to this article:
    http://otndnld.oracle.co.jp/document/products/bea/weblogic/E13154_01/relnotes/release_notes_OracleBPM10gR3.htm
    In a couple of months Oracle will be releasing BPM 11g. There will be many changes to BPM in this release. It will be integrated with JDeveloper and will inherit much of the SOA strategies known for Oracle's Fushion Middleware suite. It also contains a Process Composer web based UI that Business Analysts and Business stakeholders will find useful.
    I blogged about BPM 11g here:
    http://blog.ssglimited.com/2009/10/13/oracle-bpm-11g-preview-at-oracle-open-world-2009/
    HTH,
    Mark
    Edited by: Mark Peterson on Mar 10, 2010 7:19 AM

  • Integration between Oracle BPM and RTD(rule engine)

    Hi,
    I have Oracle BPM - 10.3.2.0.0  Build 100141
    Oracle RTD(rules engine) - 3.0.0.1
    Please let me know whether the versions of RTD and Oracle BPM mentioned above can be integrated with each other.
    How the interaction between Oracle BPM enterprise and RTD will take place and how the data flow takes place between them.
    Thanks in advance

    Check this, u can get some info
    Re: What is a recommended approach to integrate Oracle BPM 10R3 and  Oracle UCM

  • Oracle BPM and PBL

    Hi All
    Im new in the BPM space and i will be using it for a number of projects lined up in the near future.
    I've done the BPM Tutorial (Expense Management) on the Oracle site and i want to start mapping other processes with this tool.
    Ive never used PBL and want to learn it, Can anybody point me in the right direction to learn PBL, manual, sites whatever.
    Any help will be much appreciated.

    I don't know of any other tutorials out there, however, the best way to learn, is to just use it. Model a process, make it more complex, integrate with other resources.... Especially if you an Idea of what its going to be used for in the future, you can try to use some of the same concepts, resources.
    If you are going to need to integrate with a database, set that up, and try to extract information from it... If you are going to be using presentations/jsps then write a screenflow to use one of those, etc...
    When you can't figure something out, ask! :)

  • Oracle BPM and JMS Queue: How to associate data from Map Messages to Process Data Objects?

    Good Day!
    I'm currently working on a project wherein it tries to get data from a JMSqueue Map Message being populated by CEP.
    After CEP pushes some data in the JMSqueue. I have BPM configured with a JMS adapter to look up whether there are any messages to be processed upon.
    Inside BPM, I want to know how can I correlate the data from the Map Message to my Process Data Object.
    For example, If I have a Map Object wherein it has 3 attributes:
    FirstName:String
    LastName:String
    Age:int
    What is the expression I need to use inside Oracle BPM Data Association screen in order to map the data from the Map Messages into my process data objects?
    Thanks!
    Regards,
    Jeff

    Any ideas? Thanks!

  • Oracle BPM and IPM intergration

    Hi all
    Im new in the ECM space and im still learning the modules (IPM and BPM)
    Can anyone tell me about the intergration between BPM and IPM, how it works and a case study would also be nice.
    You can also point me to documentation that can give me the bigger picture o0f how these two modules work toger

    In the data control palette under the collection that represents the child you should see a node of operations - in there you should see next/previous - drag those onto the page to get the scrolling through the records going on.

  • Integrating Oracle BPM and outlook

    Hi,
    We are using Oracle BPM 6.0.4.
    We like to integrate Outlook to receive the integrative activity instances. In other words we are planning to make Outlook behave as work space.
    Any idea/ document / sample on this will be more helpful.
    Thank you in advance.
    Edited by: user5124449 on Jan 11, 2011 11:11 AM
    Edited by: user5124449 on Jan 11, 2011 11:12 AM

    In the data control palette under the collection that represents the child you should see a node of operations - in there you should see next/previous - drag those onto the page to get the scrolling through the records going on.

  • Oracle BPM and SAML Token

    Hi all,
    is there any way to use SAML token with OBPM?
    I need to invoke webservice from OSB and it needs authentication.
    So, i want to provide SAML Token to authenticate.
    I just want to know how to configure SAML token in OBPM. is it supported?
    With Regards,
    Wai Phyo
    Edited by: waiphyo on May 25, 2010 5:36 PM

    In the data control palette under the collection that represents the child you should see a node of operations - in there you should see next/previous - drag those onto the page to get the scrolling through the records going on.

  • Primavera EPPM 8.2 and Oracle BPM 11.1.1.6

    Hello Forum,
    I'm a specialist in Oracle BPM and was instructed with a task to integrate EPPM 8.2 with Oracle BPM solution. So I am new to all this Primavera stuff but glad to learn it.
    According to EPPM 8.2 it can only be integrated with Oracle BPM 11.1.1.5 release (what I did). Could you tell me if it is certified to integrate with the latest release of Oracle BPM and WebCenter Content which is currently 11.1.1.6 ?

    It is certified to work only with BPM 11.1.1.5 and not the latest version :(. You can track http://docs.oracle.com/cd/E25030_01/index.htm to see if the support has been added.
    Sachin Gupta

  • Oracle BPM checkbox

    Hi,
    I am new to Oracle BPM and I have a requirement to make a check box in BPM form. Like Select Documents: Inter [], Middle[],Master[].
    Can anyone please share a simple way to do it? I tried to convert one field into check box but how can I add more check box for that fields. Following is the snapshot. Many thanks

    Wouldn't you want a radio button if the user was only supposed to select one of the choices?  With a checkbox, the user usually thinks they can select multiple items.  To create a hard coded static radio button group on an ADF form, follow the steps listed below.  This adds a new "Request Type" set of radio buttons on the form that is bound to a human task's "RequestType" element:
    1. Right click the existing "RequestType" field (the field you want to create the new dropdown for on the form).
    2. Select Insert after Input Text -> Select "Radio Group".
    3. Click the "Create List" radio button.
    4. Click the + New icon and add an item label and value for each item you want to appear in the dropdown (e.g., Item Label "Inter" and Item Value "INTER").
    5. Click the Next button -> change the Label field to be "Request Type".
    6. Click Finish.
    7. Now that you have a new radio button field, you need to bind it to the correct attribute so that the RequestType value clicked in the dropdown is stored back into the BPM object variable’s RequestType attribute.  To get this, click the original RequestType field the field directly above your dropdown).
    With the original RequestType field selected, in the Property Inspector tab in the lower right corner, copy the text in the "Value" property to your clipboard (Control-C).
    8. Select the new RequestType radio button group and in the Property Inspector tab paste (Control-V) the clipboard value into the Value dropdown field.
    9. Delete the original RequestType field.
    To see how to create a database driven list of values or radio button group that populates a BPM human task variable look at this blog:  http://avioconsulting.com/blog/using-database-driven-list-values-populate-bpm-variable.
    Dan

  • How is the data of Oracle BPM stored in the database

    Hi,
    I am new to Oracle BPM and I want to know where are the activity of my published processes stored in the database, if you have some articles or tips I will thank you a lot, I was looking for something in the internet but without sucess.
    Thanks

    Have a look at the WF tables under the SOA Infra schema.

  • Oracle BPM directory database

    Hi,
    IHAC that has a custom application to manage their users and roles. They are using Oracle BPM and they want to keep creating, managing and authenticating user with that application, that is not a LDAP.
    How can I syncronize the creation/updating/deleting/ of users in their application with the Oracle BPM Directory? I have been looking for Oracle BPM Directory schema documentation but I haven't found anything
    I know that activating SSO I could manage the user authentication but I still have the issue about users administration
    thanks in advance
    Ana
    Edited by: user_Ana on Apr 7, 2010 5:40 PM
    Edited by: user_Ana on Apr 7, 2010 5:41 PM

    Hi
    In OBPM 10gR3 we can create the participants & manage & update user roles dynamically using the FDI components.
    simple solution to your requirement is check the user roles in both the application DB & in FDI database & write your code accordingly.
    To check the participant existance in directory DB:
    //=======FDI Participant verfication=======
    Fuego.Lib.Participant primary = Participant.find(name : "participant_id"));.
    If the above value is null then create a new participant & assign the roles using the below code.
    i. Participant Creation : Fuego.FDI. DirHumanParticipant
    Ans: // Reuse Engine session to the Directory
    session = DirectorySession.currentEngineSession
    // Load the Organization Unit to which the participant will belong to
    myOU = DirOrganizationalUnit.fetch(dir : session, id : "Dallas")
    // Load the Role that the participant will have assigned,
    // and create a role assignment for it
    myRole = DirOrganizationalRole.fetch(session : session, id : "Role1")
    myAssignment[] = RoleAssignment.create(role : myRole, permissions : 255)
    // Create the new participant.
    myparticipant = DirHumanParticipant.create(
    session : session, id : "example_participant",
    firstName : "NewName",
    lastName : "NewLastname,
    displayName : "NewLastname, NewName",
    mail : "[email protected]",
    telephone : "0000000000",
    fax : "1111111111",
    password : "secret",
    ou : myOU, rolesAssignment : myAssignment,
    enabled : true)
    // set it NOT to receive emails when new instances arrive to
    // this participant inbox:
    myparticipant using receivesMail = false
    ii. Role Assign / Update : Fuego.Fdi : RoleAssignment.
    Ans:
    // fetch all roles
    mySession = DirectorySession.currentEngineSession
    allroles = DirOrganizationalRole.fetchAll(session : mySession)
    // Generate array of RoleAssignments for all non-parametric Roles
    for each r in allroles
    do
    aRole = DirOrganizationalRole.fetch(session : mySession, id : r.id)
    if not aRole.parametric then
    newAssignments[] = RoleAssignment.create(role : aRole,
    permissions : 255)
    end
    end
    // Replace role assignments for this participant
    currentPart = DirHumanParticipant.fetch(session : mySession,
    id : Participant.id)
    currentPart.rolesAssignment = newAssignments
    update currentPart
    For reference go through the this link: http://download.oracle.com/docs/cd/E13154_01/bpm/docs65/standard_components/index.html
    I hope this might help.
    Thanks

Maybe you are looking for