>
>
> My intention is to build a generic web service that can take any type
> (by upcasting to object) and through an internal XML document, be able
> to map it to its real class so I can cast and perform operations on it
> as defined by the XML (this is not SOAP - its BePel)

Then what you have to do is write your service impl class to take
OMElement as method parameter , then om element can be anything. So your
method signature will be look like below;

public OMElement echo(OMElement ele){
  ///// do smt
}


Thanks
Deepal


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to