00001 #ifndef _IT_BUS_WSADDRESSING_UTIL_H_
00002 #define _IT_BUS_WSADDRESSING_UTIL_H_
00003
00004
00005
00006
00007 #include <it_bus/api_defines.h>
00008
00009 #include <it_bus/types.h>
00010 #include <it_bus/qname.h>
00011
00012 namespace WS_Addressing
00013 {
00014 class EndpointReferenceType;
00015
00016 class IT_BUS_API WSAddressingUtil
00017 {
00018 public:
00019
00020 static IT_Bus::QName
00021 get_service_qname(
00022 const EndpointReferenceType& epr
00023 ) throw((IT_Bus::Exception));
00024
00025 static IT_Bus::String
00026 get_wsdl_location(
00027 const EndpointReferenceType& epr
00028 ) throw((IT_Bus::Exception));
00029
00030 static IT_Bus::QName
00031 get_interface_name(
00032 const EndpointReferenceType& epr
00033 ) throw((IT_Bus::Exception));
00034
00035 static void
00036 set_interface_name(
00037 const IT_Bus::QName& interface_name,
00038 EndpointReferenceType& epr
00039 ) throw((IT_Bus::Exception));
00040
00041 private:
00042
00043 WSAddressingUtil();
00044 };
00045 }
00046
00047 #endif