[jboss-user] [JBoss jBPM] - Jboss jbpm

2009-03-09 Thread rgeetha
hi iam facing this problem... i ll be help if i get the solution for this 
ASAP

wen i cllick on gpd.xml iam getting the following error

There was a problem adding adapter factories
loader constraint violation: when resolving method 
"org.eclipse.wst.xml.core.internal.modelquery.ModelQueryUtil.getModelQuery(Lorg/w3c/dom/Document;)Lorg/eclipse/wst/xml/core/internal/contentmodel/modelquery/ModelQuery;"
 the class loader (instance of 
org/eclipse/osgi/internal/baseadaptor/DefaultClassLoader) of the current class, 
org/eclipse/wst/xml/ui/internal/DOMObserver, and the class loader (instance of 
org/eclipse/osgi/internal/baseadaptor/DefaultClassLoader) for resolved class, 
org/eclipse/wst/xml/core/internal/modelquery/ModelQueryUtil, have different 
Class objects for the type org/w3c/dom/Document used in the signature


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4216427#4216427

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4216427
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - jboss jbpm bpel not able to access jboss Axis container's we

2008-12-12 Thread LakshmiPrasad
Hi all/ alex
i have deployed one web service in axis1.4 container which is in jboss. using 
jbpm's BPEL i want to access that web service. i started my jboss server like 
run -b . when i tried to access from bpel it is coming below error 
message..
 java.rmi.RemoteException: Call invocation 
failed with code [Server] because of: The service is not in an appropiate state 
for the requested operation; nested exception is: 
  | javax.xml.rpc.soap.SOAPFaultException: The service is not in an 
appropiate state for the requested operation
  | at 
org.jboss.ws.core.jaxrpc.client.CallImpl.invokeInternal(CallImpl.java:524)
  | at org.jboss.ws.core.jaxrpc.client.CallImpl.invoke(CallImpl.java:277)
  | at 
org.jbpm.bpel.tutorial.hello.HelloTest.testSayHello_dii(HelloTest.java:57)
  | at junit.extensions.TestDecorator.basicRun(TestDecorator.java:22)
  | at junit.extensions.TestSetup$1.protect(TestSetup.java:19)
  | at junit.extensions.TestSetup.run(TestSetup.java:23)
  | Caused by: javax.xml.rpc.soap.SOAPFaultException: The service is not in an 
appropiate state for the requested operation
  | at 
org.jboss.ws.core.jaxrpc.SOAPFaultHelperJAXRPC.getSOAPFaultException(SOAPFaultHelperJAXRPC.java:102)
  | at 
org.jboss.ws.core.jaxrpc.SOAP11BindingJAXRPC.throwFaultException(SOAP11BindingJAXRPC.java:68)
  | at 
org.jboss.ws.core.CommonSOAPBinding.unbindResponseMessage(CommonSOAPBinding.java:579)
  | at org.jboss.ws.core.CommonClient.invoke(CommonClient.java:380)
  | at 
org.jboss.ws.core.jaxrpc.client.CallImpl.invokeInternal(CallImpl.java:517)



please help to solve the issue..
thanx in advance...

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196155#4196155

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196155
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - JBoss jBPM has the fundationation for an ERP?

2008-05-09 Thread vncoder
Hello all,
   I am interested to know your view on using JBoss jBPM has the fundation for 
an ERP system, consisting on:
Service Management
-> Taking booking
-> Dispatch service call to technician
Query/Fault Management
Account Management/Invoicing (AR)
Account Payable
General Ledger

For about 2000 users - assuming all the hardware are available.

I am thinking of doing the above with JBoss jBPM. However, my concern would be:
* Is it possible (I am still reading up on jBPM)
* If possible, should I?


I am unable to find anyone has done it in the past other than this post:
http://www.jboss.com/index.html?module=bb&op=viewtopic&t=69453



View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4149795#4149795

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4149795
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - JBoss JBPM Question~~~!!

2008-02-27 Thread sim912
Hi everyone,

