Tools

wafpp provides the following tools in /opt/DOMAIN/bin:

dbpquery

Runs database queries against dbproxyd. Can be used to test if database setup is correct.

soapdoc

Extracts documentation of SOAP calls from source code and generates HTML. SOAP calls can be documented by special comments /*soap ... */ in source or header files. Within the comment there can be the following special tags:

  • @class name description documents a class
  • @method name description documents a method
  • @in name(datatype) description documents an input parameter
  • @in name(struct) description { elements } documents an input parameter that is a structure
  • @out name(datatype) description documents an output parameter
  • @out name(struct) description { elements } documents an output parameter that is a structure
  • @elem name(datatype) description documents an element of an input or output structure
  • @exception code description documents a SOAP exception

soapinvoke

Invokes an application logic method via SOAP. Can be used to make sure that SOAP setup is correct and to test new application logic.