Main Page | Modules | Data Structures | File List | Data Fields | Globals

ServiceGroupTestService_client.c File Reference

#include "globus_soap_message.h"
#include "globus_handler.h"
#include "globus_xio.h"
#include "ServiceGroupTestService_client.h"
#include "globus_xsd_type_registry.h"
#include "globus_soap_message_fault.h"
#include "globus_soap_message_attrs.h"
#include "globus_soap_message_markers.h"
#include "globus_ws_addressing.h"

Go to the source code of this file.

Functions

Variables


Function Documentation

int ServiceGroupTestService_l_client_module_activate (
) [static]
 

Definition at line 196 of file ServiceGroupTestService_client.c.

References ServiceGroupTestPortType_l_Add_operation, ServiceGroupTestPortType_l_CreateServiceGroup_operation, ServiceGroupTestPortType_l_GetCurrentMessage_operation, ServiceGroupTestPortType_l_GetResourceProperty_operation, ServiceGroupTestPortType_l_Subscribe_operation, ServiceGroupTestService_l_extensions_mutex, ServiceGroupTestService_l_registry, and ServiceGroupTestService_registry_add_types().

00197 {
00198     int res = 0;        
00199     globus_result_t result = GLOBUS_SUCCESS;
00200     res = globus_module_activate(GLOBUS_SOAP_MESSAGE_MODULE);
00201     if(res != GLOBUS_SUCCESS)
00202     {
00203         return res;
00204     }
00205 
00206     if(!ServiceGroupTestService_l_registry)
00207     {
00208         result = globus_xsd_type_registry_init(&ServiceGroupTestService_l_registry);
00209         if(result != GLOBUS_SUCCESS)
00210         {
00211             return (int) result;
00212         }
00213 
00214         result = ServiceGroupTestService_registry_add_types(ServiceGroupTestService_l_registry);
00215         if(result != GLOBUS_SUCCESS)
00216         {
00217             return (int) result;
00218         }
00219     }
00220 
00221     if(GLOBUS_GLOBAL_TYPE_REGISTRY == NULL)
00222     {
00223         result = GLOBUS_FAILURE;
00224         return GLOBUS_FAILURE;
00225     }
00226 
00227     result = ServiceGroupTestService_registry_add_types(GLOBUS_GLOBAL_TYPE_REGISTRY);
00228     if(result != GLOBUS_SUCCESS)
00229     {
00230         result = GlobusSoapMessageErrorFailedClientInit(
00231             result, "ServiceGroupTestService");
00232     }
00233 
00234     ServiceGroupTestPortType_l_Add_operation.registry = ServiceGroupTestService_l_registry;
00235 
00236     ServiceGroupTestPortType_l_GetCurrentMessage_operation.registry = ServiceGroupTestService_l_registry;
00237 
00238     ServiceGroupTestPortType_l_Subscribe_operation.registry = ServiceGroupTestService_l_registry;
00239 
00240     ServiceGroupTestPortType_l_GetResourceProperty_operation.registry = ServiceGroupTestService_l_registry;
00241 
00242     ServiceGroupTestPortType_l_CreateServiceGroup_operation.registry = ServiceGroupTestService_l_registry;
00243 
00244 
00245     globus_mutex_init(&ServiceGroupTestService_l_extensions_mutex, NULL);
00246 
00247     return res;
00248 }

int ServiceGroupTestService_l_client_module_deactivate (
) [static]
 

Definition at line 263 of file ServiceGroupTestService_client.c.

References ServiceGroupTestService_l_extension_destroy(), ServiceGroupTestService_l_extensions, ServiceGroupTestService_l_extensions_mutex, and ServiceGroupTestService_l_registry.

00264 {
00265     int res = 0;
00266 
00267     globus_xsd_type_registry_destroy(ServiceGroupTestService_l_registry);
00268     ServiceGroupTestService_l_registry = NULL;
00269 
00270     globus_module_deactivate(GLOBUS_SOAP_MESSAGE_MODULE);
00271 
00272     globus_mutex_lock(&ServiceGroupTestService_l_extensions_mutex);
00273     globus_list_destroy_all(
00274         ServiceGroupTestService_l_extensions,
00275         ServiceGroupTestService_l_extension_destroy);
00276     ServiceGroupTestService_l_extensions = NULL;
00277     globus_mutex_unlock(&ServiceGroupTestService_l_extensions_mutex);
00278     globus_mutex_destroy(&ServiceGroupTestService_l_extensions_mutex);
00279 
00280     return res;
00281 }