I am using jboss 4.0.4, jwsdp 2.0 and jbpm-bpel 1.1 beta 3. I am developing a 
simple web service that return two values from a operation. I have created the 
bpel and wsdl file and ServiceImpl.java.
Inside ServiceImpl.java,

It contains only one operation get():

public void get(float a, float b, FloatHolder c, FloatHolder d) throws 
RemoteException{
}

--> this method it simple take in two float values and return the intake values 
back to the client.

In wsdl file:


http://example/test}get
 javaName=get
 style=rpc/literal
 oneWay=false
 soapAction=http://example/test
ParameterMetaData:
 xmlName=a
 xmlType={http://www.w3.org/2001/XMLSchema}float
 javaType=java.lang.Float
 mode=IN
 inHeader=false
ParameterMetaData:
 xmlName=b
 xmlType={http://www.w3.org/2001/XMLSchema}float
 javaType=java.lang.Float
 mode=IN
 inHeader=false
ReturnMetaData:
 xmlName=d
 xmlType={http://www.w3.org/2001/XMLSchema}float
 javaType=java.lang.Float
 mode=OUT
 inHeader=false

I have spent few days to figure out why there is an error when returning two 
values.

Can anyone tell me how to fix it? And did anyone try to deploy a service to 
jboss server that return more than one values ?
Thanks a lot.

sim

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4132427#4132427

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4132427
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - jboss jbpm developer guide

2008-02-22 Thread minakari
Hi,

Is there any  developer guide for jboss jbpm ?
and so where I could read about jboss jbpm client API?

best regards.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4131601#4131601

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4131601
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - JBoss jBPM Graphical Process Designer Installation

2008-02-05 Thread minakari
I want to install  JBoss jBPM Graphical Process Designer  so I downloaded 
jbpm-gpd-site-3.0.12.zip I did these steps in Eclipse3.3 Help>>Software 
Upadtes>>find and install >>search for new features for install>>update site to 
visit>>New Archive sSite then I selected  jbpm-gpd-site-3.0.12.zip from my 
harddrive but when I click finish this error occur:

"No features found in the selected site(s) .choose a diffrent site or site 
category"

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4126541#4126541

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4126541
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - JBoss jBPM jPDL 3.2.2 User Guide

2007-12-19 Thread dadajboss
I've downloaded and installed "jbpm-jpdl-suite-3.2.2.zip".
In the User Guide (http://docs.jboss.com/jbpm/v3.2/userguide/html/) I read that 
"The examples can also be fond in the jBPM download package in the directory 
src/java.examples". But I don't find this directory into the downloaded 
jbpm-jpdl-suite-3.2.2.zip(!) How I can import in eclipse this example??? Where 
I can find examples showed in Chapter 3. Tutorial of the User Guide?
thank

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4114275#4114275

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4114275
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Jboss jBPM/jBoss ESB link

2007-12-17 Thread Arutha

Good afternoon,
I've been running into a problem the past two days; here's the situation: I'm 
running jBoss ESB with jBoss jBPM. I've got a process definition running, and 
I'm calling a service on the buss from that process for serializing an object 
and attaching it to the message. When I get to the next node of the process 
however, this attached object is gone. 

I know what the problem is, I've had the same thing about three months back , 
but the same solution does not seem to apply, mainly because the labels 
changed, most likely ^^

Here's the post I made back then, in essense the same problem with an older ESB 
version: 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4079172#4079172

I'm currently running Jboss ESB4.2 MR3 with jBPM integrated. 

Basically, the two main components in this application are the bus 
definition(jboss-esb.xml) and the jBPM definition (process.xml)

The node where things go bad in the process definition:


  | 
  | 
  | 
ZorgRingConnectServices
  | 
ConversionToZorgringFormatService
  | 
5000
  | 
  | 
  |   
  | 
  | 
  | 
  |   
  | 
  | 
  |
  | 
  | 

This node calls a service on the bus, this service calls an actionclass which 
attaches the object to the message and returns the message to the service. 
Next, the process goes to the next node. By then, the object is gone.


I'm sure this has to do with the jbpmToEsbVars and returnVars I'm declaring. I 
do this on the ESB once when initialising the business process: 

 
  | 
  |
  |  
  |  
  | 
  | 
  | 
  |  
  | 
  |


And I declare the same jbpmToEsbVars  and returnVars on each node. When I'm 
adding the object, I attach it with the label "zorgringformat"(retrieving it in 
the same actionclass right after I added it works, so it's simply lost in the 
process somewhere). Any idea what I'm doing wrong?


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4113424#4113424

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4113424
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - jboss/jbpm

2007-12-13 Thread roybiswajit

i've tried the following code for assigning value to 'admin', but when i've 
checked in jboss/jbpm-console server i find some unexpected incident..such 
as..'ve assigned to 'admin' but user, manager can do the same work..but i want 
that 'admin' shuld done that particular work..but this is not yet done: as for 
example..if 've maked some fields such as 'id' 'name' with the help of 
'admin'..after data entry to that particular fields..'ve log-out from the 
current page..again 've log-in with the help of 'user'..but surprisinly..'ve 
seen that 'user' can do the same work..so pls help me out from this problem...



package com.sample.assignment;
import org.jbpm.taskmgmt.def.AssignmentHandler;
import org.jbpm.graph.exe.ExecutionContext;
import org.jbpm.taskmgmt.exe.Assignable; 
//import org.jbpm.graph.exe.ProcessInstance;



public class StartAssignmentHandler implements AssignmentHandler 
{
private static final long serialVersionUID = 2L;
String message;//for field type


public void assign(Assignable assignable, ExecutionContext 
executionContext) throws Exception
{

assignable.setActorId("manager");

}
}

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4112470#4112470

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4112470
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - JBoss jBPM - BPeL - eclipse

2007-11-20 Thread Pebbels
Hi,
I got the following specifications to use for creating a Web Application:
JBoss jBPM
BPeL
Eclipse

So I downloaded JBoss jBPM, eclipse 3.3 and the plugin for BPeL via the 
update-site http://download.eclipse.org/technology/bpel/update-site/
For JBoss jBPM I got jbpm-jpdl-3.2.2.
Starting the server via the console run.bat -c jbpm works and I am able to have 
a look at http://localhost:8080/jbpm-console/sa/processes.jsf

When I created a BPEL 2.0-Project (I choose BPEL-Project and not JBoss jBPM 
Project because a JBoss jBPM Project works with jPDL) in eclipse I am able to 
draw a diagram but I am not able to create a server by right clicking in the 
server window and selecting New, Server, JBoss v3.2.3.
When I choose the jdk and point the Application Server Directory to 
C:\jboss\jbpm-jpdl-3.2.2 I will get the error Missing classpath entry 
C:\jboss\jbpm-jpdl-3.2.2\bin\run.jar.
When I point it to C:\jboss\jbpm-jpdl-3.2.2\server\server I will get the error 
Missing classpath entry 
C:\jboss\jbpm-jpdl-3.2.2\server\server\default\lib\javax.servlet.jar.

Why does eclipse look for the default directory of JBoss?
The file javax.servlet.jar is located in C:\jboss\jbpm-jpdl-3.2.2\server\client

Does somebody know something?

Thanks, Tina

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4106374#4106374

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4106374
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Jboss jBPM serialization problem

2007-08-29 Thread Arutha


Hey,

I've got a question on sending Serializable objects over the bus. I know how 
this can be done, as I built an application creating a Pojo, sending it onto 
the bus, modifying it with JbossRules and spitting it out to another service 
off the bus.

My problem is this: I tied in the jBPM orchestration with this very same 
application, and as soon as I send the Serializable over the bus through the 
process definition now, it comes out the other end in the 
message.getBody().getContents(), but the get() method, returning an object, is 
empty this time.

I believe the cause is that I'm not converting the byte array the message holds 
in the get() to a jBPM format, as is done with the body contents :

 
 


I'm not doing that, since I have no idea how to. 

Is this the cause, and if so, any way I can move the Serializable object in the 
message to the jBPM orchestration process and back to the ESB ?

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4079138#4079138

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4079138
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - JBoss + JBPM + Mysql - Deployment is not going through

2007-08-14 Thread jitendrasupe
I am new bee to JBPM.  Trying to deploy the sample application given in the 
jbpm-jpdl-suite-3.2.1. 

I am following documentation given for jbpm-jpdl-suite-3.2.1 Getting started 
but getting following errors while starting the server from the folder 
"jbpm-jpdl-suite-3.2.1\jbpm-jpdl-3.2.1\server\bin" with command "run -c jbpm".


2007-08-14 11:13:06,616 DEBUG [org.hibernate.loader.hql.QueryLoader] 
bindNamedParameters() Tue Aug 14 11:13:06 IST 2007 -> now [3]
2007-08-14 11:13:06,616 DEBUG [org.hibernate.loader.hql.QueryLoader] 
bindNamedParameters() JbpmJobExector:172.17.225.114:1 -> lockOwner [2]
2007-08-14 11:13:06,647 DEBUG [org.hibernate.jdbc.AbstractBatcher] about to 
close PreparedStatement (open PreparedStatements: 1, globally: 1)
2007-08-14 11:13:06,663 DEBUG [org.hibernate.util.JDBCExceptionReporter] could 
not execute query [select job0_.ID_ as ID1_26_, job0_.VERSION_ as VERSION3_26_, 
job0_.DUEDATE_ as DUEDATE4_26_, job0_.PROCESSINSTANCE_ as PROCESSI5_26_, 
job0_.TOKEN_ as TOKEN6_26_, job0_.TASKINSTANCE_ as TASKINST7_26_, 
job0_.ISSUSPENDED_ as ISSUSPEN8_26_, job0_.ISEXCLUSIVE_ as ISEXCLUS9_26_, 
job0_.LOCKOWNER_ as LOCKOWNER10_26_, job0_.LOCKTIME_ as LOCKTIME11_26_, 
job0_.EXCEPTION_ as EXCEPTION12_26_, job0_.RETRIES_ as RETRIES13_26_, 
job0_.NAME_ as NAME14_26_, job0_.REPEAT_ as REPEAT15_26_, job0_.TRANSITIONNAME_ 
as TRANSIT16_26_, job0_.ACTION_ as ACTION17_26_, job0_.GRAPHELEMENTTYPE_ as 
GRAPHEL18_26_, job0_.GRAPHELEMENT_ as GRAPHEL19_26_, job0_.NODE_ as NODE20_26_, 
job0_.CLASS_ as CLASS2_26_ from JBPM_JOB job0_ where (job0_.LOCKOWNER_ is null 
or job0_.LOCKOWNER_=?) and job0_.RETRIES_>0 and job0_.DUEDATE_<=? and 
job0_.ISSUSPENDED_<>1 order by job0_.DUEDATE_ asc]
com.mysql.jdbc.exceptions.MySQLSyntaxErrorException: You have an error in your 
SQL syntax; check the manual that corresponds to your MySQL server version for 
the right syntax to use near '1 job0_.ID_ as ID1_26_, job0_.VERSION_ as 
VERSION3_26_, job0_.DUEDATE_ as DUEDAT' at line 1
at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:936)
at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:2941)
at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:1623)
at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:1715)
at com.mysql.jdbc.Connection.execSQL(Connection.java:3249)
at 
com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1268)
at 
com.mysql.jdbc.PreparedStatement.executeQuery(PreparedStatement.java:1403)
at 
org.jboss.resource.adapter.jdbc.CachedPreparedStatement.executeQuery(CachedPreparedStatement.java:90)
at 
org.jboss.resource.adapter.jdbc.WrappedPreparedStatement.executeQuery(WrappedPreparedStatement.java:236)
at 
org.hibernate.jdbc.AbstractBatcher.getResultSet(AbstractBatcher.java:186)
at org.hibernate.loader.Loader.getResultSet(Loader.java:1669)
at org.hibernate.loader.Loader.doQuery(Loader.java:662)
at 
org.hibernate.loader.Loader.doQueryAndInitializeNonLazyCollections(Loader.java:224)
at org.hibernate.loader.Loader.doList(Loader.java:2145)
at org.hibernate.loader.Loader.listIgnoreQueryCache(Loader.java:2029)
at org.hibernate.loader.Loader.list(Loader.java:2024)
at org.hibernate.loader.hql.QueryLoader.list(QueryLoader.java:392)
at 
org.hibernate.hql.ast.QueryTranslatorImpl.list(QueryTranslatorImpl.java:333)
at 
org.hibernate.engine.query.HQLQueryPlan.performList(HQLQueryPlan.java:172)
at org.hibernate.impl.SessionImpl.list(SessionImpl.java:1114)
at org.hibernate.impl.QueryImpl.list(QueryImpl.java:79)
at 
org.hibernate.impl.AbstractQueryImpl.uniqueResult(AbstractQueryImpl.java:756)
at org.jbpm.db.JobSession.getFirstAcquirableJob(JobSession.java:40)
at 
org.jbpm.job.executor.JobExecutorThread.acquireJobs(JobExecutorThread.java:111)
at 
org.jbpm.job.executor.JobExecutorThread.run(JobExecutorThread.java:56)
2007-08-14 11:13:06,663 WARN  [org.hibernate.util.JDBCExceptionReporter] SQL 
Error: 1064, SQLState: 42000
2007-08-14 11:13:06,663 ERROR [org.hibernate.util.JDBCExceptionReporter] You 
have an error in your SQL syntax; check the manual that corresponds to your 
MySQL server version for the right syntax to use near '1 job0_.ID_ as ID1_26_, 
job0_.VERSION_ as VERSION3_26_, job0_.DUEDATE_ as DUEDAT' at line 1
2007-08-14 11:13:06,663 ERROR [org.jbpm.db.JobSession] 
org.hibernate.exception.SQLGrammarException: could not execute query
2007-08-14 11:13:06,663 DEBUG [org.jbpm.JbpmContext] closing JbpmContext
2007-08-14 11:13:06,663 DEBUG [org.jbpm.svc.Services] closing service 
'persistence': [EMAIL PROTECTED]
2007-08-14 11:13:06,663 DEBUG [org.jbpm.persistence.db.DbPersistenceService] 
committing hibernate transaction [EMAIL PROTECTED]

