1 16 package org.apache.axis.message; 17 18 22 23 import org.apache.axis.encoding.DeserializationContext; 24 import org.xml.sax.Attributes ; 25 import org.xml.sax.SAXException ; 26 27 public class EnvelopeHandler extends SOAPHandler 28 { 29 SOAPHandler realHandler; 30 31 public EnvelopeHandler(SOAPHandler realHandler) 32 { 33 this.realHandler = realHandler; 34 } 35 36 public SOAPHandler onStartChild(String namespace, 37 String localName, 38 String prefix, 39 Attributes attributes, 40 DeserializationContext context) 41 throws SAXException  42 { 43 return realHandler; 44 } 45 } 46 | Popular Tags |