void ServiceGroupTestPortType_l_Add_deserialize_fault (
     globus_soap_message_handle_t handle,
     const xsd_QName * fault_qname,
     int * fault_type) [static]
 

Definition at line 540 of file ServiceGroupTestService_client.c.

References SERVICEGROUPTESTPORTTYPE_ADD_ADDREFUSEDFAULT, SERVICEGROUPTESTPORTTYPE_ADD_CONTENTCREATIONFAILEDFAULT, SERVICEGROUPTESTPORTTYPE_ADD_NOFAULT, SERVICEGROUPTESTPORTTYPE_ADD_RESOURCEUNAVAILABLEFAULT, SERVICEGROUPTESTPORTTYPE_ADD_RESOURCEUNKNOWNFAULT, SERVICEGROUPTESTPORTTYPE_ADD_UNKNOWN_FAULT, and SERVICEGROUPTESTPORTTYPE_ADD_UNSUPPORTEDMEMBERINTERFACEFAULT.

00544 {
00545     *fault_type = SERVICEGROUPTESTPORTTYPE_ADD_NOFAULT;
00546 
00547     if(fault_qname)
00548     {
00549        if(fault_qname == (&wsr_ResourceUnknownFaultType_qname) ||
00550            fault_qname == (&wsr_ResourceUnknownFault_qname))
00551          {
00552              *fault_type = SERVICEGROUPTESTPORTTYPE_ADD_RESOURCEUNKNOWNFAULT;
00553          }
00554         else if(fault_qname == (&wsr_ResourceUnavailableFaultType_qname) ||
00555            fault_qname == (&wsr_ResourceUnavailableFault_qname))
00556          {
00557              *fault_type = SERVICEGROUPTESTPORTTYPE_ADD_RESOURCEUNAVAILABLEFAULT;
00558          }
00559         else if(fault_qname == (&wssg_UnsupportedMemberInterfaceFaultType_qname) ||
00560            fault_qname == (&wssg_UnsupportedMemberInterfaceFault_qname))
00561          {
00562              *fault_type = SERVICEGROUPTESTPORTTYPE_ADD_UNSUPPORTEDMEMBERINTERFACEFAULT;
00563          }
00564         else if(fault_qname == (&wssg_AddRefusedFaultType_qname) ||
00565            fault_qname == (&wssg_AddRefusedFault_qname))
00566          {
00567              *fault_type = SERVICEGROUPTESTPORTTYPE_ADD_ADDREFUSEDFAULT;
00568          }
00569         else if(fault_qname == (&wssg_ContentCreationFailedFaultType_qname) ||
00570            fault_qname == (&wssg_ContentCreationFailedFault_qname))
00571          {
00572              *fault_type = SERVICEGROUPTESTPORTTYPE_ADD_CONTENTCREATIONFAILEDFAULT;
00573          }
00574         else
00575         {
00576              *fault_type = SERVICEGROUPTESTPORTTYPE_ADD_UNKNOWN_FAULT;
00577         }
00578     }
00579 }

void ServiceGroupTestPortType_l_GetCurrentMessage_deserialize_fault (
     globus_soap_message_handle_t handle,
     const xsd_QName * fault_qname,
     int * fault_type) [static]
 

Definition at line 763 of file ServiceGroupTestService_client.c.

References SERVICEGROUPTESTPORTTYPE_GETCURRENTMESSAGE_INVALIDTOPICEXPRESSIONFAULT, SERVICEGROUPTESTPORTTYPE_GETCURRENTMESSAGE_MULTIPLETOPICSSPECIFIEDFAULT, SERVICEGROUPTESTPORTTYPE_GETCURRENTMESSAGE_NOCURRENTMESSAGEONTOPICFAULT, SERVICEGROUPTESTPORTTYPE_GETCURRENTMESSAGE_NOFAULT, SERVICEGROUPTESTPORTTYPE_GETCURRENTMESSAGE_RESOURCEUNKNOWNFAULT, SERVICEGROUPTESTPORTTYPE_GETCURRENTMESSAGE_TOPICEXPRESSIONDIALECTUNKNOWNFAULT, SERVICEGROUPTESTPORTTYPE_GETCURRENTMESSAGE_TOPICNOTSUPPORTEDFAULT, and SERVICEGROUPTESTPORTTYPE_GETCURRENTMESSAGE_UNKNOWN_FAULT.

