I'm working in the BPEL module within the jBPM project.  Process data in a bpel 
document is defined in terms of variables, some of which hold WSDL messages. A 
process can exchange messages with various partner links and expose a different 
interface (port type) to each.
I'll be deploying a port component for each partner link. I'd like to use a SEI 
with only one method that received all messages for that partner link 
regardless of the WSDL operation, instead of a separate method for each 
operation.
public interface BpelPartnerLink extends Remote {
  |   public SOAPElement receive(SOAPElement message);
  | }
  | 
  | public class BpelPartnerLinkService implements BpelProcess, 
ServiceLifecycle {
  |   public SOAPElement deliverMessage(SOAPElement message) {
  |     // figure out the involved partner link and the operation using 
  |     // the servlet endpoint context
  |   }
  | }
I checked out the article suggested by Ole. Switching off data binding seems to 
be part of the solution.  
1) Is this supported by JBossWS?
2) Can I route all WSDL operations to a single method?

Thanks for your help,
Alejandro GuÃzar

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

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862512


-------------------------------------------------------
The SF.Net email is sponsored by: Beat the post-holiday blues
Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
It's fun and FREE -- well, almost....http://www.thinkgeek.com/sfshirt
_______________________________________________
JBoss-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to