/usr/include/arc/message/PayloadSOAP.h is in nordugrid-arc-dev 5.0.5-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | #ifndef __ARC_PAYLOADSOAP_H__
#define __ARC_PAYLOADSOAP_H__
#include "Message.h"
#include "SOAPEnvelope.h"
namespace Arc {
/// Payload of Message with SOAP content.
/** This class combines MessagePayload with SOAPEnvelope to make
it possible to pass SOAP messages through MCC chain. */
class PayloadSOAP: public SOAPEnvelope, virtual public MessagePayload {
public:
/** Constructor - creates new Message payload */
PayloadSOAP(const NS& ns,bool fault = false);
/** Constructor - creates Message payload from SOAP document.
Provided SOAP document is copied to new object. */
PayloadSOAP(const SOAPEnvelope& soap);
/** Constructor - creates SOAP message from payload.
PayloadRawInterface and derived classes are supported. */
PayloadSOAP(const MessagePayload& source);
virtual ~PayloadSOAP(void);
};
} // namespace Arc
#endif /* __ARC_PAYLOADSOAP_H__ */
|