00767 {
00768     *fault_type = SERVICEGROUPTESTPORTTYPE_GETCURRENTMESSAGE_NOFAULT;
00769 
00770     if(fault_qname)
00771     {
00772        if(fault_qname == (&wsr_ResourceUnknownFaultType_qname) ||
00773            fault_qname == (&wsr_ResourceUnknownFault_qname))
00774          {
00775              *fault_type = SERVICEGROUPTESTPORTTYPE_GETCURRENTMESSAGE_RESOURCEUNKNOWNFAULT;
00776          }
00777         else if(fault_qname == (&wsnt_TopicExpressionDialectUnknownFaultType_qname) ||
00778            fault_qname == (&wsnt_TopicExpressionDialectUnknownFault_qname))
00779          {
00780              *fault_type = SERVICEGROUPTESTPORTTYPE_GETCURRENTMESSAGE_TOPICEXPRESSIONDIALECTUNKNOWNFAULT;
00781          }
00782         else if(fault_qname == (&wsnt_NoCurrentMessageOnTopicFaultType_qname) ||
00783            fault_qname == (&wsnt_NoCurrentMessageOnTopicFault_qname))
00784          {
00785              *fault_type = SERVICEGROUPTESTPORTTYPE_GETCURRENTMESSAGE_NOCURRENTMESSAGEONTOPICFAULT;
00786          }
00787         else if(fault_qname == (&wsnt_InvalidTopicExpressionFaultType_qname) ||
00788            fault_qname == (&wsnt_InvalidTopicExpressionFault_qname))
00789          {
00790              *fault_type = SERVICEGROUPTESTPORTTYPE_GETCURRENTMESSAGE_INVALIDTOPICEXPRESSIONFAULT;
00791          }
00792         else if(fault_qname == (&wsnt_TopicNotSupportedFaultType_qname) ||
00793            fault_qname == (&wsnt_TopicNotSupportedFault_qname))
00794          {
00795              *fault_type = SERVICEGROUPTESTPORTTYPE_GETCURRENTMESSAGE_TOPICNOTSUPPORTEDFAULT;
00796          }
00797         else if(fault_qname == (&wsnt_MultipleTopicsSpecifiedFaultType_qname) ||
00798            fault_qname == (&wsnt_MultipleTopicsSpecifiedFault_qname))
00799          {
00800              *fault_type = SERVICEGROUPTESTPORTTYPE_GETCURRENTMESSAGE_MULTIPLETOPICSSPECIFIEDFAULT;
00801          }
00802         else
00803         {
00804              *fault_type = SERVICEGROUPTESTPORTTYPE_GETCURRENTMESSAGE_UNKNOWN_FAULT;
00805         }
00806     }
00807 }

void ServiceGroupTestPortType_l_Subscribe_deserialize_fault (
     globus_soap_message_handle_t handle,
     const xsd_QName * fault_qname,
     int * fault_type) [static]
 

Definition at line 991 of file ServiceGroupTestService_client.c.

References SERVICEGROUPTESTPORTTYPE_SUBSCRIBE_INVALIDFILTERFAULT, SERVICEGROUPTESTPORTTYPE_SUBSCRIBE_INVALIDMESSAGECONTENTEXPRESSIONFAULT, SERVICEGROUPTESTPORTTYPE_SUBSCRIBE_INVALIDPRODUCERPROPERTIESEXPRESSIONFAULT, SERVICEGROUPTESTPORTTYPE_SUBSCRIBE_INVALIDTOPICEXPRESSIONFAULT, SERVICEGROUPTESTPORTTYPE_SUBSCRIBE_NOFAULT, SERVICEGROUPTESTPORTTYPE_SUBSCRIBE_NOTIFYMESSAGENOTSUPPORTEDFAULT, SERVICEGROUPTESTPORTTYPE_SUBSCRIBE_RESOURCEUNKNOWNFAULT, SERVICEGROUPTESTPORTTYPE_SUBSCRIBE_SUBSCRIBECREATIONFAILEDFAULT, SERVICEGROUPTESTPORTTYPE_SUBSCRIBE_TOPICEXPRESSIONDIALECTUNKNOWNFAULT, SERVICEGROUPTESTPORTTYPE_SUBSCRIBE_TOPICNOTSUPPORTEDFAULT, SERVICEGROUPTESTPORTTYPE_SUBSCRIBE_UNACCEPTABLEINITIALTERMINATIONTIMEFAULT, SERVICEGROUPTESTPORTTYPE_SUBSCRIBE_UNKNOWN_FAULT, SERVICEGROUPTESTPORTTYPE_SUBSCRIBE_UNRECOGNIZEDPOLICYREQUESTFAULT, and SERVICEGROUPTESTPORTTYPE_SUBSCRIBE_UNSUPPORTEDPOLICYREQUESTFAULT.

