| java.lang.Object org.apache.wsif.WSIFServiceFactory customfactory.client.CustomServiceFactoryImpl
Method Summary | |
public WSIFService | getService(String wsdlLoc, String serviceNS, String serviceName, String portTypeNS, String portTypeName) Create a WSIFService from WSDL document URL. | public WSIFService | getService(String wsdlLoc, ClassLoader cl, String serviceNS, String serviceName, String portTypeNS, String portTypeName) Create a WSIF service instance from WSDL document URL
using a ClassLoader to find local resources. | public WSIFService | getService(Definition def) Returns a new WSIFService. | public WSIFService | getService(Definition def, Service service) Returns a new WSIFService. | public WSIFService | getService(Definition def, Service service, PortType portType) Returns a new WSIFService. | public WSIFService | getService(Definition def, String serviceNS, String serviceName, String portTypeNS, String portTypeName) Returns a new WSIFService. |
CustomServiceFactoryImpl | public CustomServiceFactoryImpl()(Code) | | |
getService | public WSIFService getService(String wsdlLoc, String serviceNS, String serviceName, String portTypeNS, String portTypeName) throws WSIFException(Code) | | Create a WSIFService from WSDL document URL.
If serviceName or serviceNS is null,
then WSDL document must have exactly one service in it.
If portTypeName or portTypeNS is null,
then WSDL document must have exactly one portType in it
and all ports of the selected service must
implement the same portType.
Parameters: wsdlLoc - The URL for the wsdl's location Parameters: serviceNS - The namespace of the service Parameters: serviceName - The name of the service Parameters: portTypeNS - The namespace of the port type Parameters: portTypeName - The name of the port type The service exception: A - WSIFException if an error occurs when creating the service |
getService | public WSIFService getService(String wsdlLoc, ClassLoader cl, String serviceNS, String serviceName, String portTypeNS, String portTypeName) throws WSIFException(Code) | | Create a WSIF service instance from WSDL document URL
using a ClassLoader to find local resources.
If serviceName or serviceNS is null,
then WSDL document must have exactly one service in it.
If portTypeName or portTypeNS is null,
then WSDL document must have exactly one portType in it
and all ports of the selected service must
implement the same portType.
Parameters: wsdlLoc - The URL for the wsdl's location Parameters: cl - A ClassLoader to use in locating the wsdl Parameters: serviceNS - The namespace of the service Parameters: serviceName - The name of the service Parameters: portTypeNS - The namespace of the port type Parameters: portTypeName - The name of the port type The service exception: A - WSIFException if an error occurs when creating the service |
getService | public WSIFService getService(Definition def) throws WSIFException(Code) | | Returns a new WSIFService.
Parameters: def - The Definition object representing the wsdl The service exception: A - WSIFException if an error occurs when creating the service |
getService | public WSIFService getService(Definition def, Service service) throws WSIFException(Code) | | Returns a new WSIFService.
Parameters: def - The Definition object representing the wsdl Parameters: service - The Service object representing the service to use The service exception: A - WSIFException if an error occurs when creating the service |
getService | public WSIFService getService(Definition def, Service service, PortType portType) throws WSIFException(Code) | | Returns a new WSIFService.
Parameters: def - The Definition object representing the wsdl Parameters: service - The Service object representing the service to use Parameters: portType - The PortType object representing the port type to use The service exception: A - WSIFException if an error occurs when creating the service |
getService | public WSIFService getService(Definition def, String serviceNS, String serviceName, String portTypeNS, String portTypeName) throws WSIFException(Code) | | Returns a new WSIFService.
Parameters: def - The Definition object representing the wsdl Parameters: serviceNS - The namespace of the service Parameters: serviceName - The name of the service Parameters: portTypeNS - The namespace of the port type Parameters: portTypeName - The name of the port type The service exception: A - WSIFException if an error occurs when creating the service |
Methods inherited from org.apache.wsif.WSIFServiceFactory | public void cachingOn(boolean on)(Code)(Java Doc) abstract public WSIFService getService(String wsdlLoc, String serviceNS, String serviceName, String portTypeNS, String portTypeName) throws WSIFException(Code)(Java Doc) abstract public WSIFService getService(String wsdlLoc, ClassLoader cl, String serviceNS, String serviceName, String portTypeNS, String portTypeName) throws WSIFException(Code)(Java Doc) abstract public WSIFService getService(Definition def) throws WSIFException(Code)(Java Doc) abstract public WSIFService getService(Definition def, Service service) throws WSIFException(Code)(Java Doc) abstract public WSIFService getService(Definition def, Service service, PortType portType) throws WSIFException(Code)(Java Doc) abstract public WSIFService getService(Definition def, String serviceNS, String serviceName, String portTypeNS, String portTypeName) throws WSIFException(Code)(Java Doc) public static WSIFServiceFactory newInstance()(Code)(Java Doc)
|
|
|