"ebu" wrote : 
  | Did i understood correctly that JBoss supports only pure document/literal 
(not wrapped) with single parameter per method only? 
  | 

Yes wrapped is not supported

"ebu" wrote : 
  | And it is impossible to make it work with messages with several parameters 
in docl/literal mode?
  | 

Yes you can only get one parameter, but that one parameter can be a complex 
object with the same information you would have in multple parameters. 

So instead of

  | public void doSomething(int a, String b, MyObject c){...}
  | 

you would have

  | public void doSomething(MyMessageObject o) {
  |    int a = o.getA();
  |    String b = o.getB();
  |    MyObject c = o.getC();
  |    ...
  | } 
  | 

-Jason

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

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


-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
_______________________________________________
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to