00995 {
00996     *fault_type = SERVICEGROUPTESTPORTTYPE_SUBSCRIBE_NOFAULT;
00997 
00998     if(fault_qname)
00999     {
01000        if(fault_qname == (&wsnt_UnrecognizedPolicyRequestFaultType_qname) ||
01001            fault_qname == (&wsnt_UnrecognizedPolicyRequestFault_qname))
01002          {
01003              *fault_type = SERVICEGROUPTESTPORTTYPE_SUBSCRIBE_UNRECOGNIZEDPOLICYREQUESTFAULT;
01004          }
01005         else if(fault_qname == (&wsnt_NotifyMessageNotSupportedFaultType_qname) ||
01006            fault_qname == (&wsnt_NotifyMessageNotSupportedFault_qname))
01007          {
01008              *fault_type = SERVICEGROUPTESTPORTTYPE_SUBSCRIBE_NOTIFYMESSAGENOTSUPPORTEDFAULT;
01009          }
01010         else if(fault_qname == (&wsr_ResourceUnknownFaultType_qname) ||
01011            fault_qname == (&wsr_ResourceUnknownFault_qname))
01012          {
01013              *fault_type = SERVICEGROUPTESTPORTTYPE_SUBSCRIBE_RESOURCEUNKNOWNFAULT;
01014          }
01015         else if(fault_qname == (&wsnt_InvalidFilterFaultType_qname) ||
01016            fault_qname == (&wsnt_InvalidFilterFault_qname))
01017          {
01018              *fault_type = SERVICEGROUPTESTPORTTYPE_SUBSCRIBE_INVALIDFILTERFAULT;
01019          }
01020         else if(fault_qname == (&wsnt_TopicExpressionDialectUnknownFaultType_qname) ||
01021            fault_qname == (&wsnt_TopicExpressionDialectUnknownFault_qname))
01022          {
01023              *fault_type = SERVICEGROUPTESTPORTTYPE_SUBSCRIBE_TOPICEXPRESSIONDIALECTUNKNOWNFAULT;
01024          }
01025         else if(fault_qname == (&wsnt_SubscribeCreationFailedFaultType_qname) ||
01026            fault_qname == (&wsnt_SubscribeCreationFailedFault_qname))
01027          {
01028              *fault_type = SERVICEGROUPTESTPORTTYPE_SUBSCRIBE_SUBSCRIBECREATIONFAILEDFAULT;
01029          }
01030         else if(fault_qname == (&wsnt_InvalidProducerPropertiesExpressionFaultType_qname) ||
01031            fault_qname == (&wsnt_InvalidProducerPropertiesExpressionFault_qname))
01032          {
01033              *fault_type = SERVICEGROUPTESTPORTTYPE_SUBSCRIBE_INVALIDPRODUCERPROPERTIESEXPRESSIONFAULT;
01034          }
01035         else if(fault_qname == (&wsnt_InvalidMessageContentExpressionFaultType_qname) ||
01036            fault_qname == (&wsnt_InvalidMessageContentExpressionFault_qname))
01037          {
01038              *fault_type = SERVICEGROUPTESTPORTTYPE_SUBSCRIBE_INVALIDMESSAGECONTENTEXPRESSIONFAULT;
01039          }
01040         else if(fault_qname == (&wsnt_UnacceptableInitialTerminationTimeFaultType_qname) ||
01041            fault_qname == (&wsnt_UnacceptableInitialTerminationTimeFault_qname))
01042          {
01043              *fault_type = SERVICEGROUPTESTPORTTYPE_SUBSCRIBE_UNACCEPTABLEINITIALTERMINATIONTIMEFAULT;
01044          }
01045         else if(fault_qname == (&wsnt_UnsupportedPolicyRequestFaultType_qname) ||
01046            fault_qname == (&wsnt_UnsupportedPolicyRequestFault_qname))
01047          {
01048              *fault_type = SERVICEGROUPTESTPORTTYPE_SUBSCRIBE_UNSUPPORTEDPOLICYREQUESTFAULT;
01049          }
01050         else if(fault_qname == (&wsnt_InvalidTopicExpressionFaultType_qname) ||
01051            fault_qname == (&wsnt_InvalidTopicExpressionFault_qname))
01052          {
01053              *fault_type = SERVICEGROUPTESTPORTTYPE_SUBSCRIBE_INVALIDTOPICEXPRESSIONFAULT;
01054          }
01055         else if(fault_qname == (&wsnt_TopicNotSupportedFaultType_qname) ||
01056            fault_qname == (&wsnt_TopicNotSupportedFault_qname))
01057          {
01058              *fault_type = SERVICEGROUPTESTPORTTYPE_SUBSCRIBE_TOPICNOTSUPPORTEDFAULT;
01059          }
01060         else
01061         {
01062              *fault_type = SERVICEGROUPTESTPORTTYPE_SUBSCRIBE_UNKNOWN_FAULT;
01063         }
01064     }
01065 }

void ServiceGroupTestPortType_l_GetResourceProperty_deserialize_fault (
     globus_soap_message_handle_t handle,
     const xsd_QName * fault_qname,
     int * fault_type) [static]
 

Definition at line 1249 of file ServiceGroupTestService_client.c.

References SERVICEGROUPTESTPORTTYPE_GETRESOURCEPROPERTY_INVALIDRESOURCEPROPERTYQNAMEFAULT, SERVICEGROUPTESTPORTTYPE_GETRESOURCEPROPERTY_NOFAULT, SERVICEGROUPTESTPORTTYPE_GETRESOURCEPROPERTY_RESOURCEUNAVAILABLEFAULT, SERVICEGROUPTESTPORTTYPE_GETRESOURCEPROPERTY_RESOURCEUNKNOWNFAULT, and SERVICEGROUPTESTPORTTYPE_GETRESOURCEPROPERTY_UNKNOWN_FAULT.

01253 {
01254     *fault_type = SERVICEGROUPTESTPORTTYPE_GETRESOURCEPROPERTY_NOFAULT;
01255 
01256     if(fault_qname)
01257     {
01258        if(fault_qname == (&wsr_ResourceUnknownFaultType_qname) ||
01259            fault_qname == (&wsr_ResourceUnknownFault_qname))
01260          {
01261              *fault_type = SERVICEGROUPTESTPORTTYPE_GETRESOURCEPROPERTY_RESOURCEUNKNOWNFAULT;
01262          }
01263         else if(fault_qname == (&wsr_ResourceUnavailableFaultType_qname) ||
01264            fault_qname == (&wsr_ResourceUnavailableFault_qname))
01265          {
01266              *fault_type = SERVICEGROUPTESTPORTTYPE_GETRESOURCEPROPERTY_RESOURCEUNAVAILABLEFAULT;
01267          }
01268         else if(fault_qname == (&wsrp_InvalidResourcePropertyQNameFaultType_qname) ||
01269            fault_qname == (&wsrp_InvalidResourcePropertyQNameFault_qname))
01270          {
01271              *fault_type = SERVICEGROUPTESTPORTTYPE_GETRESOURCEPROPERTY_INVALIDRESOURCEPROPERTYQNAMEFAULT;
01272          }
01273         else
01274         {
01275              *fault_type = SERVICEGROUPTESTPORTTYPE_GETRESOURCEPROPERTY_UNKNOWN_FAULT;
01276         }
01277     }
01278 }

void ServiceGroupTestPortType_l_CreateServiceGroup_deserialize_fault (
     globus_soap_message_handle_t handle,
     const xsd_QName * fault_qname,
     int * fault_type) [static]
 

Definition at line 1462 of file ServiceGroupTestService_client.c.

References SERVICEGROUPTESTPORTTYPE_CREATESERVICEGROUP_NOFAULT, and SERVICEGROUPTESTPORTTYPE_CREATESERVICEGROUP_UNKNOWN_FAULT.