Here are  configuration files I have changed for configuring Mysql DB

--- hibernate.cfg -- 





http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd";>

[jboss-user] [JBoss jBPM] - jBOSS jBPM on Websphere 6

2007-05-02 Thread Thewil
Hi,

I want to know if it is possible to deploy an jBPM project on Websphere 6 
instead of jBOSS server. And if the reponse is true do you have an example to 
do this ?

Thank you and excuse me for my english i'm french

Regards.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4042336#4042336

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4042336
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - JBoss jBPM and LDAPLoginModule

2007-02-08 Thread CornAir
Hello JBPM community,

I want to integrate a Java LDAPLoginModule to manage the JBPM user rights. I 
already defined the roles in the login-config.xml

Unfortunately I am new to JBPM and I wondered how to integrate the LoginModule 
to check whether the user has the permission to fulfill a certain process step.

It would be great if anyone could help me and answer my question how I have to 
configure the roles in the JBPM database (JBPM_ID_USER, JBPM_GROUP, ...)?  

Thanks in advance,
   Simon

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4013164#4013164

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4013164
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - JBoss jBPM Graphical Designer and Transition Conditions

2007-01-26 Thread damianharvey
Hi,

New here so big hello to you all.

I'm using the Graphical Designer to model a business process but can't see how 
you can add condition expressions to transitions without diving into the XML 
view. Surely this should be a "right-click -> add condition" sort of thing?

