Ignore:
Timestamp:
03/18/15 09:58:50 (9 years ago)
Author:
sherbold
Message:
  • SimpleSOAPEvent now contains body of the SOAP request
  • SOAPUtils created
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/eventcore/SOAPEventType.java

    r1912 r1924  
    2323import javax.xml.soap.SOAPMessage; 
    2424 
     25import org.w3c.dom.Element; 
     26 
    2527import de.ugoe.cs.autoquest.plugin.http.HTTPUtils; 
    2628import de.ugoe.cs.autoquest.plugin.http.logdata.Header; 
     
    256258        return soapResponse; 
    257259    } 
     260     
     261    /** 
     262     * @return the body of the soapRequest 
     263     */ 
     264    public Element getSoapRequestBody() { 
     265        try { 
     266            return soapRequest.getSOAPBody(); 
     267        } 
     268        catch (SOAPException e) { 
     269            return null; 
     270        } 
     271    } 
    258272 
    259273    /* (non-Javadoc) 
Note: See TracChangeset for help on using the changeset viewer.