📄 uddi_v2.h
字号:
/** @mainpage gSOAP UDDI v2Universal Description, Discovery and Integration, or UDDI, is the name of agroup of web-based registries that expose information about a business or otherentity and its technical interfaces.See the UDDI v2 specification @url http://uddi.org/pubs/ProgrammersAPI_v2.htmfor more details.@section UDDI2_CLASSES ClassesSee Related Pages for examples.UDDI Inquire classes- @ref uddi2__find_USCOREbinding- @ref uddi2__find_USCOREbusiness- @ref uddi2__find_USCORErelatedBusinesses- @ref uddi2__find_USCOREservice- @ref uddi2__find_USCOREtModel- @ref uddi2__get_USCOREbindingDetail- @ref uddi2__get_USCOREbusinessDetail- @ref uddi2__get_USCOREbusinessDetailExt- @ref uddi2__get_USCOREserviceDetail- @ref uddi2__get_USCOREtModelDetailUDDI Publish classes- @ref uddi2__add_USCOREpublisherAssertions- @ref uddi2__delete_USCOREbinding- @ref uddi2__delete_USCOREbusiness- @ref uddi2__delete_USCOREservice- @ref uddi2__delete_USCOREtModel- @ref uddi2__delete_USCOREpublisherAssertions- @ref uddi2__discard_USCOREauthToken- @ref uddi2__get_USCOREassertionStatusReport- @ref uddi2__get_USCOREauthToken- @ref uddi2__get_USCOREpublisherAssertions- @ref uddi2__get_USCOREregisteredInfo- @ref uddi2__save_USCOREbinding- @ref uddi2__save_USCOREbusiness- @ref uddi2__save_USCOREservice- @ref uddi2__save_USCOREtModel- @ref uddi2__set_USCOREpublisherAssertions@section UDDI2_BINDINGS Binding Reference- @ref InquireSoap- @ref PublishSoap*///////////////////////////////////////////////////////////////////////////////////// uddi2:find_binding///////////////////////////////////////////////////////////////////////////////////**@class uddi2__find_USCOREbinding@briefRepresents a request to locate bindings that meet the specified requirements.See @url http://uddi.org/pubs/ProgrammersAPI_v2.htm#_Toc25137712*//**@fn uddi2__find_USCOREbinding::uddi2__find_USCOREbinding(struct soap *soap)@brief@param[in] soap gSOAP contextCreates an instance of the find_USCOREbinding class.*//**@fn uddi2__find_USCOREbinding::uddi2__find_USCOREbinding(struct soap *soap, const char *tModelKey)@brief@param[in] soap gSOAP context@param[in] tModelKey stringCreates an instance of the find_USCOREbinding class using the specified tModelkey.*//**@fn uddi2__find_USCOREbinding::uddi2__find_USCOREbinding(struct soap *soap, std::vector<char*> tModelKeys)@brief@param[in] soap gSOAP context@param[in] tModelKeys collection of tModel key stringsCreates an instance of the find_USCOREbinding class using the specified tModelkeys.*//**@fn uddi2__bindingDetail* uddi2__find_USCOREbinding::send(const char *endpoint)@brief@param[in] endpoint URL of the UDDI server@return A pointer to a uddi2__bindingDetail object or NULL on errorSend a request to a UDDI server to find binding details.*///////////////////////////////////////////////////////////////////////////////////// uddi2:find_business///////////////////////////////////////////////////////////////////////////////////**@class uddi2__find_USCOREbusiness@briefRepresents a request to locate businesses that meet specific requirements. Whenthe send method is called, the instance returns a uddi2__businessList objectthat contains a list of business that matched the search criteria.See @url http://uddi.org/pubs/ProgrammersAPI_v2.htm#_Toc25137713See also @ref example2.*//**@fn uddi2__find_USCOREbusiness::uddi2__find_USCOREbusiness(struct soap *soap)@brief@param[in] soap gSOAP contextCreates an instance of the find_USCOREbusiness class.*//**@fn uddi2__find_USCOREbusiness::uddi2__find_USCOREbusiness(struct soap *soap, const char *name)@brief@param[in] soap gSOAP contextCreates an instance of the find_USCOREbusiness class using the specified nameof the requested business.*//**@fn uddi2__find_USCOREbusiness::uddi2__find_USCOREbusiness(struct soap *soap, std::vector<uddi2__keyedReference*> keyedReferences)@brief@param[in] soap gSOAP contextCreates an instance of the find_USCOREbusiness class using the specifiedcategory references.*//**@fn uddi2__find_USCOREbusiness::uddi2__find_USCOREbusiness(struct soap *soap, std::vector<char*> tModelKeys)@brief@param[in] soap gSOAP contextCreates an instance of the find_USCOREbusiness class using the specified tModelkeys.*//**@fn uddi2__businessList *uddi2__find_USCOREbusiness::send(const char *endpoint)@brief@param[in] endpoint URL of the UDDI server@return A pointer to a uddi2__businessList object or NULL on errorSend a request to a UDDI server to find a list of businesses.See also @ref example2.*///////////////////////////////////////////////////////////////////////////////////// uddi2:find_relatedBusinesses///////////////////////////////////////////////////////////////////////////////////**@class uddi2__find_USCORErelatedBusinesses@briefRepresents a request to locate businesses that are related to a specificbusiness. When the send method is called, the instance returns auddi2__relatedBusinessList object that contains a list of business that matchedthe relationship set.See @url http://uddi.org/pubs/ProgrammersAPI_v2.htm#_Toc25137714*//**@fn uddi2__find_USCORErelatedBusinesses::uddi2__find_USCORErelatedBusinesses(struct soap *soap)@brief@param[in] soap gSOAP contextCreates an instance of the find_USCORErelatedBusiness class.*//**@fn uddi2__find_USCORErelatedBusinesses::uddi2__find_USCORErelatedBusinesses(struct soap *soap, const char *businessKey)@brief@param[in] soap gSOAP context@param[in] businessKey stringCreates an instance of the find_USCORErelatedBusiness class using the specifiedbusiness key.*//**@fn uddi2__relatedBusinessesList *uddi2__find_USCORErelatedBusinesses::send(const char *endpoint)@brief@param[in] endpoint URL of the UDDI server@return A pointer to a uddi2__relatedBusinessList object or NULL on errorSend a request to a UDDI server to find a list of related businesses.*///////////////////////////////////////////////////////////////////////////////////// uddi2:find_service///////////////////////////////////////////////////////////////////////////////////**@class uddi2__find_USCOREservice@briefRepresents a request to locate services that meet the specified requirements.See @url http://uddi.org/pubs/ProgrammersAPI_v2.htm#_Toc25137715See also @ref example1.*//**@fn uddi2__find_USCOREservice::uddi2__find_USCOREservice(struct soap *soap)@brief@param[in] soap gSOAP contextCreates an instance of the find_USCOREservice class.*//**@fn uddi2__find_USCOREservice::uddi2__find_USCOREservice(struct soap *soap, const char *name)@brief@param[in] soap gSOAP context@param[in] name of the serviceCreates an instance of the find_USCOREservice class using the specified name.*//**@fn uddi2__find_USCOREservice::uddi2__find_USCOREservice(struct soap *soap, std::vector<uddi2__keyedReference*> keyedReferences)@brief@param[in] soap gSOAP context@param[in] keyedReferences collection of category keysCreates an instance of the find_USCOREservice class using the specifiedcategory keys.*//**@fn uddi2__find_USCOREservice::uddi2__find_USCOREservice(struct soap *soap, std::vector<char*> tModelKeys)@brief@param[in] soap gSOAP context@param[in] tModelKeys collection of tModel key stringsCreates an instance of the find_USCOREservice class using the specified tModelkeys.*//**@fn uddi2__serviceList* uddi2__find_USCOREservice::send(const char *endpoint)@brief@param[in] endpoint URL of the UDDI server@return A pointer to a uddi2__serviceList object or NULL on errorSend a request to a UDDI server to find a list of services.See also @ref example1.*///////////////////////////////////////////////////////////////////////////////////// uddi2:find_tModel///////////////////////////////////////////////////////////////////////////////////**@class uddi2__find_USCOREtModel@briefRepresents a request to locate a list of tModel entries that match a set ofspecific criteria. The result of a search is a uddi2__tModelList object thatcontains information about registered tModel data that matches the criteria.See @url http://uddi.org/pubs/ProgrammersAPI_v2.htm#_Toc25137716*//**@fn uddi2__find_USCOREtModel::uddi2__find_USCOREtModel(struct soap *soap)@brief@param[in] soap gSOAP contextCreates an instance of the find_USCOREtModel class.*//**@fn uddi2__find_USCOREtModel::uddi2__find_USCOREtModel(struct soap *soap, const char *name)@brief@param[in] soap gSOAP context@param[in] name of the tModelCreates an instance of the find_USCOREtModel class using the specified tModelname.*//**@fn uddi2__find_USCOREtModel::uddi2__find_USCOREtModel(struct soap *soap, std::vector<uddi2__keyedReference*> keyedReferences)@brief@param[in] soap gSOAP context@param[in] keyedReferences collection of category keysCreates an instance of the find_USCOREtModel class using the specified categorykeys.*//**@fn uddi2__tModelList* uddi2__find_USCOREtModel::send(const char *endpoint)@brief@param[in] endpoint URL of the UDDI server@return A pointer to a uddi2__tModelList object or NULL on errorSend a request to a UDDI server to find a tModelList.*///////////////////////////////////////////////////////////////////////////////////// uddi2:get_bindingDetail///////////////////////////////////////////////////////////////////////////////////**@class uddi2__get_USCOREbindingDetail@briefRepresents a request to get binding details from a UDDI server.See @url http://uddi.org/pubs/ProgrammersAPI_v2.htm#_Toc25137717*//**@fn uddi2__get_USCOREbindingDetail::uddi2__get_USCOREbindingDetail(struct soap *soap)@brief@param[in] soap gSOAP contextCreates an instance of the get_USCOREbindingDetail class.*//**@fn uddi2__get_USCOREbindingDetail::uddi2__get_USCOREbindingDetail(struct soap *soap, const char *bindingKey)@brief@param[in] soap gSOAP context@param[in] bindingKey stringCreates an instance of the get_USCOREbindingDetail class using the specifiedbinding key.*//**@fn uddi2__get_USCOREbindingDetail::uddi2__get_USCOREbindingDetail(struct soap *soap, std::vector<char*> bindingKeys)@brief@param[in] soap gSOAP context@param[in] bindingKeys collection of key stringsCreates an instance of the get_USCOREbindingDetail class using the specifiedcollection of binding keys.*//**@fn uddi2__bindingDetail* uddi2__get_USCOREbindingDetail::send(const char *endpoint)@brief@param[in] endpoint URL of the UDDI server@return A pointer to a uddi2__bindingDetail object or NULL on errorSend a request to a UDDI server to get the binding details.*///////////////////////////////////////////////////////////////////////////////////// uddi2:get_businessDetail///////////////////////////////////////////////////////////////////////////////////**@class uddi2__get_USCOREbusinessDetail@briefRepresents a request to get business details from a UDDI server.See @url http://uddi.org/pubs/ProgrammersAPI_v2.htm#_Toc25137718 *//**@fn uddi2__get_USCOREbusinessDetail::uddi2__get_USCOREbusinessDetail(struct soap *soap)@brief@param[in] soap gSOAP contextCreates an instance of the get_USCOREbusinessDetail class.*//**
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -