You are here

function xmlrpc_message_tag_open in Drupal 4

Same name and namespace in other branches
  1. 5 includes/xmlrpc.inc \xmlrpc_message_tag_open()
  2. 6 includes/xmlrpc.inc \xmlrpc_message_tag_open()
  3. 7 includes/xmlrpc.inc \xmlrpc_message_tag_open()
1 string reference to 'xmlrpc_message_tag_open'
xmlrpc_message_parse in includes/xmlrpc.inc
Parse an XML-RPC message. If parsing fails, the faultCode and faultString will be added to the message object.

File

includes/xmlrpc.inc, line 205

Code

function xmlrpc_message_tag_open($parser, $tag, $attr) {
  $xmlrpc_message = xmlrpc_message_get();
  $xmlrpc_message->current_tag_contents = '';
  $xmlrpc_message->last_open = $tag;
  switch ($tag) {
    case 'methodCall':
    case 'methodResponse':
    case 'fault':
      $xmlrpc_message->messagetype = $tag;
      break;

    // Deal with stacks of arrays and structs
    case 'data':
      $xmlrpc_message->array_structs_types[] = 'array';
      $xmlrpc_message->array_structs[] = array();
      break;
    case 'struct':
      $xmlrpc_message->array_structs_types[] = 'struct';
      $xmlrpc_message->array_structs[] = array();
      break;
  }
  xmlrpc_message_set($xmlrpc_message);
}