I couldn't find any answer to this in the forums or Google. It's obviously not 
that big a deal but would be rather nice.

Thanks,

Damian.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4006777#4006777

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4006777
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Jboss jBPM compatible with Apache Tomcat and mySQL?

2006-10-16 Thread onizuka82

Hello there, 

I am a newbie in here. I am currently doing my final year project for a 
sponsored based company. The company required me to develop a workflow system. 
The company want me to find an open source java and mySQL based workflow 
systems. Is it possible to use Jboss jBPM 3.x with mySQL and Apache instead of 
hibernate and JBoss portal because the company wants only mySQL as it database 
and Apache Tomcat as it server. I have look through the Jboss jBPM product 
sheet and it say that Jboss jBPM is compatible with mySQL and Apache Tomcat. As 
i am new in here, so can any kind samaritan  please help me with this. In order 
to built on top of JBoss jBPM, i need to be sure that Jboss jBPM really works 
well with mySQL and Apache Tomcat. 

Thank you in advance.




View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3978677#3978677

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3978677
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - JBoss jBPM BPEL Extension: Visualization, Authentication, At

2006-08-04 Thread karmen38
Hello, 


I have a couple of general questions about JBoss jBPM BPEL extension. I would 
appreciate some inputs, answers or discussions about them.


1. It is any way to view the current status of the BPEL-engine: what processes 
are deployed, which ones are currently active, what is the state of each 
individual process and so on? Some processes execution might take some time, it 
could be a couple of days or even more. Some processes might wait for an input 
from the external system or wait to repeat the failing invoke. Is it a way to 
get this information (like what is the current active node in the process) and 
possibly intervene. For instance, kill some process instance. Is it any GUI to 
perform such tasks. At least, is it possible to query database tables or 
retrieve this information from the BPEL-engine as collections of Java objects 
(to be independent from the database). 

