Re: [Axis2][0.95] Validating all the incoming messages through a single point

2006-04-14 Thread Ali Sadik Kumlali
Hi, What does "Message Validation Phase"[1] do? Does it able to validate incoming messages against XSD by using XMLBeans? Thanks, Ali Sadik Kumlali [1] Mentioned in Axis2 Architecture Guide http://ws.apache.org/axis2/0_95/Axis2ArchitectureGuide.html --- Ali Sadik Kumlali <[EMAIL PROTECTED]>

Re: [Axis2][0.95] Validating all the incoming messages through a single point

2006-04-14 Thread Ali Sadik Kumlali
Thank you for your response. There would be no difference between adding this code in skeleton and message receiver, if I *manually* added it. Actually, that is why I asked for a way to accomplish this with WSDL2Java. By any chance, is there a plan to do this? Thanks, Ali Sadik Kumlali --- r

Re: [Axis2][0.95] Validating all the incoming messages through a single point

2006-04-14 Thread robert lazarski
The message receiver is called before the skeleton - in fact its largely responible for initializing the skeleton. So there I believe is the correct place to do it. Nothings stopping you from adding code there. Or you could just reference your own message receiver via services.xml . Not sure how

[Axis2][0.95] Validating all the incoming messages through a single point

2006-04-13 Thread Ali Sadik Kumlali
Hi all, I'm using XmlBeans and can validate each operation in my skeleton. I need validation to be made at a single point before my skeleton is called. This may be provided with a validation module. But; 1) I don't have fromOM at that point (or I don't know how to get it ;-) 2) Even if I can get