KD SOAP
KDSoapNamespacePrefixes_p.h
1 /****************************************************************************
2 ** Copyright (C) 2010-2016 Klaralvdalens Datakonsult AB, a KDAB Group company, info@kdab.com.
3 ** All rights reserved.
4 **
5 ** This file is part of the KD Soap library.
6 **
7 ** Licensees holding valid commercial KD Soap licenses may use this file in
8 ** accordance with the KD Soap Commercial License Agreement provided with
9 ** the Software.
10 **
11 **
12 ** This file may be distributed and/or modified under the terms of the
13 ** GNU Lesser General Public License version 2.1 and version 3 as published by the
14 ** Free Software Foundation and appearing in the file LICENSE.LGPL.txt included.
15 **
16 ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
17 ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
18 **
19 ** Contact info@kdab.com if any conditions of this licensing are not
20 ** clear to you.
21 **
22 **********************************************************************/
23 #ifndef KDSOAPNAMESPACEPREFIXES_P_H
24 #define KDSOAPNAMESPACEPREFIXES_P_H
25 
26 #include <QtCore/QMap>
27 #include <QtCore/QXmlStreamWriter>
28 
29 #include "KDSoapClientInterface.h"
30 
31 class KDSoapNamespacePrefixes : public QMap<QString /*ns*/, QString /*prefix*/>
32 {
33 public:
34  void writeStandardNamespaces(QXmlStreamWriter &writer,
36  bool messageAddressingEnabled = false);
37 
38  void writeNamespace(QXmlStreamWriter &writer, const QString &ns, const QString &prefix)
39  {
40  //qDebug() << "writeNamespace" << ns << prefix;
41  insert(ns, prefix);
42  writer.writeNamespace(ns, prefix);
43  }
44  QString resolve(const QString &ns, const QString &localName) const
45  {
46  const QString prefix = value(ns);
47  if (prefix.isEmpty()) {
48  qWarning("ERROR: Namespace not found: %s (for localName %s)", qPrintable(ns), qPrintable(localName));
49  }
50  return prefix + QLatin1Char(':') + localName;
51  }
52 };
53 
54 #endif // KDSOAPNAMESPACESPREFIXES_H
Definition: KDSoapClientInterface.h:72
SoapVersion
Definition: KDSoapClientInterface.h:70

Klarälvdalens Datakonsult AB (KDAB)
Qt-related services and products
http://www.kdab.com/
http://www.kdab.com/products/kd-soap/