The other side of this question is: is it possible to debug the processes 
inside BPEL engine. It could be even commang line debugger like gdb but it 
would bring many benefits during the process development.

Are there any plans for the core BPEL development to implement some of such 
functionality or it would be too specific request?


2. I do not quite understand how to call external WEB Service (using invoke) 
that requires userid / password. I have an application that exposes its 
interface as WEB Service using SOAP transported by HTTP. I think that the 
application supports basic HTTP authentification. I just cannot understand 
where in the invoke or partner link definition (in BPEL itself or in jBPM BPEL 
extension) can I specify the user account information. 


3. How can I process binary attachments in BPEL? WEB Serivce specification 
supports attachments but I do not fully understand where in BPEL process can I 
assign tha attachment sent by the process caller. Would it be mime (dime?) 
encoded string? Potentially, I would like to accept attachment in BPEL process 
and then send it as an attachement to the external application using invoke. So 
the string probably would not work here because I would need to pass it as a 
WEB Service attachment in invoke. 


4. Currently org.jbpm.bpel.ant.ServiceGeneratorTask task denerates process 
external WSDL that is composed from sevaral parts: service.wsdl that 
ultimatelly imports all other parts, binding_xxx.wsdl and .wsdl. They all would 
be deployed into the JBoss server and could be accessed by clients. It is also 
possible to open this WSDL in a browser and see it with import statement inside.

The problem is that _some_ of the 3rd party GUI tools that work with WEB 
Services and visualise calling to web services and building the BPEL processes 
do not understand this import statement. I tried Eclipse Webtools WEB Service 
explorer, Stylus Studio 2006 WEB Service call wizard, Active BPEL designer and 
MS Visual Studio (I understand this it is not from the Java world but a-Web 
Services suppose to be platform agnostic and b-the first three are from Java 
world). No application understood this import. I tried to build this wsdl 
manually from the components as a one single file and redeploy it and all of 
the above-mentioned applications detected this web service correctly and 
allowed to drag and to their GUI work areas. 

The question is whether it would be possible to have an option in this Service 
Generation task that will create a single file at least for the legacy tools 
that do not support the spec. I guess that having this import statement is 
allowed in the spec but it would be convinient some time to have the single 
wsdl file.

Thank you,
Mark

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3963328#3963328

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3963328
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user