Gets the DeserializerFactory registered for the specified XML data type.
param
xmlType - Qualified name of the XML data type
return
Registered DeserializerFactory
throws
JAXRPCException - If there is no registered DeserializerFactory
for this pair of Java type and XML data type
java.lang.IllegalArgumentException -
If invalid or unsupported XML/Java type is specified
Gets the SerializerFactory registered for the specified pair
of Java type and XML data type.
param
javaType - Class of the Java type
return
Registered SerializerFactory
throws
JAXRPCException - If there is no registered SerializerFactory
for this pair of Java type and XML data type
java.lang.IllegalArgumentException
If invalid or unsupported XML/Java type is specified
Get the exact XML type QName which will be used when serializing a
given Class to a given type QName. In other words, if we have:
Class TypeQName
----------------------
Base myNS:Base
Child myNS:Child
and call getXMLType(Child.class, BASE_QNAME), we should get
CHILD_QNAME.