#include <KDSoapMessageAddressingProperties.h>
The KDSoapMessageAddressingProperties class is the abstraction of the WS-Addressing specification. This specification sets up information within the soap envelope header. This class is meant to be filled with the data you want to have in the soap header and associate to a given message using
- See also
- KDSoapMessage::setMessageAddressingProperties
-
https://www.w3.org/TR/ws-addr-core/#abstractmaps Important: This class does not ensure any kind of validation to the data being passed to it
- Since
- 1.5
This enum contains all the predefined addresses defined by the ws addressing specification It is meant to be used with the predefinedAddress helper function to retrieve the uri as a QString
- See also
- predefinedAddressToString
This enum contains all the namespaces that can be used to send out WS-Addressing messages. This allows the application to select the WS-Addressing revision to be used.
- Since
- 1.9
- See also
- setAddressingNamespace
KDSoapMessageAddressingProperties::KDSoapMessageAddressingProperties |
( |
| ) |
|
KDSoapMessageAddressingProperties::~KDSoapMessageAddressingProperties |
( |
| ) |
|
Copies the contents of the object given by other
.
QString KDSoapMessageAddressingProperties::destination |
( |
| ) |
const |
Returns the destination address, it should match the EndpointReference given from WSDL
void KDSoapMessageAddressingProperties::setDestination |
( |
const QString & |
destination | ) |
|
Sets the destination address, where the message will be sent to
QString KDSoapMessageAddressingProperties::action |
( |
| ) |
const |
Returns the action uri, which is the semantic of the message
void KDSoapMessageAddressingProperties::setAction |
( |
const QString & |
action | ) |
|
Sets the targeted action of the soap message
QString KDSoapMessageAddressingProperties::sourceEndpointAddress |
( |
| ) |
const |
void KDSoapMessageAddressingProperties::setSourceEndpointAddress |
( |
const QString & |
sourceEndpoint | ) |
|
Convenient method, sets the message sender address
QString KDSoapMessageAddressingProperties::replyEndpointAddress |
( |
| ) |
const |
Convenient method, returns the sender endpoint address
void KDSoapMessageAddressingProperties::setReplyEndpointAddress |
( |
const QString & |
replyEndpoint | ) |
|
Convenient method to set directly the reply endpoint address the server should reply to
Returns the fault endpoint, which contains the address the server should send the potential fault error
QString KDSoapMessageAddressingProperties::faultEndpointAddress |
( |
| ) |
const |
Convenient method that returns the fault endpoint address, which is the address the server should send the potential fault error
void KDSoapMessageAddressingProperties::setFaultEndpointAddress |
( |
const QString & |
faultEndpoint | ) |
|
Convenient method to set directly the fault endpoint address of the message
QString KDSoapMessageAddressingProperties::messageID |
( |
| ) |
const |
void KDSoapMessageAddressingProperties::setMessageID |
( |
const QString & |
id | ) |
|
QVector< KDSoapMessageRelationship::Relationship > KDSoapMessageAddressingProperties::relationships |
( |
| ) |
const |
void KDSoapMessageAddressingProperties::setRelationships |
( |
const QVector< KDSoapMessageRelationship::Relationship > & |
relationships | ) |
|
Set the relationships of the message, parameter is a QVector of Relationship, the class Relationship carry the relationship type and the message ID of the related message
- See also
- Relationship
void KDSoapMessageAddressingProperties::addRelationship |
( |
const KDSoapMessageRelationship::Relationship & |
relationship | ) |
|
Convenient method to add a single Relationship to the message
- See also
- Relationship
KDSoapValueList KDSoapMessageAddressingProperties::referenceParameters |
( |
| ) |
const |
void KDSoapMessageAddressingProperties::setReferenceParameters |
( |
const KDSoapValueList & |
values | ) |
|
Set the reference parameters list, since this value can be anything custom, it uses a KDSoapValueList
void KDSoapMessageAddressingProperties::addReferenceParameter |
( |
const KDSoapValue & |
oneReferenceParameter | ) |
|
Add a reference parameter, if not null, to the referenceParameters list
Returns the metadata of the KDSoapMessageProperties
void KDSoapMessageAddressingProperties::setMetadata |
( |
const KDSoapValueList & |
metadataList | ) |
|
void KDSoapMessageAddressingProperties::addMetadata |
( |
const KDSoapValue & |
metadata | ) |
|
Add one metadata, if not null, to the list of metadata that will appear within soap header
Returns the selected WS-Addressing namespace
- Since
- 1.9
Sets the WS-Addressing namespace to be used for sending out messages.This allows the application to select the WS-Addressing revision to be used.
- Since
- 1.9
- See also
- KDSoapAddressingNamespace
Helper function that takes the address
enum and addressingNamespace
to provide the QString equivalent
bool KDSoapMessageAddressingProperties::isWSAddressingNamespace |
( |
const QString & |
namespaceUri | ) |
|
|
static |
Helper function that compares namespaceUri
with the known WS-Addressing namespaces
Helper function that takes the addressingNamespace
enum to provide the QString equivalent
- Since
- 1.9
void KDSoapMessageAddressingProperties::writeMessageAddressingProperties |
( |
KDSoapNamespacePrefixes & |
namespacePrefixes, |
|
|
QXmlStreamWriter & |
writer, |
|
|
const QString & |
messageNamespace, |
|
|
bool |
forceQualified |
|
) |
| const |
|
private |
Private method called to write the properties to the soap header, using QXmlStreamWriter
void KDSoapMessageAddressingProperties::readMessageAddressingProperty |
( |
const KDSoapValue & |
value | ) |
|
|
private |
Private method called to read a property from a soap header
The documentation for this class was generated from the following files: