DBA Data[Home] [Help]

SYS.UTL_DBWS dependencies on URITYPE

Line 130: function get_services(wsdl_Document_Location URITYPE)

126: -------------------------------------------
127:
128: -- List the qualified names of all the services in a WSDL document
129: -- wsdlDocumentLocation - URL for the WSDL document
130: function get_services(wsdl_Document_Location URITYPE)
131: RETURN QNAME_LIST
132: IS
133: BEGIN
134: return split_string(get_services_proxy(wsdl_Document_Location.GETURL()));

Line 153: function create_service(wsdl_Document_Location URITYPE, service_Name QNAME)

149: -- Create a Service instance.
150: -- wsdlDocumentLocation - URL for the WSDL document location for the service
151: -- serviceName - QName for the service
152: -- Returns a handle to the Service instance.
153: function create_service(wsdl_Document_Location URITYPE, service_Name QNAME)
154: RETURN SERVICE IS
155: BEGIN
156: RETURN create_service_proxy(wsdl_Document_Location.GETURL(), service_Name);
157: END create_service;