Doorgaan naar hoofdcontent

Posts

Struggling with File Connector

Introduction Today I was struggling with the File Connector in combination with CARS authentication and the multi-tenancy within Cordys. I really like the multi-tenancy concept, but some features in Cordys are not mature yet. Context We have a project with a lot of Organizations using the same BPM processes. These processes are deployed within the System Organization. The Organizations (the number can be up to 2000 !) are provisioned using Cordys Cloud Provisioning (CCP). The (Cordys) Users are authenticated through WS-Security within the soap headers. In one of the processes we want to do a call within the context of another Organization. Options When I read the community blogs and asked some people they came up with 1 - UDDI Interceptor In this case you call a webservice of Cordys through a UDDI connector and use an interceptor to add the WS-Security header. The user authenticated has been put within a default Organization, so this way the call is done within the context o...

Provisioning: Defining an Application

Introduction This blog item shows an example on how to define an application that can be used by other Organisations. In this example we have a simple Cordys BOP4 setup. We have only the Default Cluster. In this example the ISV packages are made and it will show how to define the application within CCP. It will show how easy this is within CCP. After this you are able to Provision organisations to use applications within the Cloud. An introduction to CPP was already given here . Define the Business Partner First you will have to define a business partner that developed the ISV. This business partner is needed when defining the Application. Goto System Organization Open Global Business Partners Select +-sign Fill in the details Click Save Define the Application Note: A CCP application is NOT a synonym for a ISV package. An application can encompass several packages and a package can be used for the definition of severa...

Cordys - Designing short lived processes

When designing short lived processes you have to watch out. An example short lived process with several different types of activities. Within a process you can use several Activities: Calling a subprocess within the same package Calling a subprocess within another package A webservice call: - A runtime reference webservice call - A UDDI webservice call - A webservice call (drag-and-dropped from another package) Execution The short lived process is executed within a BPM service container and uses a thread for it. It holds the http connection for this call. However be aware that the runtime behavior of the 3 activities is different. Another BPM process can be executed within the same service container and on the same thread Same as 1) A webservice call is done through the Bus again and Cordys does not know where the call will be executed eventually. Note that this can be the SAME service container as the one, where the current short lived process is executed. Anothe...

Cordys: The value is not set for the parameter number

Today I ran into the following problem: <log4j:event logger="com.cordys.xds.internal.transaction.query.XQYQuery" timestamp="1308643015133" level="ERROR" thread="Monitor Stream Reader Thread"> <log4j:message><![CDATA[Failed to execute query. Error: + ' <error TYPE="Enumeration"> <elem>Error :com.microsoft.sqlserver.jdbc.SQLServerException: The value is not set for the parameter number 1.</elem> </error> ']]></log4j:message> <log4j:MDC><![CDATA[host=cvzlaca004 processid=1314]]></log4j:MDC> <log4j:throwable><![CDATA[com.cordys.xds.transaction.exception.DatabaseQueryException: Failed to execute query. Error: + ' <error TYPE="Enumeration"> <elem>Error :com.microsoft.sqlserver.jdbc.SQLServerException: The value is not set for the parameter number 1.</elem> </error> ' Trace: at com.cordys.xds.internal.transaction.query.X...

Introduction to Cordys Cloud Provisioning

Introduction In my current Cordys project I am using the Cordys Cloud Provisioning (CCP) functionality of Cordys. I am very excited about this produkt and this blog item I will share my knowledge about it. First I will explain something about provisioning. What is Provisioning? Provisioning is the process of managing Organizations (also called Tenants) and Users to let them use Applications. It manages the usage of applications that can be used as SaaS applications by tenants. It can be used to create new business models. Cordys has made a separate package for this, on top of BOP4 called CCP. With CCP it is possible (among others): Managing Cordys-Applications and non-Cordys applications Managing of Tenants Managing of Users and Roles Keeping track of the usage of the Applications (Metering) Some Terminology The next picture shows the Cordys-ecosystem. A  Tenant  makes use of  SaaS  applications that are delivered by a  PaaS . These applications ar...

Address already in use error

During installation of Cordys BOP4 (CU17) we ran into the following problem. I tried to change the client connection point address of the WebGateway, but still no success. Eventually it appeared to be an Apache Config problem. In <Apache_Install_Dir>/conf/extra/httpd-mpm.conf there is a setting. # worker MPM # StartServers: initial number of server processes to start # MaxClients: maximum number of simultaneous client connections # MinSpareThreads: minimum number of worker threads which are kept spare # MaxSpareThreads: maximum number of worker threads which are kept spare # ThreadsPerChild: constant number of worker threads in each server process # MaxRequestsPerChild: maximum number of requests a server process serves <IfModule mpm_worker_module>     ServerLimit           1     ThreadLimit         200     StartServers          1     MaxClients    ...

ORA - Oracle SOA Foundation

Service Oriented Architecture Issues todays IT: Heterogeneity: no interoperable interfaces, now we have web services Business Focus Agility, reuse and cost reduction Benefits of SOA Reuse of Services (at the business unit level) Agility: respond quickly to changing business requirements Simpler integration (by using standards) Architectural Principles Formal contracts (Thomas: Contract Standardization) Loose Coupling Abstraction Reusability Autonomy Statelessness Discoverability Composability (Durability) (Interoperability) (Standards compliance) (First all from Thomas Erl's books, last three added by Oracle) Service Definition principles Service encapsulation - A Service must perform a complete unit of work Service loose coupling - Services maintain a relationship that minimizes dependencies between them Service contract - Services adhere to a contractual agreement, as defined collectively by one or more Service description documents Service abstraction - ...