From 01d2e3a742a9ea1b083dccf68799dbf68b6e1236 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Wed, 22 Mar 2006 13:03:59 +0000 Subject: [PATCH] Accept application/soap+xml as content-type for SOAP msg --- src/srwutil.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/srwutil.c b/src/srwutil.c index e075dad..73226d5 100644 --- a/src/srwutil.c +++ b/src/srwutil.c @@ -2,7 +2,7 @@ * Copyright (C) 1995-2005, Index Data ApS * See the file LICENSE for details. * - * $Id: srwutil.c,v 1.36 2006-03-01 23:24:25 adam Exp $ + * $Id: srwutil.c,v 1.37 2006-03-22 13:03:59 adam Exp $ */ /** * \file srwutil.c @@ -239,6 +239,7 @@ int yaz_srw_decode(Z_HTTP_Request *hreq, Z_SRW_PDU **srw_pdu, "Content-Type"); if (content_type && (!yaz_strcmp_del("text/xml", content_type, "; ") || + !yaz_strcmp_del("application/soap+xml", content_type, "; ") || !yaz_strcmp_del("text/plain", content_type, "; "))) { char *db = "Default"; -- 1.7.10.4