Hi, anonymous wrote : 1/ I can't deploy the process, what is wrong ? It's hard to tell without more details. What step of the deployment procedure failed? What is the error message?
anonymous wrote : 2/ With this process definition, is it possible after to communicate and exchange data with my client application coded in Java ? Refer to the tutorial chapter of the jBPM BPEL manual. It explains, step by step, how to create and deploy a J2EE application client, and how to use that from a Java client application (a JUnit test case). anonymous wrote : 3/ Can I use different operations with differents partners link, but with same variables ? Often, operations from different partners use different messages. The type of the variable used to read/write an outgoing/incoming message should match the operation input, output or fault message. That said, you can always reuse variables for different operations that share a message definition. anonymous wrote : 4/ I don't understand very well the role of "service" ? Let's consider one of your partner links: <partnerLink name="CallCenter" partnerLinkType="tns:rdvPLT" myRole="service"/> This means the process will assume the role named "service" in the relationship characterized by "tns:rdvPLT". The role in turn points to a WSDL port type definitions whose operations define the responsibilities assiged to that role. Since there is no partnerRole attribute, this relationship is unidirectional: the process will not invoke any operation on this partner. The referenced partner link type is: <plt:partnerLinkType name="rdvPLT"> | <plt:role name="service"> | <plt:portType name="tns:callcenterbasketPT"/> | </plt:role> | <plt:role name="service"> | <plt:portType name="tns:rendezvousPT"/> | </plt:role> | </plt:partnerLinkType> Things get clumsy here. In the first place this is an invalid partner link type because roles must have different names. Second, the partner link above only assigns one role, but the partner link type defines two. You must either define a partnerRole in the partner link (if the relationship is bidirectional) or remove one role in the partner link type (if the relationship is unidirectional). View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954497#3954497 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3954497 Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ JBoss-user mailing list JBoss-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/jboss-user