1
0
Fork 0

Remove quotes from text/xml content type (to please Logica MMC!)

This commit is contained in:
bagyenda 2006-10-17 07:53:16 +00:00
parent f2d45f4164
commit 63b90a7845
1 changed files with 3 additions and 3 deletions

View File

@ -601,7 +601,7 @@ int mm7_soapmsg_to_httpmsg(MSoapMsg_t *m, List **hdrs, Octstr **body)
http_destroy_headers(hx); http_destroy_headers(hx);
hx = http_create_empty_headers(); hx = http_create_empty_headers();
http_header_add(hx, "Content-Type", "\"text/xml\""); http_header_add(hx, "Content-Type", "text/xml");
http_header_add(hx, "Content-ID", octstr_get_cstr(envloc)); http_header_add(hx, "Content-ID", octstr_get_cstr(envloc));
mime_replace_headers(xml, hx); mime_replace_headers(xml, hx);
http_destroy_headers(hx); http_destroy_headers(hx);
@ -615,7 +615,7 @@ int mm7_soapmsg_to_httpmsg(MSoapMsg_t *m, List **hdrs, Octstr **body)
http_destroy_headers(hh); http_destroy_headers(hh);
ctype = octstr_format("multipart/related; type=\"text/xml\"; start=\"%S\"", ctype = octstr_format("multipart/related; type=text/xml; start=\"%S\"",
envloc); envloc);
octstr_destroy(envloc); octstr_destroy(envloc);
@ -625,7 +625,7 @@ int mm7_soapmsg_to_httpmsg(MSoapMsg_t *m, List **hdrs, Octstr **body)
mime_entity_destroy(xml); mime_entity_destroy(xml);
mime_entity_destroy(c); mime_entity_destroy(c);
} else { } else {
ctype = octstr_imm("\"text/xml\""); ctype = octstr_imm("text/xml");
s = headers_to_soapxml(m->envelope); s = headers_to_soapxml(m->envelope);
mime_entity_set_body(mime,s); mime_entity_set_body(mime,s);
octstr_destroy(s); octstr_destroy(s);