Name | Signature and Synopsis |
---|---|
addAttachment | void addAttachment(SimpleEvent soapEvent, Adds a new attachment to the SOAP message. |
addFaultPart | void addFaultPart (SimpleEvent soapEvent, Adds a <fault> element to the standard SOAP body This can be used to build response SOAP body |
addHeaderPart | void addHeaderPart (SimpleEvent soapEvent, Adds a header fragment as a child of the standard SOAP header. This fragment should be a well formed XML. The actor, and mustUnderstand attribute values are added for the header element. |
addSOAPBodyPart | void addSOAPBodyPart (SimpleEvent soapEvent, Adds a body fragment as a child of the standard SOAP body. This fragment should be a well formed xml. |
addSOAPHeaderAttribute | void addSOAPHeaderAttribute(SimpleEvent soapEvent, Add attribute to SOAP header |
getAllSOAPBodyParts | String[] getAllSOAPBodyParts (SimpleEvent soapEvent) Gets all SOAP <Body> parts from the SOAP event |
getAttachmentContent | Object getAttachmentContent(SimpleEvent soapEvent, Gets the content of the attachment in byte[] form. The attachment is specified using the index. will return null in case of no attachment |
getAttachmentContentByContentID | Object getAttachmentContentByContentID(SimpleEvent soapEvent, Gets the content of the attachment in byte[] form. Returns a null if no attachment is found with the given content ID. |
getAttachmentContentID | String getAttachmentContentID(SimpleEvent soapEvent, Gets the String value content ID of the attachment. The attachment is specified using the index. |
getAttachmentContentType | String getAttachmentContentType(SimpleEvent soapEvent, Gets the String value content type of the attachment. The attachment is specified using the index. |
getEnvelope | String getEnvelope (SimpleEvent soapEvent) Gets the standard SOAP envelope xml node from the payload of this SOAP event. |
getFault | String getFault (SimpleEvent soapEvent) Gets the SOAP <Fault> element from the SOAP event |
getFaultActor | String getFaultActor (SimpleEvent soapEvent) Gets the <faultactor> from the SOAP event. |
getFaultCode | String getFaultCode (SimpleEvent soapEvent) Gets the <faultcode> from the SOAP event. |
getFaultString | String getFaultString (SimpleEvent soapEvent) Gets the <faultstring> from the SOAP event. |
getHeaders | String[] getHeaders(SimpleEvent soapEvent, String actor, boolean removeHeaders) Gets a list of headers inside the <Header> element of a SOAP message. The actor value of null means all immediate children of the SOAP header are retrieved. A non-null actor means only those headers having SOAP actor attribute same as this actor are retrieved. |
getNumberOfAttachments | int getNumberOfAttachments(SimpleEvent soapEvent) Gets a count of SOAP attachments in the incoming SOAP message. |
getSOAPBodyParts | String[] getSOAPBodyParts (SimpleEvent soapEvent, String name, String namespace) Gets the SOAP <Body> parts matching the name and namespace from the SOAP event |
getSOAPHeaderAttribute | String getSOAPHeaderAttribute (SimpleEvent soapEvent, int index, String attribute) Gets the value of the given attribute for the header part at the specified index in header body of the Simple event |
removeHeaderPart | void removeHeaderPart (SimpleEvent soapEvent, Removes 0 or more children of a SOAP <Header> of a SOAP message. |
removeHeaderParts | void removeHeaderParts (SimpleEvent soapEvent, Removes 0 or more children of a SOAP <Header> of a SOAP message. A null actor value will remove all headers without an actor |