Hello folks, I was looking at data_handler.c file and came across this function
AXIS2_EXTERN axis2_byte_t * AXIS2_CALL
axiom_data_handler_get_input_stream(axiom_data_handler_t *data_handler,
const axutil_env_t *env)
{
return (axis2_byte_t *)"";
}
The above function always returns null. Should the above line be:
return (axis2_byte_t *)data_handler->buffer;
Also, would it be useful to have a function called
axiom_data_handler_get_input_stream_len?
Subra
