wsdl-trace

Name

wsdl-trace -- 

Synopsis



#define     WSDL_LOG_DOMAIN_STUBS
#define     WSDL_LOG_DOMAIN_SKELS
#define     WSDL_LOG_DOMAIN_HEADERS
#define     WSDL_LOG_DOMAIN_COMMON
#define     WSDL_LOG_DOMAIN_PARSER
#define     WSDL_LOG_DOMAIN_THREAD
#define     WSDL_LOG_DOMAIN_MAIN
void        wsdl_parse_debug_domain_string  (const guchar *string);
void        wsdl_parse_debug_level_string   (const guchar *string);
void        wsdl_debug                      (guint domain,
                                             guint level,
                                             const guchar *format,
                                             ...);

Description

Details

WSDL_LOG_DOMAIN_STUBS

#define WSDL_LOG_DOMAIN_STUBS   1<<0

The bit to set to output debugging messages to do with stub generation


WSDL_LOG_DOMAIN_SKELS

#define WSDL_LOG_DOMAIN_SKELS   1<<1

The bit to set to output debugging messages to do with server skeleton generation


WSDL_LOG_DOMAIN_HEADERS

#define WSDL_LOG_DOMAIN_HEADERS 1<<2

The bit to set to output debugging messages to do with header generation


WSDL_LOG_DOMAIN_COMMON

#define WSDL_LOG_DOMAIN_COMMON  1<<3

The bit to set to output debugging messages to do with common code generation


WSDL_LOG_DOMAIN_PARSER

#define WSDL_LOG_DOMAIN_PARSER  1<<4

The bit to set to output debugging messages to do with parsing of the WSDL XML file.


WSDL_LOG_DOMAIN_THREAD

#define WSDL_LOG_DOMAIN_THREAD  1<<5

The bit to set to output debugging messages to do with threading together the elements of a WSDL specification.


WSDL_LOG_DOMAIN_MAIN

#define WSDL_LOG_DOMAIN_MAIN    1<<6

The bit to set to output debugging messages to do with the main parser driver.


wsdl_parse_debug_domain_string ()

void        wsdl_parse_debug_domain_string  (const guchar *string);

Parses string, and sets the internal logging mask.


wsdl_parse_debug_level_string ()

void        wsdl_parse_debug_level_string   (const guchar *string);

Parses string and sets the internal logging priority level.


wsdl_debug ()

void        wsdl_debug                      (guint domain,
                                             guint level,
                                             const guchar *format,
                                             ...);

If domain and level match bits set in the internal logging mask and level, then g_logv() is called with arguments "SOUP-WSDL", level, format, and a va_list parameter consisting of ... .