my purpose is to integrate jbpm (in particular version 3.2.1) in weblogic(last version 12c).
I have resolved many problem of compatibility and integration but jbpm still doesn't work, in particular the console. It's possible to use jbpm without console? (i'm new in the use of jbpm and bpm in general).
Thanks for the help.
jBPM Console should be able to run on weblogic (you would need to configure it for the different transcation manager and persistence etc. will be different to set up). You can also use jBPM without the console at all, just embed the jBPM engine in your webapp.
Related
I have an OpenShift cluster 4.7 in IBM CLOUD that runs many infrastructure tools ( Jenkins, Gitea, JFrog, SonarQube, WIKIJS, etc etc). I want to be able to login to these tools using my OpenShift credentials. Do you have any working way to use OpenShift's integrated OAUTH server to do so? Or any other idea?
I know Jenkins has already a plugin to do so, but what about the rest? Is auth-proxy the best way? Cause most of my tools have been installed with HelmCharts or Operators and I am not sure how easy is it gonna be to configure something like that.
Thank you in advance.
Probably, you can use product "keycloak"
https://www.keycloak.org/gettin.../getting-started-openshift
In my opinion it is more likely to use KeyCloak.
In addition, you can consider IBM Cloud product AppID. You can find it In IBM Cloud catalog using link https://cloud.ibm.com/catalog/services/app-id.
Did you follow the official documentation on this?
Configuring OAuth client
Configuring the internal OAuth server
I'm looking for a non-regression test automation tool :
For web applications using ADF technology.
It also needs to be integrated with JIRA.
These are my two imperatives.
Of course, I found Selenium which is the unavoidable tool.
However, my manager would like me to submit several tools that I would have audited. Do you have some tracks or experiences that I could use in order to submit several tools to him?
thanks in advance
For unit/non regression testing you can use :
JUnit as it is integrated with Jdevelloper
(see http://www.oracle.com/technetwork/articles/adf/part5-083468.html)
JUnit is integrated with Jira (see https://developer.atlassian.com/docs/getting-started/writing-and-running-plugin-tests/create-and-run-unit-tests)
You might want to look at Oracle Developer Cloud Service as a platform that combines issue tracking and DevOps+test automation with specific support for ADF built-in:
https://blogs.oracle.com/shay/entry/agile_development_with_oracle_developer
Selenium - there is an ADF extension to it:
https://github.com/adfemg/adf-selenium
Can someone please suggest me any tool that can be used for Mobile App load testing build in MobileFirst Platform 7.1.
This is a really good article to use JMeter for performance testing of Adapters:
https://mobilefirstplatform.ibmcloud.com/blog/2015/12/20/mfp-performance-testing-session-independent-mode/
They even provide the files at the end of the article.
Load testing for the application? Surely you mean the server/adapters...
For this you can use a tool such as jMeter to simulate a large amount of adapter requests to the server and see how your setup behaves.
I couldn't find an answer to this in any other questions and I wanted to see if anyone knew. I'm using JBoss AS 7.1 on Kepler eclipse, and I was wondering if there is a way to change your standalone.xml while the server is running and have Jboss push the change. Would just cleaning the server do this?
You can't edit the raw XML files and see runtime changes. In fact there is a good chance any changes will be overwritten by the server.
The best way to make runtime changes is either via the web console or the CLI environment. I don't know if JBoss Tools has any kind of CLI type of client that can be used.
(3/15/2010) Hi
I am trying to test web services using axis2-1.5.1 (latest version) alone without Tomcat.
Is it possible? If so, can someone point me how to do that?
Appreciate your time and help.
You need to have a web server at any way to test a web application. If you want to ease the development, testing and mocking, consider using an embedded server like Eclipse Jetty. You can configure/execute it programmatically.