01466 {
01467     *fault_type = SERVICEGROUPTESTPORTTYPE_CREATESERVICEGROUP_NOFAULT;
01468 
01469     if(fault_qname)
01470     {
01471       
01472         {
01473              *fault_type = SERVICEGROUPTESTPORTTYPE_CREATESERVICEGROUP_UNKNOWN_FAULT;
01474         }
01475     }
01476 }

void ServiceGroupTestService_l_extension_destroy (
     void * sym ) [static]
 

Definition at line 252 of file ServiceGroupTestService_client.c.

Referenced by ServiceGroupTestService_l_client_module_deactivate().

00254 {
00255     char *                              symbol = (char *) sym;
00256 
00257     globus_extension_deactivate(symbol);
00258     globus_free(symbol);
00259 }


Variable Documentation

globus_list_t* ServiceGroupTestService_l_extensions = NULL [static]
 

Definition at line 32 of file ServiceGroupTestService_client.c.

Referenced by ServiceGroupTestService_client_init(), and ServiceGroupTestService_l_client_module_deactivate().

globus_mutex_t ServiceGroupTestService_l_extensions_mutex [static]
 

Definition at line 33 of file ServiceGroupTestService_client.c.

Referenced by ServiceGroupTestService_client_init(), ServiceGroupTestService_l_client_module_activate(), and ServiceGroupTestService_l_client_module_deactivate().

globus_xsd_type_registry_t ServiceGroupTestService_l_registry = NULL
 

Definition at line 35 of file ServiceGroupTestService_client.c.

Referenced by ServiceGroupTestService_client_get_registry(), ServiceGroupTestService_l_client_module_activate(), and ServiceGroupTestService_l_client_module_deactivate().

globus_module_descriptor_t ServiceGroupTestService_i_module
 

Initial value:

 
{
    "ServiceGroupTestService",
    ServiceGroupTestService_l_client_module_activate,
    ServiceGroupTestService_l_client_module_deactivate
}

Definition at line 46 of file ServiceGroupTestService_client.c.

globus_soap_client_operation_t ServiceGroupTestPortType_l_Add_operation [static]
 

Initial value:

{
    { "http://docs.oasis-open.org/wsrf/sg-2", "Add" } ,
    &wssg_AddType_info,

    { "http://docs.oasis-open.org/wsrf/sg-2", "AddResponse" },
    &wssg_AddResponseType_info,

    NULL,
    "http://docs.oasis-open.org/wsrf/sgw-2/ServiceGroupRegistration/AddRequest",

    "http://docs.oasis-open.org/wsrf/sgw-2/ServiceGroupRegistration/AddResponse",


    ServiceGroupTestPortType_l_Add_deserialize_fault

}

Definition at line 63 of file ServiceGroupTestService_client.c.

Referenced by ServiceGroupTestPortType_Add(), ServiceGroupTestPortType_Add_epr(), ServiceGroupTestPortType_Add_epr_register(), ServiceGroupTestPortType_Add_epr_register_request(), ServiceGroupTestPortType_Add_register(), ServiceGroupTestPortType_Add_register_request(), and ServiceGroupTestService_l_client_module_activate().

globus_soap_client_operation_t ServiceGroupTestPortType_l_GetCurrentMessage_operation [static]
 

Initial value:

{
    { "http://docs.oasis-open.org/wsn/b-2", "GetCurrentMessage" } ,
    &wsnt_GetCurrentMessageType_info,

    { "http://docs.oasis-open.org/wsn/b-2", "GetCurrentMessageResponse" },
    &wsnt_GetCurrentMessageResponseType_info,

    NULL,
    "http://docs.oasis-open.org/wsn/bw-2/NotificationProducer/GetCurrentMessageRequest",

    "http://docs.oasis-open.org/wsn/bw-2/NotificationProducer/GetCurrentMessageResponse",


    ServiceGroupTestPortType_l_GetCurrentMessage_deserialize_fault

}

Definition at line 91 of file ServiceGroupTestService_client.c.

