parseSOAP               package:SSOAP               R Documentation

_P_a_r_s_e _X_M_L _m_e_s_s_a_g_e

_D_e_s_c_r_i_p_t_i_o_n:

     This is a convenience function to parse the SOAP message returned
     from a server and retrieve the payload of the message as an XML
     tree in S.

_U_s_a_g_e:

     parseSOAP(xmlSource, header = FALSE, reduce = TRUE, ...,
               fullNamespaceInfo = TRUE)

_A_r_g_u_m_e_n_t_s:

xmlSource: an string giving the name of an file or URL containing the
          XML content, or a string containing the XML content itself.

  header: ignored

  reduce: a logical value indicating whether to return the top-most XML
          node of the Body or to return the entire XML tree read from
          'xmlSource'. If this is true, we find the Body node and
          return its first child.

     ...: arguments that are passed directly to 'xmlTreeParse' without
          being processed by this function.

fullNamespaceInfo: a logical value that is passed on to 'xmlTreeParse'
          when parsing the SOAP response This controls how the
          namespace information on each XML node is represented, with
          'TRUE' causing the prefix and URI to be included rather than
          just the prefix. 

_V_a_l_u_e:

     An 'XMLNode' object.

_A_u_t_h_o_r(_s):

     Duncan Temple Lang <duncan@wald.ucdavis.edu>

_R_e_f_e_r_e_n_c_e_s:

     <URL: http://www.w3.org/TR/SOAP/> <URL:
     http://www.omegahat.org/SSOAP>, <URL:
     http://www.omegahat.org/bugs>.

_S_e_e _A_l_s_o:

     'fromSOAP'

_E_x_a_m_p_l_e_s:

