<div dir="ltr"><div>Hi list,</div><div><br></div><div>I'm converting body message to multipart. Calls establishes ok and Kamailio it's not logging errors but I'm seeing some info and warnings that I don't know it they are correct.</div><div><br></div><div>Maybe you could tell me if it's normal or if I'm doing something wrong in my script.</div><div><br></div><div><div>kamailio[13428]: INFO: <script>: Original content type is application/sdp</div><div>kamailio[13428]: INFO: <core> [msg_translator.c:1693]: get_boundary(): Content-Type hdr has no params <application/sdp></div><div>kamailio[13428]: WARNING: <core> [msg_translator.c:1959]: build_req_buf_from_sip_req(): check_boundaries error</div><div>kamailio[13428]: INFO: <script>: Appending GTD to body</div></div><div><br></div><div><br></div><div>I use the following sintax:    </div><div><br></div><div>route{</div><div>          ...</div><div>          route(MANAGE_MULTIPART);</div><div>          ...</div><div>}<br></div><div>route[MANAGE_MULTIPART]{</div><div>    ....</div><div>    if (is_method("INVITE") && !has_totag() && has_body()){</div><div>     ...</div><div>      xlog("L_INFO", "Original content type is $cT");</div><div>      set_body_multipart();</div><div>      <b>msg_apply_changes();</b></div><div>      xlog("L_INFO", "Appending GTD to body");</div><div><br></div><div>      ...</div><div>   }</div><div>    ...</div><div>}</div><div><br></div><div>Invite example:</div><div><br></div><div><div>INVITE <a href="http://sip:222222222@172.16.205.122:5060">sip:222222222@172.16.205.122:5060</a> SIP/2.0</div><div>Via: SIP/2.0/UDP 172.16.213.21:5060;branch=z9hG4bK-28085-1-0</div><div>From: "111111111" <sip:1111111111@172.16.213.21:5060;user=phone>;tag=1</div><div>To: <<a href="http://sip:2222222222@172.16.205.122:5060">sip:2222222222@172.16.205.122:5060</a>></div><div>Call-ID: <a href="mailto:1-28085@172.16.213.21">1-28085@172.16.213.21</a></div><div>CSeq: 1 INVITE</div><div>Contact: "1111111111" <<a href="http://sip:111111111@172.16.213.21:5060">sip:111111111@172.16.213.21:5060</a>></div><div>Max-Forwards: 70<br></div><div>Subject: Performance Test</div><div>Content-Type: application/sdp</div><div>Content-Length:   137</div><div><br></div><div>v=0</div><div>o=user1 53655765 2353687637 IN IP4 172.16.213.21</div><div>s=-</div><div>c=IN IP4 172.16.213.21</div><div>t=0 0</div><div>m=audio 6000 RTP/AVP 8</div><div>a=rtpmap:8 PCMA/8000</div></div><div><br></div><div>As you can see the log says that "Content-Type hdr has no params <application/sdp>" but in the line before says "Original content type is application/sdp". </div><div><br></div><div>I'm running kamailio 4.4 by the way.</div><div><br></div><div>Thanks in advance.</div><div><br></div><div>Diego.</div></div>