Referenced by ServiceGroupTestPortType_GetCurrentMessage(), ServiceGroupTestPortType_GetCurrentMessage_epr(), ServiceGroupTestPortType_GetCurrentMessage_epr_register(), ServiceGroupTestPortType_GetCurrentMessage_epr_register_request(), ServiceGroupTestPortType_GetCurrentMessage_register(), ServiceGroupTestPortType_GetCurrentMessage_register_request(), and ServiceGroupTestService_l_client_module_activate().

globus_soap_client_operation_t ServiceGroupTestPortType_l_Subscribe_operation [static]
 

Initial value:

{
    { "http://docs.oasis-open.org/wsn/b-2", "Subscribe" } ,
    &wsnt_SubscribeType_info,

    { "http://docs.oasis-open.org/wsn/b-2", "SubscribeResponse" },
    &wsnt_SubscribeResponseType_info,

    NULL,
    "http://docs.oasis-open.org/wsn/bw-2/NotificationProducer/SubscribeRequest",

    "http://docs.oasis-open.org/wsn/bw-2/NotificationProducer/SubscribeResponse",


    ServiceGroupTestPortType_l_Subscribe_deserialize_fault

}

Definition at line 119 of file ServiceGroupTestService_client.c.

Referenced by ServiceGroupTestPortType_Subscribe(), ServiceGroupTestPortType_Subscribe_epr(), ServiceGroupTestPortType_Subscribe_epr_register(), ServiceGroupTestPortType_Subscribe_epr_register_request(), ServiceGroupTestPortType_Subscribe_register(), ServiceGroupTestPortType_Subscribe_register_request(), and ServiceGroupTestService_l_client_module_activate().

globus_soap_client_operation_t ServiceGroupTestPortType_l_GetResourceProperty_operation [static]
 

Initial value:

{
    { "http://docs.oasis-open.org/wsrf/rp-2", "GetResourceProperty" } ,
    &xsd_QName_info,

    { "http://docs.oasis-open.org/wsrf/rp-2", "GetResourcePropertyResponse" },
    &wsrp_GetResourcePropertyResponseType_info,

    NULL,
    "http://docs.oasis-open.org/wsrf/rpw-2/GetResourceProperty/GetResourcePropertyRequest",

    "http://docs.oasis-open.org/wsrf/rpw-2/GetResourceProperty/GetResourcePropertyResponse",


    ServiceGroupTestPortType_l_GetResourceProperty_deserialize_fault

}

Definition at line 147 of file ServiceGroupTestService_client.c.

Referenced by ServiceGroupTestPortType_GetResourceProperty(), ServiceGroupTestPortType_GetResourceProperty_epr(), ServiceGroupTestPortType_GetResourceProperty_epr_register(), ServiceGroupTestPortType_GetResourceProperty_epr_register_request(), ServiceGroupTestPortType_GetResourceProperty_register(), ServiceGroupTestPortType_GetResourceProperty_register_request(), and ServiceGroupTestService_l_client_module_activate().

globus_soap_client_operation_t ServiceGroupTestPortType_l_CreateServiceGroup_operation [static]
 

Initial value:

{
    { "http://www.globus.org/namespaces/2007/06/ServiceGroupTest", "CreateServiceGroup" } ,
    &sgtest_CreateServiceGroupType_info,

    { "http://www.globus.org/namespaces/2007/06/ServiceGroupTest", "CreateServiceGroupResponse" },
    &sgtest_CreateServiceGroupResponseType_info,

    NULL,
    "http://www.globus.org/namespaces/2007/06/ServiceGroupTest/ServiceGroupTestPortType/CreateServiceGroupRequest",

    "http://www.globus.org/namespaces/2007/06/ServiceGroupTest/ServiceGroupTestPortType/CreateServiceGroupResponse",


    ServiceGroupTestPortType_l_CreateServiceGroup_deserialize_fault

}

Definition at line 175 of file ServiceGroupTestService_client.c.

Referenced by ServiceGroupTestPortType_CreateServiceGroup(), ServiceGroupTestPortType_CreateServiceGroup_epr(), ServiceGroupTestPortType_CreateServiceGroup_epr_register(), ServiceGroupTestPortType_CreateServiceGroup_epr_register_request(), ServiceGroupTestPortType_CreateServiceGroup_register(), ServiceGroupTestPortType_CreateServiceGroup_register_request(), and ServiceGroupTestService_l_client_module_activate().


about globus | grid research | globus toolkit | software development

Comments? webmaster@globus.org