context = pContext;
serializer = new JaxbSerializer(context);
}
public TypeParser getParser(XmlRpcStreamConfig pConfig, NamespaceContextImpl pContext, String pURI, String pLocalName) {
TypeParser tp = super.getParser(pConfig, pContext, pURI, pLocalName);
if (tp == null) {
if (XmlRpcWriter.EXTENSIONS_URI.equals(pURI) && JaxbSerializer.JAXB_TAG.equals(pLocalName)) {
return new JaxbParser(context);
}
}