jbpm with liferay - liferay-6

I can run a sample workflow done with jbpm5 ​​outside of liferay
but now I want to run this example in liferay
So the problem is how to integrate jbpm5 with liferay
I think I need to edit some configuration files in liferay
I'm reading these instructions but I can not find the solution

It's not than simple if you are trying to integrate jBPM5. As you can see the tutorial that you mention has being written for jbpm 3.1.2, a very old version. It will be a great community contribution to integrate jBPM5 to liferay, so if you are interested we can guide you, but you will need to do the work and research to get it working. I can help you with the jBPM5 but you will need to dig into the liferay bits.

I suggest if you want to run Workflow inside Liferay, first you must find a plugin for workflow engine. As fas as I know, Liferay supports Activity, JBPM, Kaleo,.. Have you downloaded JBPM plugin for Liferay? Because for default Liferay using Kaleo.

Related

design workflow in Eclipse for liferay

I want to design workflow using Eclipse for Liferay CE.
Can anybody tell me how can i design kaleo workflow in Eclipse ?
I searched on the internet but could not find any facility for Community Edition (CE) to design our own workflow diagrammatically. Is there any reliable method other than kaleo for creating workflows for Liferay CE diagrammatically??Any help will be appreciated.
By design, Liferay does not have a built-in UI in CE for creating Workflows, and does not provide a plugin for doing so. It's one of the goodies folks get when purchasing a subscription to EE.
Liferay EE has a built-in Kaleo Designer, and Liferay Developer Studio also has a Kaleo Designer for Java plugin to give you the same functionality inside Eclipse.
None of the free, open-source options (Liferay IDE or Liferay CE) have this feature.
That said, between the information in the docs on Kaleo Designer and the docs on Designing XML workflows, you should be able to design your definitions using XML.
That's probably not entirely satisfactory, but I think it's the best you're going to manage.

IBM websphere to JBOSS migration

I want to migrate EAR and WAR applications from WAS 8 to JBOSS AS 7.
Can any one provide any Check List for the same?
There's an automated pluggable rule-based migration tool JBoss Windup. Run the tool and get a report of what needs to be done to migrate.
You can also customize this tool to cover your specific code patterns you need to migrate. Sharing your custom rules back to the community is highly appreciated.
Have fun :)
WAS has tool Application Migration toolkit to check application being migrated from WebLogic /Jboss to WAS , not sure if such tool exist for JBOSS
http://www.ibm.com/developerworks/websphere/downloads/migtoolkit/compmig.htmlc

What are the necessary JBoss Tools for jBPM?

I need to make a simple HelloWorld by jBPM under Ecplise so I must prepare my environment for making jBPM working. But I get many selected "Features", and it seems I don't need many of them. However I can't really get the ones needed in my context.
Thank you!
you can create jBPM project without using any tool. If you use maven you just need to add the jbpm dependencies to your project and work.
JBDS has tools for JBPM built in I believe. If not, there should be a plugin you can download from JBoss Central. https://www.jboss.org/products/devstudio.html

Eclipse EAR module publish log

I am using weblogic worshop to develop my spring based application. Basically it takes lot of time to publish the application to weblogic server. Is there any way to find out what’s going on when eclipse try to build and deploy the project? Basically does it maintain any log file?
Thanks ,
Manoj
Weblogic does a stupid thing according to my experience. If you deploy some WAR, it extracts the libraries in it, and does some analysis in them. You can avoid this behaviour by removing the "static" (not changed by you during work) libraries from the war during development. After removal, add them to system classpath of the domain. It will publish and start a lot faster.
You will find better support for developing Spring applications for WebLogic Server if you migrate to Oracle Enterprise Pack for Eclipse. Workshop is legacy software that is no longer being actively developed. Using Workshop is only necessary for those developing with the deprecated Apache Beehive framework.
http://www.oracle.com/technetwork/developer-tools/eclipse/overview/index.html
OEPE includes a much newer publisher implementation, so you may find your issue resolved. If not, please post to OEPE forum for direct access to people who can answer you question.
Cannot post a forum link, but you can find it from the above URL or via Google.
Thanks Konstantin and Gabor for replying to my question.
Konstantin - I am using Oracle Weblogic workshop 10.3 and I am restricted to use this IDE only.I guess it has OEPE correct me if I am wrong.Also I tried the FastSwap action but everytime I save the changes to a java file the server says -'Publish' and I have to republish the entire application which is taking lot of time.
Thanks,
Manoj

Consuming Web Services in Netbeans

I've setup a project in Netbeans 6.5 with some web services that I've created myself and some web services that I've imported from WSDL files. I've setup a couple of desktop application through Netbeans in order to consume these web services. I'm not too sure where to go from here.
I have the GUI setup but not sure how to reference the web services so they can be consumed. I was wondering would anybody be able to guide me through this process or point me in the direction of a relevant tutorial. I'd also like to learn how to consume a web service through a JSP (also created in Netbeans) if possible.
Thanks.
You may find this tutorial useful:
http://netbeans.org/kb/docs/websvc/client.html, but since you are using Netbean 6.5 this may be the correct version:
http://netbeans.org/kb/61/websvc/client.html. As the steps show, it isn't difficult to build a jax-ws client using Netbeans.
But, it depends on what version of Java you are using also, most likely. You may want to download the latest version of jax-ws, if you get errors with your wsdl.
For a JSP, just create a custom tag to call the client.