Hello,
I am able to successfully post the message now. Removed the <xml> tag using string operations.
data: gv_clean_str type string,
gv_len type i,
gv_clean_XSTR type xstring,
gv_char(1000) type c,
gv_corr_char(1000) type c.
gv_char = gv_cstring.
gv_len = strlen( gv_char ).
gv_corr_char = gv_char+38(gv_len). "38 is the length of the <xml> tag
gv_clean_str = gv_corr_char.
Reconverted the string to XSTRING using FM 'SCMS_STRING_TO_XSTRING'
But I am getting error 'noValidProtocols', anyone encountered this Protocol issue. Is this because I am trying to post a HTML message to a HTTP address ?
Thanks,
Vijay.