|
||||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||||
| Uses of QName in javax.xml.namespace |
| Methods in javax.xml.namespace that return QName | |
static QName |
QName.valueOf(java.lang.String s)
Returns a QName holding the value of the specified String. |
| Uses of QName in javax.xml.rpc |
| Methods in javax.xml.rpc that return QName | |
QName |
Service.getServiceName()
Gets the name of this Service. |
QName |
Call.getParameterTypeByName(java.lang.String paramName)
Gets the XML type of a parameter by name |
QName |
Call.getReturnType()
Gets the return type for a specific operation |
QName |
Call.getOperationName()
Gets the name of the operation to be invoked using this Call instance. |
QName |
Call.getPortTypeName()
Gets the qualified name of the port type. |
| Methods in javax.xml.rpc with parameters of type QName | |
abstract Service |
ServiceFactory.createService(java.net.URL wsdlDocumentLocation,
QName serviceName)
Create a Service instance. |
abstract Service |
ServiceFactory.createService(QName serviceName)
Create a Service instance. |
java.rmi.Remote |
Service.getPort(QName portName,
java.lang.Class serviceEndpointInterface)
The getPort method returns either an instance of a generated stub implementation class or a dynamic proxy. |
Call[] |
Service.getCalls(QName portName)
Gets an array of preconfigured Call objects for
invoking operations on the specified port. |
Call |
Service.createCall(QName portName)
Creates a Call instance. |
Call |
Service.createCall(QName portName,
QName operationName)
Creates a Call instance. |
Call |
Service.createCall(QName portName,
QName operationName)
Creates a Call instance. |
Call |
Service.createCall(QName portName,
java.lang.String operationName)
Creates a Call instance. |
boolean |
Call.isParameterAndReturnSpecRequired(QName operationName)
Indicates whether addParameter and
setReturnType methods
are to be invoked to specify the parameter and return type
specification for a specific operation. |
void |
Call.addParameter(java.lang.String paramName,
QName xmlType,
ParameterMode parameterMode)
Adds a parameter type and mode for a specific operation. |
void |
Call.addParameter(java.lang.String paramName,
QName xmlType,
java.lang.Class javaType,
ParameterMode parameterMode)
Adds a parameter type and mode for a specific operation. |
void |
Call.setReturnType(QName xmlType)
Sets the return type for a specific operation. |
void |
Call.setReturnType(QName xmlType,
java.lang.Class javaType)
Sets the return type for a specific operation. |
void |
Call.setOperationName(QName operationName)
Sets the name of the operation to be invoked using this Call instance. |
void |
Call.setPortTypeName(QName portType)
Sets the qualified name of the port type. |
java.lang.Object |
Call.invoke(QName operationName,
java.lang.Object[] inputParams)
Invokes a specific operation using a synchronous request-response interaction mode. |
| Uses of QName in javax.xml.rpc.encoding |
| Fields in javax.xml.rpc.encoding declared as QName | |
static QName |
XMLType.XSD_STRING
Field XSD_STRING |
static QName |
XMLType.XSD_FLOAT
Field XSD_FLOAT |
static QName |
XMLType.XSD_BOOLEAN
Field XSD_BOOLEAN |
static QName |
XMLType.XSD_DOUBLE
Field XSD_DOUBLE |
static QName |
XMLType.XSD_INTEGER
Field XSD_INTEGER |
static QName |
XMLType.XSD_INT
Field XSD_INT |
static QName |
XMLType.XSD_LONG
Field XSD_LONG |
static QName |
XMLType.XSD_SHORT
Field XSD_SHORT |
static QName |
XMLType.XSD_DECIMAL
Field XSD_DECIMAL |
static QName |
XMLType.XSD_BASE64
Field XSD_BASE64 |
static QName |
XMLType.XSD_HEXBINARY
Field XSD_HEXBINARY |
static QName |
XMLType.XSD_BYTE
Field XSD_BYTE |
static QName |
XMLType.XSD_DATETIME
Field XSD_DATETIME |
static QName |
XMLType.XSD_QNAME
Field XSD_QNAME |
static QName |
XMLType.SOAP_STRING
Field SOAP_STRING |
static QName |
XMLType.SOAP_BOOLEAN
Field SOAP_BOOLEAN |
static QName |
XMLType.SOAP_DOUBLE
Field SOAP_DOUBLE |
static QName |
XMLType.SOAP_BASE64
Field SOAP_BASE64 |
static QName |
XMLType.SOAP_FLOAT
Field SOAP_FLOAT |
static QName |
XMLType.SOAP_INT
Field SOAP_INT |
static QName |
XMLType.SOAP_LONG
Field SOAP_LONG |
static QName |
XMLType.SOAP_SHORT
Field SOAP_SHORT |
static QName |
XMLType.SOAP_BYTE
Field SOAP_BYTE |
static QName |
XMLType.SOAP_ARRAY
Field SOAP_ARRAY |
| Methods in javax.xml.rpc.encoding with parameters of type QName | |
boolean |
TypeMapping.isRegistered(java.lang.Class javaType,
QName xmlType)
Checks whether or not type mapping between specified XML type and Java type is registered. |
void |
TypeMapping.register(java.lang.Class javaType,
QName xmlType,
SerializerFactory sf,
DeserializerFactory dsf)
Registers SerializerFactory and DeserializerFactory for a specific type mapping between an XML type and Java type. |
SerializerFactory |
TypeMapping.getSerializer(java.lang.Class javaType,
QName xmlType)
Gets the SerializerFactory registered for the specified pair of Java type and XML data type. |
DeserializerFactory |
TypeMapping.getDeserializer(java.lang.Class javaType,
QName xmlType)
Gets the DeserializerFactory registered for the specified pair of Java type and XML data type. |
void |
TypeMapping.removeSerializer(java.lang.Class javaType,
QName xmlType)
Removes the SerializerFactory registered for the specified pair of Java type and XML data type. |
void |
TypeMapping.removeDeserializer(java.lang.Class javaType,
QName xmlType)
Removes the DeserializerFactory registered for the specified pair of Java type and XML data type. |
| Uses of QName in javax.xml.rpc.handler |
| Methods in javax.xml.rpc.handler that return QName | |
QName[] |
HandlerInfo.getHeaders()
Gets the header blocks processed by this Handler. |
QName[] |
Handler.getHeaders()
Gets the header blocks processed by this Handler instance. |
abstract QName[] |
GenericHandler.getHeaders()
Gets the header blocks processed by this Handler instance. |
| Methods in javax.xml.rpc.handler with parameters of type QName | |
java.util.List |
HandlerRegistry.getHandlerChain(QName portName)
Gets the handler chain for the specified service endpoint. |
void |
HandlerRegistry.setHandlerChain(QName portName,
java.util.List chain)
Sets the handler chain for the specified service endpoint as a java.util.List. |
void |
HandlerInfo.setHeaders(QName[] headers)
Sets the header blocks processed by this Handler. |
| Constructors in javax.xml.rpc.handler with parameters of type QName | |
HandlerInfo(java.lang.Class handlerClass,
java.util.Map config,
QName[] headers)
Constructor for HandlerInfo |
|
| Uses of QName in javax.xml.rpc.holders |
| Fields in javax.xml.rpc.holders declared as QName | |
QName |
QNameHolder.value
Field _value |
| Constructors in javax.xml.rpc.holders with parameters of type QName | |
QNameHolder(QName value)
Constructor QNameHolder |
|
| Uses of QName in javax.xml.rpc.soap |
| Methods in javax.xml.rpc.soap that return QName | |
QName |
SOAPFaultException.getFaultCode()
Gets the faultcode element. |
| Constructors in javax.xml.rpc.soap with parameters of type QName | |
SOAPFaultException(QName faultcode,
java.lang.String faultstring,
java.lang.String faultactor,
Detail detail)
Constructor for SOAPFaultException |
|
| Uses of QName in org.apache.axis |
| Fields in org.apache.axis declared as QName | |
static QName[] |
Constants.QNAMES_NIL
|
static QName |
Constants.FAULT_VERSIONMISMATCH
|
static QName |
Constants.FAULT_MUSTUNDERSTAND
|
static QName |
Constants.FAULT_SOAP12_MUSTUNDERSTAND
|
static QName |
Constants.FAULT_SOAP12_VERSIONMISMATCH
|
static QName |
Constants.FAULT_SOAP12_DATAENCODINGUNKNOWN
|
static QName |
Constants.FAULT_SOAP12_SENDER
|
static QName |
Constants.FAULT_SOAP12_RECEIVER
|
static QName |
Constants.FAULT_SUBCODE_BADARGS
|
static QName |
Constants.FAULT_SUBCODE_PROC_NOT_PRESENT
|
static QName |
Constants.QNAME_FAULTCODE
|
static QName |
Constants.QNAME_FAULTSTRING
|
static QName |
Constants.QNAME_FAULTACTOR
|
static QName |
Constants.QNAME_FAULTDETAILS
|
static QName |
Constants.QNAME_FAULTCODE_SOAP12
|
static QName |
Constants.QNAME_FAULTVALUE_SOAP12
|
static QName |
Constants.QNAME_FAULTSUBCODE_SOAP12
|
static QName |
Constants.QNAME_FAULTREASON_SOAP12
|
static QName |
Constants.QNAME_TEXT_SOAP12
|
static QName |
Constants.QNAME_FAULTNODE_SOAP12
|
static QName |
Constants.QNAME_FAULTROLE_SOAP12
|
static QName |
Constants.QNAME_FAULTDETAIL_SOAP12
|
static QName |
Constants.QNAME_NOTUNDERSTOOD
|
static QName |
Constants.XSD_STRING
|
static QName |
Constants.XSD_BOOLEAN
|
static QName |
Constants.XSD_DOUBLE
|
static QName |
Constants.XSD_FLOAT
|
static QName |
Constants.XSD_INT
|
static QName |
Constants.XSD_INTEGER
|
static QName |
Constants.XSD_LONG
|
static QName |
Constants.XSD_SHORT
|
static QName |
Constants.XSD_BYTE
|
static QName |
Constants.XSD_DECIMAL
|
static QName |
Constants.XSD_BASE64
|
static QName |
Constants.XSD_HEXBIN
|
static QName |
Constants.XSD_ANYTYPE
|
static QName |
Constants.XSD_ANY
|
static QName |
Constants.XSD_QNAME
|
static QName |
Constants.XSD_DATETIME
|
static QName |
Constants.XSD_DATE
|
static QName |
Constants.XSD_TIME
|
static QName |
Constants.XSD_TIMEINSTANT1999
|
static QName |
Constants.XSD_TIMEINSTANT2000
|
static QName |
Constants.XSD_NORMALIZEDSTRING
|
static QName |
Constants.XSD_TOKEN
|
static QName |
Constants.XSD_UNSIGNEDLONG
|
static QName |
Constants.XSD_UNSIGNEDINT
|
static QName |
Constants.XSD_UNSIGNEDSHORT
|
static QName |
Constants.XSD_UNSIGNEDBYTE
|
static QName |
Constants.XSD_POSITIVEINTEGER
|
static QName |
Constants.XSD_NEGATIVEINTEGER
|
static QName |
Constants.XSD_NONNEGATIVEINTEGER
|
static QName |
Constants.XSD_NONPOSITIVEINTEGER
|
static QName |
Constants.XSD_YEARMONTH
|
static QName |
Constants.XSD_MONTHDAY
|
static QName |
Constants.XSD_YEAR
|
static QName |
Constants.XSD_MONTH
|
static QName |
Constants.XSD_DAY
|
static QName |
Constants.XSD_DURATION
|
static QName |
Constants.XSD_NAME
|
static QName |
Constants.XSD_NCNAME
|
static QName |
Constants.XSD_NMTOKEN
|
static QName |
Constants.XSD_NMTOKENS
|
static QName |
Constants.XSD_NOTATION
|
static QName |
Constants.XSD_ENTITY
|
static QName |
Constants.XSD_ENTITIES
|
static QName |
Constants.XSD_IDREF
|
static QName |
Constants.XSD_IDREFS
|
static QName |
Constants.XSD_ANYURI
|
static QName |
Constants.XSD_LANGUAGE
|
static QName |
Constants.XSD_ID
|
static QName |
Constants.XSD_SCHEMA
|
static QName |
Constants.XML_LANG
|
static QName |
Constants.SOAP_BASE64
|
static QName |
Constants.SOAP_BASE64BINARY
|
static QName |
Constants.SOAP_STRING
|
static QName |
Constants.SOAP_BOOLEAN
|
static QName |
Constants.SOAP_DOUBLE
|
static QName |
Constants.SOAP_FLOAT
|
static QName |
Constants.SOAP_INT
|
static QName |
Constants.SOAP_LONG
|
static QName |
Constants.SOAP_SHORT
|
static QName |
Constants.SOAP_BYTE
|
static QName |
Constants.SOAP_INTEGER
|
static QName |
Constants.SOAP_DECIMAL
|
static QName |
Constants.SOAP_ARRAY
|
static QName |
Constants.SOAP_ARRAY12
|
static QName |
Constants.SOAP_MAP
|
static QName |
Constants.SOAP_ELEMENT
|
static QName |
Constants.SOAP_DOCUMENT
|
static QName |
Constants.SOAP_VECTOR
|
static QName |
Constants.MIME_IMAGE
|
static QName |
Constants.MIME_PLAINTEXT
|
static QName |
Constants.MIME_MULTIPART
|
static QName |
Constants.MIME_SOURCE
|
static QName |
Constants.MIME_OCTETSTREAM
|
static QName |
Constants.MIME_DATA_HANDLER
|
static QName |
Constants.QNAME_LITERAL_ITEM
|
static QName |
Constants.QNAME_RPC_RESULT
|
static QName |
Constants.QNAME_FAULTDETAIL_STACKTRACE
QName of stack trace element in an axis fault detail. |
static QName |
Constants.QNAME_FAULTDETAIL_EXCEPTIONNAME
QName of exception Name element in an axis fault detail. |
static QName |
Constants.QNAME_FAULTDETAIL_RUNTIMEEXCEPTION
QName of stack trace element in an axis fault detail. |
static QName |
Constants.QNAME_NO_SERVICE_FAULT_CODE
the no-service fault value |
protected QName |
AxisFault.faultCode
|
| Methods in org.apache.axis that return QName | |
QName |
AxisFault.getFaultCode()
get the fault code |
QName[] |
AxisFault.getFaultSubCodes()
get the fault subcode list; only used in SOAP 1.2 |
| Methods in org.apache.axis with parameters of type QName | |
boolean |
SimpleChain.canHandleBlock(QName qname)
|
OperationDesc[] |
MessageContext.getPossibleOperationsByQName(QName qname)
getPossibleOperationsByQName Returns a list of operation descriptors that could may possibly match a body containing an element of the given QName. |
OperationDesc |
MessageContext.getOperationByQName(QName qname)
get the first possible operation that could match a body containing an element of the given QName. |
boolean |
Handler.canHandleBlock(QName qname)
Can this Handler process this QName? |
boolean |
FaultableHandler.canHandleBlock(QName qname)
|
Handler |
EngineConfiguration.getHandler(QName qname)
retrieve an instance of the named handler |
SOAPService |
EngineConfiguration.getService(QName qname)
retrieve an instance of the named service |
Handler |
EngineConfiguration.getTransport(QName qname)
retrieve an instance of the named transport |
static java.lang.String |
Constants.getValue(org.xml.sax.Attributes attributes,
QName[] search)
Search an attribute collection for a list of QNames, returning the value of the first one found, or null if none were found. |
static boolean |
Constants.equals(QName first,
QName second)
equals The first QName is the current version of the name. |
static boolean |
Constants.equals(QName first,
QName second)
equals The first QName is the current version of the name. |
void |
AxisFault.setFaultCode(QName code)
set the fault code |
void |
AxisFault.addFaultSubCode(QName code)
This is new in SOAP 1.2, ignored in SOAP 1.1 |
void |
AxisFault.addFaultDetail(QName qname,
java.lang.String body)
create an element of the given qname and add it to the details |
org.w3c.dom.Element |
AxisFault.lookupFaultDetail(QName qname)
Find a fault detail element by its qname |
boolean |
AxisFault.removeFaultDetail(QName qname)
find and remove a specified fault detail element |
void |
AxisFault.writeDetails(QName qname,
SerializationContext context)
Writes any exception data to the faultDetails This can be overrided (and is) by emitted exception clases. |
| Constructors in org.apache.axis with parameters of type QName | |
AxisFault(QName code,
java.lang.String faultString,
java.lang.String actor,
org.w3c.dom.Element[] details)
make a fault in any namespace |
|
AxisFault(QName code,
QName[] subcodes,
java.lang.String faultString,
java.lang.String actor,
java.lang.String node,
org.w3c.dom.Element[] details)
make a fault in any namespace |
|
AxisFault(QName code,
QName[] subcodes,
java.lang.String faultString,
java.lang.String actor,
java.lang.String node,
org.w3c.dom.Element[] details)
make a fault in any namespace |
|
| Uses of QName in org.apache.axis.client |
| Fields in org.apache.axis.client declared as QName | |
protected QName |
Stub.cachedPortName
|
| Methods in org.apache.axis.client that return QName | |
QName |
Stub.getPortName()
Get the port name. |
QName |
Service.getServiceName()
Returns the qualified name of the service (if one is set). |
QName |
Call.getParameterTypeByName(java.lang.String paramName)
Return the QName of the type of the parameters with the given name. |
QName |
Call.getParameterTypeByQName(QName paramQName)
Return the QName of the type of the parameters with the given name. |
QName |
Call.getReturnType()
Returns the QName of the type of the return value of this Call - or null if not set. |
QName |
Call.getOperationName()
Returns the operation name associated with this Call object. |
QName |
Call.getPortName()
Returns the fully qualified name of the port for this Call object (if there is one). |
QName |
Call.getPortTypeName()
Deprecated. This is really the service's port name, not portType name. Use getPortName instead. |
| Methods in org.apache.axis.client with parameters of type QName | |
void |
Stub.setPortName(QName portName)
Set the port QName. |
Service |
ServiceFactory.createService(java.net.URL wsdlDocumentLocation,
QName serviceName)
Create a Service instance. |
Service |
ServiceFactory.createService(QName serviceName)
Create a Service instance. |
java.rmi.Remote |
Service.getPort(QName portName,
java.lang.Class proxyInterface)
Return either an instance of a generated stub, if it can be found, or a dynamic proxy for the given proxy interface. |
Call |
Service.createCall(QName portName)
Creates a new Call object - will prefill as much info from the WSDL as it can. |
Call |
Service.createCall(QName portName,
java.lang.String operationName)
Creates a new Call object - will prefill as much info from the WSDL as it can. |
Call |
Service.createCall(QName portName,
QName operationName)
Creates a new Call object - will prefill as much info from the WSDL as it can. |
Call |
Service.createCall(QName portName,
QName operationName)
Creates a new Call object - will prefill as much info from the WSDL as it can. |
Call[] |
Service.getCalls(QName portName)
Gets an array of preconfigured Call objects for invoking operations on the specified port. |
java.util.List |
Service.HandlerRegistryImpl.getHandlerChain(QName portName)
|
void |
Service.HandlerRegistryImpl.setHandlerChain(QName portName,
java.util.List chain)
|
boolean |
Call.isParameterAndReturnSpecRequired(QName operationName)
Is the caller required to provide the parameter and return type specification? If true, then addParameter and setReturnType MUST be called to provide the meta data. |
void |
Call.addParameter(QName paramName,
QName xmlType,
ParameterMode parameterMode)
Adds the specified parameter to the list of parameters for the operation associated with this Call object. |
void |
Call.addParameter(QName paramName,
QName xmlType,
ParameterMode parameterMode)
Adds the specified parameter to the list of parameters for the operation associated with this Call object. |
void |
Call.addParameter(QName paramName,
QName xmlType,
java.lang.Class javaType,
ParameterMode parameterMode)
Adds the specified parameter to the list of parameters for the operation associated with this Call object. |
void |
Call.addParameter(QName paramName,
QName xmlType,
java.lang.Class javaType,
ParameterMode parameterMode)
Adds the specified parameter to the list of parameters for the operation associated with this Call object. |
void |
Call.addParameter(java.lang.String paramName,
QName xmlType,
ParameterMode parameterMode)
Adds the specified parameter to the list of parameters for the operation associated with this Call object. |
void |
Call.addParameter(java.lang.String paramName,
QName xmlType,
java.lang.Class javaType,
ParameterMode parameterMode)
Adds a parameter type and mode for a specific operation. |
void |
Call.addParameterAsHeader(QName paramName,
QName xmlType,
java.lang.Class javaType,
ParameterMode parameterMode,
ParameterMode headerMode)
Adds a parameter type as a soap:header. |
void |
Call.addParameterAsHeader(QName paramName,
QName xmlType,
java.lang.Class javaType,
ParameterMode parameterMode,
ParameterMode headerMode)
Adds a parameter type as a soap:header. |
QName |
Call.getParameterTypeByQName(QName paramQName)
Return the QName of the type of the parameters with the given name. |
void |
Call.setReturnType(QName type)
Sets the return type of the operation associated with this Call object. |
void |
Call.setReturnType(QName xmlType,
java.lang.Class javaType)
Sets the return type for a specific operation. |
void |
Call.setReturnTypeAsHeader(QName xmlType)
Set the return type as a header |
void |
Call.setReturnTypeAsHeader(QName xmlType,
java.lang.Class javaType)
Set the return type as a header |
void |
Call.setReturnQName(QName qname)
Set the QName of the return element NOT part of JAX-RPC |
void |
Call.setOperationName(QName opName)
Sets the operation name associated with this Call object. |
void |
Call.setOperation(QName portName,
java.lang.String opName)
prefill as much info from the WSDL as it can. |
void |
Call.setPortName(QName portName)
Sets the port name of this Call object. |
void |
Call.setPortTypeName(QName portType)
Deprecated. This is really the service's port name, not portType name. Use setPortName instead. |
java.lang.Object |
Call.invoke(QName operationName,
java.lang.Object[] params)
Invokes a specific operation using a synchronous request-response interaction mode. |
<