|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Registry
Methods of WebServiceLookup interface serve for creation of the web service's stubs. The stub is an implementation of a particular java interface class that marshalls method calls to SOAP RPC calls to the web service endpoints.
The stub creation requires at least two arguments:
1) definition
or wsdlURL
that allows
obtaining of the WSDL definition/description of the web service.
2) iface
that is a java interface class for the stub to
implement.
Lookup methods might take more arguments to avoid ambiguity of java interface class to the WSDL service's port association; semantics of particular method arguments will be described below, in each method documentation.
Method Summary | |
java.lang.Object |
lookup(Definition definition,
java.lang.Class iface)
Deprecated. This method creates a stub for the web service described by definition argument. |
java.lang.Object |
lookup(Definition definition,
java.lang.Class iface,
java.util.Properties lookupProps)
Deprecated. This method creates a stub for the web service described by definition argument. |
java.lang.Object |
lookup(Definition definition,
java.lang.Class iface,
java.lang.String endpointURI)
Deprecated. This method creates a stub for the web service described by definition argument. |
java.lang.Object |
lookup(Definition definition,
java.lang.Class iface,
java.lang.String endpointURI,
java.util.Properties lookupProps)
Deprecated. This method creates a stub for the web service described by definition argument. |
java.lang.Object |
lookup(Definition definition,
Service service,
Port port,
java.lang.Class iface)
Deprecated. This method creates a stub for the web service described by definition argument. |
java.lang.Object |
lookup(Definition definition,
Service service,
Port port,
java.lang.Class iface,
java.util.Properties lookupProps)
Deprecated. This method creates a stub for the web service described by definition argument. |
java.lang.Object |
lookup(Definition definition,
Service service,
Port port,
java.lang.Class iface,
java.lang.String endpointURI)
Deprecated. This method creates a stub for the web service described by definition argument. |
java.lang.Object |
lookup(Definition definition,
Service service,
Port port,
java.lang.Class iface,
java.lang.String endpointURI,
java.util.Properties lookupProps)
Deprecated. This method creates a stub for the web service described by definition argument. |
java.lang.Object |
lookup(java.lang.String definitionURL,
java.lang.Class iface)
Deprecated. This method creates a stub for the web service described by definition argument. |
java.lang.Object |
lookup(java.lang.String definitionURL,
java.lang.Class iface,
java.util.Properties lookupProps)
Deprecated. This method creates a stub for the web service described by definition argument. |
java.lang.Object |
lookup(java.lang.String definitionURL,
java.lang.Class iface,
java.lang.String endpointURI)
Deprecated. This method creates a stub for the web service described by definition argument. |
java.lang.Object |
lookup(java.lang.String definitionURL,
java.lang.Class iface,
java.lang.String endpointURI,
java.util.Properties lookupProps)
Deprecated. This method creates a stub for the web service described by definition argument. |
java.lang.Object |
lookup(java.lang.String definitionURL,
QName serviceQName,
java.lang.String portName,
java.lang.Class iface)
Deprecated. This method creates a stub for the web service described by definition argument. |
java.lang.Object |
lookup(java.lang.String definitionURL,
QName serviceQName,
java.lang.String portName,
java.lang.Class iface,
java.util.Properties lookupProps)
Deprecated. This method creates a stub for the web service described by definition argument. |
java.lang.Object |
lookup(java.lang.String definitionURL,
QName serviceQName,
java.lang.String portName,
java.lang.Class iface,
java.lang.String endpointURI)
Deprecated. This method creates a stub for the web service described by definition argument. |
java.lang.Object |
lookup(java.lang.String definitionURL,
QName serviceQName,
java.lang.String portName,
java.lang.Class iface,
java.lang.String endpointURI,
java.util.Properties lookupProps)
Deprecated. This method creates a stub for the web service described by definition argument. |
Method Detail |
public java.lang.Object lookup(Definition definition, Service service, Port port, java.lang.Class iface, java.lang.String endpointURI) throws WebServiceLookupException
definition
argument. This stub will implement
iface
, which will be associated with the WSDL
service's port specified by service
and
port
arguments. The endpoint of the service to be
contacted will be taken from endpointURI
argument
of the method and overrides possible
definition
- the WSDL definition describing the web serviceservice
- the WSDL's serviceport
- the WSDL service's portiface
- the java interfaceendpointURI
- the endpoint URI
iface
interface
Note: This method should not be used, because WSDL API has not been finalized yet
WebServiceLookupException
public java.lang.Object lookup(java.lang.String definitionURL, QName serviceQName, java.lang.String portName, java.lang.Class iface, java.lang.String endpointURI) throws WebServiceLookupException
definition
argument. This stub will implement
iface
, which will be associated with the WSDL
service's port specified by service
and
port
arguments. The endpoint of the service to be
contacted will be taken from endpointURI
argument
of the method and overrides possible
definitionURL
- the URL of the WSDL definition describing the web serviceserviceQName
- the QName of the WSDL's serviceportName
- the name of the WSDL service's portiface
- the java interfaceendpointURI
- the endpoint URI
iface
interface
WebServiceLookupException
public java.lang.Object lookup(Definition definition, Service service, Port port, java.lang.Class iface, java.lang.String endpointURI, java.util.Properties lookupProps) throws WebServiceLookupException
definition
argument. This stub will implement
iface
, which will be associated with the WSDL
service's port specified by service
and
port
arguments. The endpoint of the service to be
contacted will be taken from endpointURI
argument
of the method and overrides possible
definition
- the WSDL definition describing the web serviceservice
- the WSDL's serviceport
- the WSDL service's portiface
- the java interfaceendpointURI
- the endpoint URIlookupProps
- the properties used to configure the lookup operation
the list of the current used properties is in the
interface @link org.idoox.webservice.client.LookupProperties
This parameter may be null
.
The properties are then available in the CallContext
as the value of the key org.idoox.webservice.client.WebService.CALL_CONTEXT_LOOKUP_PROPERTIES
.
iface
interface
Note: This method should not be used, because WSDL API has not been finalized yet
WebServiceLookupException
public java.lang.Object lookup(java.lang.String definitionURL, QName serviceQName, java.lang.String portName, java.lang.Class iface, java.lang.String endpointURI, java.util.Properties lookupProps) throws WebServiceLookupException
definition
argument. This stub will implement
iface
, which will be associated with the WSDL
service's port specified by service
and
port
arguments. The endpoint of the service to be
contacted will be taken from endpointURI
argument
of the method and overrides possible
definitionURL
- the URL of the WSDL definition describing the web serviceserviceQName
- the QName of the WSDL's serviceportName
- the name of the WSDL service's portiface
- the java interfaceendpointURI
- the endpoint URIlookupProps
- the properties used to configure the lookup operation
the list of the current used properties is in the
interface @link org.idoox.webservice.client.LookupProperties
This parameter may be null
.
The properties are then available in the CallContext
as the value of the key org.idoox.webservice.client.WebService.CALL_CONTEXT_LOOKUP_PROPERTIES
.
iface
interface
WebServiceLookupException
public java.lang.Object lookup(Definition definition, Service service, Port port, java.lang.Class iface) throws WebServiceLookupException
definition
argument. This stub will implement
iface
, that will be associated with the WSDL
service's port specified by service
and
port
arguments. The endpoint of the service to be
contacted will be taken from the WSDL service's port
definition
- the WSDL definition describing the web serviceservice
- the WSDL's serviceport
- the WSDL service's portiface
- the java interface
iface
interface
Note: This method should not be used, because WSDL API has not been finalized yet
WebServiceLookupException
public java.lang.Object lookup(java.lang.String definitionURL, QName serviceQName, java.lang.String portName, java.lang.Class iface) throws WebServiceLookupException
definition
argument. This stub will implement
iface
, that will be associated with the WSDL
service's port specified by service
and
port
arguments. The endpoint of the service to be
contacted will be taken from the WSDL service's port
definitionURL
- the URL of the WSDL definition describing the web serviceserviceQName
- the QName of the WSDL's serviceportName
- the name of the WSDL service's portiface
- the java interface
iface
interface
WebServiceLookupException
public java.lang.Object lookup(Definition definition, Service service, Port port, java.lang.Class iface, java.util.Properties lookupProps) throws WebServiceLookupException
definition
argument. This stub will implement
iface
, that will be associated with the WSDL
service's port specified by service
and
port
arguments. The endpoint of the service to be
contacted will be taken from the WSDL service's port
definition
- the WSDL definition describing the web serviceservice
- the WSDL's serviceport
- the WSDL service's portiface
- the java interfacelookupProps
- the properties used to configure the lookup operation
the list of the current used properties is in the
interface @link org.idoox.webservice.client.LookupProperties
This parameter may be null
.
The properties are then available in the CallContext
as the value of the key org.idoox.webservice.client.WebService.CALL_CONTEXT_LOOKUP_PROPERTIES
.
iface
interface
Note: This method should not be used, because WSDL API has not been finalized yet
WebServiceLookupException
public java.lang.Object lookup(java.lang.String definitionURL, QName serviceQName, java.lang.String portName, java.lang.Class iface, java.util.Properties lookupProps) throws WebServiceLookupException
definition
argument. This stub will implement
iface
, that will be associated with the WSDL
service's port specified by service
and
port
arguments. The endpoint of the service to be
contacted will be taken from the WSDL service's port
definitionURL
- the URL of the WSDL definition describing the web serviceserviceQName
- the QName of the WSDL's serviceportName
- the name of the WSDL service's portiface
- the java interfacelookupProps
- the properties used to configure the lookup operation
the list of the current used properties is in the
interface @link org.idoox.webservice.client.LookupProperties
This parameter may be null
.
The properties are then available in the CallContext
as the value of the key org.idoox.webservice.client.WebService.CALL_CONTEXT_LOOKUP_PROPERTIES
.
iface
interface
WebServiceLookupException
public java.lang.Object lookup(Definition definition, java.lang.Class iface, java.lang.String endpointURI) throws WebServiceLookupException
definition
argument. This stub will implement
iface
interface which will be associated with the
WSDL service's port with value of endpointURI
method argument.
definition
- the WSDL definition describing the web serviceiface
- the java interfaceendpointURI
- the endpoint URI
iface
interface
Note: This method should not be used, because WSDL API has not been finalized yet
WebServiceLookupException
public java.lang.Object lookup(java.lang.String definitionURL, java.lang.Class iface, java.lang.String endpointURI) throws WebServiceLookupException
definition
argument. This stub will implement
iface
interface which will be associated with the
WSDL service's port with value of endpointURI
method argument.
definitionURL
- the URL of the WSDL definition describing the web serviceiface
- the java interfaceendpointURI
- the endpoint URI
iface
interface
WebServiceLookupException
public java.lang.Object lookup(Definition definition, java.lang.Class iface, java.lang.String endpointURI, java.util.Properties lookupProps) throws WebServiceLookupException
definition
argument. This stub will implement
iface
interface which will be associated with the
WSDL service's port with value of endpointURI
method argument.
definition
- the WSDL definition describing the web serviceiface
- the java interfaceendpointURI
- the endpoint URIlookupProps
- the properties used to configure the lookup operation
the list of the current used properties is in the
interface @link org.idoox.webservice.client.LookupProperties
This parameter may be null
.
The properties are then available in the CallContext
as the value of the key org.idoox.webservice.client.WebService.CALL_CONTEXT_LOOKUP_PROPERTIES
.
iface
interface
Note: This method should not be used, because WSDL API has not been finalized yet
WebServiceLookupException
public java.lang.Object lookup(java.lang.String definitionURL, java.lang.Class iface, java.lang.String endpointURI, java.util.Properties lookupProps) throws WebServiceLookupException
definition
argument. This stub will implement
iface
interface which will be associated with the
WSDL service's port with value of endpointURI
method argument.
definitionURL
- the URL of the WSDL definition describing the web serviceiface
- the java interfaceendpointURI
- the endpoint URIlookupProps
- the properties used to configure the lookup operation
the list of the current used properties is in the
interface @link org.idoox.webservice.client.LookupProperties
This parameter may be null
.
The properties are then available in the CallContext
as the value of the key org.idoox.webservice.client.WebService.CALL_CONTEXT_LOOKUP_PROPERTIES
.
iface
interface
WebServiceLookupException
public java.lang.Object lookup(Definition definition, java.lang.Class iface) throws WebServiceLookupException
definition
argument. This stub will implement
iface
, which will be associated with the WSDL
service's port contained in the WSDL referenced by
definition
argument.
Note: It is necessary for the WSDL definition to contain ONLY
ONE SERVICE with ONLY ONE PORT to avoid ambiguity in java
interface to the WSDL service's port association! Otherwise
WebServiceLookupException is thrown.
definition
- the WSDL definition describing the web serviceiface
- the java interface
iface
interface
Note: This method should not be used, because WSDL API has not been finalized yet
WebServiceLookupException
public java.lang.Object lookup(java.lang.String definitionURL, java.lang.Class iface) throws WebServiceLookupException
definition
argument. This stub will implement
iface
, which will be associated with the WSDL
service's port contained in the WSDL referenced by
definition
argument.
Note: It is necessary for the WSDL definition to contain ONLY
ONE SERVICE with ONLY ONE PORT to avoid ambiguity in java
interface to the WSDL service's port association! Otherwise
WebServiceLookupException is thrown.
definitionURL
- the URL of the WSDL definition describing the web serviceiface
- the java interface
iface
interface
WebServiceLookupException
public java.lang.Object lookup(Definition definition, java.lang.Class iface, java.util.Properties lookupProps) throws WebServiceLookupException
definition
argument. This stub will implement
iface
, which will be associated with the WSDL
service's port contained in the WSDL referenced by
definition
argument.
Note: It is necessary for the WSDL definition to contain ONLY
ONE SERVICE with ONLY ONE PORT to avoid ambiguity in java
interface to the WSDL service's port association! Otherwise
WebServiceLookupException is thrown.
definition
- the WSDL definition describing the web serviceiface
- the java interfacelookupProps
- the properties used to configure the lookup operation
the list of the current used properties is in the
interface @link org.idoox.webservice.client.LookupProperties
This parameter may be null
.
The properties are then available in the CallContext
as the value of the key org.idoox.webservice.client.WebService.CALL_CONTEXT_LOOKUP_PROPERTIES
.
iface
interface
Note: This method should not be used, because WSDL API has not been finalized yet
WebServiceLookupException
public java.lang.Object lookup(java.lang.String definitionURL, java.lang.Class iface, java.util.Properties lookupProps) throws WebServiceLookupException
definition
argument. This stub will implement
iface
, which will be associated with the WSDL
service's port contained in the WSDL referenced by
definition
argument.
Note: It is necessary for the WSDL definition to contain ONLY
ONE SERVICE with ONLY ONE PORT to avoid ambiguity in java
interface to the WSDL service's port association! Otherwise
WebServiceLookupException is thrown.
definitionURL
- the URL of the WSDL definition describing the web serviceiface
- the java interfacelookupProps
- the properties used to configure the lookup operation
the list of the current used properties is in the
interface @link org.idoox.webservice.client.LookupProperties
This parameter may be null
.
The properties are then available in the CallContext
as the value of the key org.idoox.webservice.client.WebService.CALL_CONTEXT_LOOKUP_PROPERTIES
.
iface
interface
WebServiceLookupException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |